/* LISETTE DESSERTS - Main Stylesheet */
/* Core styles for public-facing website */

/* ===============================================
   Reset and Base Styles
   =============================================== */

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

:root {
    --primary: #e3898a;
    --secondary: #D4A574;
    --text: #8b4646;
    --border: #ddd;
    --bg: #f6e9e3;
}

html,
body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

/* ===============================================
   Header & Navigation
   =============================================== */

header {
    background: var(--primary);
    color: white;
    padding: 15px 0 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

header h1 {
    margin: 0;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
}

header .logo {
    min-width: 150px;
    max-width: 200px;
    height: auto;
    display: block;
}

.header-nav {
    flex: 1;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
}

header nav a:hover {
    text-decoration: underline;
}

.header-lang {
    flex-shrink: 0;
}

/* ===============================================
   Main Content
   =============================================== */

main {
    padding: 40px 0;
    flex: 1;
}

/* ===============================================
   Headings
   =============================================== */

h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--primary);
}

/* ===============================================
   About Page
   =============================================== */

.about-hero {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 20px;
}

.about-hero h1 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-tagline {
    font-size: 1.3em;
    color: var(--text);
    font-style: italic;
}



.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5em;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg);
    border-radius: 8px;
}

.about-cta h2 {
    margin-bottom: 20px;
}

.about-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.about-images-section {
    grid-row: 1;
    grid-column: 1;
}

.about-content {
    grid-row: 1;
    grid-column: 2;
}

.about-image-bottom {
    grid-row: 2;
    grid-column: 2;
    max-width: 500px;
    margin: 20px auto 0;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-portrait {
    aspect-ratio: 4 / 5;
}

.about-image-landscape {
    aspect-ratio: 5 / 4;
}

.about-image:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #c97576;
}

/* ===============================================
   Products Grid
   =============================================== */

.category-section {
    margin-bottom: 50px;
}

