/* // G Suite icons, to load correctly these need to be in alphabetical order. */
  @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=border_color,box,counter_1,counter_2,counter_3,credit_card,indeterminate_question_box,mobile_charge,outgoing_mail,phone_in_talk,stacks,timer,upload");

  @import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

  /**

  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
  **/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id], div[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #1d1d1f;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 0;
    width: 270px;
}

.logo-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1d1d1f;
    letter-spacing: -0.3px;
}

.logo-subtext {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6e6e73;
    font-weight: 500;
    margin-left: 0.5rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-transform: uppercase;
}

nav a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.2s ease;
    letter-spacing: -0.1px;
}

nav a:hover {
    color: #e8622c;
}

.btn-quote {
    background-color: #e8622c;
    border: none;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.1px;
}

.btn-quote:hover {
    background-color: #cf501f;
    color: white;
}

h1, h2, h3 {
    font-weight: 700;
}

/* ===== PRODUCT HERO ===== */
.product-hero { background:#f8f8f8; padding:40px 0; }

.product-image {
    background: #fff;
    border-radius: 0px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 120px;
    margin: 0 auto;
    box-shadow: 0 0 10px 0 #ddd;
    max-width: 450px;
    padding: 20px;
}
.product-image img { width:100%; padding: 20px; }

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    position: sticky;
    top: 120px;
    margin: 0 auto;
    max-width: 450px;
}

