/* ============================================================
   Uniwrap Products — Frontend Stylesheet
   ============================================================ */

/* ─── Slider section ────────────────────────────────────────── */
.uw-prod {
    padding: 120px 48px 140px;
    background: #FAFBFA;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}
.uw-prod *,
.uw-prod *::before,
.uw-prod *::after { box-sizing: border-box; margin: 0; padding: 0; }

.uw-prod::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0E1E0, transparent);
}

/* Background depth elements */
.uw-prod__bg-glow-1 {
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(46,125,50,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-glow-2 {
    position: absolute;
    bottom: -60px; left: -40px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(46,125,50,0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-dots {
    position: absolute;
    top: 80px; left: 32px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(46,125,50,0.18) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-arc {
    position: absolute;
    top: 50%; right: 24px;
    transform: translateY(-50%);
    width: 180px; height: 360px;
    border: 2px solid rgba(46,125,50,0.12);
    border-left: none;
    border-radius: 0 180px 180px 0;
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-line {
    position: absolute;
    top: 55%; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(46,125,50,0.12) 30%, rgba(46,125,50,0.12) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-cross,
.uw-prod__bg-cross-2 {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.uw-prod__bg-cross {
    bottom: 140px; right: 15%;
    width: 20px; height: 20px;
    opacity: 0.3;
}
.uw-prod__bg-cross-2 {
    top: 100px; right: 20%;
    width: 14px; height: 14px;
    opacity: 0.22;
}
.uw-prod__bg-cross::before, .uw-prod__bg-cross::after,
.uw-prod__bg-cross-2::before, .uw-prod__bg-cross-2::after {
    content: '';
    position: absolute;
    background: #2E7D32;
    border-radius: 1px;
}
.uw-prod__bg-cross::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.uw-prod__bg-cross::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.uw-prod__bg-cross-2::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.uw-prod__bg-cross-2::after  { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }

/* Header */
.uw-prod__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}
.uw-prod__header-left { max-width: 560px; }

.uw-prod__label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: #2E7D32; margin-bottom: 16px;
}
.uw-prod__label::before {
    content: ''; display: block;
    width: 20px; height: 2px;
    background: #2E7D32; border-radius: 2px;
}

.uw-prod__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 3.2vw, 44px); font-weight: 800;
    line-height: 1.1; letter-spacing: -1.5px;
    color: #111;
}

.uw-prod__header-right {
    display: flex; align-items: center; gap: 14px;
    flex-shrink: 0;
}

.uw-prod__btn-all {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: #fff; background: #2E7D32;
    padding: 14px 28px; border-radius: 12px;
    text-decoration: none;
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
    .uw-prod__btn-all:hover {
        background: #1B5E20; transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(46,125,50,0.3);
        color: #fff;
    }
}

.uw-prod__arrows { display: flex; gap: 8px; }
.uw-prod__arrow {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid #ddd; background: #fff;
    color: #555; display: flex; align-items: center;
    justify-content: center; cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}
@media (hover: hover) {
    .uw-prod__arrow:hover {
        border-color: #2E7D32; color: #2E7D32;
        background: rgba(46,125,50,0.04);
    }
}
.uw-prod__arrow:active { transform: scale(0.93); }

/* Slider */
.uw-prod__slider-area {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
}
.uw-prod__slider-area::before,
.uw-prod__slider-area::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 32px;
    z-index: 5;
    pointer-events: none;
}
.uw-prod__slider-area::before {
    left: 0;
    background: linear-gradient(90deg, #FAFBFA 0%, transparent 100%);
}
.uw-prod__slider-area::after {
    right: 0;
    background: linear-gradient(270deg, #FAFBFA 0%, transparent 100%);
}

.uw-prod__slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 16px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}
.uw-prod__slider::-webkit-scrollbar { display: none; }
.uw-prod__slider--dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Card */
.uw-prod__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    flex: 0 0 300px;
    min-width: 280px;
    text-decoration: none;
    display: block;
}

.uw-prod__card-img { position: absolute; inset: 0; z-index: 1; }
.uw-prod__card-img img,
.uw-prod__card-placeholder {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: brightness(0.78);
    pointer-events: none;
}
.uw-prod__card-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    filter: none;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-img img {
        transform: scale(1.08);
        filter: brightness(0.5);
    }
}

.uw-prod__card-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg,
        transparent 25%,
        rgba(0,0,0,0.1) 45%,
        rgba(0,0,0,0.65) 78%,
        rgba(0,0,0,0.88) 100%
    );
    pointer-events: none;
}

