/* General Body Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF; /* White text for black background */
    background-color: #000000; /* Black background */
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000000; /* Black header background */
    border-bottom: 1px solid #333333; /* Subtle border */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #FFFFFF; /* White logo text */
}

.nav-links a {
    color: #FFFFFF; /* White nav links */
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #CCCCCC; /* Lighter white on hover */
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    background-color: #000000; /* Black background for hero */
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #FFFFFF; /* White title text */
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.cta-button {
    background-color: #FFFFFF; /* White button */
    color: #000000; /* Black text on button */
    padding: 15px 30px;
    border: none;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: #CCCCCC; /* Light gray on hover */
    color: #000000;
}

.hero-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder img {
    max-width: 100%;
    height: auto;
    border: 1px solid #333333; /* Subtle border for image */
}

/* Section Headings */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF; /* White heading text */
    margin-bottom: 60px;
    padding-top: 80px;
}

/* Founders Section */
.founders-section {
    background-color: #000000; /* Black background */
    padding: 80px 5%;
    text-align: center;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background-color: #111111; /* Slightly lighter black for card background */
    padding: 40px;
    border: 1px solid #333333;
    border-radius: 5px;
    text-align: center;
}

.founder-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    border: 3px solid #FFFFFF; /* White border around photo */
}

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

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #FFFFFF; /* White text */
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.1em;
    color: #BBBBBB; /* Lighter gray for titles */
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 1em;
    color: #DDDDDD; /* Slightly off-white for bio text */
    line-height: 1.7;
}

/* Vision Section */
.vision-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    background-color: #000000; /* Black background */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content {
    flex: 1;
    text-align: left;
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: #FFFFFF; /* White title */
    margin-bottom: 25px;
}

.vision-text {
    font-size: 1.15em;
    color: #DDDDDD; /* Off-white text */
    line-height: 1.8;
    margin-bottom: 30px;
}

.learn-more {
    color: #FFFFFF; /* White link */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #CCCCCC; /* Lighter white on hover */
}

.vision-image {
    flex: 1;
    text-align: center;
}

.vision-img {
    max-width: 100%;
    height: auto;
    border: 1px solid #333333; /* Subtle border */
}

.vision-caption {
    font-size: 0.9em;
    color: #AAAAAA; /* Gray caption text */
    margin-top: 15px;
}

/* Featured Section (Signature Collection) */
.featured-section {
    background-color: #000000; /* Black background */
    padding: 80px 5%;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #111111; /* Slightly lighter black for card background */
    padding: 30px;
    border: 1px solid #333333;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image {
    width: 100%;
    height: 300px; /* Fixed height for consistent image size */
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF; /* White text */
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2em;
    color: #BBBBBB; /* Lighter gray for price */
    margin-bottom: 20px;
}

.view-details-btn {
    background-color: #FFFFFF; /* White button */
    color: #000000; /* Black text on button */
    padding: 12px 25px;
    border: none;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-details-btn:hover {
    background-color: #CCCCCC; /* Light gray on hover */
    color: #000000;
}

/* Footer Styles */
.main-footer {
    background-color: #000000; /* Black footer background */
    color: #FFFFFF; /* White footer text */
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #333333; /* Subtle border */
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: left;
}

.footer-col .col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #FFFFFF; /* White title */
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #DDDDDD; /* Off-white links */
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFFFFF; /* White on hover */
}

.newsletter input[type="email"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555555;
    background-color: #222222; /* Dark input background */
    color: #FFFFFF; /* White input text */
}

