@import url('https://fonts.googleapis.com/css2?family=Niconne&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,800&display=swap');

/* ===========================================================
   ROSHLUXE — HOMEPAGE / SHARED SITE STYLES
   Heading font: Niconne | Body font: Open Sans
   Primary: navy | Secondary: gray | Accent: gold
   =========================================================== */

:root {
    --navy: #123F66;
    --navy-dark: #082A47;
    --navy-light: #2F648F;
    --navy-pale: #EEF5FA;

    --navy-bright: #2F648F;
    --navy-mid: #1C527D;

    --gray: #657083;
    --gray-dark: #334155;
    --gray-light: #EEF1F5;

    --white: #FFFFFF;
    --page-bg: #F7F8FA;
    --border: #E2E7EE;
    --text: #10233D;
    --text-muted: #677386;

    --success: #287343;
    --danger: #B94D5D;
    --gold: #E8B95A;

    --content: 1240px;

    --bg-card: #FFFFFF;
    --bg-raised: #E8ECF0;

    --border-mid: rgba(18,63,102,.16);
    --border-bright: rgba(18,63,102,.26);

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-full: 999px;

    --ease: cubic-bezier(.16, 1, .3, 1);

    --shadow-sm: 0 2px 10px rgba(18,63,102,.06);
    --shadow-md: 0 12px 32px rgba(18,63,102,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3 { margin: 0; font-family: 'Niconne', cursive; font-weight: 400; line-height: 1.1; }
p { margin: 0; color: var(--text-muted); }
.container { width: min(100%, var(--content)); margin: 0 auto; padding: 0 28px; }

/* Shared buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 6px 16px rgba(6,38,77,.2); }
.btn-primary:hover { background: var(--navy-light); box-shadow: 0 9px 22px rgba(6,38,77,.27); }
.btn-outline { background: rgba(255,255,255); border-color: rgba(255,255,255,.65); color: var(--navy-dark); }
.btn-outline:hover { background: rgba(255,255,255,.16); }
.btn-ghost { min-height: 36px; border-color: var(--border); background: var(--white); color: var(--navy); }

/* Top utility bar */
.ribbon {
    position: relative;
    display: flex;
    align-items: center;
    height: 32px;
    overflow: hidden;
    background: var(--navy-dark);
}

.ribbon-inner,
.ribbon-track {
    display: none;
}

.ribbon-fixed-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100%;
    padding-right: 50px;
}

.ribbon-fixed-items span {
    color: #E2E9F3;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.ribbon-fixed-items i {
    margin-right: 5px;
    color: var(--navy-pale);
    font-style: normal;
}

.ribbon-close {
    position: absolute;
    top: 4px;
    right: 8px;
    z-index: 2;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: transparent;
    color: #FFF;
    font-size: 15px;
}


/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 3px 14px rgba(6,38,77,.04);
}
.header-wrap { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; max-width: 50px; align-items: center; gap: 10px; }
.logo-mark { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; overflow: hidden; border: 1px solid var(--navy-light); border-radius: 50%; background: #FFFDF8; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; align-items: center; }
.logo-name { color: var(--navy); font-family: 'Niconne', cursive; font-size: 28px; letter-spacing: .04em; line-height: .8; white-space: nowrap; }
.logo-tagline { margin-top: 4px; color: var(--navy); font-size: 7px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.main-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: 5px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 10px 11px; border-radius: var(--r-sm); background: transparent; color: var(--gray-dark); font-size: 14px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.nav-link:hover, .nav-link.active { background: #F1F4F8; color: var(--navy); }
.nav-dropdown {
    position: relative;
}

.main-nav .nav-products-link {
    display: inline-flex;
    min-height: 0;
    padding: 10px 11px;
    border: 0;
    border-radius: var(--r-sm);
    background: transparent;
    box-shadow: none;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    align-items: center;
    gap: 6px;
}

.main-nav .nav-products-link:hover,
.nav-dropdown:hover .nav-products-link,
.main-nav .nav-products-link[aria-expanded="true"] {
    background: #F1F4F8;
    color: var(--navy);
}

.caret {
    display: inline-flex;
    width: 12px;
    height: 12px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    transform: translateY(1px);
    transition: transform .2s ease;
}

.nav-products-link{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-products-link .caret{
    font-size:10px;
    line-height:1;
    transition:transform .2s ease;
}

.nav-dropdown:hover .nav-products-link .caret,
.nav-dropdown.open .nav-products-link .caret{
    transform:rotate(180deg);
}
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    width: 250px;
    padding: 18px;
    transform: translateX(-50%);
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 200;
}
.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
}
.nav-dropdown:hover .dropdown-panel, .dropdown-panel.open { display: grid; }
.dropdown-label { margin: 0 0 8px; padding-bottom: 7px; border-bottom: 1px solid #EEE3C5; color: var(--navy); font-size: 14px; font-weight: 800; }
.dropdown-col a { display: block; padding: 4px 0; color: var(--gray); font-size: 14px; }
.dropdown-col a:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 3px; }
.action-btn { position: relative; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--gray-dark); }
.action-btn:hover { border-color: var(--border); background: #F5F7FA; color: var(--navy); }
.action-btn svg { width: 18px; height: 18px; }
.cart-badge { position: absolute; top: -2px; right: -2px; display: grid; min-width: 15px; height: 15px; place-items: center; border: 1px solid var(--white); border-radius: 50%; background: var(--navy); color: var(--white); font-size: 8px; font-weight: 800; }
.hamburger { display: none; width: 36px; height: 34px; border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white); }
.hamburger span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy); }

