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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP BANNER */
.top-banner {
    background: #eff6ff;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.top-banner span {
    color: #374151;
}

.top-banner a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
}

.top-banner a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .top-banner {
        display: none;
    }
}

/* MOBILE HEADER */
.mobile-header {
    display: none;
    background: #f3f4f6;
    border-bottom: 1px solid #d1d5db;
    position: sticky;
    top: 0;
    z-index: 40;
}

.mobile-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-logo {
    text-align: center;
    flex: 1;
}

.mobile-logo h1 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mobile-logo p {
    font-size: 10px;
    color: #6b7280;
    letter-spacing: 1px;
}

.mobile-actions {
    display: flex;
    gap: 12px;
}

.mobile-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.cart-btn-mobile .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #16a34a;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-currency {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px 8px;
    gap: 8px;
}

.currency-indicator {
    display: flex;
    gap: 4px;
}

.flag-ng {
    width: 12px;
    height: 12px;
    background: #16a34a;
}

.flag-white {
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid #16a34a;
}

.currency-text {
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-header button {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-logo h1 {
    font-size: 12px;
    font-weight: 700;
}

.mobile-menu-logo p {
    font-size: 10px;
    color: #6b7280;
}

.mobile-nav {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.mobile-menu-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.mobile-menu-cart {
    padding: 16px;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-cart button {
    background: #1f2937;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* DESKTOP HEADER */
.desktop-header {
    display: block;
    border-bottom: 1px solid #e5e7eb;
}

.header-top {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.login-link {
    color: #6b7280;
    text-decoration: none;
}

.login-link:hover {
    color: #111;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.country-selector {
    position: relative;
}

.country-selector button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
    width: 192px;
}

.country-dropdown.active {
    display: block;
}

.country-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
}

.country-dropdown button:hover {
    background: #f3f4f6;
}

.currency {
    color: #6b7280;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.header-logo {
    border-top: 1px solid #e5e7eb;
    padding: 24px 0;
}

.header-logo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-center h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.cart-badge-desktop {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #16a34a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.main-nav {
    border-top: 1px solid #e5e7eb;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 16px 24px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
    text-decoration: none;
}

.main-nav a:hover {
    color: #6b7280;
}

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
}

/* MAIN CONTENT */
main {
    padding: 32px 16px 64px;
}

@media (min-width: 768px) {
    main {
        padding: 64px 24px;
    }
}

/* SECTIONS */
.featured-section,
.brands-section,
.promo-section,
.about-section,
.contact-section {
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .featured-section,
    .brands-section,
    .promo-section,
    .about-section,
    .contact-section {
        margin-bottom: 80px;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .view-all {
        display: none;
    }
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.product-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .product-image {
        margin-bottom: 16px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-main {
    display: block;
}

.img-hover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card:hover .img-main {
    display: none;
}

.product-card:hover .img-hover {
    display: block;
}

.sold-out-badge {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

@media (min-width: 768px) {
    .sold-out-badge {
        font-size: 18px;
    }
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-name {
        font-size: 14px;
    }
}

.product-vendor {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .product-vendor {
        display: none;
    }
}

@media (min-width: 768px) {
    .product-vendor {
        margin-bottom: 8px;
    }
}

.product-price {
    font-weight: 700;
    font-size: 12px;
}

@media (min-width: 768px) {
    .product-price {
        font-size: 14px;
    }
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 8px;
}

.price-current {
    color: #111;
}

/* BRANDS GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }
}

.brand-card {
    aspect-ratio: 1;
    background: #f3f4f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 16px;
    transition: background 0.2s;
}

.brand-card:hover {
    background: #e5e7eb;
}

/* PROMO SECTION */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.promo-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
    .promo-card {
        padding: 40px;
    }
}

.promo-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.promo-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .promo-card h3 {
        font-size: 24px;
    }
}

.promo-card p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .promo-card p {
        margin-bottom: 24px;
    }
}

.promo-card button {
    background: #1f2937;
    color: white;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

@media (min-width: 768px) {
    .promo-card button {
        padding: 8px 32px;
    }
}

.promo-card button:hover {
    background: #374151;
}

/* ABOUT SECTION */
.about-section {
    background: #f9fafb;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .about-section {
        padding: 40px;
    }
}

.about-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about-section h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .about-content {
        gap: 16px;
        font-size: 16px;
    }
}

.about-location {
    font-weight: 600;
    color: #111;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* CONTACT FORM */
.contact-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .contact-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.contact-form {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .contact-form {
        gap: 16px;
    }
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

@media (min-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111;
}

.contact-form button {
    background: #1f2937;
    color: white;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

@media (min-width: 768px) {
    .contact-form button {
        padding: 12px 32px;
        font-size: 16px;
    }
}

.contact-form button:hover {
    background: #374151;
}

/* FOOTER */
footer {
    background: #1f2937;
    color: white;
}

footer .container {
    padding: 48px 24px;
}

@media (min-width: 768px) {
    footer .container {
        padding: 64px 24px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
        margin-bottom: 48px;
    }
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .footer-col ul {
        gap: 12px;
    }
}

.footer-col li {
    font-size: 12px;
    color: #d1d5db;
}

@media (min-width: 768px) {
    .footer-col li {
        font-size: 14px;
    }
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 32px;
        font-size: 14px;
    }
}
