/* ══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — CONTENT UI
   Shared components for prose, information, and help pages.
══════════════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 88px) 0;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-trail a {
    transition: color var(--ease);
}

.breadcrumb-trail a:hover {
    color: var(--gold-light);
}

.breadcrumb-trail i {
    font-size: 9px;
}

.breadcrumb-trail span {
    color: rgba(255, 255, 255, 0.65);
}

.page-hero .label-tag {
    color: var(--gold-light);
    opacity: 0.8;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.08;
    margin-bottom: 14px;
}

.page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.page-hero .hero-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.46);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.85;
    letter-spacing: 0.03em;
}

/* ── Layout ── */
.page-body {
    padding: clamp(36px, 6vw, 72px) 0 80px;
}

.prose-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.page-sidebar {
    position: sticky;
    top: calc(var(--sticky-d) + 24px);
}

@media (max-width: 991px) {
    .page-sidebar {
        position: static;
        margin-bottom: 32px;
    }
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 22px;
    margin-bottom: 14px;
}

.sidebar-card h6 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 12px;
    color: var(--mid-grey);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: color var(--ease);
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    color: var(--gold);
}

.sidebar-link i {
    font-size: 13px;
    width: 16px;
    flex-shrink: 0;
}

/* ── Prose Typography ── */
.prose h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 36px 0 14px;
    padding-top: 8px;
}

.prose h2 em {
    color: var(--gold);
    font-style: italic;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--fd);
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 24px 0 10px;
    color: var(--charcoal);
}

.prose h4 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin: 20px 0 8px;
}

.prose p {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.9;
    margin-bottom: 16px;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 1px;
    transition: border-color var(--ease);
}

.prose a:hover {
    border-color: var(--gold);
}

.prose strong {
    font-weight: 600;
    color: var(--charcoal);
}

.prose em {
    font-style: italic;
}

.prose ul,
.prose ol {
    margin: 10px 0 16px 20px;
}

.prose li {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.85;
    margin-bottom: 6px;
}

.prose li::marker {
    color: var(--gold);
}

.prose ol li::marker {
    font-weight: 600;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* Callout / info box */
.callout {
    padding: 16px 20px;
    margin: 20px 0;
    border-left: 3px solid var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.callout.info {
    border-left-color: #4a90d9;
    background: rgba(74, 144, 217, 0.06);
}

.callout.success {
    border-left-color: var(--success);
    background: rgba(39, 115, 74, 0.06);
}

.callout.warning {
    border-left-color: #e67e22;
    background: rgba(230, 126, 34, 0.06);
}

.callout p {
    margin-bottom: 0;
    color: var(--charcoal);
}

/* Section divider with gold line */
.section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 36px 0 24px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-divider span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Content cards ── */
.content-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all var(--ease);
}

.content-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 14px;
}

.content-card h5 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.content-card p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.75;
}

/* ── Accordion ── */
.accordion {
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.acc-head:hover .acc-title {
    color: var(--gold);
}

.acc-title {
    font-family: var(--fd);
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color var(--ease);
}

.acc-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--mid-grey);
    flex-shrink: 0;
    transition: all var(--ease);
}

.acc-item.open .acc-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotate(45deg);
}

.acc-item.open .acc-title {
    color: var(--gold);
}

.acc-body {
    display: none;
    padding: 2px 40px 18px 0;
}

.acc-item.open .acc-body {
    display: block;
    animation: accIn .22s ease;
}

@keyframes accIn {
    from {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── Table ── */
.page-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}

.page-table th {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-grey);
    text-align: left;
    padding: 10px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
}

.page-table td {
    padding: 11px 14px;
    border: 1px solid var(--border);
    color: var(--mid-grey);
    line-height: 1.6;
    vertical-align: top;
}

.page-table td:first-child {
    color: var(--charcoal);
    font-weight: 500;
}

.page-table tr:hover td {
    background: rgba(201, 168, 76, 0.025);
}

