/* ==========================================================================
   TAILOR BAZAR - ELITE BESPOKE SERVICE DETAILS STYLESHEET
   --------------------------------------------------------------------------
   Defines all visual tokens, glassmorphism filters, grid layouts, 
   step timelines, dynamic tabs, and interactive FAQs.
   ========================================================================== */

:root {
    --lux-emerald: #d71920;
    --lux-emerald-light: #fef2f2;
    --lux-slate-900: #0f172a;
    --lux-slate-700: #334155;
    --lux-slate-600: #475569;
    --lux-slate-500: #64748b;
    --lux-slate-400: #94a3b8;
    --lux-slate-100: #f1f5f9;
    --lux-bg-gray: #f8fafc;
    --lux-border: #e2e8f0;
    --lux-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    --lux-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.03);
    --lux-shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    --lux-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Details Section Base */
.details-section {
    padding-top: 10.875rem;
    padding-bottom: 5rem;
    background: radial-gradient(circle at 10% 20%, rgba(243, 244, 246, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    color: var(--lux-slate-500);
    font-weight: 500;
}
.breadcrumb-link {
    color: var(--lux-slate-500);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-link:hover {
    color: var(--lux-emerald) !important;
}
.breadcrumb-current {
    color: var(--lux-slate-900);
    font-weight: 700;
}

/* Grid Layout */
.details-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

/* Laptop/Tablet Layout for Details Grid */
@media (min-width: 768px) {
    .details-section > .container {
        max-width: 1100px !important;
    }
}

/* Left Panel (Visuals Column) */
.details-left-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.details-img-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    border-radius: 1.75rem;
    background: var(--lux-bg-gray);
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lux-transition);
}
.details-img-container:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}
.details-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.details-img-container:hover .details-img {
    transform: scale(1.04);
}
.details-img-container.subitem-canvas {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 1024px;
    max-height: 1024px;
    background: #ffffff;
}
.details-img-container.subitem-canvas .details-img {
    object-fit: contain !important;
}
.details-badge-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

/* Trust Inclusions Bar */
.inclusions-bar {
    background: var(--lux-bg-gray);
    border: 1px solid var(--lux-border);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    box-shadow: var(--lux-shadow-sm);
}
.inclusion-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lux-slate-700);
}
.inclusion-item i {
    color: var(--lux-emerald);
}

/* Experience Roadmap Steps */
.experience-header {
    text-align: left;
    margin-bottom: 0.25rem;
}
.experience-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--lux-emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}
.experience-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin: 0;
}
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.process-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-left: 4px solid transparent;
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    transition: var(--lux-transition);
    box-shadow: var(--lux-shadow-sm);
}
.process-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.05);
    border-color: var(--lux-border);
    border-left-color: var(--lux-emerald);
}
.process-icon-box {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--lux-bg-gray);
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-emerald);
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--lux-transition);
}
.process-card:hover .process-icon-box {
    background: var(--lux-emerald-light);
}
.process-card-content {
    flex: 1;
}
.process-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lux-slate-900);
    margin: 0 0 0.25rem 0;
}
.process-card-text {
    color: var(--lux-slate-500);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.4;
}

/* Right Panel (Details Info Card) */
.details-right-column {
    /* No sticky here — sticky is on the card inside */
}
.details-info-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-md);
}
.glowing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--lux-emerald-light);
    color: var(--lux-emerald);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.details-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin: 0 0 0.75rem 0;
    line-height: 1.15;
}
.pricing-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    /* padding-bottom: 1.75rem; */
}
.starts-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lux-slate-900);
}
.visitation-badge {
    background: #f1f5f9;
    color: var(--lux-slate-700);
    padding: 0.3rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1rem;
}

