@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    color: #eee;
    font-family: "Vazirmatn", sans-serif;
    line-height: 1;
    direction: rtl;
    color: #333;
    background-color: #edf6f9;
}

html {
    font-size: 62.5%;
}

html,
body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
strong {
    font-weight: unset;
}

/* Footer Block */
.footer {
    background: #2b4141;
    color: #edf6f9;
    padding: 2rem 0 0;
    margin-top: 4rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__brand {
    width: 5.2rem;
    margin-bottom: 1rem;
}
.footer__brand-logo {
    width: 100%;
}
.footer__social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer__social-link {
    color: #edf6f9;
    transition: color 0.3s ease;
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__social-link i {
    font-size: 2.4rem;
}
.footer__social-link-tel i {
    font-size: 2.1rem;
}

.footer__social-link:hover {
    color: #bec5c7;
}

.footer__copyright {
    padding: 0 0 1.8rem ;
    color: #9ca3afc8;
    text-align: center;
}


/* Header Block */
.header {
    background: linear-gradient(#338a92, #006d77);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.header__container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 1rem;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__brand {
    width: 4.4rem;
}
.header__brand-logo {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__action-btn {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e6f0f1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.header__cart-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    background: #ef4444;
    color: #edf6f9;
    font-size: 0.9rem;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.news {
  background: #ff5722;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.3rem;
  text-align: center;
}
.news ul {
  list-style: none;
}
.news li {
  padding: 2px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.news li:last-child {
  border-bottom: none;
}