.search-bar { height: 0; overflow: hidden; border-top: 0 solid var(--border); background: var(--white); transition: height .25s ease; }
.search-bar.open { height: 55px; border-top-width: 1px; }
.search-bar .container { display: flex; height: 100%; align-items: center; gap: 12px; }
.search-bar svg { width: 18px; color: var(--gray); }
.search-bar input { width: 100%; border: 0; outline: 0; color: var(--navy); }
#searchClose { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy); }

.mobile-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.98); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy); font-size: 26px; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mobile-nav a { color: var(--navy); font-family: 'Niconne', cursive; font-size: 35px; }

/* Hero */
.hero { position: relative; min-height: 630px; overflow: hidden; z-index: 1; background: radial-gradient(circle at 75% 38%, #154D85 0, var(--navy) 47%, var(--navy-dark) 100%); }
.hero-slides, .hero-slide { position: absolute; inset: 0;z-index: 0; }
.hero-slide { opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1;z-index: 1; }
.hero-bg-img { position: absolute;inset: 0;z-index: 0;width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3,26,54,.96) 0%, rgba(6,38,77,.74) 45%, rgba(6,38,77,.12) 100%); }
.hero-content { position: relative; z-index: 5; display: flex; min-height: 530px; flex-direction: column; justify-content: center;height: auto;padding-top: 0;padding-bottom: 95px; }
.hero-eyebrow { margin-bottom: 10px; color: var(--navy-light); font-size: 14px; font-weight: 800; letter-spacing: .16em; }
.hero h1 { max-width: 650px; color: var(--white); font-size: clamp(54px, 6vw, 82px); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { max-width: 420px; margin: 18px 0 24px; color: #E4EBF6; font-size: 14px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-benefits { position: absolute; z-index: 6; bottom: 0; left: 50%; display: grid; width: 100%; grid-template-columns: repeat(4, 1fr); transform: translateX(-50%); border-top: 1px solid rgba(255,255,255,.22); }
.hero-benefits .feature-item { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 90px; padding: 14px 10px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-benefits .feature-item:last-child { border-right: 0; }
.feature-icon { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border: 1px solid rgba(230,205,144,.7); border-radius: 50%; color: var(--gold); font-size: 17px; }
.feature-item h4 { color: var(--white); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; }
.feature-item p { color: #D4DEEB; font-size: 14px; }

/* Categories */
.collection-section { position: relative; z-index: 2; padding: 60px 0 42px; background: var(--white); }
.section-header { margin-bottom: 25px; text-align: center; }
.section-header h2 { color: var(--navy); font-size: 38px; }
.section-header p { margin-top: 4px; font-size: 14px; }
.collection-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.collection-card { display: block; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); box-shadow: var(--shadow-sm); text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.collection-card img { width: 100%; height: 170px; object-fit: cover; background: var(--gray-light); }
.collection-overlay { padding: 13px 8px; }
.collection-overlay h3 { color: var(--navy); font-size: 25px; }
.collection-cta { display: inline-block; margin-top: 4px; color: var(--gray); font-size: 14px; font-weight: 700; }

/* Featured collection */
.products-section { padding: 35px 0 62px; background: var(--white); }
.section-header.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; text-align: left; }
.section-header.split h2 { font-size: 38px; }
.section-header.split .btn { font-size: 14px; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod-card { position: relative; display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); box-shadow: var(--shadow-sm); }
.prod-media { position: relative; overflow: hidden; background: var(--gray-light); }
.prod-media > a { display: block; }
.prod-media img { width: 100%; height: 230px; object-fit: cover; transition: transform .35s ease; }
.prod-card:hover .prod-media img { transform: scale(1.04); }
.prod-wish { position: absolute; top: 12px; right: 12px; display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: rgba(255,255,255,.92); color: var(--gray); font-size: 16px; }
.prod-wish:hover,
.product-wishlist-btn:hover,
.btn-wishlist-lg:hover,
.prod-wish.wished,
.product-wishlist-btn.wished,
.btn-wishlist-lg.wished,
.prod-wish.active,
.product-wishlist-btn.active,
.btn-wishlist-lg.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.prod-info { display: flex; flex-direction: column; padding: 15px; }
.prod-house { margin-bottom: 3px; color: var(--navy-mid); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.prod-info h3 { color: var(--navy); font-size: 27px; }
.prod-notes { min-height: 35px; margin-top: 4px; color: var(--gray); font-size: 14px; }
.prod-footer > div:first-child { grid-area: price; }.prod-footer > div:nth-child(2) { grid-area: stock; color: var(--gray); font-size: 14px; }
.prod-price { color: var(--navy); font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 800; }
.filter-option input:checked + .filter-checkbox {
    background: var(--navy);
    border-color: var(--navy);
}

.filter-option input:checked + .filter-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

/* Promise strip */
.promise-strip { overflow: hidden; background: linear-gradient(100deg, var(--navy-dark), var(--navy), var(--navy-light)); }
.promise-inner { display: grid; grid-template-columns: 1.45fr repeat(5, 1fr); align-items: stretch; padding: 30px 28px; }
.promise-intro { padding-right: 24px; }
.promise-logo { color: var(--white); font-family: 'Niconne', cursive; font-size: 30px; line-height: .85; }
.promise-logo small { display: block; margin-top: 7px; color: var(--navy-light); font-family: 'Open Sans', sans-serif; font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.promise-intro h2 { margin: 19px 0 8px; color: var(--gold); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .1em; }
.promise-intro p { max-width: 190px; color: #D5E0EF; font-size: 14px; line-height: 1.6; }
.promise-item { display: flex; min-height: 155px; flex-direction: column; align-items: center; padding: 5px 13px; border-left: 1px solid rgba(255,255,255,.18); color: var(--white); text-align: center; opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.promise-item.is-visible { opacity: 1; transform: translateY(0); }
.promise-item i { display: grid; width: 47px; height: 47px; margin-bottom: 10px; place-items: center; border: 1px solid rgba(230,205,144,.75); border-radius: 50%; color: var(--gold); font-size: 24px; font-style: normal; }
.promise-item strong { min-height: 31px; color: var(--white); font-size: 14px; line-height: 1.35; }
.promise-item span { margin-top: 5px; color: #D4DEEB; font-size: 14px; line-height: 1.45; }

/* Testimonials */
.reviews-section { padding: 60px 0; background: #F8F9FB; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: auto; }
.review-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }
.review-stars { margin-bottom: 8px; color: var(--navy); font-size: 14px; letter-spacing: 3px; }
.review-card h3 { color: var(--navy); font-size: 28px; }.review-card p { min-height: 70px; color: var(--gray); font-size: 14px; line-height: 1.6; }.review-card strong { display: block; color: var(--navy); font-size: 14px; }.review-card small { color: var(--gray); font-size: 14px; }

/* Newsletter */
.newsletter-section { padding: 0; background: var(--navy); }.newsletter-card { display: flex; min-height: 105px; align-items: center; justify-content: center; gap: 28px; }.newsletter-card h2 { color: var(--white); font-size: 34px; }.newsletter-card p { color: #D5E0EF; font-size: 14px; }.newsletter-form { display: flex; width: min(100%, 430px); }.newsletter-form input { min-width: 0; flex: 1; padding: 12px 14px; border: 0; border-radius: 5px 0 0 5px; outline: 0; font-size: 14px; }.newsletter-form button { padding: 0 24px; border: 0; border-radius: 0 5px 5px 0; background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 800; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #C8D4E3; }.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; padding: 55px 0 35px; }.footer-brand p { max-width: 210px; margin: 15px 0; color: #B7C5D7; font-size: 14px; }.site-footer .logo-name, .site-footer h4 { color: var(--white); }.site-footer .logo-tagline { color: var(--navy-light); }.site-footer .logo img {filter: brightness(0) invert(1)} .footer-col ul {list-style: none;margin: 0;padding: 0;} .footer-col h4 { margin-bottom: 14px; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 800; }.footer-col li { margin-bottom: 7px; color: #C3CFDE; font-size: 14px; }.footer-col a:hover { color: var(--navy-light); }.footer-socials { display: flex; gap: 9px; }.footer-socials a { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); font-size: 14px; }.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); }.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }.footer-bottom p, .footer-legal a { color: #91A4BB; font-size: 14px; }.footer-legal { display: flex; gap: 18px; }

/* Cart / wishlist sidebars required by existing script.js */
#cartSidebarMount, #wishlistSidebarMount { position: fixed; inset: 0; z-index: 300; pointer-events: none; }.cs-backdrop { position: absolute; inset: 0; background: rgba(3,26,54,.52); opacity: 0; pointer-events: none; transition: opacity .25s ease; }.cs-backdrop.open { opacity: 1; pointer-events: auto; }.cart-sidebar { position: absolute; top: 0; right: 0; bottom: 0; display: flex; width: min(430px,100vw); flex-direction: column; transform: translateX(100%); background: var(--white); box-shadow: -10px 0 36px rgba(3,26,54,.18); transition: transform .35s var(--ease); pointer-events: none; }.cart-sidebar.open { transform: translateX(0); pointer-events: auto; }.cs-header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--border); }.cs-header h2 { color: var(--navy); font-size: 34px; }.cs-count { display: inline-grid; width: 24px; height: 24px; margin-left: 5px; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-family: 'Open Sans',sans-serif; font-size: 14px; vertical-align: middle; }.cs-close { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy); font-size: 17px; }.cs-empty { display: flex; min-height: 300px; flex-direction: column; align-items: center; justify-content: center; color: var(--gray); text-align: center; }.cs-items { display: flex; flex: 1; overflow-y: auto; flex-direction: column; padding: 0 22px; }.cs-item { position: relative; display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }.cs-item-img { width: 64px; height: 78px; flex: 0 0 64px; overflow: hidden; border-radius: 7px; background: var(--gray-light); }.cs-item-img img { width: 100%; height: 100%; object-fit: cover; }.cs-item-info { min-width: 0; flex: 1; }.cs-item-house { margin: 0; color: var(--navy-mid); font-size: 14px; font-weight: 800; }.cs-item-name { margin: 3px 0; color: var(--navy); font-family: 'Niconne',cursive; font-size: 22px; }.cs-item-size { margin: 0; color: var(--gray); font-size: 14px; }.cs-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }.cs-qty { display: flex; align-items: center; gap: 9px; padding: 3px 7px; border: 1px solid var(--border); border-radius: var(--r-full); }.cs-qty-btn { color: var(--navy); font-size: 16px;}.cs-item-price { color: var(--navy); font-size: 14px; font-weight: 800; }.cs-remove { position: absolute; top: 12px; right: 0; color: var(--gray); border: 1px solid var(--border); }.cs-footer { padding: 20px 22px; border-top: 1px solid var(--border); background: #FAFBFD; }.cs-total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }.cs-total { color: var(--navy); font-family: 'Niconne',cursive; font-size: 32px; }

/* Login popup hooks */
.lp-backdrop { position: fixed; inset: 0; z-index: 500; background: rgba(3,26,54,.72); opacity: 0; pointer-events: none; transition: opacity .25s ease; }.lp-backdrop.open { opacity: 1; pointer-events: auto; }.lp-popup { position: fixed; inset: 0; z-index: 501; display: flex; align-items: center; justify-content: center; padding: 18px; opacity: 0; pointer-events: none; transform: scale(.96); transition: all .25s var(--ease); }.lp-popup.open { opacity: 1; pointer-events: auto; transform: scale(1); }.lp-card { position: relative; width: min(100%,430px); padding: 38px 34px; border: 1px solid rgba(255,255,255,.25); border-radius: 26px; background: linear-gradient(145deg,var(--navy-dark),var(--navy-light)); box-shadow: 0 28px 70px rgba(0,0,0,.42); }.lp-tabs { display: flex; gap: 4px; padding: 4px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-full); }.lp-tab { flex: 1; padding: 9px; border-radius: var(--r-full); background: transparent; color: rgba(255,255,255,.62); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.lp-tab.active { background: var(--white); color: var(--navy); }.lp-field { position: relative; margin-bottom: 17px; }.lp-field input { width: 100%; padding: 17px 50px 8px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; outline: 0; background: rgba(255,255,255,.1); color: #fff; }.lp-field label { position: absolute; top: 13px; left: 15px; color: rgba(255,255,255,.64); font-size: 14px; pointer-events: none; transition: all .2s ease; }.lp-field input:focus + label, .lp-field input:not(:placeholder-shown) + label { transform: translateY(-8px) scale(.8); transform-origin: left; color: var(--navy-light); }.lp-eye { position: absolute; top: 50%; right: 12px; display: grid; width: 30px; height: 30px; place-items: center; transform: translateY(-50%); color: rgba(255,255,255,.75); }.lp-eye svg { width: 16px; height: 16px; }.lp-submit { display: flex; width: 100%; align-items: center; justify-content: center; gap: 9px; padding: 14px; border: 0; border-radius: 11px; background: var(--white); color: var(--navy); font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.lp-close { position: absolute; top: 13px; right: 13px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #fff; }.lp-error { color: #FCA5A5; font-size: 14px; }

/* orders */
.order-success-page{padding:70px 0 96px;background:var(--bg)}
.success-hero{max-width:760px;margin:0 auto 36px;padding:16px 20px 34px;text-align:center}
.success-icon{display:grid;width:66px;height:66px;place-items:center;margin:0 auto 16px;border-radius:50%;background:#eaf7ef;color:#287343;font-family:'Open Sans',sans-serif;font-size:32px;font-weight:800;box-shadow:0 8px 20px rgba(40,115,67,.14)}
.success-hero .eyebrow{justify-content:center;margin-bottom:10px}
.success-hero h1{color:var(--navy);font-size:clamp(2.8rem,5vw,4.3rem)}
.success-hero>p:not(.eyebrow){max-width:620px;margin:12px auto 0;color:var(--text-dim);font-size:.92rem}
.success-number{display:inline-block;margin-top:20px;padding:10px 16px;border:1px solid var(--gold-border);border-radius:var(--r-full);background:var(--bg-card);color:var(--text-dim);font-size:.8rem}
.success-number strong{color:var(--navy)}
.success-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);gap:26px;align-items:start}
.success-card{padding:28px;border:1px solid var(--border);border-radius:var(--r-xl);background:var(--bg-card);box-shadow:var(--shadow-card)}
.success-card h2{margin:0 0 20px;color:var(--navy);font-size:2rem}
.success-card h3{margin:28px 0 13px;color:var(--navy);font-size:1.45rem}
.success-empty{padding:25px 0;text-align:center;color:var(--text-dim)}
.success-item{display:grid;grid-template-columns:70px minmax(0,1fr) auto;gap:15px;align-items:center;padding:16px 0;border-bottom:1px solid var(--border)}
.success-item:last-child{border-bottom:0}
.success-item img{width:70px;height:84px;border:1px solid var(--border);border-radius:var(--r-md);background:var(--bg-raised);object-fit:cover}
.success-item-info{min-width:0}
.success-item strong,.success-item small,.success-item-info span{display:block}
.success-item strong{overflow:hidden;color:var(--navy);font-family:'Open Sans',sans-serif;font-size:.92rem;font-weight:700;text-overflow:ellipsis;white-space:nowrap}
.success-item small{margin-top:5px;color:var(--text-dim);font-size:.72rem}
.success-item-info span{margin-top:6px;color:var(--text-faint);font-size:.68rem}
.success-item>b{color:var(--gold-mid);font-family:'Open Sans',sans-serif;font-size:.86rem;font-weight:800;white-space:nowrap}
.success-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid var(--border);color:var(--text-dim);font-size:.83rem}
.success-row strong{color:var(--navy);font-weight:700;text-align:right}
.success-row.total{margin-top:8px;padding-top:18px;border-top:2px solid var(--gold-border);border-bottom:0;color:var(--navy);font-size:1rem;font-weight:700}
.success-row.total strong{color:var(--gold-mid);font-family:'Playfair Display',serif;font-size:1.8rem}
.success-discount span,.success-discount strong{color:#287343}
.success-address{color:var(--text-dim);font-size:.82rem;line-height:1.8}
.success-address strong{color:var(--navy)}
.success-actions{display:flex;justify-content:center;gap:12px;margin-top:30px}
@media(max-width:850px){.success-grid{grid-template-columns:1fr}.success-details-card{order:-1}}
@media(max-width:560px){.order-success-page{padding:42px 0 65px}.success-card{padding:20px}.success-item{grid-template-columns:58px minmax(0,1fr)}.success-item img{width:58px;height:70px}.success-item>b{grid-column:2;text-align:left}.success-actions{flex-direction:column}.success-actions .btn{width:100%}}

/* Checkout */
.checkout-page{padding:55px 0 90px;background:var(--bg)}.checkout-heading{margin-bottom:32px}.checkout-heading h1{font-size:clamp(2.4rem,5vw,4rem);color:var(--navy)}.checkout-grid{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:28px;align-items:start}.checkout-main{display:flex;flex-direction:column;gap:20px}.checkout-card{padding:26px;border:1px solid var(--border);border-radius:var(--r-lg);background:#fff;box-shadow:var(--shadow-card)}.checkout-card h2{margin-bottom:20px;color:var(--navy);font-size:2rem}.checkout-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.checkout-form-grid label{display:flex;flex-direction:column;gap:7px;color:var(--text-mid);font-size:.78rem;font-weight:700}.checkout-card input{width:100%;padding:12px 14px;border:1px solid var(--border-mid);border-radius:var(--r-md);outline:0;background:#fff;color:var(--navy)}.checkout-card input:focus{border-color:var(--navy);box-shadow:0 0 0 3px var(--navy-soft)}.checkout-summary{position:sticky;top:95px}.checkout-items{display:flex;flex-direction:column}.checkout-item{display:grid;grid-template-columns:54px minmax(0,1fr) auto;gap:12px;align-items:center;padding:13px 0;border-bottom:1px solid var(--border)}.checkout-item img{width:54px;height:64px;border-radius:6px;object-fit:cover;background:var(--bg-raised)}.checkout-item strong,.checkout-item small{display:block}.checkout-item strong{overflow:hidden;color:var(--navy);font-size:.82rem;text-overflow:ellipsis;white-space:nowrap}.checkout-item small{margin-top:3px;color:var(--text-dim);font-size:.68rem}.checkout-item b{color:var(--navy);font-size:.78rem}.summary-line{display:flex;justify-content:space-between;padding:12px 0;color:var(--text-dim);font-size:.82rem}.summary-line b{color:var(--navy)}.summary-line.total{margin-top:8px;padding-top:18px;border-top:1px solid var(--border);color:var(--navy);font-size:1rem}.summary-line.total b{font-family:'Playfair Display',serif;font-size:1.6rem}.payment-option{display:grid!important;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:10px;align-items:start;padding:13px 0;border-bottom:1px solid var(--border)}.payment-option input{width:auto!important;margin-top:3px}.payment-option span{color:var(--navy)}.payment-option small{grid-column:2;color:var(--text-dim);font-weight:400}.terms-option{display:grid!important;grid-template-columns:auto 1fr;grid-template-rows:auto;column-gap:9px;margin-top:18px}.terms-option input{width:auto!important;margin-top:4px}.checkout-submit{width:100%;margin-top:18px}.checkout-note{margin-top:12px;font-size:.68rem;line-height:1.6}@media(max-width:900px){.checkout-grid{grid-template-columns:1fr}.checkout-summary{position:static}}@media(max-width:560px){.checkout-form-grid{grid-template-columns:1fr}.checkout-card{padding:20px}}

/* Existing generic script classes */
.sr { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }.sr--visible, .sr.visible { opacity: 1; transform: translateY(0); }.toast { padding: 13px 17px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow-md); color: var(--navy); }

@media (max-width: 1050px) {
    .main-nav { gap: 0; }.nav-link { padding-inline: 8px; }.logo { min-width: 145px; }.collection-grid { grid-template-columns: repeat(3,1fr); }.prod-grid { grid-template-columns: repeat(3,1fr); }.promise-inner { grid-template-columns: 1.4fr repeat(3,1fr); }.promise-intro { grid-column: 1 / -1; margin-bottom: 20px; }.footer-top { grid-template-columns: 1.5fr 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 800px) {
    .container { padding-inline: 20px; }.main-nav { display: none; }.hamburger { display: block; }.hero { height: 620px;min-height: 620px; }.hero-benefits { grid-template-columns: repeat(2,1fr); }.hero-benefits .feature-item:nth-child(2) { border-right: 0; }.hero-benefits .feature-item { min-height: 70px; }.hero-content { min-height: 465px; padding-bottom: 125px; }.prod-grid { grid-template-columns: repeat(2,1fr); }.reviews-grid { grid-template-columns: 1fr; max-width: 520px; }.offer-content { grid-template-columns: 125px 1fr; min-height: 210px; }.offer-number { display: none; }.footer-top { grid-template-columns: 1fr 1fr; } .ribbon-fixed-items { grid-template-columns: 1fr; padding-right: 42px; } .ribbon-fixed-items span { display: none; font-size: 8px; }
}
@media (max-width: 560px) {
    body { font-size: 14px; }.container { padding-inline: 16px; }.ribbon { height: 30px; }.ribbon-track span { font-size: 8px; }.header-wrap { min-height: 60px; gap: 8px; }.logo { min-width: 0; }.logo-mark { width: 35px; height: 35px; flex-basis: 35px; }.logo-name { font-size: 22px; }.logo-tagline { font-size: 5px; }.action-btn { width: 29px; height: 29px; }.action-btn svg { width: 16px; }.hero { min-height: 610px; }.hero-content { min-height: 435px; padding-bottom: 70px; }.hero h1 { font-size: 54px; }.hero-desc { font-size: 14px; }.hero-ctas { flex-direction: column; align-items: flex-start; }.hero-ctas .btn { min-width: 150px; }.hero-benefits { grid-template-columns: 1fr 1fr; }.hero-benefits .feature-item { justify-content: flex-start; gap: 8px; padding: 10px 3px; }.feature-icon { width: 28px; height: 28px; flex-basis: 28px; font-size: 14px; }.feature-item h4 { font-size: 14px; }.feature-item p { font-size: 8px; }.collection-section, .products-section, .reviews-section { padding: 42px 0; }.section-header h2, .section-header.split h2 { font-size: 33px; }.section-header.split { align-items: flex-start; flex-direction: column; }.collection-grid, .prod-grid { grid-template-columns: 1fr 1fr; gap: 10px; }.collection-card img { height: 125px; }.collection-overlay h3 { font-size: 21px; }.prod-media img { height: 165px; }.prod-info { min-height: 190px; padding: 11px; }.prod-info h3 { font-size: 22px; }.prod-notes { font-size: 14px; }.prod-footer { grid-template-columns: 1fr; grid-template-areas: 'price' 'stock' 'button'; }.add-to-cart { width: 100%; margin-top: 6px; }.promise-inner { grid-template-columns: 1fr; padding: 28px 16px; }.promise-intro { margin-bottom: 8px; }.promise-item { min-height: 0; padding: 16px 4px; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }.promise-item i { width: 42px; height: 42px; font-size: 21px; }.offer-content { grid-template-columns: 1fr; padding: 28px 18px; text-align: center; }.offer-gift { display: none; }.offer-content h2 { font-size: 35px; }.newsletter-card { min-height: 0; flex-direction: column; align-items: flex-start; padding: 25px 0; }.newsletter-form { width: 100%; }.footer-top { grid-template-columns: 1fr 1fr; gap: 23px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom-inner { flex-direction: column; text-align: center; }.footer-legal { flex-wrap: wrap; justify-content: center; }.cart-sidebar { width: 100vw; }
}

#toastMount {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999999;
    pointer-events: none;
}

#toastMount .toast {
    pointer-events: auto;
    color: var(--danger);
}

/* =========================================================
   FIRST ORDER OFFER
   ========================================================= */

.offer-banner {
    background: var(--navy-dark);
    padding: 70px 0;
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 160px;
}

.offer-copy {
    text-align: center;
}

.offer-copy h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
}

.offer-copy p {
    margin: 0 0 28px;
    color: rgba(255,255,255,.85);
    font-size: 18px;
}

.offer-copy p strong {
    color: #eebe58;
}

.offer-claim-btn {
    border: 0;
    background: #eebe58;
    color: #123d63;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.offer-claim-btn:hover {
    transform: translateY(-2px);
}

/* BIG 10% */

.offer-discount {
    min-width: 260px;
    text-align: center;
    color: #eebe58;
    position: relative;
}

.offer-discount-number {
    display: inline-block;
    font-size: 120px;
    line-height: .8;
    font-weight: 700;
}

.offer-discount-percent {
    display: inline-block;
    font-size: 55px;
    font-weight: 500;
    vertical-align: top;
    margin-top: -5px;
}

.offer-discount-text {
    margin-top: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.offer-discount-text span {
    font-size: 14px;
    letter-spacing: .5px;
    opacity: .8;
}


/* =========================================================
   OFFER POPUP
   ========================================================= */

.offer-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.offer-popup-overlay.open {
    display: flex;
}

.offer-popup {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 12px;
    padding: 38px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    text-align: center;
}

.offer-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: none;
    font-size: 28px;
    color: #777;
    cursor: pointer;
}

.offer-popup h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 28px;
}

.offer-popup p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

#offerEmailForm,
#offerOtpForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#offerEmailForm input,
#offerOtpForm input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

#offerEmailForm button,
#offerOtpForm button,
#closeOfferSuccess {
    border: 0;
    background: #eebe58;
    color: #123d63;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.offer-popup-message {
    margin-top: 15px;
    font-size: 14px;
}

.offer-success-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eebe58;
    color: #123d63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.offer-coupon {
    margin: 25px 0;
    padding: 18px;
    border: 1px dashed #eebe58;
    background: #fffaf0;
    border-radius: 6px;
}

.offer-coupon span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-bottom: 7px;
}

.offer-coupon strong {
    color: var(--navy);
    font-size: 22px;
    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 768px) {

    .offer-banner {
        padding: 50px 20px;
    }

    .offer-content {
        flex-direction: column;
        gap: 35px;
    }

    .offer-copy h2 {
        font-size: 30px;
    }

    .offer-discount-number {
        font-size: 90px;
    }

    .offer-discount-percent {
        font-size: 42px;
    }

    .offer-popup {
        padding: 30px 22px;
    }
}


/* Account */

.account-action-btn,
.mini-edit-btn,
.primary-btn,
.secondary-btn,
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--r-full);
    font-family: 'Open Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.account-action-btn,
.mini-edit-btn,
.secondary-btn,
.pagination-btn {
    padding: 10px 15px;
    border: 1px solid var(--border-mid);
    background: var(--bg-card);
    color: var(--navy);
}

.account-action-btn:hover,
.mini-edit-btn:hover,
.secondary-btn:hover,
.pagination-btn:hover,
.pagination-btn.active {
    border-color: var(--navy);
    background: var(--navy-soft);
    color: var(--navy);
    transform: translateY(-1px);
}

.primary-btn {
    padding: 11px 18px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
}

.primary-btn:hover {
    border-color: var(--navy-light);
    background: var(--navy-light);
    transform: translateY(-1px);
}

.order-accordion {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}

.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    list-style: none;
    cursor: pointer;
    transition: background .2s ease;
}

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

.order-summary:hover {
    background: var(--bg-raised);
}

.order-summary[open] {
    background: var(--bg-raised);
}

.order-accordion[open] .order-caret {
    transform: rotate(180deg);
}

.order-caret {
    display: inline-block;
    color: var(--navy);
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 1px solid rgba(11,31,58,.13);
    border-radius: var(--r-full);
    background: var(--navy-soft);
    color: var(--navy);
    font-family: 'Open Sans', sans-serif;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.order-body {
    padding: 22px;
    border-top: 1px solid var(--border);
}

.order-meta-grid,
.popup-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-meta-grid {
    margin: 0 0 18px;
}

.order-meta-card,
.popup-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--bg-raised);
}

.order-meta-label,
.popup-label,
.field-label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dim);
    font-family: 'Open Sans', sans-serif;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.order-meta-value,