.category-section h3 {
    font-size: 1.5em;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.category-description,
.product-description {
    font-size: 1.05em;
    line-height: 1.6;
}

.category-description p,
.product-description p {
    margin-bottom: 1.6em;
}

.category-description ul,
.product-description ul,
.category-description ol,
.product-description ol {
    margin-bottom: 1.6em;
    list-style-position: inside;
}

.category-description li,
.product-description li {
    margin-bottom: 0.4em;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    box-sizing: border-box;
}

.product-card h3 {
    padding: 12px 15px 8px;
    font-size: 1.05em;
    color: var(--primary);
    margin: 0;
}

.product-card p {
    padding: 0 15px 8px;
    font-size: 0.85em;
    color: #666;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    padding-left: 15px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

/* ===============================================
   Category Filter
   =============================================== */

.category-filter-wrapper {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.category-filter-label {
    color: #8b4646;
    font-weight: 500;
}

.category-filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.category-filter-btn.active {
    background: #e3898a;
    color: white;
}

.category-filter-btn.inactive {
    background: #f5e6e3;
    color: #8b4646;
}

/* ===============================================
   Product Detail Page
   =============================================== */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 0;
}

.product-detail-image {
    display: flex;
    align-items: flex-start;
}

.image-zoom-wrapper {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(139, 70, 70, 0.15);
}

.product-detail-image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.product-detail-info h1 {
    font-size: 2em;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-info img {
    max-width: 100%;
    height: auto;
}

.back-link {
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* ===============================================
   Product Description
   =============================================== */

.product-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

/* ===============================================
   Price Display
   =============================================== */

.price-display {
    font-size: 2em;
    color: #D4A574;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-contact {
    color: #999;
    font-size: 0.9em;
}

/* ===============================================
   Pricing Options
   =============================================== */

.pricing-section {
    margin-bottom: 30px;
}

.pricing-section-title {
    color: #8b4646;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9f5f3;
    border-radius: 6px;
}

.pricing-option-size {
    color: #666;
}

.pricing-option-price {
    text-align: right;
}

.pricing-option-amount {
    color: #D4A574;
    font-weight: bold;
}

.pricing-option-type {
    color: #999;
    font-size: 0.85em;
    margin-left: 8px;
}

/* Minimum + Increment Pricing Display */
.min-increment-pricing-display {
    background: #f9f5f3;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.min-increment-label {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 12px 0;
    font-style: italic;
}

.min-increment-price-info {
    margin-bottom: 15px;
}

.price-per-unit {
    color: #D4A574;
    font-weight: 600;
    font-size: 1.1em;
}

.quantity-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-input-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

.quantity-input-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.quantity-input {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 120px;
    text-align: center;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 137, 138, 0.1);
}

.total-price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.total-price-display .label {
    color: #666;
    font-size: 0.95em;
    font-weight: 500;
}

.total-price-display .price {
    color: #D4A574;
    font-weight: 700;
    font-size: 1.2em;
}

/* ===============================================
   Allergens
   =============================================== */

.allergens-section {
    margin-bottom: 30px;
}

.allergens-section-title {
    color: #8b4646;
    margin-bottom: 10px;
    font-weight: 600;
}

.allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.allergen-badge {
    background: #f5e6e3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* ===============================================
   Order Info Box
   =============================================== */

.order-info-box {
    background: #f9f5f3;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.order-info-box p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

.order-info-link {
    color: var(--primary);
    text-decoration: none;
}

.order-info-link:hover {
    text-decoration: underline;
}

/* ===============================================
   Contact Page - Display Only
   =============================================== */

.contact-detail-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.detail-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h3 {
    font-size: 1.2em;
    color: var(--text);
    margin-bottom: 15px;
}

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

.detail-group label {
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.detail-group p {
    color: #666;
    margin: 0;
}

.message-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    line-height: 1.6;
    color: #555;
}

/* ===============================================
   Preview Banner
   =============================================== */

.preview-banner {
    background: #FFB81C;
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 2px solid #FF9500;
}

/* ===============================================
   Honeypot Fields (for bot protection)
   =============================================== */

.honeypot-field {
    display: none;
    position: absolute;
    left: -9999px;
}

/* ===============================================
   Forms
   =============================================== */

form {
    max-width: 600px;
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

input,
textarea,
select {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 71, 137, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button,
a.btn-secondary,
a.btn-danger {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

button:hover,
a.btn-secondary:hover,
a.btn-danger:hover {
    background: #6d3765;
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #b8944f;
}

.btn-danger {
    background: #d9534f;
}

.btn-danger:hover {
    background: #c9302c;
}

/* ===============================================
   Messages & Alerts
   =============================================== */

.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-success {
    background: #dff0d8;
    border-color: #5cb85c;
    color: #3c763d;
}

.alert-error {
    background: #f2dede;
    border-color: #d9534f;
    color: #a94442;
}

.alert-info {
    background: #d9edf7;
    border-color: #5bc0de;
    color: #31708f;
}

/* ===============================================
   Language Switcher
   =============================================== */

.language-switcher {
    font-size: 14px;
    white-space: nowrap;
}

.language-switcher .lang-link {
    text-decoration: none;
    color: white !important;
    font-weight: 500;
    transition: all 0.2s;
}

.language-switcher .lang-link:hover {
    text-decoration: none;
}

.language-switcher .lang-link.active {
    text-decoration: underline;
    font-weight: 700;
}

.language-switcher .lang-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
}

/* ===============================================
   Footer
   =============================================== */

footer {
    background: var(--primary);
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-content p {
    margin: 0;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===============================================
   Error Pages
   =============================================== */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 6rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-title {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 600;
}

.error-message {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #d17475;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #c49564;
    text-decoration: none;
}

/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    header nav ul {
        gap: 15px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .product-detail-image {
        order: -1;
    }

    .product-detail-info img {
        max-width: 100%;
        height: auto;
    }

    .error-code {
        font-size: 4rem;
    }

    .error-title {
        font-size: 1.5rem;
    }
}

/* Wishlist Styles */
.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.wishlist-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.wishlist-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke: var(--primary);
    fill: none;
    transition: all 0.3s ease;
}

.wishlist-toggle.wishlist-active .wishlist-icon {
    fill: var(--primary);
    stroke: var(--primary);
}

.wishlist-feedback {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
}

.wishlist-feedback.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Wishlist Page */
.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.wishlist-empty p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.wishlist-header p {
    margin: 0;
    font-weight: 500;
}

.wishlist-share-link {
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--text);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.3s ease;
    cursor: pointer;
}

.wishlist-share-link:hover {
    background: #c89861;
}

.wishlist-items {
    margin-bottom: 40px;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: start;
    background: white;
}

.wishlist-item-image {
    min-width: 150px;
}

@media (max-width: 768px) {
    .wishlist-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .wishlist-item-image {
        width: 100%;
        max-width: none;
        margin: 0;
        min-width: auto;
    }

    .wishlist-item-content {
        width: 100%;
    }

    .wishlist-item-actions {
        width: 100%;
    }

    .per-person-options {
        flex-direction: column;
        width: 100%;
    }

    .per-person-option {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .per-person-option label {
        margin-bottom: 8px;
    }

    .quantity-control {
        width: 100%;
    }

    .min-increment-control {
        width: 100%;
        flex-wrap: wrap;
    }

    .min-increment-qty-input {
        width: auto;
        flex: 1;
        min-width: 60px;
    }

    .min-increment-price-total {
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
}

.wishlist-item-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}

.wishlist-item-image a {
    display: block;
}

.wishlist-item-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.1em;
    color: var(--primary);
}

.wishlist-item-content h3 a {
    text-decoration: none;
    color: var(--primary);
}

.wishlist-item-content h3 a:hover {
    text-decoration: underline;
}

.wishlist-item-price {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary);
}

.wishlist-item-price-detail {
    margin: 0 0 20px 0;
    font-size: 0.9em;
    color: #999;
}

.wishlist-item-price-invalid {
    margin: 0 0 20px 0;
    font-size: 0.95em;
    color: #d9534f;
    font-weight: 500;
}

.wishlist-item-price-contact {
    margin: 0 0 20px 0;
    font-size: 0.95em;
    color: #8b4646;
    font-weight: 500;
    font-style: italic;
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.pricing-option-btn {
    padding: 6px 12px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: 4px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-option-btn:hover {
    background: #f5f5f5;
    border-color: var(--primary);
}

.pricing-option-btn.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.wishlist-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.wishlist-item-quantity>label {
    font-weight: 600;
    margin: 0;
}

.wishlist-item-quantity label {
    font-weight: 500;
    margin: 0;
}

.wishlist-item-comment {
    width: 100%;
    min-height: 60px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95em;
    line-height: 1.4;
    resize: vertical;
    margin-top: 8px;
}

.quantity-label-spacing {
    margin-top: 12px;
    display: block;
}

.quantity-control {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
}

.qty-btn {
    background: var(--border);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 1.1em;
    padding: 0;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #ddd;
}

.qty-input {
    flex: 1;
    min-width: 60px;
    border: 1px solid var(--border);
    text-align: center;
    font-size: 1em;
    padding: 6px;
}

.qty-input:focus {
    outline: none;
    background: #fafafa;
}

/* Wishlist Min+Increment Pricing */
.wishlist-item-quantity.min-increment-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.min-increment-note {
    margin: 0;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.min-increment-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.min-increment-control .qty-btn {
    background: var(--border);
    border: none;
    color: var(--text);
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 1.1em;
    padding: 0;
}

.min-increment-control .qty-btn:hover {
    background: #ddd;
}

.min-increment-qty-input {
    width: 80px;
    padding: 6px 8px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1em;
    text-align: center;
}

.min-increment-qty-input:focus {
    outline: none;
    background: #fafafa;
}

.min-increment-price-total {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1em;
}

/* Wishlist Per-Person Multiple Servings */
.per-person-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.per-person-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f9f5f3;
    border-radius: 6px;
    border: 1px solid #f0ebe8;
}

.per-person-option label {
    flex: 1;
    margin: 0;
    font-size: 0.95em;
    color: #8b4646;
    font-weight: 500;
    min-width: 140px;
}

.per-person-option .quantity-control {
    flex-shrink: 0;
    width: auto;
}

.coverage-info {
    margin: 10px 0 0 0;
    padding: 8px 10px;
    background: #e8f5f0;
    border-left: 3px solid var(--secondary);
    font-size: 0.9em;
    color: #5a7a6e;
    font-weight: 500;
    border-radius: 2px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.wishlist-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-item {
        grid-template-columns: 120px 1fr;
        gap: 15px;
    }

    .wishlist-item-actions {
        grid-column: 2;
    }

    .wishlist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .btn {
        width: 100%;
    }

    /* About page images - mobile layout */
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-images-section {
        grid-row: 1;
        grid-column: 1;
    }

    .about-content {
        grid-row: 2;
        grid-column: 1;
    }

    .about-image-bottom {
        grid-row: 3;
        grid-column: 1;
        max-width: 100%;
        margin: 20px auto 0;
    }
}

/* ===============================================
    Mood Shots Gallery
    =============================================== */

.mood-shots-gallery {
    column-count: 3;
    column-gap: 20px;
    margin: 40px 0;
}

.mood-shot-item {
    margin: 0 0 20px 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    break-inside: avoid;
    position: relative;
}

.mood-shot-item:hover {
    transform: scale(1.02);
}

.mood-shot-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Aspect ratio overrides for different mood shot sizes */
.mood-shot-item[data-ratio="5:4"] .mood-shot-image {
    aspect-ratio: 5/4;
}

.mood-shot-item[data-ratio="4:5"] .mood-shot-image {
    aspect-ratio: 4/5;
}

.mood-shot-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    font-size: 0.95rem;
    color: white;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 70, 70, 0.8) 100%);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: var(--text);
    font-style: italic;
    padding: 15px 20px;
}

.text-center {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

/* Carousel Modal */
.mood-shots-carousel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 70, 70, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mood-shots-carousel.active {
    display: flex;
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 12px;
    padding: 20px;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--text);
    font-size: 1rem;
    background: transparent;
    padding: 15px;
    border-radius: 8px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: 2px solid var(--secondary);
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: var(--primary);
    border: 2px solid var(--secondary);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 11;
}

.carousel-close:hover {
    background: var(--secondary);
}



@media (max-width: 768px) {
    .mood-shots-gallery {
        column-count: 2;
        column-gap: 15px;
    }

    .carousel-container {
        width: 95%;
    }

    .carousel-image-wrapper {
        padding: 10px;
    }

    .carousel-nav {
        padding: 10px 15px;
        font-size: 1.5rem;
    }

    .carousel-close {
        font-size: 1.5rem;
        padding: 8px 12px;
        right: 20px;
        top: 15px;
    }

    .carousel-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .mood-shots-gallery {
        column-count: 1;
        margin: 40px auto;
        max-width: 100%;
        padding: 0 10px;
    }

    .mood-shot-item {
        cursor: default;
    }

    .carousel-container {
        width: 100%;
        height: 80vh;
        max-width: 100%;
        padding: 0;
    }

    .carousel-image-wrapper {
        padding: 15px;
        border-radius: 0;
    }

    .carousel-nav {
        padding: 8px 12px;
        font-size: 1.3rem;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }

    .carousel-close {
        font-size: 1.3rem;
        padding: 5px 10px;
        right: 10px;
        top: 10px;
    }

    .carousel-caption {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: 8px;
        font-size: 0.75rem;
    }
}

/* ===============================================
   Product Navigation (Previous/Next)
   =============================================== */

.product-navigation {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-button {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover:not(.disabled) {
    background: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(227, 137, 138, 0.1);
}

.nav-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-prev {
    justify-content: flex-start;
}

.nav-next {
    justify-content: flex-end;
}

.nav-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.nav-prev .nav-content {
    flex-direction: row;
}

.nav-next .nav-content {
    flex-direction: row-reverse;
}

.nav-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.nav-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

.nav-position {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
    color: #999;
    font-size: 0.9rem;
    white-space: nowrap;
}

.position-text {
    font-weight: 600;
    color: var(--primary);
}

.back-to-category {
    text-align: center;
}

.back-link {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(227, 137, 138, 0.1);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .product-navigation {
        padding-top: 20px;
    }

    .navigation-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-button {
        flex: 0 1 calc(50% - 6px);
        padding: 12px 15px;
        align-items: center;
    }

    .nav-content {
        flex-direction: column;
    }

    .nav-prev .nav-content {
        flex-direction: column;
    }

    .nav-next .nav-content {
        flex-direction: column;
    }

    .nav-thumbnail {
        width: 60px;
        height: 60px;
    }

    .nav-position {
        flex: 0 0 100%;
        margin: 10px 0;
    }

    .nav-product-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-navigation {
        padding-top: 15px;
    }

    .nav-button {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .nav-thumbnail {
        width: 50px;
        height: 50px;
    }

    .nav-label {
        font-size: 0.75rem;
    }

    .nav-product-name {
        font-size: 0.8rem;
    }
}