/* Light-Gray Disclaimer Box (As requested) */
.disclaimer-card {
    background: var(--lux-bg-gray);
    border: 1px dashed var(--lux-border);
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}
.disclaimer-icon {
    color: var(--lux-slate-400);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.disclaimer-text {
    color: var(--lux-slate-500);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    font-style: italic;
}
.service-description {
    color: var(--lux-slate-500);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

/* Appointment Scheduler Panel */
.appointment-scheduler-panel {
    background: var(--lux-bg-gray);
    border: 1px solid var(--lux-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    margin-bottom: 2.25rem;
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}
.appointment-scheduler-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
}
.appointment-scheduler-title i {
    color: var(--lux-emerald);
    font-size: 1.25rem;
}
.appointment-fields-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.form-group-wrapper {
    display: flex;
    flex-direction: column;
}
.form-group-wrapper label {
    font-weight: 700;
    color: var(--lux-slate-700);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
}
.input-icon-left {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon-left i.fa-regular {
    position: absolute;
    left: 0.85rem;
    color: var(--lux-slate-400);
    font-size: 1rem;
    pointer-events: none;
}
.custom-date-input {
    width: 100%;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--lux-border);
    background: white;
    font-family: inherit;
    font-weight: 600;
    color: var(--lux-slate-900);
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-date-input:focus {
    border-color: var(--lux-emerald) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}
.custom-select-input {
    width: 100%;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--lux-border);
    background: white;
    font-family: inherit;
    font-weight: 600;
    color: var(--lux-slate-900);
    cursor: pointer;
    outline: none;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-select-input:focus {
    border-color: var(--lux-emerald) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}
.select-chevron {
    position: absolute;
    right: 1rem;
    color: var(--lux-slate-400);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Instructions Form Section */
.instructions-section {
    margin-bottom: 2.5rem;
}
.instructions-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--lux-slate-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.instructions-icon {
    color: var(--lux-emerald);
    font-size: 1.1rem;
}
.instructions-textarea {
    width: 100%;
    height: 110px;
    padding: 0.85rem;
    border-radius: 0.85rem;
    border: 1px solid var(--lux-border);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--lux-slate-900);
    resize: vertical;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s;
}
.instructions-textarea:focus {
    border-color: var(--lux-emerald) !important;
}

/* Action Controls Row */
.action-controls-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    /* margin-top: 2.5rem; */
    border-top: 1px solid #f1f5f9;
    /* padding-top: 2rem; */
}
.inline-qty-wishlist-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}
.sticky-action-buttons-wrapper {
    /* Transparent to flex layout on desktop — group behaves as direct child */
    display: contents;
}
.sticky-action-buttons-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--lux-border);
    border-radius: 0.85rem;
    overflow: hidden;
    background: var(--lux-bg-gray);
    height: 3.4rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.quantity-selector-wrapper:hover {
    border-color: var(--lux-slate-400);
}
.quantity-selector-wrapper button {
    border: none;
    background: none;
    padding: 0 1.1rem;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--lux-slate-700);
    transition: color 0.15s;
}
.quantity-selector-wrapper button:hover {
    color: var(--lux-emerald) !important;
}
.quantity-selector-wrapper input.qty-input {
    width: 45px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--lux-slate-900);
    -webkit-appearance: none;
    margin: 0;
    outline: none;
}
.add-to-basket-btn {
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem !important;
    height: 3.4rem;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap !important;
    cursor: pointer;
    box-sizing: border-box !important;
}
.add-to-basket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25) !important;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%) !important;
}
.buy-now-btn {
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem !important;
    height: 3.4rem;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    background: linear-gradient(135deg, #d71920 0%, #b3141a 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.2) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap !important;
    cursor: pointer;
    box-sizing: border-box !important;
}
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.3) !important;
    background: linear-gradient(135deg, #e5252c 0%, #c4181f 100%) !important;
}
.wishlist-btn {
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 3.4rem;
    border-radius: 0.85rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lux-transition);
    border: 1px solid var(--lux-border);
    background: #fff;
    cursor: pointer;
}
.wishlist-btn:hover {
    border-color: #ef4444;
    background: #fef2f2;
}
.wishlist-icon {
    font-size: 1.35rem;
    transition: transform 0.2s ease;
}
.wishlist-icon.active,
.wishlist-icon.fa-solid {
    color: #ef4444 !important;
}
.wishlist-btn:hover .wishlist-icon {
    transform: scale(1.1);
}

/* Tabs System Layout */
.tabs-system-wrapper {
    /* margin-top: 7rem; */
    border-top: 1px solid #f1f5f9;
    padding-top: 4rem;
}
.tabs-header {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.lux-tab-btn {
    background: none;
    border: none;
    padding: 1.25rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lux-slate-500);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}
.lux-tab-btn:hover {
    color: var(--lux-slate-900);
}
.lux-tab-btn.active {
    color: var(--lux-slate-900);
    border-bottom-color: var(--lux-emerald);
    font-weight: 800;
    transform: translateY(-1px);
}
.lux-tab-content {
    display: none;
    padding: 2.5rem 0;
    animation: luxFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.lux-tab-content.active {
    display: block;
}

/* Tab Content Specifications */
.spec-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.spec-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin-bottom: 1rem;
}
.spec-text {
    color: var(--lux-slate-500);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}
