/* Global Styles */
:root {
    --primary-color: #a67c52;
    --secondary-color: #f9f5f0;
    --dark-color: #212121;
    --light-color: #ffffff;
    --text-color: #333333;
    --border-color: rgba(166, 124, 82, 0.3);
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align .section-line {
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-container {
    transform: scale(0);
    opacity: 0;
    /* Removing this animation as it's handled by GSAP in main.js */
    /* animation: logoReveal 1.2s forwards 0.3s; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    max-width: 200px;
    border-radius: 50%;
}

/* We can keep this keyframe definition for possible future use, 
   but it's not being used now since we're using GSAP */
@keyframes logoReveal {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

nav.scrolled .nav-link {
    color: var(--dark-color);
}

nav.scrolled .nav-link::after {
    background-color: var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

nav.scrolled .logo img {
    height: 40px;
}

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

.nav-link {
    margin: 0 15px;
    position: relative;
    font-weight: 500;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.nav-link:hover {
    color: var(--light-color);
    opacity: 0.8;
}

nav.scrolled .nav-link:hover {
    color: var(--primary-color);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--light-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

nav.scrolled .hamburger,
nav.scrolled .hamburger::before,
nav.scrolled .hamburger::after {
    background-color: var(--dark-color);
}

.nav-actions .btn {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
    border-radius: 50px;
    font-size: 0.9rem;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-actions .btn:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

nav.scrolled .nav-actions .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

nav.scrolled .nav-actions .btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-link {
    margin: 10px 0;
    font-weight: 500;
}

.mobile-btn {
    margin-top: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 3;
    text-align: center;
}

.hero-content {
    flex-basis: auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--light-color);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    display: none;
}

.hero-image {
    display: none;
}

.hero-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

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

.dot.active {
    background-color: var(--light-color);
}

/* Collections Section */
.collections {
    padding: 120px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

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

.collection-image-left,
.collection-image-right {
    flex-basis: 25%;
    position: relative;
}

.collection-image-left img,
.collection-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.collection-content {
    flex-basis: 50%;
    text-align: center;
    padding: 0 40px;
    max-width: 700px;
    margin: 0 auto;
}

.collection-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
}

.collection-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.collection-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.shop-all-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.shop-all-btn:hover {
    transform: translateY(-3px);
}

.story-btn {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    font-weight: 600;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.story-btn .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.story-btn:hover .arrow {
    transform: translateX(5px);
}

@media screen and (max-width: 992px) {
    .collection-image-left,
    .collection-image-right {
        display: none;
    }
    
    .collection-content {
        flex-basis: 100%;
        padding: 0 20px;
    }
    
    .collection-heading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .collection-heading {
        font-size: 2rem;
    }
    
    .collection-actions {
        flex-direction: column;
        gap: 20px;
    }
}

/* Jewelry Section */
.jewelry {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.jewelry-featured {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.jewelry-featured-content {
    flex: 1;
}

.jewelry-featured-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.jewelry-featured-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.jewelry-featured-image {
    flex: 1;
    position: relative;
}

.jewelry-featured-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    z-index: 0;
}

.jewelry-featured-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: var(--box-shadow);
}

.jewelry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jewelry-card {
    flex-basis: calc(25% - 20px);
    margin-bottom: 40px;
    text-align: center;
    transition: var(--transition);
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: var(--light-color);
}

.jewelry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--border-color);
}

.jewelry-image {
    margin-bottom: 20px;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewelry-image img {
    max-height: 100%;
    transition: var(--transition);
}

.jewelry-card:hover .jewelry-image img {
    transform: scale(1.05);
}

.jewelry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.jewelry-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

/* About Section */
.about {
    padding: 0;
    background-color: var(--light-color);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.about-image-container {
    position: relative;
    background-color: #f0f0f0;
    overflow: hidden;
    min-height: 500px; /* Add specific height */
    width: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensure block display */
    position: relative; /* Change from absolute to relative */
    z-index: 1; /* Add z-index to ensure it's visible */
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
}

.about-overlay-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.about-content-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-color);
}

.about-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-cta {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.about-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
}

.about-link {
    margin-left: 30px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.about-link .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--primary-color);
}

.about-link:hover .arrow {
    transform: translateX(5px);
}

.about-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .about-image-container {
        height: 60vh;
    }
    
    .about-content-container {
        padding: 60px 40px;
    }
    
    .about-slider-dots {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .about-overlay-heading {
        font-size: 2.5rem;
    }
    
    .about-content-container {
        padding: 50px 30px;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-link {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Hide old about styles */
.about-block {
    display: none;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: var(--light-color);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review-card {
    flex-basis: calc(33.33% - 30px);
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.stars {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    min-height: 200px;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    display: none;
}

.faq-container {
    display: none;
}

.faq-item {
    display: none;
}

.faq-question {
    display: none;
}

.faq-question h3 {
    display: none;
}

.faq-icon {
    display: none;
}

.faq-question:hover h3 {
    display: none;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-icon {
    display: none;
}

.faq-item.active .faq-answer {
    display: none;
}

/* Order Section */
.order {
    display: none;
}

.order-container {
    display: none;
}

.order-form-container {
    display: none;
}

.order-form {
    display: none;
}

.form-group {
    display: none;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    display: none;
}

.order-benefits {
    display: none;
}

.order-benefits h3 {
    display: none;
}

.order-benefits h3::after {
    display: none;
}

.benefits-list li {
    display: none;
}

.benefits-list i {
    display: none;
}

/* FAQ accordion in footer */
.faq-accordion {
    display: none;
}

.faq-heading {
    display: none;
}

.faq-icon:before,
.faq-icon:after {
    display: none;
}

.faq-answer p {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-logo {
    flex-basis: 25%;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-style: italic;
    opacity: 0.8;
}

.footer-links {
    flex-basis: 70%;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex-basis: 30%;
}

.footer-column h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-column i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .collection-card, .jewelry-card {
        flex-basis: calc(50% - 20px);
    }
    
    .collections-container {
        flex-wrap: wrap;
    }

    .jewelry-featured {
        flex-direction: column;
    }
    
    .jewelry-featured-image::before {
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .review-card {
        flex-basis: calc(50% - 20px);
    }

    .collection-card {
        flex-basis: 100%;
    }
    
    .jewelry-card {
        flex-basis: calc(50% - 20px);
    }

    .order-form-container,
    .order-benefits {
        flex-basis: 100%;
    }

    .order-benefits {
        margin-top: 50px;
    }

    .footer-logo,
    .footer-links {
        flex-basis: 100%;
    }

    .footer-logo {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .review-card {
        flex-basis: 100%;
    }

    .collection-card {
        flex-basis: 100%;
    }

    .jewelry-card {
        flex-basis: 100%;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

/* Fragrances Section */
.fragrances {
    position: relative;
    padding: 0;
    background-color: var(--light-color);
    min-height: 120vh; /* Increased from 110vh to 120vh */
    display: flex;
    align-items: center;
}

.fragrances-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fragrances-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 170px 40px; /* Increased from 150px to 170px for even more vertical space */
    z-index: 2;
}

.fragrances-content {
    max-width: 500px;
    margin-left: 5%;
}

.fragrances-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-color);
}

.fragrances-subheading {
    display: none;
}

.fragrances-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 0;
    border-bottom: 1px solid var(--light-color);
    transition: all 0.3s ease;
}

.fragrances-btn .arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.fragrances-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.fragrances-btn:hover .arrow {
    transform: translateX(5px);
}

.fragrances-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
    .fragrances-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    
    .fragrances-heading {
        font-size: 2.5rem;
    }
    
    .fragrances-slider-nav {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 576px) {
    .fragrances-heading {
        font-size: 2rem;
    }
}

/* Hide the old fragrances card styles */
.fragrance-card {
    display: none;
}

/* Best Selling Section */
.best-selling {
    padding: 120px 0;
    background-color: var(--light-color);
}

.best-selling-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
}

.best-selling-heading {
    text-align: center;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    margin: 0 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
}

.tab-btn.active {
    color: var(--dark-color);
    border-bottom: 2px solid var(--dark-color);
}

.tab-btn:hover:not(.active) {
    color: #555;
}

.product-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0 20px;
    /* Hide scrollbar for clean appearance but maintain functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    cursor: pointer;
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    margin-right: 20px;
}

.product-card:last-child {
    margin-right: 0;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    background-color: var(--light-color);
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-price {
    font-size: 1rem;
    color: #666;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 6px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 992px) {
    .product-card {
        min-width: 240px;
        width: 240px;
    }
    
    .shop-nav {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .best-selling-heading {
        font-size: 2.5rem;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Hide the old jewelry styles */
.jewelry-featured, 
.jewelry-card {
    display: none;
}

/* Product Detail Section */
.product-detail {
    padding: 120px 0;
    background-color: var(--light-color);
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.product-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--dark-color);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-top: 20px;
    transition: color 0.3s ease;
}

.product-view-link .arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.product-view-link:hover {
    color: var(--primary-color);
}

.product-view-link:hover .arrow {
    transform: translateX(5px);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
}

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

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

@media screen and (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info-column {
        order: -1;
    }
    
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
}

/* Full-width CTA Section */
.full-cta {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 3;
    color: var(--light-color);
}

.cta-heading {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .full-cta {
        height: 70vh;
    }
    
    .cta-heading {
        font-size: 3rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .cta-heading {
        font-size: 2.2rem;
    }
    
    .cta-content {
        padding: 0 20px;
    }
}

/* Testimonial Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-color);
    text-align: center;
    position: relative;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    padding: 0 40px;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.quote {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    font-family: 'Playfair Display', serif;
}

.quote::before {
    top: -30px;
    left: -20px;
}

.quote::after {
    bottom: -60px;
    right: -20px;
}

.customer-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-top: 40px;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--dark-color);
}

.prev-arrow,
.next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.prev-arrow:hover,
.next-arrow:hover {
    color: var(--dark-color);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

@media screen and (max-width: 768px) {
    .quote {
        font-size: 2rem;
    }
    
    .prev-arrow,
    .next-arrow {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .quote {
        font-size: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 0;
    }
}

/* Hide old reviews styles */
.review-card {
    display: none;
}

/* Dark Footer Section */
.dark-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 120px 0 0;
    position: relative;
}

.footer-navigation {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: var(--light-color);
    text-decoration: none;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    padding: 80px 40px;
    text-align: center;
}

.footer-logo {
    font-size: 10rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--light-color);
    line-height: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-link:hover {
    color: var(--light-color);
}

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    background-color: var(--light-color);
}

.faq-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-question {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background-color: var(--dark-color);
    transition: transform 0.3s ease;
}

.faq-icon:before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon:after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon:after {
    transform: translateX(-50%) scaleY(0);
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
}

.faq-answer p {
    padding-bottom: 30px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

@media screen and (max-width: 992px) {
    .footer-navigation {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        font-size: 7rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-logo {
        font-size: 5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Shop Page Styles */
.shop-header-simple {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.shop-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shop-nav {
    display: flex;
    gap: 40px;
}

.shop-nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    transition: color 0.3s;
}

.shop-nav-link:hover, 
.shop-nav-link.active {
    color: #999;
}

.shop-search {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-icon, 
.bag-icon {
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s;
}

.search-icon:hover, 
.bag-icon:hover {
    color: #999;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 50px auto 30px;
    padding: 0 40px;
}

.category-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-filters {
    display: flex;
    gap: 30px;
}

.category-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.category-link:hover,
.category-link.active {
    color: #333;
}

.shop-categories {
    padding: 0 0 100px;
    background-color: var(--light-color);
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    cursor: pointer;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
    background-color: var(--light-color);
}

.product-name {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

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

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-nav {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-search {
        display: none;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.product-category {
    display: none;
    width: 100%;
}

.product-category.active {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.shop-container .product-category .product-card {
    flex: 0 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 576px) {
    .product-grid {
        gap: 20px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        grid-template-columns: none;
    }
    
    .product-card {
        min-width: 220px;
        width: 220px;
        flex-shrink: 0;
    }
    
    .shop-search {
        display: none;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Shop Hero Banner */
.shop-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.shop-all-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
}

.hero-content {
    margin-top: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 992px) {
    .hero-heading {
        font-size: 4rem;
    }
}

@media screen and (max-width: 576px) {
    .shop-hero {
        padding: 30px;
        height: 60vh;
        min-height: 400px;
    }
    
    .shop-hero-bg {
        object-position: center;
    }
    
    .shop-all-label {
        margin-bottom: 60px;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
}

/* About Page Styles */
.about-header-simple {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.about-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-nav {
    display: flex;
    gap: 40px;
}

.about-nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    transition: color 0.3s;
}

.about-nav-link:hover, 
.about-nav-link.active {
    color: #999;
}

.about-search {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 40px;
    text-align: center;
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.about-hero-heading {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--light-color);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-color);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
    color: var(--light-color);
    z-index: 3;
}

.scroll-down i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.grid-image {
    height: 100vh;
    overflow: hidden;
}

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

@media screen and (max-width: 1200px) {
    .about-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-image {
        height: 50vh;
    }
    
    .about-hero-heading {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .about-nav {
        display: none;
    }
    
    .about-hero {
        padding: 100px 20px;
    }
    
    .about-hero-heading {
        font-size: 2.5rem;
    }
    
    .about-hero-text {
        font-size: 1rem;
    }
    
    .about-hero-bg {
        object-position: center;
    }
}

@media screen and (max-width: 576px) {
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-search {
        display: none;
    }
    
    .about-hero-heading {
        font-size: 2rem;
    }
}

.about-mission {
    padding: 120px 0;
    background-color: #fff;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content {
    max-width: 580px;
}

.mission-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.mission-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

@media screen and (max-width: 992px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-content {
        max-width: 100%;
    }
    
    .mission-heading {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about-mission {
        padding: 80px 0;
    }
    
    .mission-heading {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 576px) {
    .mission-heading {
        font-size: 1.8rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
}

/* Our Story Section */
.about-story {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    height: 100%;
}

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

.story-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.story-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.story-btn {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.story-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.story-btn:hover .arrow {
    transform: translateX(5px);
}

/* Our Founder Section */
.about-founder {
    padding: 120px 0;
    background-color: #fff;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.founder-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.founder-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.founder-btn {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.founder-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.founder-btn:hover .arrow {
    transform: translateX(5px);
}

.founder-image {
    height: 100%;
}

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

@media screen and (max-width: 992px) {
    .story-container,
    .founder-container {
        grid-template-columns: 1fr;
    }
    
    .story-image,
    .founder-image {
        height: 500px;
    }
    
    .story-content,
    .founder-content {
        padding: 60px 40px;
    }
    
    .story-heading,
    .founder-heading {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .about-story,
    .about-founder {
        padding: 80px 0;
    }
    
    .story-content,
    .founder-content {
        padding: 40px 30px;
    }
    
    .story-image,
    .founder-image {
        height: 400px;
    }
    
    .story-heading,
    .founder-heading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .story-heading,
    .founder-heading {
        font-size: 2rem;
    }
    
    .story-text,
    .founder-text {
        font-size: 1rem;
    }
    
    .story-image,
    .founder-image {
        height: 300px;
    }
}

/* Floating Bag Button and Cart Dialog */
.floating-bag {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-bag:hover {
    transform: translateY(-5px);
    background-color: #333;
}

.bag-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    font-size: 1.6rem;
}

.bag-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: flex-end;
    align-items: stretch;
}

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

.cart-dialog {
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--light-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.cart-overlay.active .cart-dialog {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.cart-back {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.cart-back:hover {
    color: var(--primary-color);
}

.cart-title {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark-color);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 40px 0;
}

.cart-empty h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cart-empty p {
    color: #666;
    margin-bottom: 30px;
}

.cart-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.cart-btn:hover {
    transform: translateY(-3px);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

@media screen and (max-width: 576px) {
    .floating-bag {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .bag-button {
        font-size: 1.4rem;
    }
    
    .cart-dialog {
        padding: 20px;
    }
    
    .cart-empty h2 {
        font-size: 1.5rem;
    }
}

/* Cart Items and Notification Styles */
.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.cart-item-price {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e5e5e5;
}

.cart-item-quantity span {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 0;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff4d4d;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
    margin-bottom: 20px;
}

.subtotal-text {
    font-weight: 500;
    font-size: 1rem;
}

.subtotal-amount {
    font-weight: 600;
    font-size: 1.1rem;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cart-notification {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 576px) {
    .cart-notification {
        bottom: 90px;
        right: 20px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* Quick Add to Cart Button */
.quick-add-btn {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

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

@media screen and (max-width: 768px) {
    .quick-add-btn {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        bottom: 60px;
        padding: 8px 15px;
        font-size: 0.7rem;
    }
}

/* Product Detail Page Styles */
.product-detail-page {
    padding: 60px 0;
}

.product-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.product-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-image {
    width: 100%;
    max-width: 500px;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    flex: 1;
    padding-top: 20px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-price {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.option-group {
    margin-bottom: 20px;
}

.option-title {
    display: inline-block;
    font-weight: 500;
    margin-bottom: 10px;
}

.size-guide-link {
    display: inline-block;
    float: right;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.options-container {
    display: flex;
    gap: 10px;
}

.size-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option.active, .size-option:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.add-to-bag-btn {
    width: 100%;
    padding: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.product-benefits {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit i {
    margin-right: 15px;
    font-size: 18px;
}

.related-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related-products .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 992px) {
    .product-detail-container {
        flex-direction: column;
    }
    
    .product-images,
    .product-info {
        width: 100%;
    }
    
    .related-products-container {
        flex-wrap: wrap;
    }
    
    .related-products-container .product-card {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 576px) {
    .product-title {
        font-size: 24px;
    }
    
    .options-container {
        flex-wrap: wrap;
    }
    
    .related-products-container .product-card {
        width: 100%;
    }
}

.brand-logo img {
    height: 60px;
    transition: var(--transition);
}

.brand-logo:hover img {
    opacity: 0.9;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(
        circle,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

.nav-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px; /* Make it taller to extend beyond the nav area */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.shop-container .product-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0 20px;
    /* Hide scrollbar for clean appearance but maintain functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.shop-container .product-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.shop-container .product-card {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    cursor: pointer;
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    margin-right: 20px;
}

.shop-container .product-card:last-child {
    margin-right: 0;
}