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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fefefe;
}

/* Header */
.header {
    background: white;
    border-bottom: 2px solid #e6b3cc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    height: 69px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e6b3cc;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f5f5dc;
    color: #012a4a;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0e8f5, #e8f0f5, #f5ede8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: #e6b3cc;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.product-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #012a4a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.product-spacer {
    flex-grow: 1;
}

.view-button {
    background: #012a4a;
    color: white;
    border: 2px solid #012a4a;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    border-radius: 6px;
}

.view-button:hover {
    background: transparent;
    color: #012a4a;
}

/* Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #012a4a;
}

/* Footer */
.footer {
    background: #012a4a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #c8c8d0;
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #e6b3cc;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #012a4a;
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 40px;
        max-width: 160px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 1rem;
        border-bottom: 2px solid #e6b3cc;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        padding: 0.8rem 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 1.5rem;
    }

    .nav-menu .dropdown-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
        color: #666;
        border-bottom: 1px solid #f5f5f5;
    }

    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        min-width: 70vw;
        max-width: 70vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .carousel-dots {
        display: flex;
    }

    .product-image {
        height: 180px;
        font-size: 2.2rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-category {
        font-size: 0.65rem;
    }

    .product-price {
        font-size: 0.9rem;
    }

    .view-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-width: 80vw;
        max-width: 80vw;
    }

    .product-image {
        height: 140px;
        font-size: 1.8rem;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .view-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