.spec-list {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--lux-slate-700);
    font-weight: 600;
    font-size: 0.92rem;
    list-style: none;
}
.spec-list-item i {
    color: var(--lux-emerald);
    margin-right: 0.5rem;
}
.spec-inspection-card {
    background: var(--lux-bg-gray);
    border: 1px solid var(--lux-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--lux-shadow-sm);
}
.spec-inspection-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--lux-slate-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spec-inspection-title i {
    color: var(--lux-emerald);
}
.spec-inspection-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--lux-slate-500);
}
.spec-inspection-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}
.spec-inspection-label {
    font-weight: 700;
    color: var(--lux-slate-700);
}

/* Tab Content Safety & Quality */
.quality-safety-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}
.quality-safety-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin-bottom: 1rem;
}
.quality-safety-text {
    color: var(--lux-slate-500);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}
.quality-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.quality-safety-item {
    display: flex;
    gap: 0.75rem;
    align-items: start;
}
.quality-safety-icon {
    color: var(--lux-emerald);
    font-size: 1.5rem;
}
.quality-safety-heading {
    margin: 0 0 0.25rem 0;
    font-weight: 700;
    color: var(--lux-slate-900);
}
.quality-safety-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--lux-slate-500);
}
.fit-guarantee-seal {
    background: var(--lux-bg-gray);
    border: 1px solid var(--lux-border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}
.fit-guarantee-icon {
    font-size: 3rem;
    color: var(--lux-emerald);
    margin-bottom: 1rem;
}
.fit-guarantee-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--lux-slate-900);
    margin: 0 0 0.5rem 0;
}
.fit-guarantee-desc {
    color: var(--lux-slate-500);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Tab Content FAQs Accordions */
.faqs-content-wrapper {
    max-width: 850px;
}
.faqs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin-bottom: 1.5rem;
}
.faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
    transition: var(--lux-transition);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--lux-slate-900);
    font-size: 1.1rem;
    user-select: none;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--lux-slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 0;
}
.faq-item.active .faq-content {
    padding-top: 0.75rem;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: var(--lux-slate-400);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--lux-emerald);
}

/* Recommended Items Section */
.recommended-services-section {
    /* margin-top: 6rem; */
    border-top: 1px solid var(--lux-border);
    /* padding-top: 4rem; */
}
.recommended-header {
    text-align: center;
    margin-bottom: 2rem;
}
.recommended-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--lux-emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}
.recommended-title {
    font-size: 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--lux-slate-900);
    margin: 0;
}
.recommended-scroll-wrapper {
    position: relative;
    width: 100%;
}
.recommended-scroll-wrapper .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--lux-border);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--lux-slate-700);
    transition: all 0.3s ease;
}
.recommended-scroll-wrapper .scroll-btn:hover {
    background: #f8fafc;
    border-color: var(--lux-emerald);
    color: var(--lux-emerald);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.recommended-scroll-wrapper .scroll-btn.prev {
    left: -21px;
}
.recommended-scroll-wrapper .scroll-btn.next {
    right: -21px;
}
@media (max-width: 768px) {
    .recommended-scroll-wrapper .scroll-btn {
        display: none !important;
    }
}

.recommended-items-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
    justify-content: center; /* Center items on desktop */
    width: 100%;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
}
.recommended-items-grid::-webkit-scrollbar {
    display: none !important;
}

/* Hide scroll buttons by default on large desktops where 4 items fit without scrolling */
@media (min-width: 1200px) {
    .recommended-scroll-wrapper .scroll-btn {
        display: none !important;
    }
}

/* On mid-sized desktops/tablets, allow scrolling and show buttons if content overflows */
@media (max-width: 1199px) {
    .recommended-items-grid {
        justify-content: flex-start;
    }
    .recommended-scroll-wrapper .scroll-btn {
        display: flex;
    }
}

