@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

body { 
    font-family: 'Lato', Arial, sans-serif; 
    background: #FCFCFC; 
    color: #222;
    margin: 0; 
}

/* Navigation Arrows */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0; /* Square/sharp */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 100;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-arrow:hover {
    background: #111;
    border-color: #111;
    transform: translateY(-50%);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: #111;
    transition: fill 0.3s ease;
}

.nav-arrow:hover svg {
    fill: #fff;
}

.nav-arrow-right { right: 0; }
.nav-arrow-left { left: 0; }

/* Header */
.header {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #111;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.header-btn {
    background: none;
    border: none;
    color: #111;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 0;
    cursor: pointer;
    padding: 0 10px;
    height: 80px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-btn::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A059;
    transition: width 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.header-btn:hover {
    color: #C5A059;
    background: transparent;
}

.header-btn:hover::after {
    width: 80%;
}

/* Product Detail Container */
.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #fff;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    overflow: hidden;
}

.left {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    position: relative;
    border-left: 1px solid #f0f0f0;
}

.main-img {
    max-width: 100%;
    width: 480px;
    border-radius: 0;
    box-shadow: none;
}

.thumbs {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.thumbs img, .video-thumb video {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
    border: 1px solid #eee;
    background: #fff;
    transition: border-color 0.3s;
}

.video-thumb {
    position: relative;
    display: inline-block;
}

/* Play icon removed as requested */

.thumbs img:hover, .video-thumb:hover video {
    border-color: #111;
}

.right {
    flex: 1;
    padding: 50px 60px;
    text-align: right;
}

/* Typography & Content */
h1 { 
    color: #111; 
    font-family: 'Playfair Display', serif; 
    font-weight: 600;
    letter-spacing: -0.5px;
}

p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #444; 
    font-weight: 300;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.5px;
}

.price {
    font-size: 1.5rem;
    color: #C5A059; /* Gold accent */
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Lato', sans-serif;
}

.price.out-of-stock {
    color: #a00;
    font-weight: 400;
}

/* Options */
.options-container {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-group-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 16px 0 8px 0;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[class*="-length"], [class*="-size"], [class*="-color"], 
[class*="-style"], [class*="-part"], [class*="-hairline"] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.option-btn {
    padding: 12px 24px;
    margin: 0;
    border-radius: 0; /* Square edges */
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #444;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.option-btn:hover:not(.selected):not(:disabled) {
    border-color: #111;
    background: #fff;
    color: #000;
}

.option-btn.selected {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: none;
}

.option-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    border-color: #eee;
    background: #f9f9f9;
}

/* Shop Layout */
.shop-container {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
}

.product-card {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #eee;
    width: 300px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: #222;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}

.product-card .product-img {
    width: 100%;
    height: 380px; /* Taller format */
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: none;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-card .product-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 20px 24px 20px;
    text-align: center;
    color: #111;
}

/* About Page */
.about-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    padding: 60px;
}

.about-image {
    display: block;
    max-width: 400px;
    border-radius: 0;
    box-shadow: none;
    margin: 40px auto 0;
}

/* Accessories */
.accessories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    margin-top: 0;
}

.accessory-item {
    text-align: center;
    width: 320px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    transition: all 0.3s;
}
.accessory-item:hover {
    border-color: #111;
}

.accessory-img {
    border-radius: 0;
}

/* WhatsApp Buttons */
.whatsapp-button {
    border-radius: 0;
    overflow: hidden;
    margin-top: 20px;
    display: inline-block;
}

.whatsapp-button img {
    border-radius: 0;
    width: 240px;
    transition: opacity 0.3s;
}

.whatsapp-button img:hover {
    background: transparent;
    opacity: 0.9;
    box-shadow: none;
    transform: none;
}

.buy-box, .return-box {
    position: static;
    margin-top: 30px;
    background: #f9f9f9;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
    font-size: 1rem;
    color: #555;
    border-left: 3px solid #111;
    display: inline-block;
    max-width: 400px;
}

/* Lightbox Overlay (desktop only) */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    direction: ltr; /* Force LTR so left/right arrows behave correctly */
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
}

.lightbox-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 75vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #111;
    cursor: pointer;
    line-height: 1;
    padding: 4px 12px;
    transition: opacity 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    opacity: 0.6;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ddd;
    font-size: 3rem;
    color: #111;
    cursor: pointer;
    padding: 8px 16px;
    line-height: 1;
    z-index: 2001;
    transition: background 0.3s, opacity 0.3s;
    user-select: none;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Mobile */
@media (max-width: 900px),
only screen and (hover: none) and (pointer: coarse),
only screen and (orientation: portrait) {
    
    .header {
        height: 60px;
        padding: 0 20px;
        justify-content: flex-start; /* Align to the start (Right in RTL) */
        flex-direction: row;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }
    
    .header-btn {
        height: 50px;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid #f9f9f9;
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }

    .header-btn::after {
        display: none;
    }
    
    .shop-container {
        margin-top: 0;
        gap: 20px;
        padding: 0 16px;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
    }
    
    .product-card .product-img {
        height: auto;
        aspect-ratio: 3/4;
    }
    
    .container {
        flex-direction: column;
        margin: 0 16px 20px;
        border: none;
    }
    
    .left {
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .right {
        padding: 30px 20px;
    }
    
    .main-img {
        width: 100%;
    }
    
    .option-btn {
        padding: 12px 16px;
        flex: 1 1 calc(50% - 10px);
    }

    .nav-arrow {
        background: rgba(255,255,255,0.9);
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .about-container {
        padding: 30px 20px;
        border: none;
        max-width: 100%;
    }
    
    .about-image {
        max-width: 100%;
    }

    /* Disable lightbox on mobile */
    .lightbox-overlay {
        display: none !important;
    }
}