.popup-value {
    color: var(--navy);
    font-size: .88rem;
    font-weight: 700;
}

.order-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-family: 'Open Sans', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.order-link:hover {
    color: var(--gold-mid);
}

.field-input {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    outline: none;
    background: var(--bg-card);
    color: var(--text);
    font-family: 'Open Sans', sans-serif;
    font-size: .84rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px var(--navy-soft);
}

textarea.field-input {
    min-height: 88px;
    resize: vertical;
}

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.account-modal.active {
    display: block;
}

.account-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,26,54,.58);
    backdrop-filter: blur(5px);
}

.account-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 32px));
    max-height: min(86vh, 900px);
    margin: 6vh auto 0;
    overflow-y: auto;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: var(--r-xl);
    background: var(--bg-card);
    box-shadow: 0 24px 70px rgba(3,26,54,.28);
    animation: accountModalIn .25s var(--ease) both;
}

@keyframes accountModalIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.account-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--border-mid);
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--navy);
    font-size: 1.35rem;
}

.account-modal-close:hover {
    border-color: var(--navy);
    background: var(--navy-soft);
}

.popup-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .order-summary,
    .popup-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-meta-grid,
    .popup-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .account-modal-dialog {
        width: calc(100vw - 22px);
        max-height: 92vh;
        margin-top: 4vh;
        padding: 24px 18px;
    }
}