.uw-prod__card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.uw-prod__card-cat {
    align-self: flex-start;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-cat {
        background: rgba(46,125,50,0.3);
        border-color: rgba(46,125,50,0.4);
        color: #a5d6a7;
    }
}

.uw-prod__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px; font-weight: 700;
    color: #fff; line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 0;
    transition: margin 0.4s ease;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-title {
        margin-bottom: 8px;
    }
}

.uw-prod__card-desc {
    font-size: 13.5px; line-height: 1.55;
    color: rgba(255,255,255,0.55);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease 0.05s;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-desc {
        max-height: 80px; opacity: 1;
    }
}

.uw-prod__card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: #a5d6a7; text-decoration: none;
    margin-top: 16px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    pointer-events: auto;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-link {
        transform: translateY(0); opacity: 1;
    }
}

.uw-prod__card-link-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(46,125,50,0.25);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.uw-prod__card-index {
    position: absolute;
    top: 20px; right: 22px; z-index: 4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s ease;
    pointer-events: none;
}
@media (hover: hover) {
    .uw-prod__card:hover .uw-prod__card-index {
        color: rgba(255,255,255,0.45);
    }
}

/* Progress bar */
.uw-prod__progress-wrap {
    max-width: 200px;
    margin: 40px auto 0;
    height: 3px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.uw-prod__progress-bar {
    height: 100%;
    background: #2E7D32;
    border-radius: 3px;
    width: 25%;
    transition: width 0.3s ease, transform 0.3s ease;
}

/* Scroll fade */
.uw-prod__fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.uw-prod__fade-up--visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1100px) {
    .uw-prod { padding: 80px 32px 100px; }
    .uw-prod__card { flex: 0 0 calc(40% - 10px); min-width: 270px; }
    .uw-prod__bg-arc { display: none; }
    .uw-prod__bg-dots { width: 80px; height: 80px; }
}
@media (max-width: 640px) {
    .uw-prod { padding: 60px 20px 80px; }
    .uw-prod__header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .uw-prod__card { flex: 0 0 85%; min-width: 260px; aspect-ratio: 4 / 5; }
    .uw-prod__slider-area::before,
    .uw-prod__slider-area::after { width: 24px; }
    .uw-prod__bg-dots,
    .uw-prod__bg-arc,
    .uw-prod__bg-cross,
    .uw-prod__bg-cross-2,
    .uw-prod__bg-line { display: none; }
    .uw-prod__card-desc { max-height: 80px; opacity: 1; }
    .uw-prod__card-link { transform: translateY(0); opacity: 1; }
    .uw-prod__card-img img { filter: brightness(0.5); }
    .uw-prod__card-title { font-size: 18px; margin-bottom: 8px; }
}

/* ============================================================
   PRODUCT GRID (used on archive page and [uw_products_grid])
   ============================================================ */
.uw-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
.uw-prod-grid *, .uw-prod-grid *::before, .uw-prod-grid *::after { box-sizing: border-box; }
.uw-prod-grid .uw-prod__card { flex: none; min-width: 0; aspect-ratio: 3 / 4; }

@media (max-width: 900px) {
    .uw-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
    .uw-prod-grid { grid-template-columns: 1fr; }
    .uw-prod-grid .uw-prod__card { aspect-ratio: 4 / 5; }
}

