* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   NAVIGATION BAR
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    font-style: normal;
    font-weight: 400;
    display: block;
    font-size: 0.5rem;
    letter-spacing: 4px;
    margin-top: -5px;
    color: #000000;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: #000000;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #666666;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    list-style: none;
    padding: 1rem 0;
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 2rem;
}

/* Search & Cart Icons */
.search-cart {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon, .cart-icon {
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.search-icon:hover, .cart-icon:hover {
    transform: scale(1.1);
    color: #666666;
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000000;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Master Product Section Header */
.product-header {
     width: 100%;
    padding: 100px 3rem;
    background: linear-gradient(
        180deg,
        #f8f8f8 0%,
        #ececec 25%,
        #e0e0e0 50%,
        #ececec 75%,
        #f8f8f8 100%
    );
    text-align: center;
}

.product-header h1 {
    font-size: 48px;
    color: #000;
    text-align: center;
    margin-top: 40px;
    font-family: "Impact", sans-serif;
}

.product-header p {
    text-align: center;
    color: #000;
    font-size: 16px;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}



/* Product Grid Layout */
.product-container {
    display: grid;
    gap: 35px;
    padding: 20px 40px;

    /* Desktop default */
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card Style */
.product-card {
    background: #ffffff;
    border-radius: 16px; /* smooth rounded corners */
    /* padding: 20px; */
    box-shadow: 0 6px 18px rgba(0,0,0,0.08); /* soft shadow like homepage */
    /* border: 1px solid #e5e5e5; */
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
    border-color: #000; /* slight darkening on hover */
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.product-card h3 {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
    font-family: "Impact", sans-serif; /* matches hero */
}

/* PRICE */
.product-card .price {
    margin-top: 10px;
    font-size: 19px;
    font-weight: bold;
    color: #000;
    font-family: "Brush Script MT", cursive; /* elegant handwritten price */
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    padding: 80px 3rem 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2rem;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    margin-bottom: 15px;
    color: #fff;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 3px;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablets & Medium Screens */
@media (max-width: 968px) {
        .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.03);
    }

     .menu-toggle {
        display: flex;
    }

    .product-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 30px;
        gap: 30px;
    }
}


/* Mobile Devices */
@media (max-width: 640px) {
     .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 0.4rem;
        letter-spacing: 2px;
    }

    .product-container {
        grid-template-columns: 1fr; /* ONLY ONE COLUMN */
        padding: 15px;
        gap: 20px;
    }



    /* Footer Responsive */
    .footer {
        padding: 60px 1.5rem 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    
}