@media (max-width: 520px) {
    .account-action-btn {
        width: 100%;
    }

    .order-summary {
        padding: 17px;
    }

    .order-body {
        padding: 17px;
    }
}

.rl-info-page { background: var(--page-bg); }

.rl-page-hero {
    padding: 82px 0 76px;
    background: linear-gradient(120deg, var(--navy-dark), var(--navy), var(--navy-light));
    color: var(--white);
}

.rl-page-hero .container { max-width: 980px; text-align: center; }

.rl-eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.rl-page-hero h1 {
    color: var(--white);
    font-size: clamp(52px, 7vw, 78px);
}

.rl-hero-text {
    max-width: 650px;
    margin: 15px auto 0;
    color: #DCE7F3;
    font-size: 15px;
}

.rl-content-section { padding: 72px 0; background: var(--white); }
.rl-content-section.rl-soft { background: #F8FAFC; }

.rl-intro-grid,
.rl-two-column,
.rl-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: start;
}

.rl-intro-grid h2,
.rl-two-column h2,
.rl-section-heading h2,
.rl-contact-grid h2 {
    color: var(--navy);
    font-size: clamp(38px, 5vw, 54px);
}

.rl-copy { display: flex; flex-direction: column; gap: 17px; }
.rl-copy p, .rl-lead { color: var(--text-muted); font-size: 15px; line-height: 1.85; }

