:root {
    --primary-color: #000000;
    --secondary-color: #C2A878; /* Elegant Gold */
    --bg-color: #FAFAFA;
    --text-color: #333333;
    --text-light: #777777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: #FFF;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF 0%, #F5F2EB 100%);
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
    padding-right: 40px;
}

.hero-content .subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transition: transform 0.5s ease-out;
}

/* Details Section */
.details-section {
    padding: 100px 0;
    background-color: #FFF;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.details-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.specs {
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.spec-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.spec-value {
    color: var(--text-light);
}

.details-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.details-image img:hover {
    transform: translateY(-10px);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

/* Video Section */
.video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background: #000;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.video-wrapper:hover .product-video {
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.video-overlay h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    font-family: var(--font-heading);
}

.video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    font-weight: 300;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    aspect-ratio: 1;
    background: #FFF;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lookbook Section */
.lookbook-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.lookbook-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

.lookbook-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    background: #FFF;
    aspect-ratio: 3/4;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/1.jpg') center/cover fixed;
    color: #FFF;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFF;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: #FFF;
    color: var(--primary-color);
    border-color: #FFF;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: #FFF;
    border-color: #FFF;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image-wrapper {
        height: 50vh;
        width: 100%;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .details-image {
        order: -1;
    }

    .cta-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .details-section {
        padding: 60px 0;
    }

    .details-text h2 {
        font-size: 2rem;
    }

    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .video-wrapper {
        height: 50vh;
        min-height: 350px;
    }

    .video-overlay h2 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .order-form-container {
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 4px;
    }

    .price-amount {
        font-size: 26px;
    }

    .floating-cta {
        width: 90%;
        max-width: 350px;
        text-align: center;
        font-size: 13px;
        padding: 15px 20px;
        bottom: 20px;
    }

    .qty-group {
        height: 45px;
    }

    .mqo-input {
        height: 45px;
        font-size: 13px;
    }

    .btn-submit {
        height: 55px;
        font-size: 13px;
    }
}

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

/* Order Form */
.order-form-container {
    background: #FFF;
    padding: 50px 40px;
    max-width: 420px;
    margin: 0 auto;
    color: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: none;
}

.price-header {
    margin-bottom: 30px;
    text-align: left;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    font-family: var(--font-body);
    letter-spacing: -1px;
}

.price-currency {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-left: 5px;
    text-transform: uppercase;
}

.qty-group {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    height: 50px;
    border: 1px solid #000;
    margin-bottom: 15px;
    background: #fff;
    transition: var(--transition);
}

.qty-group:hover {
    border-color: var(--secondary-color);
}

.qty-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.qty-btn.minus {
    border-right: 1px solid #000;
}

.qty-btn.plus {
    border-left: 1px solid #000;
}

.qty-group:hover .qty-btn.minus { border-right-color: var(--secondary-color); }
.qty-group:hover .qty-btn.plus { border-left-color: var(--secondary-color); }

.qty-input {
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    outline: none;
    width: 100%;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button, 
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group {
    margin-bottom: 12px;
}

.mqo-input {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    border: 1px solid #000;
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 0;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.mqo-input::placeholder {
    color: #999;
    opacity: 1;
}

.mqo-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.btn-submit {
    width: 100%;
    height: 60px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.3s ease;
    margin-top: 10px;
    font-family: var(--font-body);
}

.btn-submit:hover {
    background: #333;
}

.message-box {
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Hidden by default */
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: var(--font-body);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-cta:hover {
    background: #333;
    color: #fff;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

