/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP INFO BAR */
.top-bar {
    background-color: #8B6F47;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gold-rates {
    display: flex;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* HEADER */
.header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .search-bar {
        order: 3;
        flex: 1 1 100%;
        margin-top: 10px;
        max-width: 100%;
    }
    
    .header-icons {
        order: 2;
        flex: 0 0 auto;
    }
    
    .icon-text {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    min-width: 150px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.search-bar {
    flex: 1;
    display: flex;
    max-width: 400px;
}

.search-bar input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.search-bar button {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    padding: 10px 20px;
    background-color: #8B6F47;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6d5635;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    transition: color 0.3s;
    position: relative;
}

.icon-link:hover {
    color: #8B6F47;
}

.icon-link span:first-child {
    font-size: 20px;
    margin-bottom: 2px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* NAVIGATION MENU */
/* .main-nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.main-nav .container {
    position: relative;
} */
 
.main-nav {
    /* background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    position: sticky; */
    background-color: #f8f8f8;
    /* padding: 15px 0; */
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 84px;
    z-index: 100;
}

.main-nav .container {
    position: sticky;
    top: 100px;
    z-index: 100;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li.nav-right {
    margin-left: auto;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu > li > a:hover {
    background-color: #8B6F47;
    color: white;
}

/* DROPDOWN STYLES */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #8B6F47;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8f8f8;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-menu > li.nav-right {
        margin-left: 0;
    }

    .nav-menu > li > a {
        text-align: left;
        padding: 15px 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #ececec;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-toggle::after {
        content: ' ▼';
        font-size: 10px;
    }

    .dropdown.active .dropdown-toggle::after {
        content: ' ▲';
    }
}

/* COUNTDOWN BANNER */
.countdown-banner {
    background: linear-gradient(135deg, #7B4B4B 0%, #5A3535 100%);
    color: white;
    padding: 20px 0;
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.countdown-text {
    text-align: left;
}

.countdown-banner h2 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: bold;
}

.countdown-banner p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-numbers {
    display: flex;
    gap: 4px;
}

.countdown-number {
    background-color: #2a2a2a;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 28px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-size: 13px;
    opacity: 0.95;
    text-align: center;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c0 100%);
    padding: 60px 0;
    min-height: 500px;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.btn-shop-now {
    padding: 15px 40px;
    background-color: #d97777;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-shop-now:hover {
    background-color: #c06666;
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: white;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #8B6F47;
}

/* FOOTER */
.footer {
    background-color: #2a2a2a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #8B6F47;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

/* .social-links a:hover {
    background-color: #8B6F47;
    transform: translateY(-3px);
} */
 .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* Social Media Brand Colors on Hover */
.social-links a:has(.fa-facebook-f):hover {
    background-color: #1877F2;
    color: white;
}

.social-links a:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.social-links a:has(.fa-x-twitter):hover {
    background-color: #0e0f0f;
    color: white;
}

.social-links a:has(.fa-youtube):hover {
    background-color: #FF0000;
    color: white;
}

.social-links a:has(.fa-pinterest-p):hover {
    background-color: #E60023;color: white;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* PRODUCT SECTIONS */
.products-section,
.best-offers-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.best-offers-section {
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #8B6F47;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.discount {
    background-color: #d97777;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #8B6F47;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.sale-price {
    color: #d97777;
    font-size: 22px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background-color: #8B6F47;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background-color: #6d5635;
}

/* SHOP BY GENDER SECTION */
.shop-by-gender-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.shop-by-gender-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 40px;
}

.gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gender-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gender-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gender-image {
    position: relative;
    padding-top: 130%;
    overflow: hidden;
}

.gender-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gender-card:hover .gender-image img {
    transform: scale(1.1);
}

.gender-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 71, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gender-card:hover .gender-overlay {
    opacity: 1;
}

.btn-gender-shop {
    background-color: white;
    color: #8B6F47;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gender-shop:hover {
    background-color: #8B6F47;
    color: white;
    transform: scale(1.05);
}

.gender-card h3 {
    background-color: white;
    padding: 20px;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gender-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* CATEGORY SECTION */
.category-section {
    padding: 60px 0;
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.category-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: 100%;
    position: relative;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 18px;
    color: #333;
}

/* CUSTOMER FEEDBACK SECTION */
.feedback-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feedback-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.feedback-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: #333;
}

.customer-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* APP DOWNLOAD SECTION */
.app-download-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #8B6F47 0%, #6d5635 100%);
    color: white;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.app-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.app-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.app-btn i {
    font-size: 32px;
}

.app-btn div {
    text-align: left;
}

.app-btn span {
    font-size: 12px;
    display: block;
}

.app-btn strong {
    font-size: 18px;
    display: block;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .search-bar {
        flex: 1;
        max-width: none;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .gold-rates {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    /* Header */
    .header-content {
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .search-bar {
        width: 100%;
        order: 3;
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .icon-text {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Navigation */
    .nav-menu {
        flex-wrap: wrap;
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 40px 0;
        min-height: 400px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn-shop-now {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    /* Countdown */
    .countdown-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .countdown-text {
        text-align: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .countdown-number {
        padding: 10px 12px;
        font-size: 24px;
        min-width: 40px;
    }
    
    /* Products */
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* App Download */
    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-text h2 {
        font-size: 32px;
    }

    .app-buttons {
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo span {
        font-size: 18px;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .header-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }
    
    /* Hero */
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    /* Sections */
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .countdown-banner h2 {
        font-size: 24px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}