.rl-section-heading { max-width: 700px; margin: 0 auto 34px; text-align: center; }
.rl-section-heading > p:last-child { margin-top: 12px; color: var(--text-muted); }

.rl-feature-band {
    padding: 72px 0;
    background: #F8FAFC;
}

.rl-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rl-info-card,
.rl-policy-card,
.rl-payment-card {
    display: block;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rl-info-card:hover,
.rl-link-card:hover,
.rl-policy-card:hover,
.rl-payment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.rl-info-card h3,
.rl-policy-card h3,
.rl-payment-card h3 {
    margin: 15px 0 8px;
    color: var(--navy);
    font-size: 29px;
}

.rl-info-card p,
.rl-policy-card p,
.rl-payment-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.rl-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(232,185,90,.7);
    border-radius: 50%;
    color: var(--gold);
    background: #FFFDF8;
    font-size: 19px;
}

.rl-promise-cta {
    padding: 52px 0;
    background: var(--navy-dark);
    color: var(--white);
}

.rl-promise-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.rl-promise-cta h2 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 48px);
}

.rl-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.rl-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.rl-contact-item strong,
.rl-contact-item a,
.rl-contact-item > div > span {
    display: block;
}

.rl-contact-item strong { margin-bottom: 3px; color: var(--navy); font-size: 14px; }
.rl-contact-item a, .rl-contact-item > div > span { color: var(--text-muted); font-size: 14px; }
.rl-contact-item a:hover { color: var(--navy); }

