/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.nav-logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 8px;
    text-align: center;
    text-transform: uppercase;
}

.logo-icon {
    height: 45px;
    width: 45px;
    opacity: 0.5;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
}

.nav-left a,
.nav-right a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-count {
    background-color: #1a1a1a;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #f8f8f8;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                url('images/IMG_4329.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-style: italic;
}

.hero-content p,
.hero-content .hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: #1a1a1a;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    color: white;
    opacity: 1;
}

/* Featured Collection */
.featured-collection {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title-uniform {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Single Product Layout */
.product-single {
    max-width: 900px;
    margin: 0 auto;
}

.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Carousel Styles */
.product-carousel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #f5f5f5;
}

.carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    border: none;
    width: 32px;
    height: 32px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.product-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #1a1a1a;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* Product Info Large */
.product-info-large {
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-description {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-pricing {
    margin-bottom: 30px;
}

.product-pricing .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.product-pricing .price-set {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 10px;
    letter-spacing: 2px;
}

.product-pricing .price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.product-pricing .price-separate {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.product-pricing .free-shipping {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #2a7d2a;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.swipe-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buy Buttons */
.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    align-items: center;
}

.btn-buy-set {
    display: block;
    background-color: #b8a99a;
    color: white;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-buy-set:hover {
    background-color: #a39485;
    opacity: 1;
}

.buy-separate {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-buy-item {
    flex: 1;
    display: block;
    background-color: transparent;
    color: #888;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.btn-buy-item:hover {
    background-color: #faf8f6;
    border-color: #b8a99a;
    color: #1a1a1a;
    opacity: 1;
}

.btn-add-cart {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 35px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background-color: white;
    color: #1a1a1a;
}

/* Why Section */
.why-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.feature p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.cart-modal-header h2 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.close-cart:hover {
    color: #1a1a1a;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.cart-item-price {
    font-weight: 500;
    color: #1a1a1a;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}

.remove-btn:hover {
    color: #1a1a1a;
}

.cart-modal-footer {
    padding: 25px;
    border-top: 1px solid #e5e5e5;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: 15px;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-checkout:hover {
    background-color: #333;
}

/* Add to Cart Buttons */
.add-to-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-cart-item {
    background-color: white;
    color: #1a1a1a;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-item:hover {
    background-color: #f5f5f5;
}

.btn-add-set {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.btn-add-set:hover {
    background-color: #333;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #1a1a1a;
    color: white;
    padding: 15px 25px;
    border-radius: 0;
    font-size: 13px;
    z-index: 3000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left,
    .nav-right {
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .product-card-large {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-info-large {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p,
    .hero-content .hero-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 32px;
    }

    .product-name {
        font-size: 28px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }
}