.uw-prod-grid__empty {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.uw-archive {
    background: #FAFBFA;
    min-height: 60vh;
    font-family: 'DM Sans', sans-serif;
    padding: 80px 24px 100px;
    box-sizing: border-box;
}
.uw-archive *, .uw-archive *::before, .uw-archive *::after { box-sizing: border-box; }

.uw-archive__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.uw-archive__header {
    text-align: center;
    margin-bottom: 48px;
}

.uw-archive__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: #2E7D32; margin-bottom: 16px;
}
.uw-archive__eyebrow::before {
    content: ''; display: block;
    width: 20px; height: 2px;
    background: #2E7D32; border-radius: 2px;
}

.uw-archive__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(34px, 4vw, 52px); font-weight: 800;
    line-height: 1.1; letter-spacing: -1.5px;
    color: #111;
    margin: 0 0 12px;
}

.uw-archive__subtitle {
    font-size: 16px;
    color: #6B7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.uw-archive__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.uw-archive__chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s ease;
}
@media (hover: hover) {
    .uw-archive__chip:hover {
        border-color: #2E7D32;
        color: #2E7D32;
    }
}
.uw-archive__chip.is-active {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
}

/* ============================================================
   SINGLE PRODUCT PAGE — redesign
   Borderless layout. Soft background depth, image + sticky
   info side-by-side on desktop, generous whitespace.
   ============================================================ */
.uw-single {
    --uw-green:       #2E7D32;
    --uw-green-dark:  #1B5E20;
    --uw-green-soft:  rgba(46, 125, 50, 0.08);
    --uw-green-tint:  rgba(46, 125, 50, 0.18);
    --uw-bg:          #FAFBFA;
    --uw-bg-warm:     #F5F5F0;
    --uw-mist:        #EEF2EF;
    --uw-text:        #0F1A11;
    --uw-text-muted:  #5b6a5e;
    --uw-text-soft:   #91a094;
    --uw-hairline:    rgba(15, 26, 17, 0.08);
    --uw-hairline-soft: rgba(15, 26, 17, 0.05);
    --uw-ease-out:    cubic-bezier(0.23, 1, 0.32, 1);

    position: relative;
    background: var(--uw-bg);
    color: var(--uw-text);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    /* Use overflow-x only — overflow:hidden breaks position:sticky on
       .uw-single__info because sticky requires no clipping ancestor. */
    overflow-x: clip;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 0 100px !important;
}
.uw-single *,
.uw-single *::before,
.uw-single *::after { box-sizing: border-box; }

@media (max-width: 900px) {
    .uw-single { padding: 0 0 64px !important; }
}

/* ─── Background depth ─────────────────────────────────────── */
.uw-single__bg-glow-1,
.uw-single__bg-glow-2,
.uw-single__bg-dots {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.uw-single__bg-glow-1 {
    top: -120px;
    right: -120px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(46,125,50,0.10) 0%, transparent 70%);
    border-radius: 50%;
}
.uw-single__bg-glow-2 {
    bottom: 200px;
    left: -180px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.uw-single__bg-dots {
    top: 280px;
    right: 6%;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(46,125,50,0.18) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    opacity: 0.55;
}

@media (max-width: 900px) {
    .uw-single__bg-dots { display: none; }
    .uw-single__bg-glow-1 { width: 320px; height: 320px; }
    .uw-single__bg-glow-2 { display: none; }
}

.uw-single__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0 32px !important;
}
@media (max-width: 700px) {
    .uw-single__inner { padding: 0 20px !important; }
}

/* ─── Breadcrumb ────────────────────────────────────────────── */
/* ─── Top banner ────────────────────────────────────────────── */
.uw-single-banner {
    position: relative;
    overflow: hidden;
    background: #0F1A11;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 64px !important;
}

.uw-single-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.uw-single-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    opacity: 0.35;
    display: block;
    filter: blur(2px);
    transform: scale(1.05);
}
.uw-single-banner__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0F1A11 0%, #1B3520 50%, #2E7D32 130%);
}
.uw-single-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,26,17,0.35) 0%, rgba(15,26,17,0.7) 100%);
    pointer-events: none;
}

