/* ============================================================
   product.css  –  Vizag Florist · Product Detail Page
   ============================================================ */


/* ── Breadcrumb ──────────────────────────────────────────── */

.pdp-breadcrumb {
    background: #f9fafb;
    padding: 11px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}

.pdp-breadcrumb nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    color: #9ca3af;
}

.pdp-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .18s;
}

.pdp-breadcrumb a:hover {
    color: #d4145a;
}

.pdp-breadcrumb i {
    font-size: 9px;
    opacity: .6;
}

.pdp-breadcrumb span {
    color: #374151;
    font-weight: 500;
}


/* ── Page shell ──────────────────────────────────────────── */

.section-sm {
    padding: 36px 0 60px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.row>* {
    padding: 0 10px;
    box-sizing: border-box;
}

.g-4>* {
    padding: 10px;
}

.g-lg-5>* {
    padding: 10px;
}

.col-lg-5 {
    width: 41.666%;
}

.col-lg-7 {
    width: 58.333%;
}

.col-lg-4 {
    width: 33.333%;
}

.col-lg-8 {
    width: 66.666%;
}

.col-md-6 {
    width: 50%;
}

.col-md-3 {
    width: 25%;
}

.col-6 {
    width: 50%;
}

.g-2>* {
    padding: 4px;
}

.g-3>* {
    padding: 8px;
}

@media (max-width: 991px) {
    .col-lg-5,
    .col-lg-7,
    .col-lg-4,
    .col-lg-8 {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .col-md-6,
    .col-md-3 {
        width: 50%;
    }
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 40px;
}

.text-green {
    color: #22c55e;
}


/* ── Buttons ─────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 12px;
    padding: 11px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d4145a, #9d174d);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 20, 90, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 20, 90, .38);
}

.btn-outline {
    background: #fff;
    color: #374151;
    border: 1.5px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #d4145a;
    color: #d4145a;
    background: #fdf2f8;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 9px;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.btn-add {
    border-radius: 14px;
}


/* ── Chips / Badges ──────────────────────────────────────── */

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all .18s;
}

.chip:hover {
    background: #fdf2f8;
    color: #d4145a;
    border-color: #fce7f3;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 999px;
    letter-spacing: .04em;
}

.badge-best {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.badge-new {
    background: #fdf2f8;
    color: #d4145a;
    border: 1px solid #fce7f3;
}


/* ── Form elements ───────────────────────────────────────── */

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.form-control:focus {
    border-color: #d4145a;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}

textarea.form-control {
    resize: vertical;
}


/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */

.pdp-gallery {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}


/* Thumbnails */

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 76px;
}

.pdp-thumb {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s;
    flex-shrink: 0;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-thumb.active {
    border-color: #d4145a;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .15);
}

.pdp-thumb:hover:not(.active) {
    border-color: #fca5a5;
}


/* Main image */

.pdp-main {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    aspect-ratio: 1;
    position: relative;
    cursor: zoom-in;
}

.pdp-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.pdp-main:hover img {
    transform: scale(1.04);
}

.pdp-main-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 11.5px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

@media (max-width: 640px) {
    .pdp-gallery {
        flex-direction: column-reverse;
    }
    .pdp-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .pdp-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    .pdp-main {
        aspect-ratio: 4/3;
    }
}


/* ═══════════════════════════════════════════
   PRODUCT INFO COLUMN
═══════════════════════════════════════════ */

.pdp-info-col {
    padding-left: 4px;
}


/* Title */

.pdp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 30px);
    color: #111827;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 700;
}


/* Rating row */

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pdp-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.pdp-rating-txt {
    font-size: 13px;
    color: #9ca3af;
}

.pdp-sold {
    font-size: 13px;
    color: #16a34a;
    font-weight: 500;
}

.pdp-sku {
    font-size: 12px;
    color: #d1d5db;
}


/* Price block */

.pdp-price-block {
    margin-bottom: 18px;
}

.pdp-price-now {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 900;
    color: #d4145a;
    line-height: 1;
}

.pdp-price-was {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.pdp-save {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    font-size: 12.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 999px;
    margin-left: 10px;
}

.pdp-tax-note {
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 6px;
}


/* ── Delivery banner ─────────────────────────────────────── */

.pdp-delivery-banner {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 18px;
}

.pdp-del-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #065f46;
    margin-bottom: 10px;
}

.pdp-del-main i {
    color: #16a34a;
    font-size: 16px;
}

.pdp-del-main strong {
    font-weight: 700;
}

.pdp-del-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.pdp-del-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(0, 0, 0, .06);
    color: #374151;
}

