:root {
    --bg-color: #fffaf5;
    --text-color: #2c2c2c;
    --accent-color: #d4af37;
    --gray-light: #f0ebe5;
    --gray-medium: #8c857b;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

a:hover~.cursor-outline,
button:hover~.cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-color);
}

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: background-color 0.3s, padding 0.3s;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width var(--transition-base);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn,
.cart-btn,
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.cart-count {
    font-size: 0.8rem;
    opacity: 0.6;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1px;
    background-color: var(--text-color);
}

/* Mobile Cart FAB */
.mobile-cart-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 99;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-cart-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.15);
}

.mobile-cart-fab:active {
    transform: scale(0.95);
}

.mobile-cart-fab svg {
    width: 24px;
    height: 24px;
}

.mobile-cart-fab .cart-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    /* Reduced from 100vh */
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* filter: grayscale(100%) contrast(1.1); */
    transition: transform 10s ease;
}

.hero:hover .hero-bg img {
    transform: scale(1.05);
}

.hero-content {
    width: 100%;
    padding-top: 4rem;
}

.hero h1 {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    mix-blend-mode: difference;
    color: #fff;
}

.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
    color: #fff;
    mix-blend-mode: difference;
}

/* Collection Section */
.collection {
    padding: 8rem 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 4rem;
}

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

.view-all {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem 2rem;
}

.product-card {
    group: product;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
    background-color: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(100%);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    display: flex;
    justify-content: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.add-to-cart {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
}

.product-info .price {
    font-family: var(--font-sans);
    color: var(--gray-medium);
}

/* Categories Section */
.categories {
    padding: 0 2rem 8rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 4px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    color: #fff;
}

.category-overlay .btn-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.category-overlay .btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.category-card:hover .btn-text::after {
    width: 100%;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee */
.marquee-section {
    padding: 4rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: inline-block;
}

.marquee span {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 0 2rem;
    color: var(--gray-medium);
}

.separator {
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Product Page */
.product-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.breadcrumb a:hover {
    color: var(--text-color);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    background-color: var(--gray-light);
}

.product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-details .price {
    font-size: 1.5rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
}

.product-details .description {
    margin-bottom: 3rem;
    color: #555;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

.quantity-selector {
    display: flex;
    border: 1px solid #ddd;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    -moz-appearance: textfield;
}

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

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.accordions {
    margin-top: 4rem;
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details h1 {
        font-size: 2.5rem;
    }
}

/* Products Page */
.products-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.products-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.filter-bar a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--gray-medium);
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.filter-bar a:hover,
.filter-bar a.active {
    color: var(--text-color);
    border-color: var(--text-color);
}

/* Cart Page */
.cart-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: 60vh;
}

.cart-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cart-header h1 {
    font-size: 3rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    /* Increased gap */
}

.cart-items-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-medium);
    font-weight: 500;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    align-items: center;
    padding: 2.5rem 0;
    /* Increased padding */
    border-bottom: 1px solid var(--gray-light);
}

.cart-item-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cart-item-info img {
    width: 100px;
    /* Larger image */
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    /* Soft radius */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.cart-item-details h3 {
    font-family: var(--font-serif);
    /* Serif font for elegance */
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cart-item-details .price {
    color: var(--gray-medium);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-medium);
    cursor: pointer;
    margin-top: 1rem;
    padding: 0.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: var(--accent-color);
    /* Accent color on hover */
    text-decoration: none;
}

.cart-item-quantity .quantity-selector {
    border-color: var(--gray-light);
}

.cart-item-total {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.cart-summary {
    background-color: #fff;
    /* White background */
    padding: 2.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
    border: 1px solid var(--gray-light);
    /* Subtle border */
    border-radius: 4px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--text-color);
}

.summary-divider {
    height: 1px;
    background-color: var(--gray-light);
    margin: 1.5rem 0;
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--text-color);
}

.checkout-btn {
    margin-top: 2rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .cart-item-info {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-summary {
        position: static;
        margin-top: 2rem;
    }
}

/* Checkout Page */
.checkout-header {
    position: absolute;
    background: transparent;
    padding: 2rem 0;
}

.checkout-header .nav-links,
.checkout-header .nav-actions,
.checkout-header .mobile-menu-btn {
    display: none;
}

.checkout-secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.checkout-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: 80vh;
    background-color: var(--bg-color);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.checkout-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.checkout-form-section h2:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    background-color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row .form-group {
    width: 100%;
}

.payment-mockup {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--gray-light);
}

.pay-btn {
    margin-top: 2rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.checkout-summary-section {
    position: sticky;
    top: 4rem;
    height: fit-content;
}

.checkout-summary {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-serif);
}

.checkout-item-info p {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.checkout-item-price {
    font-size: 0.95rem;
    font-weight: 500;
}

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

.modal-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .checkout-summary-section {
        position: static;
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: #888;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #444;
}

.newsletter-form input {
    background: none;
    border: none;
    padding: 1rem 0;
    color: #fff;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }

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

@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-actions .search-btn,
    .nav-actions .cart-text {
        display: none;
    }

    /* Hide desktop cart button, show mobile FAB */
    .nav-actions .cart-btn {
        display: none;
    }

    .mobile-cart-fab {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 101;
    }

    .mobile-menu-btn.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu-btn span {
        transition: transform 0.3s ease;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* Hide custom cursor on touch */
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    background-color: #fff;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Muse Section */
.muse {
    padding: 8rem 2rem;
}

.muse .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.muse .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.muse .section-header p {
    color: var(--gray-medium);
    font-style: italic;
}

.muse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-gallery {
    display: flex;
    gap: 2rem;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80px;
    flex-shrink: 0;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s, opacity 0.3s;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--text-color);
    opacity: 1;
}

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

.main-image {
    flex-grow: 1;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: crosshair;
    /* Indicates zoom capability */
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
    /* Faster transition for responsiveness */
    transform-origin: center center;
    will-change: transform;
}

@media (max-width: 768px) {
    .product-gallery {
        flex-direction: column-reverse;
    }

    .product-thumbnails {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .thumbnail {
        width: 60px;
    }
}

.muse-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--gray-light);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2.5rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {

    .benefits-grid,
    .muse-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .muse-card {
        aspect-ratio: 1/1;
    }
}

/* Journal Section */
.journal {
    padding: 8rem 2rem;
}

.journal .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.journal-card {
    cursor: pointer;
}

.journal-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.journal-content {
    text-align: left;
}

.journal-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-medium);
    display: block;
    margin-bottom: 0.5rem;
}

.journal-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    line-height: 1.4;
}

.read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.journal-card:hover .read-more {
    border-bottom-color: var(--text-color);
}

@media (max-width: 768px) {
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Essence (Collage) Section */
.essence-section {
    padding: 8rem 2rem;
    overflow: hidden;
}

.essence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.essence-visuals {
    position: relative;
    height: 600px;
}

.essence-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 85%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    z-index: 1;
}

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

.essence-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    border: 8px solid var(--bg-color);
}

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

.essence-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.essence-content p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 450px;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .essence-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .essence-visuals {
        height: 500px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .essence-content {
        text-align: center;
    }

    .essence-content p {
        margin: 0 auto 3rem;
    }
}