.newsletter button {
    background-color: #FFFFFF; /* White button */
    color: #000000; /* Black text on button */
    padding: 10px 20px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter button:hover {
    background-color: #CCCCCC; /* Light gray on hover */
    color: #000000;
}

.social-icons {
    margin-top: 25px;
}

.social-icons i {
    color: #FFFFFF; /* White icons */
    font-size: 1.5em;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #CCCCCC; /* Lighter white on hover */
}

.copyright {
    margin-top: 60px;
    font-size: 0.9em;
    color: #AAAAAA; /* Gray copyright text */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section, .vision-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .vision-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 3em;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 15px 5%;
    }

    .nav-links {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .section-heading {
        font-size: 2em;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-col .col-title {
        text-align: center;
    }

    .newsletter input[type="email"] {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .hero-title {
        font-size: 2em;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .section-heading {
        font-size: 1.8em;
    }

    .founder-name {
        font-size: 1.5em;
    }

    .vision-title {
        font-size: 2.5em;
    }

    .product-name {
        font-size: 1.3em;
    }

    .product-price {
        font-size: 1em;
    }

    .view-details-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* 🛍️ Collection Page Black and White Theme CSS */

/* Global Reset and Base Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF; /* White text for black background */
    background-color: #000000; /* Black background */
    line-height: 1.6;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #CCCCCC;
}

/* Header Styles (Copied from previous file for consistency) */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000000;
    border-bottom: 1px solid #333333;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #FFFFFF;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #CCCCCC;
}

/* --- Main Collection Content --- */

/* Collection Hero/Banner */
.collection-main {
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-hero {
    text-align: center;
    padding: 60px 0 80px 0;
    background-color: #000000;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.collection-intro {
    font-size: 1.2em;
    color: #BBBBBB;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Grid Layout */
.full-product-grid {
    padding-bottom: 80px;
}

.collection-layout {
    display: grid;
    /* Adjust grid columns for a collection page */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Product Card Styling */
.product-card {
    background-color: #111111; /* Slightly lighter black for card background */
    padding: 30px;
    border: 1px solid #333333;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Ensure button is at the bottom */
}

.product-image {
    width: 100%;
    /* Use a fixed aspect ratio or height for image consistency */
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2em;
    color: #BBBBBB;
    margin-bottom: 25px;
}

.add-to-cart-btn {
    background-color: #FFFFFF; /* White button */
    color: #000000; /* Black text on button */
    padding: 12px 25px;
    border: none;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background-color: #CCCCCC; /* Light gray on hover */
    color: #000000;
}


/* Footer Styles (Copied from previous file for consistency) */
.main-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: left;
}

.footer-col .col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #DDDDDD;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.newsletter input[type="email"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555555;
    background-color: #222222;
    color: #FFFFFF;
}

.newsletter button {
    background-color: #FFFFFF;
    color: #000000;
    padding: 10px 20px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter button:hover {
    background-color: #CCCCCC;
    color: #000000;
}

.social-icons {
    margin-top: 25px;
}

.social-icons i {
    color: #FFFFFF;
    font-size: 1.5em;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #CCCCCC;
}

.copyright {
    margin-top: 60px;
    font-size: 0.9em;
    color: #AAAAAA;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-layout {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 15px 5%;
    }

    .nav-links {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .page-title {
        font-size: 2.5em;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-col .col-title {
        text-align: center;
    }

    .newsletter input[type="email"] {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .page-title {
        font-size: 2em;
    }

    .product-image {
        height: 250px;
    }

    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}/* Add this to your style.css file */
.nav-links a .fa-home {
    margin-right: 5px; /* Adds space after the icon */
}@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }
}


/* --- SIGNATURE COLLECTION STYLING --- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px 30px; /* Generous vertical spacing for a luxury feel */
    padding: 40px 5%;
}

.product-card {
    background: transparent;
    transition: transform 0.3s ease;
}

/* 1. Image Styling */
.product-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5; /* Elegant portrait ratio */
    overflow: hidden;
    cursor: pointer;
    background-color: #111;
    margin-bottom: 15px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Hover Effects */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Subtle dimming */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

/* 3. Typography */
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #c5a059; /* Champagne Gold */
    font-weight: 300;
    margin-bottom: 20px;
    display: block;
}

/* 4. Elegant Button */
.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 14px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Container for Qty and Add Button */
.product-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Luxury Qty Selector */
.qty-input {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    background: transparent;
    height: 40px;
    width: 100px;
}

.qty-input button {
    background: transparent;
    border: none;
    color: #fff;
    width: 30px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.qty-input button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-input input {
    width: 40px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    outline: none;
    /* Hide arrows */
    -moz-appearance: textfield;
}

.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.color-selector {
    display: flex;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.color-chip {
    cursor: pointer;
}

.color-chip input {
    display: none; /* Hide the radio button */
}

.color-chip span {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.color-chip input:checked + span {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
    font-weight: bold;
}
/* Navigation Dropdown Styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    padding: 15px;
    z-index: 1001;
    right: 0; /* Aligns dropdown to the right of the link */
    top: 100%;
    border: 1px solid #333;
    text-align: left;
}

.dropdown-content p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.dropdown-content a {
    color: #ffffff !important;
    padding: 0 !important;
    display: inline !important;
    text-decoration: underline !important;
}



#reviewContainer {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 40px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

#reviewContainer::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px); /* Apple-esque glass effect */
    padding: 30px;
    border-radius: 12px;
    min-width: 300px;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Navigation Button Styling */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev { left: -60px; }
.next { right: -60px; }

/* Responsive fix: on mobile, hide buttons and rely on touch swipe */
@media (max-width: 768px) {
    .nav-btn { display: none; }
    .prev { left: 10px; }
    .next { right: 10px; }
}
.review-stars {
    margin-top: 10px;
    font-size: 18px;
    /* This hex code provides a sophisticated gold rather than a bright yellow */
    color: #D4AF37; 
    /* Optional: adds a very subtle glow to the stars */
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}