.gallery-main {
    background: #fff;
    box-shadow: 0 0 10px 0 #ddd;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 10px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 6px;
    padding: 4px 2px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumb {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 3px;
    background: #f8f8f8;
    transition: border-color 0.15s;
}

.gallery-thumb:hover { border-color: #aaa; }
.gallery-thumb.active { border-color: #e8622c; }
.product-details h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .product-details h1 {
        margin-top: 0;
    }
}

.accent-line { width:40px; height:3px; background:#e8622c; margin-bottom:20px; border-radius:2px; }
.product-description { color:#6e6e73; margin-bottom:24px; font-size:15px; line-height:1.7; }
.price-section { margin-bottom:20px; padding:20px 0; border-top:1px solid #aaa; }
.price-label { font-size:10px; text-transform:uppercase; color:#6e6e73; font-weight:600; letter-spacing:1px; margin-bottom:4px; }
.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}
.price-note { font-size:14px; color:#333; margin-top:4px; }
.color-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 5px 12px;
    border-radius: 980px;
    border: 1px solid #aaa;
    font-size: 14px;
    color: #333;
}
.color-dot { width:14px; height:14px; border-radius:50%; display:inline-block; border: 1px solid #aaa; }
.features-section { margin-top:24px; }
.features-label { font-size:11px; font-weight:600; text-transform:uppercase; color:#1d1d1f; margin-bottom:12px; letter-spacing:1px; }
.features-list { list-style:none; }
.features-list li { padding:5px 0 5px 18px; position:relative; font-size:14px; color:#6e6e73; line-height:1.5; }
.features-list li::before { content:"\25CF"; position:absolute; left:0; color:#e8622c; font-size:9px; top:9px; }

/* ===== CONFIGURATOR ===== */
.config-wrap { padding: 0; }
.product-details { padding: 0; }

@media (min-width: 992px) {
    .config-wrap { padding: 0 20px; }
    .product-details { padding: 0 20px; }
}

.configurator { background:#fff; padding: 20px; }
.config-header { }
.config-header h2 { font-size:26px; font-weight:700; letter-spacing:-0.02em; }
.config-header p { color:#fff; font-size:13px; margin-top:4px; }

.step-indicators { display:flex; justify-content:center; padding:32px 40px 10px; }
.step-indicator { display:flex; flex-direction:column; align-items:center; flex:1; position:relative; cursor:pointer; }
.step-indicator .step-line { position:absolute; top:18px; left:50%; width:100%; height:2px; background:#e8e8ed; z-index:0; }
.step-indicator:last-child .step-line { display:none; }
.step-indicator .step-line.done { background:#34c759; }
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    transition: all .3s;
    background: #e8e8ed;
    color: #6e6e73;
}
.step-indicator.active .step-circle { background:#e8622c; color:#fff; box-shadow:0 2px 10px rgba(232,98,44,.35); }
.step-indicator.done .step-circle { background:#34c759; color:#fff; }
.step-label { font-size:10px; font-weight:600; text-transform:uppercase; color:#6e6e73; margin-top:7px; letter-spacing:.5px; transition:color .3s; }
.step-indicator.active .step-label { color:#e8622c; }
.step-indicator.done .step-label { color:#34c759; }

.step-content { padding:40px; min-height:280px; }
.step-panel { display:none; animation:fadeIn .3s ease; }
.step-panel.active { display:block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.step-title { font-size:20px; font-weight:700; color:#1d1d1f; margin-bottom:6px; letter-spacing:-0.02em; }
.step-subtitle { font-size:13px; color:#6e6e73; margin-bottom:24px; }

/* Color swatches */
.config-swatches { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:14px; }
.config-swatch { cursor:pointer; text-align:center; transition:transform .2s; }
.config-swatch:hover { transform:scale(1.06); }
.swatch-circle { width:52px; height:52px; border-radius:50%; position:relative; transition:box-shadow .2s; }
.config-swatch.selected .swatch-circle { box-shadow:0 0 0 3px #fff, 0 0 0 5px #e8622c; }
.swatch-check { display:none; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); color:#fff; font-size:18px; text-shadow:0 1px 3px rgba(0,0,0,.4); }
.config-swatch.selected .swatch-check { display:block; }
.selected-color-name { font-size:13px; color:#1d1d1f; font-weight:500; margin-top:10px; }

/* Upload */
.upload-zone { border:2px dashed #d2d2d7; border-radius:14px; padding:20px; text-align:center; transition:all .3s; cursor:pointer; background:#f5f5f7; }
.upload-zone:hover,.upload-zone.dragover { border-color:#e8622c; background:#fff8f5; }
.upload-icon svg { margin-bottom:10px; }
.upload-zone p { font-size:15px; color:#6e6e73; margin-bottom:4px; }
.upload-or { font-size:12px; color:#aeaeb2; margin:10px 0; }
.upload-browse { display:inline-block; background:#e8622c; color:#fff; padding:9px 24px; border-radius:980px; font-weight:500; font-size:13px; cursor:pointer; transition:background .2s; }
.upload-browse:hover { background:#cf501f; }
.upload-formats { font-size:11px; color:#6e6e73; margin-top:14px; }
.upload-preview { display:none; align-items:center; gap:14px; padding:18px; background:#f5f5f7; border-radius:10px; margin-top:14px; }
.upload-preview.visible { display:flex; }
.file-icon { font-size:30px; }
.file-info { flex:1; text-align:left; }
.file-name { font-weight:600; font-size:14px; color:#1d1d1f; }
.file-size { font-size:12px; color:#6e6e73; }
.file-remove { background:none; border:none; color:#e8622c; cursor:pointer; font-size:18px; padding:5px 10px; font-weight:700; }
.upload-skip { display:block; margin-top:14px; font-size:13px; color:#6e6e73; }
.upload-skip a { color:#e8622c; cursor:pointer; text-decoration:none; }
.upload-skip a:hover { text-decoration:underline; }

/* Quantity */
.qty-control { display:flex; align-items:center; max-width:180px; margin-bottom:24px; }
.qty-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid #d2d2d7;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    font-weight: 500;
    transition: all .2s;
}
.qty-btn:hover { background:#e8622c; color:#fff; border-color:#e8622c; }
.qty-btn:first-child { border-radius:10px 0 0 10px; }
.qty-btn:last-child { border-radius:0 10px 10px 0; }
.qty-input {
    width: 76px;
    height: 44px;
    text-align: center;
    border: 1.5px solid #d2d2d7;
    border-left: none;
    border-right: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    outline: none;
    background: #fff;
}
.qty-input:focus { border-color:#e8622c; }

.pricing-live { background:#f0faf4; border-radius:12px; padding:20px; margin-bottom:25px; }
.live-price { font-size:20px; color:#30d158; font-weight:700; letter-spacing:-0.02em; }
.live-label { font-size:10px; text-transform:uppercase; color:#6e6e73; font-weight:600; letter-spacing:1px; }
.live-total { font-size:13px; color:#1d1d1f; font-weight:600; margin-top:4px; }
.moq-warning { display:none; color:#ff3b30; font-size:13px; font-weight:500; margin-top:8px; padding:8px 12px; background:#fff2f1; border-radius:8px; }
.moq-warning.visible { display:block; }

.ref-pricing { margin-top:20px; }
.ref-pricing h4 { font-size:12px; color:#1d1d1f; text-transform:uppercase; margin-bottom:10px; letter-spacing:1px; font-weight:600; }
.ref-table { width:100%; border-collapse:collapse; }
.ref-table th { background:#f5f5f7; padding:10px 14px; text-align:left; font-size:11px; font-weight:600; color:#1d1d1f; text-transform:uppercase; letter-spacing:.5px; border-bottom:1.5px solid #e8e8ed; }
.ref-table td { padding:7px 14px; border-bottom:1px solid #f2f2f7; font-size:14px; color:#1d1d1f; }
.ref-table tr.active-tier { background:#fff8f5; }
.ref-table tr.active-tier td { color:#e8622c; font-weight:600; }

/* Shipping */
.ship-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.ship-group { display:flex; flex-direction:column; }
.ship-group.full { grid-column:1/-1; }
.ship-group label { font-size:11px; font-weight:500; text-transform:uppercase; color:#6e6e73; margin-bottom:5px; letter-spacing:.5px; }
.ship-group .req { color:#e8622c; }
.ship-group input,
.ship-group select,
.ship-group textarea {
    padding: 10px 13px;
    border: 1.5px solid #d2d2d7;
    border-radius: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
}
.ship-group input:focus,
.ship-group select:focus,
.ship-group textarea:focus {
    outline: none;
    border-color: #e8622c;
    box-shadow: 0 0 0 3px rgba(232,98,44,.15);
}
.ship-group textarea { resize:vertical; min-height:80px; }
.field-error { display:none; font-size:11px; color:#ff3b30; margin-top:3px; }
.ship-group.has-error input,
.ship-group.has-error select { border-color:#ff3b30; }
.ship-group.has-error .field-error { display:block; }

/* Step Nav */
.step-nav { display:flex; justify-content:space-between; align-items:center; padding:0 40px 32px; }
.btn-back {
    padding: 11px 28px;
    border: 1.5px solid #d2d2d7;
    background: transparent;
    color: #1d1d1f;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    -webkit-font-smoothing: antialiased;
}
.btn-back:hover { background:#1d1d1f; color:#fff; border-color:#1d1d1f; }
.btn-next {
    padding: 11px 28px;
    border: none;
    background: #e8622c;
    color: #fff;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    -webkit-font-smoothing: antialiased;
}
.btn-next:hover { background:#cf501f; }
.btn-hidden { visibility:hidden; }

/* Order Summary Bar */
.order-summary-bar { background:#f5f5f7; border-top:1px solid #e8e8ed; padding:40px 20px; margin-top: 40px; }
.summary-grid { display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; }
.summary-items { display:flex; gap:28px; flex-wrap:wrap; }
.summary-item .s-label { font-size:10px; text-transform:uppercase; color:#6e6e73; font-weight:600; letter-spacing:.5px; }
.summary-item .s-value { font-size:14px; color:#1d1d1f; font-weight:600; margin-top:2px; }
.btn-submit {
    padding: 14px 44px;
    border: none;
    background: #e8622c;
    color: #fff;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}
.btn-submit:hover { background:#cf501f; }
.submit-note { text-align:center; font-size:12px; color:#6e6e73; padding:14px 40px 24px; }

/* Success Overlay */
.success-overlay { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,.6); z-index:1000; align-items:center; justify-content:center; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.success-overlay.visible { display:flex; }
.success-card { background:#fff; border-radius:20px; padding:56px 48px; text-align:center; max-width:480px; width:90%; animation:popIn .3s ease; }
@keyframes popIn { from { transform:scale(.94); opacity:0; } to { transform:scale(1); opacity:1; } }
.success-card h3 { font-size:26px; font-weight:700; color:#1d1d1f; margin-bottom:10px; letter-spacing:-0.02em; }
.success-card p { font-size:15px; color:#6e6e73; line-height:1.6; margin-bottom:24px; }
.success-icon { font-size:60px; margin-bottom:20px; }
.success-close {
    padding: 12px 36px;
    background: #e8622c;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    -webkit-font-smoothing: antialiased;
}
.success-close:hover { background:#cf501f; }

/* ===== FOOTER ===== */

footer {
    background-color: #212226;
    color: #ebebeb;
    padding: 40px 0;
}

footer p {
    margin-bottom: 15px;
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid #666;
    border-top: 1px solid #666;
}

.footer-logo {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #ebebeb;
    width: 115px;
    padding-bottom: 20px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #ebebeb;
    line-height: 1.6;
}

.footer-lockup {
    text-align: left;
}

@media (min-width: 768px) {
    .footer-lockup {
        text-align: right;
    }
}

.footer-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ebebeb;
    display: block;
    margin-bottom: 2px;
}

.footer-contact-value {
    font-size: 0.875rem;
    color: #ebebeb;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: #ebebeb;
    padding-top: 40px;
}

/* ===== HAMBURGER / MOBILE NAV ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1d1d1f;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:1024px) {
    .hamburger { display: flex; }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 440px;
        min-width: 240px;
        height: 100vh;
        background: #f3f3f3;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 90px 0 40px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }

    nav.open { transform: translateX(0); }

    nav a {
        display: block;
        padding: 14px 20px;
        font-size: 0.95rem;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.75);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        text-align: center;
        width: 100%;
    }

    nav a.nav-cta {
        display: block;
        margin: 20px 20px 0;
        width: calc(100% - 40px);
        padding: 12px 20px;
        text-align: center;
        border-radius: 980px;
        border-bottom: none;
        font-size: 0.95rem;
        color: #fff;
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-backdrop.active {
        display: block;
    }
}

@media(max-width:768px) {
    .product-hero .inner { grid-template-columns:1fr; gap:24px; }
    .product-image { position:static; }
    .step-indicators { flex-wrap:wrap; gap:5px; padding:20px 16px 5px; }
    .step-indicator .step-line { display:none; }
    .step-content { padding:24px 20px; }
    .step-nav { padding:0 20px 24px; }
    .ship-grid { grid-template-columns:1fr; }
    .order-summary-bar { padding:20px; }
    .summary-grid { grid-template-columns:1fr; text-align:center; }
    .summary-items { justify-content:center; }
    .config-header { }
    .config-header h2 { font-size:21px; }
    .product-details h1 { font-size:26px; }
    .price-display { font-size:28px; }
}

/** overrides **/

.container-xl {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== PRODUCT ABOUT SECTION ===== */
.product-about { padding: 60px 0; border-top: 1px solid #e8e8ed; background: #fff; }
.product-about h2 { font-size: 22px; font-weight: 700; color: #1d1d1f; margin-bottom: 14px; letter-spacing: -0.02em; }
.product-about .about-description { font-size: 15px; color: #6e6e73; line-height: 1.7; margin-bottom: 32px; max-width: 680px; }
.about-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
@media(max-width: 600px) { .about-features-grid { grid-template-columns: 1fr; } }
.about-features-grid li { list-style: none; padding: 6px 0 6px 18px; position: relative; font-size: 14px; color: #6e6e73; line-height: 1.5; }
.about-features-grid li::before { content: "\25CF"; position: absolute; left: 0; color: #e8622c; font-size: 9px; top: 9px; }

/* ===== STEP FLOW (replaces step-wizard) ===== */
.config-steps { padding: 0; }
.config-step { display:block; }
.config-step__ind { display:flex; flex-direction:column; align-items:center; flex-shrink:0; width:36px; }
.config-step__circle { display:none; }
.config-step__line { display:none; }
.config-step__body { flex:1; padding-bottom:36px; padding-top:4px; }
.config-step--last .config-step__body { padding-bottom:0; }
.step-optional { font-size:12px; color:#aeaeb2; font-weight:400; }
@media(max-width:768px) {
    .config-steps { }
    .config-step__body { padding-bottom: 28px; }
}

/* ===== OUT OF STOCK ===== */
.oos-notice { display: none; }
body.out-of-stock .oos-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8f0;
    border: 1px solid #f5c07a;
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 16px;
}
.oos-notice__icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.oos-notice__text strong { display: block; font-size: 14px; font-weight: 600; color: #1d1d1f; margin-bottom: 2px; }
.oos-notice__text p { font-size: 13px; color: #6e6e73; margin: 0; }
body.out-of-stock .btn-submit { opacity: 0.4; pointer-events: none; cursor: not-allowed; }

/* ===== PRODUCT REMOVED ===== */
.removed-notice { display: none; }
body.product-removed .removed-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff2f2;
    border: 1px solid #f5a0a0;
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 16px;
}
.removed-notice__icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.removed-notice__text strong { display: block; font-size: 14px; font-weight: 600; color: #1d1d1f; margin-bottom: 2px; }
.removed-notice__text p { font-size: 13px; color: #6e6e73; margin: 0; }
body.product-removed .config-wrap { display: none; }
body.product-removed .order-summary-bar { display: none; }
