/* ================================================================
   Sensual-media Blocks — Frontend CSS
   Masonry Galerie + Lightbox + SM Bild Block
================================================================ */

/* ----------------------------------------------------------------
   SM Bild Block — Figure Wrapper
---------------------------------------------------------------- */
.wp-block-sensual-media-image {
    display:    block;
    max-width:  100%;
    margin:     0 auto;
}

.wp-block-sensual-media-image img {
    display:    block;
    max-width:  100%;
    height:     auto;
}

/* Alignment */
.wp-block-sensual-media-image.alignleft  { float: left;  margin-right: 2rem; margin-bottom: 1rem; }
.wp-block-sensual-media-image.alignright { float: right; margin-left:  2rem; margin-bottom: 1rem; }
.wp-block-sensual-media-image.aligncenter { margin-left: auto; margin-right: auto; }

.wp-block-sensual-media-image.alignwide {
    width:     100%;
    max-width: var(--wp--style--global--wide-size, 1200px);
}

.wp-block-sensual-media-image.alignfull {
    width:     100vw;
    max-width: 100vw;
    margin-left:  calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ----------------------------------------------------------------
   SM Bild Block — Caption Stile
---------------------------------------------------------------- */
.sm-caption {
    display:    block;
    width:      100%;
    font-size:  0.8125rem;
    line-height: 1.5;
    text-align: center;
    padding:    0.625rem 1rem;
    margin:     0;
    box-sizing: border-box;
}

/* Dunkel (Standard) */
.sm-caption--dark {
    background: rgba(10, 8, 18, 0.82);
    color:      rgba(220, 215, 240, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Light Mode: dark caption → auf helles Design umschalten */
body.sm-light-mode .sm-caption--dark {
    background: rgba(245, 243, 255, 0.9);
    color:      #3b3150;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hell */
.sm-caption--light {
    background: rgba(245, 243, 255, 0.9);
    color:      #3b3150;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Transparent */
.sm-caption--plain {
    background: transparent;
    color:      var(--sm-text-muted, #888);
    padding-top: 0.5rem;
}

/* Zusammen mit dem Bild als Block ohne Lücke */
.wp-block-sensual-media-image figure,
.wp-block-sensual-media-image {
    font-size: 0; /* verhindert Whitespace-Lücke zwischen img und figcaption */
}

.wp-block-sensual-media-image .sm-caption {
    font-size: 0.8125rem; /* zurücksetzen für den Text */
}

/* ----------------------------------------------------------------
   Masonry Section Wrapper
---------------------------------------------------------------- */
.sm-masonry-section {
    padding: var(--sm-section-padding, 5rem 0);
}

.sm-masonry-section--surface {
    background:   var(--sm-surface, #111118);
    border-top:    1px solid var(--sm-border, rgba(255,255,255,0.08));
    border-bottom: 1px solid var(--sm-border, rgba(255,255,255,0.08));
}

.sm-masonry-section__header {
    text-align:    center;
    margin-bottom: 2.5rem;
}

/* Empty-State */
.sm-masonry-empty {
    padding:    3rem;
    text-align: center;
    color:      var(--sm-text-muted, #888);
    font-size:  0.9375rem;
    border:     1px dashed var(--sm-border, rgba(255,255,255,0.1));
    border-radius: 8px;
    margin: 1rem;
}

/* ----------------------------------------------------------------
   Masonry Grid — CSS Grid + JS row-span
   Funktioniert ohne JavaScript als gleichmäßige Spalten,
   mit JavaScript werden die Zeilen exakt per row-span angepasst.
---------------------------------------------------------------- */
.sm-masonry-gallery {
    display:               grid;
    grid-template-columns: repeat(var(--sm-gallery-cols, 3), 1fr);
    grid-auto-rows:        4px; /* kleine Grundeinheit für row-span */
    gap:                   0 var(--sm-gallery-gap, 12px);
    align-items:           start;
}

@media (max-width: 900px) {
    .sm-masonry-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .sm-masonry-gallery { grid-template-columns: 1fr; }
}

.sm-masonry-gallery__item {
    /* row-span wird per JS gesetzt */
    padding-bottom: var(--sm-gallery-gap, 12px);
}

/* Gap = none */
.sm-masonry-gallery[style*="--sm-gallery-gap:0px"] .sm-masonry-gallery__item {
    padding-bottom: 0;
}
.sm-masonry-gallery[style*="--sm-gallery-gap:0px"] .sm-masonry-gallery__btn,
.sm-masonry-gallery[style*="--sm-gallery-gap:0px"] .sm-masonry-gallery__static {
    border-radius: 0;
}

/* ----------------------------------------------------------------
   Bildverhältnis (aspect ratio)
---------------------------------------------------------------- */
/* Quadratisch (1:1) — fixe Höhe, JS-Masonry ignoriert natürliche Höhe */
.sm-masonry-gallery--ratio-square .sm-masonry-gallery__btn img,
.sm-masonry-gallery--ratio-square .sm-masonry-gallery__static img {
    width:            100%;
    aspect-ratio:     1 / 1;
    object-fit:       cover;
    object-position:  center;
}

/* Hochformat (3:4) */
.sm-masonry-gallery--ratio-portrait .sm-masonry-gallery__btn img,
.sm-masonry-gallery--ratio-portrait .sm-masonry-gallery__static img {
    width:            100%;
    aspect-ratio:     3 / 4;
    object-fit:       cover;
    object-position:  center top;
}

/* Querformat (16:9) */
.sm-masonry-gallery--ratio-landscape .sm-masonry-gallery__btn img,
.sm-masonry-gallery--ratio-landscape .sm-masonry-gallery__static img {
    width:            100%;
    aspect-ratio:     16 / 9;
    object-fit:       cover;
    object-position:  center;
}

/* ----------------------------------------------------------------
   Galerie-Button (mit Lightbox)
---------------------------------------------------------------- */
.sm-masonry-gallery__btn {
    display:       block;
    width:         100%;
    padding:       0;
    border:        none;
    background:    none;
    cursor:        pointer;
    border-radius: 6px;
    overflow:      hidden;
    position:      relative;
}

.sm-masonry-gallery__btn::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: rgba(0,0,0,0);
    transition: background 0.25s ease;
    border-radius: 6px;
}

.sm-masonry-gallery__btn:hover::after {
    background: rgba(109, 40, 217, 0.18);
}

.sm-masonry-gallery__btn:focus-visible {
    outline:        2px solid var(--sm-purple, #7C3AED);
    outline-offset: 2px;
}

.sm-masonry-gallery__btn img {
    width:      100%;
    height:     auto;
    display:    block;
    transition: transform 0.35s ease;
}

.sm-masonry-gallery__btn:hover img {
    transform: scale(1.03);
}

/* Galerie ohne Lightbox */
.sm-masonry-gallery__static {
    border-radius: 6px;
    overflow:      hidden;
}

.sm-masonry-gallery__static img {
    width:   100%;
    height:  auto;
    display: block;
}

/* ----------------------------------------------------------------
   Lightbox
---------------------------------------------------------------- */
.sm-lightbox-overlay {
    position:        fixed;
    inset:           0;
    background:      rgba(5, 5, 10, 0.94);
    z-index:         99998;
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             1rem;
    padding:         1.5rem;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.sm-lb-content {
    position:      relative;
    max-width:     min(90vw, 1100px);
    max-height:    90vh;
    display:       flex;
    flex-direction: column;
    align-items:   center;
}

.sm-lb-img {
    max-width:    100%;
    max-height:   85vh;
    object-fit:   contain;
    border-radius: 8px;
    box-shadow:   0 32px 80px rgba(0,0,0,0.6);
    display:      block;
}

.sm-lb-counter {
    margin-top: 0.75rem;
    font-size:  0.8125rem;
    color:      rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

/* Navigations-Buttons */
.sm-lb-close,
.sm-lb-prev,
.sm-lb-next {
    background:    rgba(255,255,255,0.07);
    border:        1px solid rgba(255,255,255,0.12);
    color:         #fff;
    cursor:        pointer;
    border-radius: 50%;
    display:       flex;
    align-items:   center;
    justify-content: center;
    transition:    background 0.2s ease, transform 0.2s ease;
    flex-shrink:   0;
}

.sm-lb-close {
    position:  absolute;
    top:       1rem;
    right:     1rem;
    width:     44px;
    height:    44px;
    z-index:   1;
}

.sm-lb-prev,
.sm-lb-next {
    width:  56px;
    height: 56px;
}

.sm-lb-close:hover,
.sm-lb-prev:hover,
.sm-lb-next:hover {
    background: rgba(124, 58, 237, 0.4);
    transform:  scale(1.08);
}

.sm-lb-close:focus-visible,
.sm-lb-prev:focus-visible,
.sm-lb-next:focus-visible {
    outline:        2px solid var(--sm-purple, #7C3AED);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .sm-lb-prev, .sm-lb-next { width: 40px; height: 40px; }
    .sm-lightbox-overlay      { gap: 0.5rem; padding: 1rem; }
}

/* ----------------------------------------------------------------
   FAQ Block (ergänzt die bestehenden .faq-section Stile)
---------------------------------------------------------------- */
.sm-faq-section .faq-section__heading {
    margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   Service-Card Bild (optionales Bild oben in der Karte)
---------------------------------------------------------------- */
.service-card__img {
    margin:        -1.5rem -1.5rem 1.25rem;
    border-radius: var(--sm-radius, 12px) var(--sm-radius, 12px) 0 0;
    overflow:      hidden;
    aspect-ratio:  16/9;
}

.service-card__img img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.04);
}

/* ----------------------------------------------------------------
   Apply Section (Shooting-Anfrage mit Hintergrundbild)
---------------------------------------------------------------- */
.apply {
    position: relative;
    overflow: hidden;
}

.apply__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.apply__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* wird per inline-style überschrieben */
}

.apply .container {
    position: relative;
    z-index: 1;
}

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

.apply__perks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    list-style: none;
    padding: 0;
}

.apply__perk {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: var(--sm-text-muted, var(--text-muted));
}

.apply__perk svg {
    width: 18px;
    height: 18px;
    color: var(--sm-crimson-light, var(--crimson-light));
    flex-shrink: 0;
}

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

/* ----------------------------------------------------------------
   Contact Section (2-spaltig: Info links, Formular rechts)
---------------------------------------------------------------- */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__item-icon {
    width: 44px;
    height: 44px;
    background: var(--sm-surface, var(--surface));
    border: 1px solid var(--sm-border, var(--border));
    border-radius: var(--sm-radius, var(--radius));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sm-purple-light, var(--purple-light));
}

.contact__item-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sm-text-subtle, var(--text-subtle));
    margin-bottom: 0.25rem;
}

.contact__item-value {
    font-size: 0.9375rem;
    color: var(--sm-text-muted, var(--text-muted));
}

.contact__item-value a {
    color: var(--sm-text-muted, var(--text-muted));
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__item-value a:hover {
    color: var(--sm-purple-light, var(--purple-light));
}

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

/* ----------------------------------------------------------------
   Contact Direct Buttons
---------------------------------------------------------------- */
.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.contact__direct-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    border-radius: var(--sm-radius-lg, 16px);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid;
}

.contact__direct-btn--email {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--sm-purple, #7C3AED);
    color: var(--sm-text, #f0f0f0);
}

.contact__direct-btn--email:hover {
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.contact__direct-btn--whatsapp {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.4);
    color: var(--sm-text, #f0f0f0);
}

.contact__direct-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.13);
    border-color: rgba(37, 211, 102, 0.7);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

/* ----------------------------------------------------------------
   Contact FAQ (inline in contact section)
---------------------------------------------------------------- */
.contact__faq-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sm-text-subtle, #666);
    margin-bottom: 0.75rem;
}

.contact__faq-item {
    border-bottom: 1px solid var(--sm-border, rgba(255,255,255,0.08));
    padding: 0.875rem 0;
}

.contact__faq-item:last-child {
    border-bottom: none;
}

.contact__faq-item summary {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sm-text-muted, #bbb);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.contact__faq-item summary::-webkit-details-marker { display: none; }

.contact__faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--sm-purple-light, #A78BFA);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact__faq-item[open] summary::after {
    transform: rotate(45deg);
}

.contact__faq-item summary:hover {
    color: var(--sm-text, #f0f0f0);
}

.contact__faq-item p {
    font-size: 0.875rem;
    color: var(--sm-text-subtle, #888);
    max-width: none;
    padding-top: 0.75rem;
    margin: 0;
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   Standalone FAQ Section
---------------------------------------------------------------- */
.faq-section .contact__faq-item summary {
    font-size: 1rem;
    font-weight: 400;
    color: var(--sm-text, #f0f0f0);
}

.faq-section .contact__faq-item p {
    font-size: 0.9375rem;
    color: var(--sm-text-muted, #bbb);
}

/* ================================================================
   Before/After Slider (.sm-ba)
================================================================ */
.sm-ba {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.sm-ba__hdr {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sm-ba__sdr {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}

.sm-ba__img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.sm-ba__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ba-pos, 50%);
    transform: translateX(-50%);
    width: 3px;
    background: rgba(255,255,255,0.9);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-ba__handle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sm-purple, #7C3AED);
    flex-shrink: 0;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.sm-ba:focus .sm-ba__handle,
.sm-ba:hover .sm-ba__handle {
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.55);
}

.sm-ba__label {
    position: absolute;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
}
.sm-ba__label--left  { left:  14px; }
.sm-ba__label--right { right: 14px; }

.sm-ba__caption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--sm-text-muted, #9CA3AF);
    margin-top: 0.75rem;
    font-style: italic;
}

.sm-ba:focus-visible {
    outline: 2px solid var(--sm-purple, #7C3AED);
    outline-offset: 3px;
}

/* Originalproportion: Bildhöhe bestimmt Container */
.sm-ba--natural { height: auto; }
.sm-ba--natural .sm-ba__hdr { position: relative; inset: unset; width: 100%; }
.sm-ba--natural .sm-ba__hdr .sm-ba__img { position: relative; inset: auto; height: auto; object-fit: unset; }
.sm-ba--natural .sm-ba__sdr { position: absolute; inset: 0; }
.sm-ba--natural .sm-ba__sdr .sm-ba__img { position: absolute; height: 100%; object-fit: cover; }

/* ================================================================
   Coming Soon Popup
================================================================ */
/* ================================================================
   COMING SOON MODAL OVERLAY
================================================================ */
#sm-soon-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
    /* display wird per JS inline gesetzt: none / flex */
}
.sm-soon__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sm-soon__box {
    position: relative;
    z-index: 1;
    background: #12121A;
    border: 1px solid rgba(190, 24, 93, 0.3);
    border-radius: 12px;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(190, 24, 93, 0.08),
        0 32px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(190, 24, 93, 0.08);
    animation: sm-soon-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
    overflow: hidden;
}
/* Crimson Glow-Linie oben */
.sm-soon__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #BE185D, transparent);
}
@keyframes sm-soon-in {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.sm-soon__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(237, 233, 254, 0.3);
    cursor: pointer;
    padding: 0.35rem;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.sm-soon__close:hover {
    color: #EDE9FE;
    background: rgba(255,255,255,0.06);
}
.sm-soon__badge {
    display: block;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}
.sm-soon__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EDE9FE;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.sm-soon__body {
    font-size: 0.9375rem;
    color: #9CA3AF;
    margin: 0 0 2rem;
    line-height: 1.65;
}
.sm-soon__alt-head {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B7280;
    margin: 0 0 0.625rem;
}
.sm-soon__alt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #BE185D;
    text-decoration: none;
    border: 1px solid rgba(190, 24, 93, 0.35);
    border-radius: 6px;
    padding: 0.6rem 1.25rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sm-soon__alt-link:hover {
    background: rgba(190, 24, 93, 0.1);
    border-color: rgba(190, 24, 93, 0.6);
    color: #DB2777;
}
@media (max-width: 480px) {
    #sm-soon-modal { padding: 1rem; }
    .sm-soon__box  { padding: 2.5rem 1.5rem 2rem; }
    .sm-soon__title { font-size: 1.25rem; }
}


/* ================================================================
   SM Pricing Section Block
================================================================ */

.sm-pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sm-pricing-header .section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sm-accent, #8B5CF6);
    margin-bottom: 0.5rem;
}

.sm-pricing-header h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.sm-pricing-header .lead {
    margin-top: 0.75rem;
    color: var(--sm-text-muted, #888);
    font-size: 0.9rem;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.sm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: start;
}

/* Card */
.sm-pricing-card {
    background: var(--sm-card-bg, #111118);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sm-pricing-card--featured {
    border-color: rgba(139,92,246,0.4);
    background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, var(--sm-card-bg, #111118) 60%);
}

/* Badge */
.sm-pricing-card__badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

/* Name */
.sm-pricing-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

/* Desc */
.sm-pricing-card__desc {
    font-size: 0.78rem;
    color: var(--sm-text-muted, #888);
    margin-bottom: 1.2rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Features */
.sm-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    font-size: 0.78rem;
    color: var(--sm-text, #e8e4f0);
}

.sm-pricing-card__features li {
    padding: 0.2rem 0 0.2rem 1.2rem;
    position: relative;
    line-height: 1.5;
}

.sm-pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.7rem;
    top: 0.25rem;
}

/* Prices — one row per market */
.sm-pricing-card__prices {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sm-pricing-market {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sm-pricing-market:last-child {
    border-bottom: none;
}

.sm-pricing-market__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sm-text-muted, #888);
    min-width: 58px;
    flex-shrink: 0;
}

.sm-pricing-market__day {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.sm-pricing-market__scene {
    font-size: 0.68rem;
    color: var(--sm-text-muted, #888);
    text-align: right;
    flex-shrink: 0;
}

/* Note below grid */
.sm-pricing-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--sm-text-muted, #888);
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.02);
    border-left: 2px solid var(--sm-accent, #8B5CF6);
    border-radius: 0 6px 6px 0;
    line-height: 1.7;
}

.sm-pricing-note strong {
    color: var(--sm-text, #e8e4f0);
}

/* Mobile */
@media (max-width: 600px) {
    .sm-pricing-grid {
        grid-template-columns: 1fr;
    }
    .sm-pricing-card__prices {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   Pricing Section — Light Mode Overrides
============================================================ */
body.sm-light-mode .sm-pricing-card {
    background: var(--sm-surface, #fff);
    border-color: var(--sm-border, rgba(0,0,0,0.12));
}

body.sm-light-mode .sm-pricing-card--featured {
    background: linear-gradient(135deg, rgba(139,92,246,0.07) 0%, var(--sm-surface, #fff) 60%);
    border-color: rgba(139,92,246,0.4);
}

body.sm-light-mode .sm-pricing-card__name {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-pricing-card__features {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-pricing-card__features li::before {
    color: #059669;
}

body.sm-light-mode .sm-pricing-card__prices {
    border-top-color: var(--sm-border, rgba(0,0,0,0.12));
}

body.sm-light-mode .sm-pricing-market {
    border-bottom-color: rgba(0,0,0,0.05);
}

body.sm-light-mode .sm-pricing-market__day {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-pricing-note {
    background: rgba(139,92,246,0.04);
    color: var(--sm-text-muted, #5C2D3E);
}

body.sm-light-mode .sm-pricing-note strong {
    color: var(--sm-text, #1A0410);
}

/* ============================================================
   Quote Builder
============================================================ */

/* Header */
.sm-quote__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sm-quote__meta {
    flex: 1;
    min-width: 180px;
}

.sm-quote__from {
    font-size: 0.82rem;
    color: var(--sm-text-muted, #888);
    margin: 0.25rem 0 0;
    letter-spacing: 0.02em;
}

.sm-quote__client {
    flex: 2;
    min-width: 200px;
}

.sm-quote__client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.3rem;
    line-height: 1.2;
}

.sm-quote__valid {
    font-size: 0.8rem;
    color: var(--sm-text-muted, #888);
    margin: 0;
}

.sm-quote__valid strong {
    color: var(--sm-text, #e8e4f0);
}

.sm-quote__actions {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Share Button */
.sm-quote__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.35);
    color: #8B5CF6;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
}

.sm-quote__share-btn:hover {
    background: rgba(139,92,246,0.18);
    border-color: rgba(139,92,246,0.6);
}

.sm-quote__share-btn--copied {
    background: rgba(16,185,129,0.15) !important;
    border-color: #10b981 !important;
    color: #10b981 !important;
}

/* Markt-Zeile */
.sm-quote__market-line {
    font-size: 0.78rem;
    color: var(--sm-text-muted, #888);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.sm-quote__market-line strong {
    color: var(--sm-text, #e8e4f0);
}

/* Preis-Highlight auf den Karten */
.sm-quote__price-highlight {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.sm-quote__price-day {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sm-quote__price-unit {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--sm-text-muted, #888);
    letter-spacing: 0;
}

.sm-quote__price-scene {
    font-size: 0.72rem;
    color: var(--sm-text-muted, #888);
    margin-top: 0.25rem;
}

/* Note */
.sm-quote__note {
    margin-top: 2rem;
}

/* Footer */
.sm-quote__footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: var(--sm-text-muted, #888);
    line-height: 1.7;
}

.sm-quote__footer p {
    margin: 0 0 0.4rem;
}

.sm-quote__cta-link {
    display: inline-block;
    margin-top: 0.6rem;
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sm-quote__cta-link:hover {
    opacity: 0.75;
}

/* ============================================================
   Quote Builder — Interaktive Karten-Auswahl
============================================================ */

/* Karte wird klickbar wenn Preisdaten vorhanden */
.sm-quote__card-wrap.is-interactive {
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    user-select: none;
}

.sm-quote__card-wrap.is-interactive:hover {
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
    transform: translateY(-2px);
}

.sm-quote__card-wrap.is-interactive:focus-visible {
    outline: 2px solid #8B5CF6;
    outline-offset: 3px;
}

/* Ausgewählt */
.sm-quote__card-wrap.is-selected {
    border-color: #8B5CF6 !important;
    background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(139,92,246,0.04) 100%) !important;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.2), 0 4px 20px rgba(139,92,246,0.15) !important;
    transform: translateY(-2px);
}

/* Auswahl-Chip am unteren Rand der Karte */
.sm-quote__card-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.2s;
    border: 1px solid rgba(139,92,246,0.3);
    background: rgba(139,92,246,0.06);
    color: #8B5CF6;
}

.sm-quote__card-chip-selected { display: none; }
.sm-quote__card-chip-default  { display: block; }

.is-selected .sm-quote__card-chip {
    background: rgba(139,92,246,0.2);
    border-color: #8B5CF6;
    color: #c4b5fd;
}

.is-selected .sm-quote__card-chip-selected { display: block; }
.is-selected .sm-quote__card-chip-default  { display: none; }

/* ============================================================
   Quote Builder — Sticky Kalkulator-Panel
============================================================ */

.sm-quote__calc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #0d0d14;
    border-top: 1px solid rgba(139,92,246,0.45);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.55), 0 -1px 0 rgba(139,92,246,0.2);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.sm-quote__calc.is-visible {
    transform: translateY(0);
}

/* Glanz-Linie oben */
.sm-quote__calc::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8B5CF6 40%, #f59e0b 60%, transparent 100%);
}

/* Bar (immer sichtbar) */
.sm-quote__calc-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    flex-wrap: wrap;
}

.sm-quote__calc-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sm-quote__calc-icon {
    color: #8B5CF6;
    flex-shrink: 0;
}

.sm-quote__calc-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: #aaa;
    white-space: nowrap;
}

.sm-quote__calc-bar-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.sm-quote__calc-total-label {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sm-quote__calc-total {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sm-quote__calc-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.sm-quote__calc-expand {
    padding: 0.45rem 0.9rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ccc;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.sm-quote__calc-expand:hover {
    background: rgba(255,255,255,0.1);
}

.sm-quote__calc-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.sm-quote__calc-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Detail-Aufklappbereich */
.sm-quote__calc-detail {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.2rem 1.5rem 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Zeilen */
.smqc-group {
    margin-bottom: 0.4rem;
}

.smqc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.28rem 0;
    font-size: 0.82rem;
    color: #ccc;
}

.smqc-row span:last-child {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-align: right;
}

.smqc-row--cost  { color: #aaa; font-size: 0.78rem; }
.smqc-row--sub   { color: #e8e4f0; font-weight: 600; }
.smqc-row--disc span:last-child { color: #10b981 !important; }
.smqc-row--tax   { color: #aaa; }

.smqc-sep {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.5rem 0;
}

/* Gesamtzeile */
.smqc-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0 0;
    border-top: 2px solid rgba(139,92,246,0.4);
    margin-top: 0.5rem;
    gap: 1rem;
}

.smqc-total span:first-child {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.smqc-grand {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
    .sm-quote__calc-bar {
        padding: 0.7rem 1rem;
        gap: 0.65rem;
    }

    .sm-quote__calc-bar-center {
        order: -1;
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sm-quote__calc-total-label { display: none; }
    .sm-quote__calc-total { font-size: 1rem; }

    .sm-quote__calc-detail {
        padding: 1rem;
    }

    .smqc-grand { font-size: 1.2rem; }
}

/* ============================================================
   Quote Builder — Rabatt
============================================================ */

.sm-quote__discount {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139,92,246,0.35);
    background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(245,158,11,0.07) 100%);
    position: relative;
}

/* Dezenter Glanz-Streifen */
.sm-quote__discount::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), rgba(245,158,11,0.5), transparent);
}

.sm-quote__discount-inner {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.4rem;
}

/* Großes Prozent-/Betrag-Badge */
.sm-quote__discount-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B5CF6, #f59e0b);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-quote__discount-pct {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.sm-quote__discount-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sm-quote__discount-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.sm-quote__discount-text span {
    font-size: 0.75rem;
    color: var(--sm-text-muted, #888);
}

/* Kalkulations-Tabelle (wenn Basispreis gesetzt) */
.sm-quote__discount-calc {
    border-top: 1px solid rgba(139,92,246,0.2);
    padding: 0.85rem 1.4rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sm-quote__discount-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.82rem;
}

.sm-quote__discount-row span:first-child {
    color: var(--sm-text-muted, #888);
}

.sm-quote__discount-row small {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Originaler Preis durchgestrichen */
.sm-quote__discount-strike {
    font-size: 0.88rem;
    color: var(--sm-text-muted, #888);
    text-decoration: line-through;
    text-decoration-color: rgba(239,68,68,0.6);
    text-decoration-thickness: 2px;
}

/* Ersparnis in Grün */
.sm-quote__discount-row--saving {
    padding: 0.3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sm-quote__discount-saving {
    color: #10b981 !important;
    font-weight: 700;
}

/* Endpreis — groß + prominent */
.sm-quote__discount-row--final {
    padding-top: 0.45rem;
}

.sm-quote__discount-row--final span:first-child {
    font-weight: 600;
    color: #fff !important;
    font-size: 0.88rem;
}

.sm-quote__discount-final {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile */
@media (max-width: 480px) {
    .sm-quote__discount-inner {
        gap: 0.85rem;
        padding: 1rem;
    }
    .sm-quote__discount-pct {
        font-size: 1.15rem;
    }
    .sm-quote__discount-final {
        font-size: 1.25rem !important;
    }
}

/* Fahrt- & Unterkunftskosten */
.sm-quote__costs {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
}

.sm-quote__costs-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sm-text-muted, #888);
    margin: 0 0 1rem;
}

.sm-quote__costs-table {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.sm-quote__cost-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sm-quote__cost-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sm-quote__cost-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
    color: var(--sm-text, #e8e4f0);
    line-height: 1.4;
}

.sm-quote__cost-icon {
    display: none; /* nur Screenreader — Emoji ist dekorativ */
}

.sm-quote__cost-sub {
    font-size: 0.7rem;
    color: var(--sm-text-muted, #888);
}

.sm-quote__cost-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.sm-quote__costs-hint {
    font-size: 0.7rem;
    color: var(--sm-text-muted, #888);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile */
@media (max-width: 640px) {
    .sm-quote__header {
        flex-direction: column;
        gap: 1rem;
    }

    .sm-quote__client-name {
        font-size: 1.2rem;
    }

    .sm-quote__price-day {
        font-size: 1.15rem;
    }

    .sm-quote__cost-icon {
        display: inline;
        margin-right: 0.3rem;
    }
}

/* ============================================================
   Quote Builder — Light Mode
============================================================ */

body.sm-light-mode .sm-quote__header {
    border-bottom-color: var(--sm-border, rgba(0,0,0,0.1));
}

body.sm-light-mode .sm-quote__client-name {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__valid strong {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__market-line strong {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__price-highlight {
    border-top-color: var(--sm-border, rgba(0,0,0,0.1));
}

body.sm-light-mode .sm-quote__price-day {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__footer {
    border-top-color: var(--sm-border, rgba(0,0,0,0.08));
}

body.sm-light-mode .sm-quote__share-btn {
    background: rgba(139,92,246,0.08);
    border-color: rgba(139,92,246,0.3);
}

body.sm-light-mode .sm-quote__share-btn:hover {
    background: rgba(139,92,246,0.14);
}

body.sm-light-mode .sm-quote__costs {
    background: rgba(139,92,246,0.03);
    border-color: var(--sm-border, rgba(0,0,0,0.1));
}

body.sm-light-mode .sm-quote__cost-row {
    border-bottom-color: var(--sm-border, rgba(0,0,0,0.08));
}

body.sm-light-mode .sm-quote__cost-value {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__costs-hint {
    border-top-color: var(--sm-border, rgba(0,0,0,0.08));
}

body.sm-light-mode .sm-quote__card-wrap.is-interactive:hover {
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

body.sm-light-mode .sm-quote__card-chip {
    background: rgba(139,92,246,0.06);
    border-color: rgba(139,92,246,0.25);
}

body.sm-light-mode .sm-quote__calc {
    background: #f8f7fc;
    border-top-color: rgba(139,92,246,0.3);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
}

body.sm-light-mode .sm-quote__calc-count { color: #888; }

body.sm-light-mode .sm-quote__calc-total {
    background: linear-gradient(135deg, #1A0410 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.sm-light-mode .sm-quote__calc-expand {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.12);
    color: #555;
}

body.sm-light-mode .smqc-row { color: #5C2D3E; }
body.sm-light-mode .smqc-row span:last-child { color: #1A0410; }
body.sm-light-mode .smqc-sep { background: rgba(0,0,0,0.08); }

body.sm-light-mode .smqc-total {
    border-top-color: rgba(139,92,246,0.3);
}

body.sm-light-mode .smqc-total span:first-child { color: #1A0410; }

body.sm-light-mode .smqc-grand {
    background: linear-gradient(135deg, #1A0410 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.sm-light-mode .sm-quote__discount {
    background: linear-gradient(135deg, rgba(139,92,246,0.07) 0%, rgba(245,158,11,0.05) 100%);
    border-color: rgba(139,92,246,0.25);
}

body.sm-light-mode .sm-quote__discount-text strong {
    color: var(--sm-text, #1A0410);
}

body.sm-light-mode .sm-quote__discount-calc {
    border-top-color: rgba(139,92,246,0.15);
}

body.sm-light-mode .sm-quote__discount-row--final span:first-child {
    color: var(--sm-text, #1A0410) !important;
}

body.sm-light-mode .sm-quote__discount-final {
    background: linear-gradient(135deg, #1A0410 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