/* ── Image block ── */
.img-block {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--charcoal), #2a1f0e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(48px, 10vw, 80px);
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.img-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.15), transparent 65%);
}

.img-caption {
    font-size: 11px;
    color: var(--mid-grey);
    text-align: center;
    margin-top: -20px;
    margin-bottom: 28px;
    font-style: italic;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--charcoal);
    padding: clamp(40px, 6vw, 68px) 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--fd);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.cta-banner h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.44);
    max-width: 400px;
    margin: 0 auto 26px;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   SHIPPING & RETURNS SPECIFIC
══════════════════════════════════════════════════════════════ */

/* ── Promise strip ── */
.promise-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.promise-inner {
    display: flex;
}

.promise-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    border-right: 1px solid var(--border);
    transition: background var(--ease);
}

.promise-item:last-child {
    border-right: none;
}

.promise-item:hover {
    background: rgba(201, 168, 76, 0.03);
}

.pi-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--gold);
    flex-shrink: 0;
}

.pi-text strong {
    display: block;
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.pi-text span {
    font-size: 12px;
    color: var(--mid-grey);
}

@media (max-width: 767px) {
    .promise-inner {
        flex-wrap: wrap;
    }

    .promise-item {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 400px) {
    .promise-item {
        flex: 1 1 100%;
    }
}

/* ── Notice & Info Boxes ── */
.notice-box {
    padding: 16px 18px;
    border-left: 3px solid #e67e22;
    background: rgba(230, 126, 34, 0.06);
    margin-bottom: 28px;
}

.notice-box p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.75;
    margin: 0;
}

.notice-box strong {
    color: var(--charcoal);
    font-weight: 600;
}

.notice-box.success {
    border-left-color: var(--success);
    background: rgba(39, 115, 74, 0.06);
}

.notice-box.info {
    border-left-color: #4a90d9;
    background: rgba(74, 144, 217, 0.06);
}

/* ── FAQ Accordion ── */
.faq-acc {
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    gap: 14px;
    user-select: none;
}

.faq-q:hover .fq-text {
    color: var(--gold);
}

.fq-text {
    font-family: var(--fd);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    transition: color var(--ease);
}

.fq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--mid-grey);
    flex-shrink: 0;
    transition: all var(--ease);
}

.faq-item.open .fq-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-item.open .fq-text {
    color: var(--gold);
}

.faq-a {
    display: none;
    padding: 2px 40px 16px 0;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeUp .22s ease;
}

.faq-a p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.85;
}

.faq-a a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
}

.faq-a a:hover {
    border-color: var(--gold);
}

/* ── Returns Process Steps ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
}

.step-body {
    flex: 1;
}

.step-body h5 {
    font-family: var(--fd);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 5px;
}

.step-body p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.75;
    margin: 0;
}

.step-body p strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ── Eligibility Grid ── */
.elig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .elig-grid {
        grid-template-columns: 1fr;
    }
}

.elig-card {
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--white);
}

.elig-card.yes {
    border-left: 3px solid var(--success);
    background: rgba(39, 115, 74, 0.03);
}

.elig-card.no {
    border-left: 3px solid var(--error);
    background: rgba(192, 57, 43, 0.03);
}

.elig-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.elig-card-head i {
    font-size: 16px;
}

.elig-card.yes .elig-card-head i {
    color: var(--success);
}

.elig-card.no .elig-card-head i {
    color: var(--error);
}

.elig-card-head h6 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.elig-card.yes .elig-card-head h6 {
    color: var(--success);
}

.elig-card.no .elig-card-head h6 {
    color: var(--error);
}

.elig-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elig-card li {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.8;
    padding-left: 14px;
    position: relative;
    margin-bottom: 4px;
}

.elig-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--light-grey);
}