.uw-single-banner__glow {
    position: absolute;
    top: -45%;
    right: -8%;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.4) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.uw-single-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto !important;
    padding: 56px 32px 44px !important;
}

.uw-single-banner__crumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px !important;
}
.uw-single-banner__crumb-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.uw-single-banner__crumb-link:hover { color: #a5d6a7; }
.uw-single-banner__crumb-sep { color: rgba(255, 255, 255, 0.3); }
.uw-single-banner__crumb-current { color: #fff; font-weight: 600; }

.uw-single-banner__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 !important;
    max-width: 880px;
}

.uw-single-banner__meta {
    margin-top: 16px !important;
}
.uw-single-banner__tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 700px) {
    .uw-single-banner { min-height: 240px; margin-bottom: 40px !important; }
    .uw-single-banner__inner { padding: 40px 20px 32px !important; }
    .uw-single-banner__glow { width: 320px; height: 320px; }
}

/* ─── Hero: image + info ──────────────────────────────────── */
.uw-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 96px !important;
}

@media (max-width: 1000px) {
    .uw-single__hero {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 64px !important;
    }
}

/* ─── Media (left column) ──────────────────────────────────── */
.uw-single__media { position: relative; }

.uw-single__media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--uw-bg-warm);
}
.uw-single__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.uw-single__media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--uw-mist) 0%, var(--uw-bg-warm) 100%);
}

.uw-single__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 16px !important;
    flex-wrap: wrap;
}

.uw-single__thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--uw-bg-warm);
    border: 2px solid transparent;
    padding: 0 !important;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.uw-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.uw-single__thumb:hover { transform: translateY(-2px); }
.uw-single__thumb.is-active {
    border-color: var(--uw-green);
}

@media (max-width: 600px) {
    .uw-single__media-frame { aspect-ratio: 1 / 1; border-radius: 18px; }
    .uw-single__thumb { width: 56px; height: 56px; border-radius: 10px; }
}

/* ─── Info (right column, sticky on desktop) ───────────────── */
.uw-single__info {
    position: sticky;
    top: 100px;
}
@media (max-width: 1000px) {
    .uw-single__info { position: static; }
}

.uw-single__info-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.uw-single__category {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--uw-green);
    text-decoration: none;
    padding: 5px 0 !important;
    margin-bottom: 12px !important;
    position: relative;
}
.uw-single__category::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--uw-green);
    border-radius: 2px;
    margin-right: 10px !important;
    vertical-align: middle;
}
.uw-single__category:hover { color: var(--uw-green-dark); }

.uw-single__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--uw-text);
    margin: 0 0 18px 0 !important;
}

.uw-single__lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--uw-text-muted);
    margin: 0 0 32px 0 !important;
    max-width: 520px;
}

/* Highlights (top 4 specs) — borderless, bottom hairline */
.uw-single__highlights {
    margin: 0 0 36px 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}
.uw-single__highlight {
    display: grid;
    grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
    gap: 24px;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--uw-hairline);
    align-items: baseline;
}
.uw-single__highlight:last-child {
    border-bottom-color: transparent;
}
.uw-single__highlight-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--uw-text-muted);
    margin: 0 !important;
}
.uw-single__highlight-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--uw-text);
    margin: 0 !important;
    line-height: 1.45;
}

@media (max-width: 480px) {
    .uw-single__highlight { grid-template-columns: 1fr; gap: 4px; }
}

/* Actions */
.uw-single__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px !important;
}

.uw-single__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px !important;
    background: var(--uw-green);
    color: #ffffff !important;
    border: none;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.28);
    transition: background 0.3s var(--uw-ease-out),
                transform 0.3s var(--uw-ease-out),
                box-shadow 0.3s var(--uw-ease-out);
}
.uw-single__cta svg { transition: transform 0.3s ease; }
@media (hover: hover) {
    .uw-single__cta:hover {
        background: #43A047;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(46, 125, 50, 0.35);
        color: #ffffff !important;
    }
    .uw-single__cta:hover svg { transform: translateX(3px); }
}