.pdp-del-chip.same {
    background: #fef9c3;
    color: #a16207;
    border-color: #fde68a;
}

.pdp-del-chip.mid {
    background: #ede9fe;
    color: #4c1d95;
    border-color: #ddd6fe;
}


/* Short description */

.pdp-short-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 20px;
}


/* ── Variants ────────────────────────────────────────────── */

.pdp-section-label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pdp-section-label i {
    color: #d4145a;
}

.var-opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.var-opt {
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
    background: #fff;
    transition: all .18s;
    user-select: none;
}

.var-opt small {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
}

.var-opt:hover {
    border-color: #fca5a5;
    background: #fdf2f8;
}

.var-opt.active {
    border-color: #d4145a;
    background: #fdf2f8;
    color: #d4145a;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}


/* ── Pincode block ───────────────────────────────────────── */

.delv-block {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.pincode-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.pincode-field {
    flex: 1;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.pincode-field:focus {
    border-color: #d4145a;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}

#pincodeResult {
    font-size: 13px;
    min-height: 18px;
    margin-top: 4px;
}

.pincode-ok {
    color: #16a34a;
}

.pincode-err {
    color: #ef4444;
}


/* ── Delivery date chips ─────────────────────────────────── */

.date-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.date-chips::-webkit-scrollbar {
    display: none;
}

.date-chip {
    flex: 0 0 auto;
    min-width: 60px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    transition: all .18s;
    user-select: none;
}

.date-chip:hover {
    border-color: #fca5a5;
    background: #fdf2f8;
}

.date-chip.active {
    border-color: #d4145a;
    background: #fdf2f8;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}

.date-chip.today .d-day {
    color: #d4145a;
}

.d-day {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.d-lbl {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}


/* ── Delivery slots ──────────────────────────────────────── */

.slot-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 11px;
    padding: 11px 13px;
    background: #fff;
    cursor: pointer;
    transition: all .18s;
    user-select: none;
}

.slot-opt:hover {
    border-color: #fca5a5;
    background: #fdf2f8;
}

.slot-opt.sel {
    border-color: #d4145a;
    background: #fdf2f8;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}


/* ── Add-on cards ────────────────────────────────────────── */

.addon-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.addon-cards::-webkit-scrollbar {
    display: none;
}

.addon-card {
    flex: 0 0 auto;
    width: 100px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all .18s;
    position: relative;
    user-select: none;
}

.addon-card:hover {
    border-color: #fca5a5;
    background: #fdf2f8;
    transform: translateY(-2px);
}

.addon-card.active {
    border-color: #d4145a;
    background: #fdf2f8;
    box-shadow: 0 0 0 3px rgba(212, 20, 90, .10);
}

.addon-card img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 6px;
}

.addon-card-ico {
    width: 56px;
    height: 56px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 22px;
    color: #d4145a;
}

.addon-name {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    margin-bottom: 3px;
}

.addon-price {
    font-size: 12px;
    font-weight: 700;
    color: #d4145a;
}

.addon-check {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d4145a;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .18s;
}

.addon-card.active .addon-check {
    opacity: 1;
}


/* ── Qty control ─────────────────────────────────────────── */

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    height: 52px;
}

.qty-btn {
    width: 44px;
    height: 100%;
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 300;
    color: #374151;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #f3f4f6;
    color: #d4145a;
}

.qty-val {
    width: 42px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    background: none;
    font-family: inherit;
    -moz-appearance: textfield;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


/* Wishlist button */

.pc-act-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    border-radius: 14px;
    color: #9ca3af;
    transition: all .2s;
    flex-shrink: 0;
}

.pc-act-btn:hover {
    border-color: #fca5a5;
    color: #d4145a;
    background: #fdf2f8;
}

.pc-act-btn.wishlisted {
    border-color: #d4145a;
    color: #d4145a;
    background: #fdf2f8;
}


/* ── Trust badges row ────────────────────────────────────── */

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (max-width: 480px) {
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.trust-badge i {
    color: #d4145a;
    font-size: 14px;
    flex-shrink: 0;
}


/* ── Share strip ─────────────────────────────────────────── */

.share-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.share-strip span {
    font-size: 13px;
    color: #9ca3af;
}


/* ═══════════════════════════════════════════
   TABS
═══════════════════════════════════════════ */

.pdp-tabs-wrap {
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 28px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.pdp-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.pdp-tab {
    padding: 13px 24px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: color .18s, border-color .18s;
}

.pdp-tab:hover {
    color: #374151;
}

.pdp-tab.active {
    color: #d4145a;
    border-bottom-color: #d4145a;
}


/* Pane content */

.pdp-pane {
    display: none;
}

.pdp-pane.active {
    display: block;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.pdp-desc-text {
    color: #374151;
    line-height: 1.85;
    font-size: 15px;
}


/* Product highlights */

.highlights-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #f3f4f6;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    margin-bottom: 11px;
}

.highlight-row:last-child {
    margin-bottom: 0;
}

.highlight-row i {
    color: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}


/* ── Reviews ─────────────────────────────────────────────── */

.review-score-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid #f3f4f6;
    margin-bottom: 16px;
}

.review-score-num {
    font-size: 56px;
    font-weight: 900;
    color: #d4145a;
    line-height: 1;
}

.review-score-stars {
    color: #f59e0b;
    font-size: 20px;
    margin: 8px 0 4px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.review-score-count {
    font-size: 13px;
    color: #9ca3af;
}

.review-form-box {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
    transition: box-shadow .2s;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.review-card:last-child {
    margin-bottom: 0;
}

.review-avatar-init {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4145a, #9d174d);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-avatar-initials {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4145a, #9d174d);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* ── Delivery info cards ─────────────────────────────────── */

.del-info-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #f3f4f6;
}

.del-info-icon {
    width: 44px;
    height: 44px;
    background: #fdf2f8;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.del-info-icon i {
    color: #d4145a;
    font-size: 18px;
}


/* ── Care tips ───────────────────────────────────────────── */

.care-tip {
    display: flex;
    gap: 14px;
    padding: 17px 18px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #f3f4f6;
}

.care-tip i {
    font-size: 20px;
    color: #d4145a;
    margin-top: 2px;
    flex-shrink: 0;
}

.care-tip-title {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    margin-bottom: 3px;
}

.care-tip-desc {
    font-size: 13px;
    color: #6b7280;
}


/* ═══════════════════════════════════════════
   PRODUCT RAILS (related / recently viewed)
═══════════════════════════════════════════ */

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.sec-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #d4145a;
    margin-bottom: 4px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.prod-swiper {
    overflow: hidden;
    padding-bottom: 4px;
}

.prod-swiper .swiper-slide {
    width: 210px;
}


/* ── Sticky CTA bar on mobile ────────────────────────────── */

@media (max-width: 767px) {
    .pdp-cta-sticky {
        position: fixed;
        bottom: 60px;
        left: 0;
        right: 0;
        z-index: 800;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        padding: 12px 16px;
        display: flex;
        gap: 10px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .10);
    }
    .pdp-cta-sticky .btn-add {
        flex: 1;
    }
    .pdp-cta-sticky-hide {
        display: none;
    }
}

@media (min-width: 768px) {
    .pdp-cta-sticky {
        display: none;
    }
}


/* ── Responsive fine-tuning ──────────────────────────────── */

@media (max-width: 767px) {
    .section-sm {
        padding: 20px 0 48px;
    }
    .pdp-gallery {
        gap: 8px;
    }
    .pdp-title {
        font-size: 22px;
    }
    .pdp-price-now {
        font-size: 28px;
    }
    .date-chips {
        gap: 6px;
    }
    .date-chip {
        min-width: 54px;
        padding: 8px 10px;
    }
    .addon-card {
        width: 88px;
    }
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .pdp-tab {
        padding: 11px 16px;
        font-size: 13px;
    }
}