.recommended-item-card {
    padding: 1.35rem;
    background: white;
    border: 1px solid var(--lux-border);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
    box-shadow: var(--lux-shadow-sm);
    width: 250px;
    flex-shrink: 0;
}
.recommended-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--lux-emerald);
}
.recommended-item-badge {
    background: #f1f5f9;
    color: var(--lux-slate-700);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 0.4rem;
}
.recommended-img-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 0.95rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid var(--lux-border);
}
.recommended-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.recommended-item-card:hover .recommended-item-img {
    transform: scale(1.06);
}
.recommended-item-title {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--lux-slate-900);
}
.recommended-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
    margin-top: 1.1rem;
}
.recommended-item-price {
    font-weight: 800;
    color: var(--lux-slate-900);
}
.recommended-item-starts {
    font-size: 0.75rem;
    color: var(--lux-slate-500);
    font-weight: 500;
}
.recommended-item-link {
    color: var(--lux-emerald);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

/* ── Product Details Responsiveness Overhauls ─────────────────────────── */
@media (max-width: 1199px) {
    .details-grid-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    .details-left-column {
        display: contents !important;
    }
    .details-right-column {
        display: contents !important;
    }
    .details-img-container {
        order: 1 !important;
        height: 380px;
    }
    .details-info-card {
        order: 2 !important;
        width: 100% !important;
    }
    .inclusions-bar {
        order: 3 !important;
        padding: 1.25rem;
        justify-content: space-around;
    }
    .experience-timeline-container {
        order: 4 !important;
    }
    .spec-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .quality-safety-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .quality-safety-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .recommended-items-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .details-section {
        padding-top: 7.375rem !important;
        padding-bottom: 2rem !important;
    }
    .breadcrumb-container {
        margin-bottom: 0.75rem !important;
        font-size: 0.75rem !important;
        flex-wrap: wrap;
        gap: 0.25rem 0.4rem !important;
        line-height: 1.4;
    }
    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .lux-tab-btn {
        padding: 1rem;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    .details-info-card {
        width: 100%;
        padding: 1.25rem 1rem !important;
        border-radius: 1rem !important;
    }
    .process-card {
        padding: 0.75rem 1rem !important;
        gap: 0.75rem !important;
        border-radius: 1rem !important;
    }
}

@media (max-width: 575px) {
    .details-title {
        font-size: 1.25rem !important;
    }
    .details-img-container {
        height: 285px !important;
    }
    .details-info-card {
        padding: 1rem 0.75rem !important;
        border-radius: 1rem !important;
    }
    .appointment-scheduler-panel {
        padding: 1.15rem !important;
        border-radius: 1rem;
    }
    .spec-inspection-card {
        padding: 1.25rem !important;
        border-radius: 1rem;
    }
    .fit-guarantee-seal {
        padding: 1.25rem !important;
        border-radius: 1rem;
    }
    .recommended-items-grid {
        gap: 1rem;
    }
    .inclusions-bar {
        width: 100%;
        padding: 0.75rem 0.4rem !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.3rem !important;
        border-radius: 1rem;
    }
    .inclusion-item {
        font-size: 0.63rem !important;
        gap: 0.2rem !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        flex: 1 1 auto !important;
    }
    .inclusion-item i {
        font-size: 0.7rem !important;
    }
}

/* ── Optimized Compact Details Page Mobile Layout ── */
@media (max-width: 768px) {
    .details-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }
    .pricing-block {
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        gap: 0.5rem !important;
    }
    .starts-price {
        font-size: 1.05rem !important;
    }
    .visitation-badge {
        font-size: 0.68rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    .disclaimer-card {
        margin-top: 0.4rem !important;
        padding: 0.65rem 0.85rem !important;
    }
    .disclaimer-text {
        font-size: 0.76rem !important;
        line-height: 1.3 !important;
    }
    .service-description {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
    }
    .experience-title {
        font-size: 1.2rem !important;
    }
    .experience-subtitle {
        font-size: 0.7rem !important;
    }
    .process-card-title {
        font-size: 0.9rem !important;
    }
    .process-card-text {
        font-size: 0.76rem !important;
    }
    .appointment-scheduler-title {
        font-size: 0.92rem !important;
    }
    .appointment-scheduler-panel div {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
    }
    .appointment-scheduler-panel {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        padding: 1rem !important;
        gap: 0.85rem !important;
        border-radius: 1rem !important;
    }
    .appointment-fields-grid {
        gap: 0.65rem !important;
    }
    .instructions-section {
        margin-top: 0.75rem !important;
    }
    .instructions-textarea {
        height: 65px !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.88rem !important;
    }
    .action-controls-row {
        display: block !important;
        margin-top: 1.5rem !important;
        padding-top: 0 !important;
        border-top: none !important;
    }
    .inline-qty-wishlist-group {
        display: flex !important;
        gap: 0.75rem !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1.25rem !important;
    }
    .inline-qty-wishlist-group .quantity-selector-wrapper {
        /* Compact fixed width — no more full-width stretching */
        flex: 0 0 auto !important;
        width: 130px !important;
        height: 3rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        border: 1.5px solid #e2e8f0 !important;
        background: #f8fafc !important;
        border-radius: 50px !important; /* pill shape */
        overflow: hidden !important;
        box-shadow: 0 1px 4px rgba(15,23,42,0.06) !important;
    }
    .inline-qty-wishlist-group .quantity-selector-wrapper button {
        width: 38px !important;
        height: 100% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #334155 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        transition: color 0.15s, background 0.15s !important;
        flex-shrink: 0 !important;
    }
    .inline-qty-wishlist-group .quantity-selector-wrapper button:active {
        background: #e2e8f0 !important;
        color: #0f172a !important;
    }
    .inline-qty-wishlist-group .quantity-selector-wrapper input.qty-input {
        width: 34px !important;
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        text-align: center !important;
        border: none !important;
        background: transparent !important;
        outline: none !important;
        flex-shrink: 0 !important;
    }
    .inline-qty-wishlist-group .wishlist-btn {
        flex: 0 0 auto !important;
        width: 3rem !important;
        height: 3rem !important;
        border-radius: 50% !important; /* circle to match pill aesthetic */
        background: #fff !important;
        border: 1.5px solid #e2e8f0 !important;
        box-shadow: 0 1px 4px rgba(15,23,42,0.06) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
    }
    .sticky-action-buttons-wrapper {
        /* Real block element on mobile so JS can measure its position */
        display: block !important;
        width: 100%;
        height: 3.2rem; /* in-flow placeholder — keeps layout space when group goes fixed */
    }
    .sticky-action-buttons-group {
        display: flex !important;
        gap: 0.75rem !important;
        align-items: center !important;
        height: 3.2rem !important;
    }
    .sticky-action-buttons-group.fixed-sticky {
        /* Only position — no background/padding/border. Buttons look identical to static state. */
        position: fixed !important;
        bottom: calc(60px + 0.75rem) !important; /* 60px nav + 0.75rem gap, same as cart */
        z-index: 999 !important;
    }

    .sticky-action-buttons-group .add-to-basket-btn,
    .sticky-action-buttons-group .buy-now-btn {
        flex: 1 !important;
        height: 3.2rem !important;
        border-radius: 0.85rem !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.1px !important;
        gap: 0.4rem !important;
        padding: 0 0.85rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        /* Only transition shadow & bg — never position/width, prevents snap-back animation */
        transition: box-shadow 0.3s ease, background-position 0.5s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .sticky-action-buttons-group .add-to-basket-btn {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
        border: none !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1) !important;
    }
    .sticky-action-buttons-group .add-to-basket-btn:active {
        transform: scale(0.96) !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1) !important;
    }
    .sticky-action-buttons-group .buy-now-btn {
        background: linear-gradient(135deg, #d71920 0%, #b3141a 100%) !important;
        border: none !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(215, 25, 32, 0.2) !important;
    }
    .sticky-action-buttons-group .buy-now-btn:active {
        transform: scale(0.96) !important;
        box-shadow: 0 2px 8px rgba(215, 25, 32, 0.2) !important;
    }
    .sticky-action-buttons-group .buy-now-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: skewX(-25deg);
        animation: shine 4s infinite ease-in-out;
    }
    .service-details-section {
        padding-bottom: 110px !important; /* clearance: 60px nav + 0.75rem gap + btn height */
    }
    .details-img-container {

        height: 250px !important;
        border-radius: 1.25rem !important;
    }
    .details-img-container.subitem-canvas {
        max-width: 220px !important;
        height: 220px !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto 1.25rem auto !important;
        border-radius: 1.25rem !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
    }

    /* Recommended section cards overrides on mobile */
    .recommended-item-card {
        width: 170px !important;
        height: 320px !important; /* fixed uniform height to fit 4 vertical blocks with button */
        padding: 0.75rem !important;
        border-radius: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .recommended-item-badge {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.4rem !important;
        border-radius: 0.3rem !important;
        display: block !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .recommended-img-container {
        margin-bottom: 0.75rem !important;
        border-radius: 0.6rem !important;
    }
    
    .recommended-item-title {
        font-size: 0.88rem !important;
        height: 2.2rem !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 0.5rem !important;
    }
    
    .recommended-item-row {
        margin-top: auto !important;
        padding-top: 0.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
        border-top: 1px solid #f1f5f9 !important;
        width: 100% !important;
    }
    
    .recommended-item-price {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
    }
    
    .recommended-item-starts {
        font-size: 0.7rem !important;
        color: #64748b !important;
        font-weight: 500 !important;
    }
    
    .recommended-item-link {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
        color: white !important;
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 0.5rem !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.25rem !important;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15) !important;
        transition: all 0.2s !important;
        box-sizing: border-box !important;
    }
}

/* Extracted layout styling classes from details.blade.php */
.details-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem 0;
    font-size: 0.95rem;
}
.details-rating-badge {
    color: #eab308;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #fef9c3;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #fef08a;
}
.details-rating-count {
    color: #64748b;
    font-size: 0.88rem;
}
.details-pricing-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.details-price-tba {
    color: #64748b;
}
.details-price-fixed-indigo {
    color: var(--indigo-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.details-mrp-crossed {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.details-discount-badge {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 700;
    background: #f0fdf4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.details-visitation-badge-zero {
    margin-left: 0;
}
.details-disclaimer-upcoming {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}
.details-disclaimer-upcoming-icon {
    color: #64748b;
}
.details-disclaimer-estimated {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}
.details-disclaimer-estimated-icon {
    color: #d97706;
}
.details-disclaimer-fixed {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}
.details-disclaimer-fixed-icon {
    color: #d71920;
}
.details-bolt-yellow-icon {
    color: #f59e0b;
    font-size: 1.1rem;
}
.details-visit-slot-row {
    padding: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.details-upload-section-wrapper {
    margin-top: 1.25rem;
}
.details-upload-icon-blue {
    color: #0062ac !important;
}
.details-upload-header-row {
    padding: 0.5rem 0 0 0;
}
.details-upload-label-styled {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--lux-slate-700);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.details-upload-dashed-box {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    background: white;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.details-upload-dashed-box:hover {
    border-color: #0062ac;
    background: #f0f7ff;
}
.details-upload-input-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.details-upload-icon-style {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.2s;
}
.details-upload-filename-style {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    display: block;
}
.details-upload-note-style {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
    margin-top: 0.25rem;
}
.details-upload-info-style {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.75rem;
    display: block;
    font-weight: 500;
    line-height: 1.4;
}
.details-upload-info-icon-blue {
    color: #0062ac;
}
.details-width-100 {
    width: 100%;
}
.details-upcoming-disabled-btn {
    background: #94a3b8 !important;
    color: white !important;
    cursor: not-allowed;
    width: 100%;
    text-align: center;
}
.wishlist-icon {
    color: #64748b;
}
.wishlist-icon.active {
    color: #ef4444 !important;
}

/* Shimmer lazy images placeholder classes */
.skeleton-img-wrapper {
    position: relative;
    background: #e2e8f0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
}
.skeleton-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.25) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer-effect 1.5s infinite;
}
@keyframes shimmer-effect {
    100% {
        transform: translateX(100%);
    }
}
.skeleton-img-wrapper img {
    opacity: 0;
    transition: opacity 0.45s ease-in-out;
}
.skeleton-img-wrapper.loaded {
    background: transparent !important;
}
.skeleton-img-wrapper.loaded::after {
    display: none !important;
}
.skeleton-img-wrapper.loaded img {
    opacity: 1 !important;
}


/* Shine Keyframe */
@keyframes shine {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Float Up Entrance Keyframe */
@keyframes floatUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.serviceability-card {
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
}

.serviceability-card.unserviceable {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #78350f;
}

.serviceability-card.serviceable {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.serviceability-card .card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.serviceability-card .card-header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.serviceability-card p {
    margin: 0 0 12px 0;
}

.serviceability-card.serviceable p {
    margin: 0;
}

.btn-change-location-inline {
    background: white;
    border: 1.5px solid #d97706;
    color: #d97706;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-change-location-inline:hover {
    background: #d97706;
    color: white;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.15);
}

.animate-fade-in {
    animation: fadeInDetail 0.3s ease forwards;
}

@keyframes fadeInDetail {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.details-pricing-row-lux {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}
.premium-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
}
.price-mrp-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mrp-crossed-value {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 600;
}
.price-actual-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.price-actual-label {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}
.price-actual-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d71920;
    line-height: 1;
}
.price-discount-tag {
    background-color: #f0f6ff;
    color: #1b5ea8;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid #dbeafe;
    display: inline-flex;
    align-items: center;
}

