:root {
    --detail-card-bg: linear-gradient(180deg, #fffdfb 0%, #fff7f2 100%);
    --detail-border: #ecddd3;
    --detail-shadow: 0 24px 60px rgba(110, 63, 55, 0.09);
    --detail-radius: 24px;
    --pdp-gap: 28px;
}

/* ═══════════════════════════════════════════════
   OUTER CARD
   ═══════════════════════════════════════════════ */
.product-summary-panel {
    position: relative;
    padding: 28px 28px 28px;
    border: 1px solid var(--detail-border);
    border-radius: var(--detail-radius);
    background: var(--detail-card-bg);
    box-shadow: var(--detail-shadow);
    display: flex;
    flex-direction: column;
    gap: var(--pdp-gap);
}

/* ═══════════════════════════════════════════════
   ROW 1 — Category chip + Favorite
   ═══════════════════════════════════════════════ */
.product-summary-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-summary-toprow__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* Category chip */
.product-category-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--detail-border);
    background: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a5e55;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.product-category-chip:hover {
    background: #fff;
    border-color: #c9a89a;
    color: var(--primary-color, #7e3739);
}

/* Collection / tag pills */
.product-tag-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(126, 55, 57, 0.08);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-color, #7e3739);
    white-space: nowrap;
}

/* Favorite button */
.product-summary-toprow__fav {
    flex-shrink: 0;
}

.product-favorite-btn {
    width: 46px !important;
    height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--detail-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    box-shadow: 0 4px 14px rgba(110, 63, 55, 0.07) !important;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.product-favorite-btn:hover {
    border-color: var(--primary-color, #7e3739) !important;
    background: #fff8f8 !important;
}

/* ═══════════════════════════════════════════════
   ROW 2 — Product Title
   ═══════════════════════════════════════════════ */
.product-summary-title {
    margin: 0 !important;
    font-size: clamp(28px, 3.2vw, 42px) !important;
    line-height: 1.05 !important;
    font-weight: 600 !important;
    color: #1e1614 !important;
    letter-spacing: -0.01em;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════════
   ROW 3 — Short Description
   ═══════════════════════════════════════════════ */
.product-summary-description {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #7a6b65 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    /* max 3 readable lines — truncates gracefully */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════ */
.product-summary-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--detail-border), transparent);
    border: none;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   ROW 4 — Price
   ═══════════════════════════════════════════════ */
.product-price-panel {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price-panel__amount {
    font-size: clamp(30px, 3.6vw, 40px) !important;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-color, #7e3739);
    letter-spacing: -0.03em;
}

.product-price-panel__vat {
    font-size: 12px;
    color: #a08b84;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   ROW 5a — Qty Row
   ═══════════════════════════════════════════════ */
.product-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-qty-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a3a37;
    white-space: nowrap;
    min-width: 36px;
}

.product-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--detail-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.product-qty-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e2e2c;
    transition: background 0.18s;
}
.product-qty-btn:hover {
    background: #f5ede9;
}
.product-qty-btn:active {
    background: #eee0d8;
}

.product-qty-input {
    width: 66px;
    height: 46px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--detail-border);
    border-right: 1px solid var(--detail-border);
    font-size: 16px;
    font-weight: 700;
    color: #2c1e1d;
    background: #fff;
    -moz-appearance: textfield;
}
.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.product-qty-input:focus {
    outline: none;
    background: #fffaf8;
}

/* ═══════════════════════════════════════════════
   ROW 5b — Delivery Card
   ═══════════════════════════════════════════════ */
.product-delivery-card {
    padding: 20px 22px;
    border: 1px solid var(--detail-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
}

.product-delivery-card__title {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #2c1e1d;
    letter-spacing: 0.01em;
}

.product-delivery-card__desc {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: #8a7570;
}

/* Field groups inside delivery card */
.pdc-field {
    margin-bottom: 16px;
    position: relative;
}
.pdc-field:last-of-type { margin-bottom: 0; }

.pdc-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a5651;
    margin-bottom: 8px;
}

.pdc-required {
    color: var(--primary-color, #7e3739);
    margin-left: 2px;
}

.pdc-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d6c4bc;
    border-radius: 10px;
    font-size: 14px;
    color: #3e2e2c;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.pdc-input:focus {
    outline: none;
    border-color: var(--primary-color, #7e3739);
    box-shadow: 0 0 0 3px rgba(126, 55, 57, 0.10);
}

.pdc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdc-summary {
    margin-top: 16px;
    padding: 11px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px dashed #d4bfb8;
    color: #7a6560;
    font-size: 12px;
    line-height: 1.65;
}

/* Checkout button */
.product-checkout-btn {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--primary-color, #7e3739) 0%, #a05057 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(126, 55, 57, 0.22);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.product-checkout-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #9a3d3f 0%, #b5575e 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(126, 55, 57, 0.30);
}

/* ═══════════════════════════════════════════════
   ACCORDIONS
   ═══════════════════════════════════════════════ */
.product-accordion-wrap {
    border-top: 1px solid var(--detail-border);
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-recommendations {
    margin: 84px auto 56px;
    padding: 30px 0 6px;
    border-top: 1px solid rgba(110, 63, 55, 0.10);
}

.detail-recommendations__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.detail-recommendations__eyebrow {
    margin: 0 0 8px;
    color: #6e5d57;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-recommendations__title {
    margin: 0;
    max-width: 560px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
    color: #241d1c;
}

.detail-recommendations__controls {
    display: flex;
    gap: 10px;
}

.recommendation-nav {
    width: 42px;
    height: 42px;
    border: 1px solid var(--detail-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #5f4744;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(110, 63, 55, 0.08);
}

.detail-recommendations__viewport {
    overflow: hidden;
}

.detail-recommendations__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(198px, 210px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 10px;
    scrollbar-width: none;
}

.detail-recommendations__track::-webkit-scrollbar {
    display: none;
}

.recommendation-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    border: 1px solid #eee2db;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 28px rgba(110, 63, 55, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(110, 63, 55, 0.14);
}

.recommendation-card__media {
    position: relative;
    aspect-ratio: 0.84 / 1;
    background: #f6efea;
}

.recommendation-card__image-link,
.recommendation-card__image-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.recommendation-card__image-link img {
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.recommendation-card:hover .recommendation-card__image-link img {
    transform: scale(1.04);
}

.recommendation-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
}

.recommendation-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 14px 14px 16px;
}

.recommendation-card__price {
    font-size: 14px;
    font-weight: 800;
    color: #3a2f2d;
    letter-spacing: 0.01em;
}

.recommendation-card__title {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.recommendation-card__title a {
    color: #312726;
    text-decoration: none;
}

.recommendation-card__cta-wrap {
    margin-top: auto;
}

.recommendation-card__cta {
    width: 100%;
    min-height: 42px;
    border: 1px solid #342827;
    border-radius: 999px;
    background: #fff;
    color: #2f2524;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.recommendation-card__cta:hover {
    background: #2f2524;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .product-summary-panel {
        margin-top: 24px;
    }

    .product-summary-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-summary-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .product-summary-header {
        align-items: center;
    }

    .product-summary-title {
        font-size: 28px !important;
    }

    .product-price-panel__amount {
        font-size: 34px;
    }

    .product-delivery-card,
    .product-qty-controls {
        border-radius: 18px;
    }

    .detail-recommendations__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-recommendations__track {
        grid-auto-columns: minmax(190px, 78vw);
        gap: 14px;
    }

    .recommendation-card__body {
        padding: 12px 12px 14px;
    }

    .recommendation-card__title {
        font-size: 14px;
    }

    .recommendation-card__cta {
        min-height: 40px;
    }
}

/* ─── Sticky Gallery Column ─── */
@media (min-width: 992px) {
    .product-main-row {
        display: flex !important;
        align-items: flex-start;
    }
    .product-main-row > #slidercol {
        float: none !important;
        position: sticky;
        top: 90px;
    }
    .product-main-row > #sagblokana {
        float: none !important;
    }
}

