/* // 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;
}

/* ===== HERO SECTION ===== */

.hero {
    background: url(../images/mophie-band-mobile-background.jpg) no-repeat center center #e6dd69;
    background-size: cover;
    text-align: center;
    position: relative;
}

.hero .container-xl {
    padding-top: 60px;
}

.hero picture img {
    display: flex;
    margin-top: 20px;
    max-width: 650px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 2.3rem;
    line-height: 1.05;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .hero {
        background: url(../images/mophie-band-background.jpg) no-repeat center center #e6dd69;
        background-size: cover;
        text-align: left;
    }

     .hero .container-xl {
        padding-top: 0px;
    }

    .hero picture img {
        display: none;
        opacity: 0;
        height: 0;
        width: 0;
    }
}

.hero .container-xl {
    min-height: 500px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background-color: #e8622c;
    color: #fff;
    padding: 0.7rem 1.6rem;
    border-radius: 980px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -0.1px;
    transition: background-color 0.2s ease;
}

.hero-cta:hover {
    background-color: #cf501f;
}

/* ===== PRODUCTS SECTION ===== */

.divider {
    height: 20px;
    background: #f8f8f8;
    margin-top: -10px;
    position: relative;
    z-index: 999;
}

.products-section {
    background-color: #f8f8f8;
    padding: 40px 0 80px 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 30px;
    margin-top: 20px;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px #ddd;
    background: #fff;
    padding: 15px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

.product-price {
    font-size: 0.875rem;
    color: #6e6e73;
    font-weight: 400;
}

.product-price--oos {
    color: #c0392b;
    font-weight: 500;
}

.product-card--oos .product-image {
    opacity: 0.45;
}

/* ===== SHARED SECTION STYLES ===== */

picture img,
.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section-subheading {
    text-align: center;
    font-size: 1rem;
    color: #6e6e73;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */

.how-section {
    background: #212226;
    padding: 80px 0;
    text-align: center;
    color: #ebebeb;
}

.how-section h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.how-section .lead {
    font-size: 1.15rem;
}

.how-section .md {
    font-weight: 600;
}

.step-item {
    text-align: center;
    padding: 0 16px;
}

.step-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-item p {
    font-size: 0.9rem;
    color: #6e6e73;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

.large-icon {
    font-size: 6rem;
}

/* ===== CONTACT/QUOTE SECTION ===== */

.contact-section {
    background-color: #2d2e33;
    padding: 100px 0;
    color: #ebebeb;
}

.contact-section h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.contact-left p {
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    margin-top: 40px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.contact-detail {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-right {
    background-color: #212226;
    padding: 44px;
    border-radius: 18px;
}

.form-group {
    margin-bottom: 16px;
}

.form-hint {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 11px 14px;
    background-color: #f5f5f7;
    border: none;
    border-radius: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    color: #1d1d1f;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-font-smoothing: antialiased;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #e8622c;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.1px;
}

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

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-section p {
    margin-bottom: .75rem;
}

/** FAQ **/

.faq .container-xl {
    background: url(../images/faq-bg.jpg) no-repeat center center;
    background-size: contain
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq {
    background-color: #212226;
    color: #ebebeb;
    padding: 60px 0;
    text-align: center;
}

.faq h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq h4,
.faq p {
    margin-bottom: 15px;
}

.inline-icon {
    vertical-align: bottom;
    margin-right: 5px;
    font-size: 1.8rem;
}

/* ===== 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;
}

/* X state */
.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); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-left {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .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.btn-quote {
        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) {
    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .hero-left {
        padding: 48px 24px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .products-heading {
        font-size: 2rem;
    }

    .contact-container {
        padding: 0 1rem;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 1.6rem;
    }

    .contact-right {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .products-section,
    .contact-section {
        padding: 72px 0;
    }

}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 12px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-left {
        padding: 36px 20px;
    }

    .products-heading {
        font-size: 1.4rem;
    }
}

/** overrides **/

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

p.sm {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: .8rem;
    letter-spacing: 1px;
}

/* ===== SCROLL FADE IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Scroll fade-in — remove .fade-in from any element in index.html to disable it */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================================
   Quote Cart — header button
   ====================================================================== */
.cart-btn {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1d1d1f;
    border-radius: 8px;
    transition: background 0.15s;
    flex-shrink: 0;
}
.cart-btn:hover { background: rgba(0,0,0,0.06); }
.cart-btn svg { width: 22px; height: 22px; display: block; }

.cart-btn__icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn__label {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    background: #e8622c;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    pointer-events: none;
}
.cart-count.is-empty { display: none; }

/* ======================================================================
   Quote Cart — drawer + overlay
   ====================================================================== */
.cc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.cc-overlay.is-open { opacity: 1; pointer-events: auto; }

.cc-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: #fff;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.cc-drawer.is-open { transform: translateX(0); }

.cc-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}
.cc-drawer__head h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}
.cc-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    color: #555;
    transition: background 0.15s;
}
.cc-drawer__close:hover { background: #f5f5f5; }
.cc-drawer__close svg { width: 18px; height: 18px; }

.cc-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.cc-drawer__foot {
    border-top: 1px solid #e5e5e5;
    padding: 16px 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Empty state */
.cc-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    gap: 12px;
    color: #888;
}
.cc-cart-empty svg { width: 48px; height: 48px; color: #ccc; }
.cc-cart-empty h4 { font-size: 1rem; font-weight: 700; color: #333; margin: 0; }
.cc-cart-empty p  { font-size: 14px; margin: 0; }

/* Cart item */
.cc-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.cc-cart-item:last-of-type { border-bottom: 0; }

.cc-cart-item__img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    flex-shrink: 0;
    background: #fafafa;
}
.cc-cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.cc-cart-item__info h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.35;
}
.cc-cart-item__meta { font-size: 12px; color: #888; margin-bottom: 10px; }
.cc-cart-item__warn { font-size: 11px; color: #c0392b; margin-top: 5px; }

/* Qty controls */
.cc-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}
.cc-qty-dec,
.cc-qty-inc {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    transition: background 0.15s;
    color: #333;
    flex-shrink: 0;
}
.cc-qty-dec:hover:not(:disabled),
.cc-qty-inc:hover:not(:disabled) { background: #e8e8e8; }
.cc-qty-dec:disabled { opacity: 0.35; cursor: default; }
.cc-qty-inp {
    width: 42px;
    height: 30px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    -moz-appearance: textfield;
}
.cc-qty-inp::-webkit-outer-spin-button,
.cc-qty-inp::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cc-cart-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.cc-cart-item__price {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    white-space: nowrap;
}
.cc-cart-item__remove {
    font-size: 11px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.15s;
}
.cc-cart-item__remove:hover { color: #c0392b; }

/* Info note */
.cc-cart-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 20px;
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}
.cc-cart-note svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

/* Footer */
.cc-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 4px;
}
.cc-drawer-btn {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.15s, opacity 0.15s;
    text-decoration: none;
}
.cc-drawer-btn-primary {
    background: #e8622c;
    color: #fff;
}
.cc-drawer-btn-primary:hover { background: #cf501f; }
.cc-drawer-btn-secondary {
    background: #f5f5f5;
    color: #555;
}
.cc-drawer-btn-secondary:hover { background: #ebebeb; }

/* Add to Quote button on product cards */
.btn-add-quote {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 10px 12px;
    background: #fff;
    border: 1.5px solid #e8622c;
    color: #e8622c;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-align: center;
}
.btn-add-quote:hover { background: #e8622c; color: #fff; }
.btn-add-quote--added { background: #e8622c !important; color: #fff !important; }