.rl-form-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.rl-form-card h3 { color: var(--navy); font-size: 34px; }
.rl-form-card > p { margin: 7px 0 22px; font-size: 14px; }

.rl-contact-form { display: flex; flex-direction: column; gap: 15px; }
.rl-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--gray-dark);
    font-size: 13px;
    font-weight: 700;
}
.rl-contact-form label span { color: var(--gray); font-weight: 400; }

.rl-contact-form input,
.rl-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-mid);
    border-radius: var(--r-sm);
    outline: 0;
    background: var(--white);
    color: var(--text);
}

.rl-contact-form input:focus,
.rl-contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(18,63,102,.08);
}

.rl-contact-form textarea { resize: vertical; }
.rl-form-note { display: block; margin-top: 12px; color: var(--gray); font-size: 11px; }

.rl-steps {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.rl-steps article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.rl-steps article > span {
    color: var(--gold);
    font-family: 'Niconne', cursive;
    font-size: 38px;
    line-height: 1;
}

.rl-steps h3 { margin-bottom: 6px; color: var(--navy); font-size: 30px; }
.rl-steps p { color: var(--text-muted); font-size: 14px; }

.rl-policy-grid,
.rl-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rl-note {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: #FFFDF7;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.rl-note strong { color: var(--navy); }

.rl-link-card { cursor: pointer; }

@media (max-width: 800px) {
    .rl-page-hero { padding: 62px 0 58px; }
    .rl-content-section,
    .rl-feature-band { padding: 52px 0; }

    .rl-intro-grid,
    .rl-two-column,
    .rl-contact-grid { grid-template-columns: 1fr; gap: 30px; }

    .rl-card-grid,
    .rl-policy-grid,
    .rl-payment-grid { grid-template-columns: 1fr 1fr; }

    .rl-promise-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .rl-page-hero h1 { font-size: 48px; }
    .rl-hero-text { font-size: 14px; }

    .rl-card-grid,
    .rl-policy-grid,
    .rl-payment-grid { grid-template-columns: 1fr; }

    .rl-form-card { padding: 22px; }
    .rl-steps article { grid-template-columns: 50px 1fr; gap: 12px; }
    .rl-steps article > span { font-size: 30px; }
}


/* FAQ page */
.rl-faq-container { max-width: 960px; }

.rl-faq-list {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.rl-faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.rl-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 8px;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
}

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

.rl-faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
}

.rl-faq-item[open] summary::after {
    content: '−';
}

.rl-faq-item summary:hover {
    color: var(--navy-mid);
}

.rl-faq-answer {
    padding: 0 50px 23px 8px;
}

.rl-faq-answer p {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.rl-faq-answer p:last-child {
    margin-bottom: 0;
}

.rl-faq-answer a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 560px) {
    .rl-faq-item summary {
        padding: 19px 4px;
        font-size: 14px;
    }

    .rl-faq-answer {
        padding: 0 32px 20px 4px;
    }
}