/* ─── Luxury Accordion ─── */
.product-accordion-wrap .accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--detail-border);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.22s;
}
.product-accordion-wrap .accordion-item:last-child {
    margin-bottom: 0;
}
.product-accordion-wrap .accordion-item:hover {
    box-shadow: 0 8px 28px rgba(110, 63, 55, 0.09);
}
.product-accordion-wrap .accordion-header {
    width: 100%;
    padding: 18px 24px;
    background: #faf7f5;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #342a28;
    letter-spacing: 0.01em;
    transition: background 0.2s;
    font-family: inherit;
}
.product-accordion-wrap .accordion-header:hover {
    background: #f5ede9;
}
.product-accordion-wrap .accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--detail-border);
    background: #fff;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color, #7e3739);
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s, color 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.product-accordion-wrap .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
    background: #fff;
}
.product-accordion-wrap .accordion-body {
    padding: 18px 24px 22px;
    font-size: 14px;
    color: #6f625c;
    line-height: 1.8;
    border-top: 1px solid #f0ebe7;
}
.product-accordion-wrap .accordion-item.active .accordion-header {
    background: #f5ede9;
}
.product-accordion-wrap .accordion-item.active .accordion-icon {
    background: var(--primary-color, #7e3739);
    color: #fff;
    border-color: var(--primary-color, #7e3739);
    transform: rotate(45deg);
}

/* ─── Delivery Date Selector ─── */
.date-option {
    min-width: 88px;
    padding: 12px 10px;
    border: 1.5px solid #ddd6d0;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.22s;
    font-family: inherit;
}
.date-option:hover {
    border-color: var(--rose-dark, #7e3739);
    background: #fff7f4;
}
.date-option.active {
    background: var(--rose-light, #f7e5df);
    border-color: var(--rose-dark, #7e3739);
}
.date-option-day {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}
.date-option-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
.date-option.active .date-option-label {
    color: var(--rose-dark, #7e3739);
}

/* ─── Delivery Time Selector ─── */
.time-option {
    padding: 12px 16px;
    border: 1.5px solid #ddd6d0;
    border-radius: 14px;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.22s;
}
.time-option:hover {
    border-color: var(--rose-dark, #7e3739);
    background: #fff7f4;
}
.time-option.active {
    background: var(--rose-light, #f7e5df);
    border-color: var(--rose-dark, #7e3739);
    color: var(--rose-dark, #7e3739);
}

/* ─── Delivery Address Input ─── */
#deliveryLocation {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #cbb8a9;
    border-radius: 12px;
    font-size: 15px;
    color: #4b3b35;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}
#deliveryLocation:focus {
    outline: none;
    border-color: var(--rose-dark, #7e3739);
    box-shadow: 0 0 0 3px rgba(126, 55, 57, 0.08);
}

/* ─── Delivery Section Labels ─── */
.delivery-field-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 13px;
    color: #5a4441;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* LUXURY RECOMMENDATIONS SLIDER */
.luxury-recommendations {
    background-color: #f7f7f7;
    padding: 70px 0;
    margin-top: 60px;
}
.luxury-recommendations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.luxury-recommendations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.luxury-recommendations-title {
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}
.luxury-recommendations-nav {
    display: flex;
    gap: 10px;
}
.luxury-nav-arrow {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}
.luxury-nav-arrow:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.luxury-recommendations-viewport {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding-bottom: 20px; /* For shadow */
}
.luxury-recommendations-viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.luxury-products-slider {
    display: grid;
    grid-auto-flow: column;
    /* Show 5 items on large screens with min size constraint */
    grid-auto-columns: calc((100% - (4 * 20px)) / 5);
    gap: 20px;
}

.luxury-product-card {
    background: #fff;
    border-radius: 8px; /* Slightly rounded, very elegant */
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    scroll-snap-align: start;
}
.luxury-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.luxury-product-media {
    position: relative;
    width: 100%;
    padding-top: 120%; /* 5:6 aspect ratio for flowers */
    overflow: hidden;
    background-color: #f0f0f0;
}
.luxury-product-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.luxury-product-card:hover .luxury-product-media img {
    transform: scale(1.05); /* Soft scale on hover */
}

.luxury-heart-btn-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.luxury-heart-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.luxury-heart-btn:hover {
    background: #fff;
    color: #e74c3c;
}
.luxury-heart-btn.active {
    color: #e74c3c;
}

.luxury-product-details {
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.luxury-product-price {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 8px;
}

.luxury-product-name {
    margin: 0 0 15px 0;
    flex-grow: 1;
}
.luxury-product-name a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
}
.luxury-product-name a:hover {
    color: #1a1a1a;
}

.luxury-product-cta-form {
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    visibility: hidden;
}
.luxury-product-card:hover .luxury-product-cta-form {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.luxury-add-to-cart-button {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px; /* Pill shape */
}
.luxury-add-to-cart-button:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .luxury-products-slider {
        grid-auto-columns: calc((100% - (3 * 20px)) / 4);
    }
}
@media (max-width: 991px) {
    .luxury-products-slider {
        grid-auto-columns: calc((100% - (2 * 20px)) / 3);
    }
}
@media (max-width: 768px) {
    .luxury-products-slider {
        grid-auto-columns: calc((100% - 14px) / 1.5);
        gap: 14px;
    }
    .luxury-recommendations-nav {
        display: none !important;
    }
    .luxury-product-cta-form {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .luxury-product-details {
        padding: 14px 10px;
    }
    .luxury-add-to-cart-button {
        padding: 8px 0;
    }
    .luxury-recommendations-viewport {
        overflow-x: auto;
        scrollbar-width: thin;
    }
}
@media (max-width: 480px) {
    .luxury-products-slider {
        grid-auto-columns: 80vw;
    }
    .luxury-product-name a {
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
    .luxury-nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* ── Mobile Delivery Chips Compact ── */
@media (max-width: 768px) {
    .pdc-chips {
        gap: 6px !important;
    }
    .date-option {
        min-width: 68px !important;
        padding: 8px 6px !important;
        border-radius: 10px !important;
    }
    .date-option-day {
        font-size: 10px !important;
    }
    .date-option-label {
        font-size: 12px !important;
    }
    .time-option {
        padding: 8px 10px !important;
        border-radius: 10px !important;
        font-size: 12px !important;
    }
    .delivery-field-label {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }
    /* Scroll hint shadow on related products */
    .luxury-recommendations-viewport {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .luxury-recommendations-viewport::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 20px;
        width: 40px;
        background: linear-gradient(to left, rgba(247,247,247,1), rgba(247,247,247,0));
        pointer-events: none;
        z-index: 2;
    }
}