.uw-single__sku {
    font-size: 13px;
    color: var(--uw-text-muted);
    letter-spacing: 0.3px;
}
.uw-single__sku code {
    background: var(--uw-mist);
    color: var(--uw-text);
    padding: 3px 9px !important;
    border-radius: 6px;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 12px;
    margin-left: 4px !important;
}

/* Trust signals */
.uw-single__trust {
    list-style: none;
    margin: 0 !important;
    padding: 24px 0 0 0 !important;
    border-top: 1px solid var(--uw-hairline);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.uw-single__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--uw-text-muted);
    line-height: 1.5;
}
.uw-single__trust-item svg {
    color: var(--uw-green);
    flex-shrink: 0;
}

/* ─── Block sections (specs / prose / gallery) ─────────────── */
.uw-single__block {
    margin-bottom: 80px !important;
    max-width: 920px;
}
@media (max-width: 900px) {
    .uw-single__block { margin-bottom: 56px !important; }
}

.uw-single__block-head {
    margin-bottom: 28px !important;
}
.uw-single__eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--uw-green);
    margin-bottom: 12px !important;
}
.uw-single__eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--uw-green);
    border-radius: 2px;
    margin-right: 10px !important;
}
.uw-single__eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}
.uw-single__eyebrow--light::before {
    background: rgba(255, 255, 255, 0.7);
}

.uw-single__block-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--uw-text);
    margin: 0 !important;
}

/* Specs (full table) — also borderless rows */
.uw-single__specs {
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px !important;
    row-gap: 0 !important;
}
@media (max-width: 700px) {
    .uw-single__specs { grid-template-columns: 1fr; }
}

.uw-single__spec {
    display: grid;
    grid-template-columns: minmax(140px, 0.6fr) minmax(0, 1fr);
    gap: 24px;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--uw-hairline);
    align-items: baseline;
}
.uw-single__spec-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--uw-text-muted);
    margin: 0 !important;
}
.uw-single__spec-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--uw-text);
    margin: 0 !important;
    line-height: 1.45;
}
@media (max-width: 480px) {
    .uw-single__spec { grid-template-columns: 1fr; gap: 4px; }
}

/* Long description — pure prose */
.uw-single__block--prose .uw-single__prose {
    font-family: 'DM Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--uw-text-muted);
    max-width: 720px;
}
.uw-single__prose h1,
.uw-single__prose h2,
.uw-single__prose h3,
.uw-single__prose h4,
.uw-single__prose h5,
.uw-single__prose h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--uw-text);
    margin: 1.6em 0 0.5em !important;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.uw-single__prose h2 { font-size: 1.55rem; }
.uw-single__prose h3 { font-size: 1.25rem; }
.uw-single__prose p  { margin: 0 0 1em !important; }
.uw-single__prose p:last-child { margin-bottom: 0 !important; }
.uw-single__prose ul,
.uw-single__prose ol {
    margin: 0 0 1em 1.4em !important;
    padding: 0 !important;
}
.uw-single__prose li { margin-bottom: 0.4em !important; }
.uw-single__prose strong { color: var(--uw-text); font-weight: 600; }
.uw-single__prose a {
    color: var(--uw-green);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}
.uw-single__prose a:hover { color: var(--uw-green-dark); }

/* Gallery — clean grid, no borders */
.uw-single__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 700px) {
    .uw-single__gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 420px) {
    .uw-single__gallery { grid-template-columns: 1fr; }
}

.uw-single__gallery-item {
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: var(--uw-bg-warm);
    cursor: zoom-in;
    position: relative;
}
.uw-single__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--uw-ease-out);
}
@media (hover: hover) {
    .uw-single__gallery-item:hover img { transform: scale(1.05); }
}