/* ── Section Dividers ── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 48px 0 32px;
}

.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-divider span {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-grey);
    opacity: 0.6;
    white-space: nowrap;
}

/* ── Promise Banner (Dark) ── */
.promise-banner-dark {
    background: var(--charcoal);
    padding: clamp(20px, 4vw, 32px);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pb-icon-large {
    font-size: 44px;
    flex-shrink: 0;
}

.pb-eyebrow {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.7;
    margin-bottom: 6px;
}

.pb-title {
    font-family: var(--fd);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.pb-title em {
    color: var(--gold-light);
    font-style: italic;
}

.pb-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
    max-width: 440px;
}

/* ── Tab switcher ── */
.section-tabs {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: var(--sticky-d);
    z-index: 80;
}

@media (max-width: 767px) {
    .section-tabs {
        top: var(--sticky-m);
    }
}

.section-tabs-inner {
    display: flex;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.section-tabs-inner::-webkit-scrollbar {
    display: none;
}

.stab {
    flex-shrink: 0;
    padding: 0 24px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid-grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--ease);
    white-space: nowrap;
}

.stab i {
    font-size: 14px;
}

.stab:hover {
    color: var(--charcoal);
}

.stab.active {
    color: var(--charcoal);
    border-bottom-color: var(--gold);
}

.sec-panel {
    display: none;
}

.sec-panel.active {
    display: block;
    animation: fadeUp .28s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── Toc links ── */
.toc-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    font-size: 12px;
    color: var(--mid-grey);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: color var(--ease);
    border-left: 2px solid transparent;
    margin-left: -10px;
    padding-left: 10px;
}

.toc-link:last-child {
    border-bottom: none;
}

.toc-link:hover,
.toc-link.active {
    color: var(--charcoal);
    border-left-color: var(--gold);
}

.toc-link i {
    font-size: 11px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Help card ── */
.help-card {
    background: var(--charcoal);
    padding: 20px;
}

.help-card h6 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
}

.help-card h6 em {
    color: var(--gold-light);
    font-style: italic;
}

.help-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 14px;
}

.help-card a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 10px;
    transition: color var(--ease);
}

.help-card a:hover {
    color: #fff;
}

.section-head {
    margin-bottom: 32px;
}

.section-head h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.section-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.section-head p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-top: 8px;
    max-width: 560px;
}

/* ── Shipping method cards ── */
.method-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.method-card {
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.method-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.method-card.featured {
    border-color: var(--gold);
}

.method-accent {
    width: 5px;
    flex-shrink: 0;
}

.method-accent.standard {
    background: var(--mid-grey);
}

.method-accent.express {
    background: var(--gold);
}

.method-accent.saturday {
    background: #4a90d9;
}

.method-accent.intl {
    background: var(--charcoal);
}

.method-body {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    flex: 1;
    flex-wrap: wrap;
}

.method-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.method-info {
    flex: 1;
    min-width: 180px;
}

.method-info h5 {
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.28);
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.method-info p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.6;
}

.method-info small {
    display: block;
    font-size: 11px;
    color: var(--mid-grey);
    margin-top: 4px;
    opacity: 0.7;
}

.method-meta {
    text-align: right;
    flex-shrink: 0;
}

.method-price {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    display: block;
}

.method-price.free {
    color: var(--success);
}

.method-eta {
    font-size: 11px;
    color: var(--mid-grey);
    margin-top: 2px;
    display: block;
}

.method-cond {
    font-size: 10px;
    color: var(--light-grey);
    margin-top: 2px;
    display: block;
}

/* ── Free delivery progress bar ── */
.delivery-threshold {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.dt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 6px;
}

.dt-head span {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-grey);
}

.dt-head strong {
    font-family: var(--fd);
    font-size: 18px;
    color: var(--success);
}

.dt-bar-bg {
    height: 6px;
    background: var(--light-grey);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.dt-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 3px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) .3s;
}

.dt-note {
    font-size: 12px;
    color: var(--mid-grey);
}

.dt-note strong {
    color: var(--charcoal);
}

