/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f7fb;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #021B3A;
    margin-bottom: 48px;
}

/* ==================== Header ==================== */
header {
    background: #021B3A;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.logo {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #FDB913;
    white-space: nowrap;
    z-index: 5;
}

/* منوی دسکتاپ - وسط صفحه */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.desktop-menu a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.desktop-menu a:hover {
    color: #FDB913 !important;
}

/* دکمه‌های سمت چپ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.cart-btn,
.login-btn {
    background: #ffffff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.cart-btn:hover,
.login-btn:hover {
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    fill: #0b1c3d;
}

.cart-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}

.login-btn svg {
    stroke: #0b1c3d;
}

/* همبرگر */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* منوی موبایل */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #021B3A;
    padding: 8px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #ffffff !important;
    font-size: 16px;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #FDB913 !important;
}

/* ریسپانسیو منو */
@media (max-width: 900px) {
    .desktop-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }
}

/* ==================== Dollar Box ==================== */
#dollar-box {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 998;
    padding: 10px 18px;
    background: #0b1c3d;
    color: #fff;
    border-radius: 12px;
    font-size: 13px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    direction: rtl;
}

#dollar-box strong {
    color: #FDB913;
    font-weight: 700;
}

/* ==================== Hero ==================== */
.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(2, 27, 58, 0.55), rgba(2, 27, 58, 0.45)), url("../images/chat2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: #FDB913;
    color: #021B3A;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-text h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.35;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-text h1 span {
    color: #FDB913;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 32px;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    width: 100%;
    height: 60px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 15px;
    background: transparent;
    color: #1e293b;
    height: 100%;
}

.search-box button {
    background: #FDB913;
    color: #021B3A;
    border: none;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    height: 100%;
    border-radius: 0 16px 16px 0;
    transition: background 0.25s;
    white-space: nowrap;
}

.search-box button:hover {
    background: #e0a800;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-height: 340px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    border: 1px solid #e2e8f0;
}

.search-results.active {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f8fafc;
}

.search-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    padding: 4px;
}

.search-item .info h4 {
    font-size: 14px;
    margin: 0 0 4px;
    color: #1e293b;
    font-weight: 600;
}

.search-item .info span {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 700;
}

.no-result {
    padding: 18px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* ==================== Features ==================== */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 32px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 6px;
    color: #021B3A;
    font-size: 17px;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    font-size: 14px;
}

/* ==================== Categories ==================== */
.categories {
    padding: 90px 0 70px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    max-width: 120px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.category-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #021B3A;
}

/* ==================== Products ==================== */
.products {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-slider {
    overflow: hidden;
    width: 100%;
}

.product-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
}

.product-track .product-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 16px;
    background: #fff;
}

.product-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #1e293b;
    padding: 0 16px;
    margin: 8px 0 6px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .code {
    padding: 0 16px;
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 8px;
}

.product-card .price {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    padding: 0 16px;
    margin-bottom: 14px;
}

.product-card button {
    margin: 0 14px 16px;
    margin-top: auto;
    background: #FDB913;
    color: #021B3A;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    width: calc(100% - 28px);
}

.product-card button:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #021B3A;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #FDB913;
    color: #021B3A;
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ==================== Request Part ==================== */
.request-part {
    padding: 80px 0;
}

.request-box {
    background: #021B3A;
    color: #fff;
    padding: 56px 40px;
    border-radius: 24px;
    text-align: center;
}

.request-box h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 12px;
    font-weight: 800;
}

.request-box p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.request-box form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.request-box input {
    flex: 1;
    min-width: 200px;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
}

.request-box button {
    border: none;
    background: #FDB913;
    color: #021B3A;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.25s;
}

.request-box button:hover {
    background: #e0a800;
}

/* ==================== Brand Slider ==================== */
.brand-slider {
    overflow: hidden;
    background: #fff;
    padding: 36px 0;
    direction: ltr;
}

.brand-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.brand-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    width: 160px;
    height: 70px;
    margin: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: 0.3s;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== Stats ==================== */
.stats {
    padding: 70px 0 80px;
    background: #f7f9fc;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
    position: relative;
}

.stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #0d1f3c;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* ==================== Newsletter ==================== */
.newsletter {
    padding: 70px 0;
}

.newsletter-box {
    background: linear-gradient(135deg, #021B3A, #0b3a78);
    color: #fff;
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
}

.newsletter-box h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 10px;
    font-weight: 800;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.newsletter-box form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box input {
    flex: 1;
    min-width: 220px;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
}

.newsletter-box button {
    border: none;
    background: #FDB913;
    color: #021B3A;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
}

.newsletter-box button:hover {
    background: #e0a800;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 70px 0 90px;
}

.faq-item {
    background: #fff;
    padding: 24px 28px;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #021B3A;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 14px;
}

/* ==================== Floating Rubika ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 999;
    transition: transform 0.25s;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ==================== Footer ==================== */
footer {
    background: #021B3A;
    color: #fff;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 32px;
    padding: 48px 0 36px;
    align-items: start;
}

.footer-col h3 {
    margin-bottom: 14px;
    color: #FDB913;
    font-size: 16px;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-col a {
    color: #cbd5e1 !important;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #FDB913 !important;
}

.footer-col iframe {
    width: 100%;
    height: 160px;
    border: 0;
    border-radius: 12px;
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 16px;
    color: #94a3b8;
    font-size: 13px;
}

/* ==================== Cart Modal ==================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cart-modal {
    background: #fff;
    width: 380px;
    max-width: 94vw;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    direction: rtl;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    overflow-y: auto;
    flex: 1;
    min-height: 80px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-trash {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.cart-item-trash svg {
    width: 20px;
    height: 20px;
    fill: #e53935;
}

.cart-item-info {
    flex: 1;
    text-align: right;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 13px;
    color: #888;
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding: 16px 20px 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 14px;
}

.cart-checkout {
    display: block;
    width: 100%;
    background: #0d1f3c;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-checkout:hover {
    background: #162d52;
}

.cart-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ==================== Login Modal ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    direction: rtl;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.modal-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #000;
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: #0b1c3d;
    box-shadow: 0 0 0 3px rgba(11, 28, 61, 0.1);
}

.btn-primary {
    width: 100%;
    background: #0b1c3d;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.btn-primary:hover {
    background: #07122a;
    transform: translateY(-1px);
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.modal-footer a {
    color: #0b1c3d;
    font-weight: 600;
    margin-right: 4px;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #021B3A;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 998;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
}

.back-to-top:hover {
    background: #FDB913;
    color: #021B3A;
    transform: translateY(-3px);
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .product-track .product-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-track .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .hero {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-track .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .hero {
        min-height: auto;
        padding: 60px 0 80px;
    }

    .hero-content {
        flex-direction: column;
    }

    .request-box,
    .newsletter-box {
        padding: 36px 24px;
    }

    .request-box form,
    .newsletter-box form {
        flex-direction: column;
    }

    .request-box input,
    .newsletter-box input {
        width: 100%;
        min-width: unset;
    }

    .stat:not(:last-child)::after {
        display: none;
    }

    .hero-stats {
        gap: 36px;
    }

    #dollar-box {
        top: auto;
        bottom: 90px;
        right: 16px;
        font-size: 12px;
        padding: 8px 14px;
    }

    .search-box {
        height: 54px;
    }
}

@media (max-width: 480px) {
    .product-track .product-card {
        flex: 0 0 calc(80% - 10px);
    }

    .nav {
        height: 70px;
    }

    .logo {
        font-size: 20px;
    }

    .cart-btn,
    .login-btn {
        width: 42px;
        height: 42px;
    }
}