/* ─── Bottom CTA strip — slim, dark, no boxy frame ─────────── */
.uw-single__cta-strip {
    margin-top: 32px !important;
    padding: 56px 56px !important;
    background: linear-gradient(135deg, #0f1a11 0%, #1B5E20 70%, #2E7D32 130%);
    border-radius: 28px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.uw-single__cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.uw-single__cta-strip::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    opacity: 0.5;
}

@media (max-width: 800px) {
    .uw-single__cta-strip {
        grid-template-columns: 1fr;
        padding: 40px 28px !important;
        text-align: left;
        border-radius: 22px;
    }
}

.uw-single__cta-strip-text {
    position: relative;
    z-index: 1;
}

.uw-single__cta-strip-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 10px 0 !important;
    max-width: 580px;
}

.uw-single__cta-strip-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 !important;
    max-width: 560px;
}

.uw-single__cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px !important;
    background: #ffffff;
    color: var(--uw-green-dark) !important;
    border: none;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s var(--uw-ease-out),
                box-shadow 0.3s var(--uw-ease-out);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.uw-single__cta-strip-btn svg { transition: transform 0.3s ease; }
@media (hover: hover) {
    .uw-single__cta-strip-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
        color: var(--uw-green-dark) !important;
    }
    .uw-single__cta-strip-btn:hover svg { transform: translateX(3px); }
}

/* ─── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .uw-single__media-img,
    .uw-single__cta,
    .uw-single__cta svg,
    .uw-single__cta-strip-btn,
    .uw-single__cta-strip-btn svg,
    .uw-single__gallery-item img,
    .uw-single__thumb {
        transition: none !important;
    }
}

/* ============================================================
   QUOTE REQUEST MODAL
   Triggered from single product CTA buttons.
   ============================================================ */
.uw-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'DM Sans', sans-serif;
}
.uw-quote-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.uw-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 17, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.uw-quote-modal__panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(15, 26, 17, 0.35),
                0 8px 24px rgba(15, 26, 17, 0.18);
    padding: 36px 36px 32px;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.uw-quote-modal.is-open .uw-quote-modal__panel {
    transform: translateY(0) scale(1);
}

.uw-quote-modal__panel::-webkit-scrollbar { width: 8px; }
.uw-quote-modal__panel::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .uw-quote-modal { padding: 0; align-items: flex-end; }
    .uw-quote-modal__panel {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 22px 22px 0 0;
        padding: 28px 22px 24px;
        transform: translateY(40px);
    }
    .uw-quote-modal.is-open .uw-quote-modal__panel { transform: translateY(0); }
}

/* Decorative depth elements inside the modal */
.uw-quote-modal__bg-glow {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(46,125,50,0.13) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.uw-quote-modal__bg-dots {
    position: absolute;
    bottom: 60px;
    left: -60px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(46,125,50,0.18) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.uw-quote-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}
.uw-quote-modal__close:hover {
    background: #e5e7eb;
    color: #111827;
    transform: rotate(90deg);
}

.uw-quote-modal__head {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

.uw-quote-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #2E7D32;
    margin-bottom: 12px;
}
.uw-quote-modal__eyebrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: #2E7D32;
    border-radius: 2px;
}

.uw-quote-modal__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #111827;
    margin: 0 0 8px;
}

.uw-quote-modal__subtitle {
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0;
}

/* Product context chip */
.uw-quote-modal__context {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(46,125,50,0.05) 0%, rgba(46,125,50,0.02) 100%);
    border: 1px solid rgba(46,125,50,0.12);
    border-radius: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.uw-quote-modal__context-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}