/* ── Cutoff clock ── */
.cutoff-banner {
    background: var(--charcoal);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.cutoff-banner i {
    font-size: 20px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.cutoff-body {
    flex: 1;
}

.cutoff-body strong {
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.cutoff-body span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cutoff-timer {
    font-family: var(--fd);
    font-size: 26px;
    color: var(--gold-light);
    flex-shrink: 0;
}

/* ── International table ── */
.intl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 28px;
}

.intl-table th {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-grey);
    text-align: left;
    padding: 10px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
}

.intl-table td {
    padding: 11px 14px;
    border: 1px solid var(--border);
    color: var(--mid-grey);
    vertical-align: top;
    line-height: 1.5;
}

.intl-table td:first-child {
    color: var(--charcoal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intl-table tr:hover td {
    background: rgba(201, 168, 76, 0.02);
}

.zone-flag {
    font-size: 18px;
}

/* ── Notice box ── */
.notice-box {
    padding: 16px 18px;
    border-left: 3px solid #e67e22;
    background: rgba(230, 126, 34, 0.06);
    margin-bottom: 28px;
}

.notice-box p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.75;
    margin: 0;
}

.notice-box strong {
    color: var(--charcoal);
    font-weight: 600;
}

.notice-box.success {
    border-left-color: var(--success);
    background: rgba(39, 115, 74, 0.06);
}

.notice-box.info {
    border-left-color: #4a90d9;
    background: rgba(74, 144, 217, 0.06);
}

/* ── Section block ── */
.content-block {
    background: var(--white);
    border: 1px solid var(--border);
    padding: clamp(22px, 4vw, 36px);
    margin-bottom: 12px;
    scroll-margin-top: 160px;
}

.cb-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cb-num {
    font-family: var(--fd);
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.55;
    flex-shrink: 0;
}

.cb-head h3 {
    font-family: var(--fd);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.cb-prose p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.9;
    margin-bottom: 12px;
}

.cb-prose p:last-child {
    margin-bottom: 0;
}

.cb-prose strong {
    font-weight: 600;
    color: var(--charcoal);
}

.cb-prose a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 1px;
    transition: border-color var(--ease);
}

.cb-prose a:hover {
    border-color: var(--gold);
}

.cb-prose ul {
    margin: 10px 0 14px 18px;
}

.cb-prose li {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.85;
    margin-bottom: 6px;
}

.cb-prose li::marker {
    color: var(--gold);
}

/* ── Returns process steps ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
}

.step-body {
    flex: 1;
}

.step-body h5 {
    font-family: var(--fd);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 5px;
}

.step-body p {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.75;
    margin: 0;
}

.step-body p strong {
    color: var(--charcoal);
    font-weight: 600;
}

.step-body a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    transition: border-color var(--ease);
}

.step-body a:hover {
    border-color: var(--gold);
}

/* ── Eligibility grid ── */
.elig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .elig-grid {
        grid-template-columns: 1fr;
    }
}

.elig-card {
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--white);
}

.elig-card.yes {
    border-left: 3px solid var(--success);
    background: rgba(39, 115, 74, 0.03);
}

.elig-card.no {
    border-left: 3px solid var(--error);
    background: rgba(192, 57, 43, 0.03);
}

.elig-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.elig-card-head i {
    font-size: 16px;
}

.elig-card.yes .elig-card-head i {
    color: var(--success);
}

.elig-card.no .elig-card-head i {
    color: var(--error);
}

.elig-card-head h6 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.elig-card.yes .elig-card-head h6 {
    color: var(--success);
}

.elig-card.no .elig-card-head h6 {
    color: var(--error);
}

.elig-card ul {
    list-style: none;
}

.elig-card li {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.8;
    padding-left: 14px;
    position: relative;
    margin-bottom: 4px;
}

.elig-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--light-grey);
}

/* ── Contact CTA strip ── */
.contact-strip {
    background: var(--charcoal);
    padding: clamp(36px, 5vw, 60px) 0;
}

.contact-strip h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contact-strip h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.contact-strip p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 400px;
}

.contact-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ease);
}

.contact-method i {
    font-size: 16px;
}

.contact-method:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.06);
}