.uw-quote-modal__context-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uw-quote-modal__context-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.uw-quote-modal__context-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #2E7D32;
}
.uw-quote-modal__context-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uw-quote-modal__context-sku {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.uw-quote-modal__context-sku code {
    background: rgba(15,26,17,0.05);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 11.5px;
    color: #374151;
}

/* Form */
.uw-quote-modal__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Make sure the HTML [hidden] attribute always wins —
   without this, our display:flex on .uw-quote-modal__form
   (and the success panel below) overrides the browser default
   and the form stays visible after a successful submit. */
.uw-quote-modal [hidden] {
    display: none !important;
}

/* When the request was submitted successfully we hide everything
   above the success panel so the confirmation gets the full stage. */
.uw-quote-modal.is-success .uw-quote-modal__head,
.uw-quote-modal.is-success .uw-quote-modal__context {
    display: none !important;
}

.uw-quote-modal__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.uw-quote-modal__row--two {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    column-gap: 16px !important;
    row-gap: 16px !important;
}
@media (max-width: 480px) {
    .uw-quote-modal__row--two { grid-template-columns: 1fr !important; }
}

.uw-quote-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.uw-quote-modal__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.1px;
}
.uw-quote-modal__required {
    color: #2E7D32;
    margin-left: 2px;
}

.uw-quote-modal,
.uw-quote-modal *,
.uw-quote-modal *::before,
.uw-quote-modal *::after {
    box-sizing: border-box !important;
}

.uw-quote-modal__input,
.uw-quote-modal__textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: #111827;
    line-height: 1.4;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    margin: 0 !important;
}
.uw-quote-modal__input::placeholder,
.uw-quote-modal__textarea::placeholder {
    color: #9ca3af;
}
.uw-quote-modal__input:focus,
.uw-quote-modal__textarea:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.uw-quote-modal__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.uw-quote-modal__input.is-error,
.uw-quote-modal__textarea.is-error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

/* Feedback message */
.uw-quote-modal__feedback {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.45;
}
.uw-quote-modal__feedback.is-error {
    background: rgba(220, 38, 38, 0.08);
    color: #991B1B;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Footer */
.uw-quote-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.uw-quote-modal__legal {
    font-size: 11.5px;
    color: #9ca3af;
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.4;
}

.uw-quote-modal__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2E7D32;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
    transition: background 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
    flex-shrink: 0;
}
.uw-quote-modal__submit:hover:not(:disabled) {
    background: #43A047;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.38);
}
.uw-quote-modal__submit:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.uw-quote-modal__submit-spinner {
    display: none;
    align-items: center;
    justify-content: center;
}
.uw-quote-modal__submit-spinner svg {
    animation: uw-quote-spin 0.8s linear infinite;
}
@keyframes uw-quote-spin {
    to { transform: rotate(360deg); }
}

.uw-quote-modal__submit.is-loading .uw-quote-modal__submit-arrow,
.uw-quote-modal__submit.is-loading .uw-quote-modal__submit-label { display: none; }
.uw-quote-modal__submit.is-loading .uw-quote-modal__submit-spinner { display: inline-flex; }

.uw-quote-modal__submit-arrow {
    transition: transform 0.25s ease;
}
.uw-quote-modal__submit:hover:not(:disabled) .uw-quote-modal__submit-arrow {
    transform: translateX(3px);
}

/* Success state */
.uw-quote-modal__success {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 12px 12px;
}
.uw-quote-modal__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: uw-quote-success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes uw-quote-success-pop {
    0%   { opacity: 0; transform: scale(0.4); }
    100% { opacity: 1; transform: scale(1); }
}
.uw-quote-modal__success-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}
.uw-quote-modal__success-text {
    font-size: 14.5px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0 0 22px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.uw-quote-modal__success-close {
    display: inline-flex;
    align-items: center;
    padding: 11px 28px;
    background: #2E7D32;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}
.uw-quote-modal__success-close:hover {
    background: #1B5E20;
}

/* Body lock when modal is open */
body.uw-quote-modal-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .uw-quote-modal,
    .uw-quote-modal__panel,
    .uw-quote-modal__close,
    .uw-quote-modal__submit-arrow,
    .uw-quote-modal__success-icon {
        transition: none !important;
        animation: none !important;
    }
}
