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

:root {
    --bg: #f5f0eb;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #999;
    --accent: #2D6A4F;
    --accent-light: #40916C;
    --accent-bg: #d8f3dc;
    --accent-dark: #1B4332;
    --border: #e0dcd7;
    --card-bg: #ffffff;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --danger: #c62828;
    --danger-bg: #fde8e8;
    --success: #2e7d32;
    --success-bg: #e8f5e9;
    --warning: #e6a817;
    --radius: 12px;
    --max-w: 1400px;
    --content-w: 92%;
    --header-h: 56px;
    --mobile-nav-h: 38px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --grad: linear-gradient(90deg, #2D6A4F, #C9A84C, #3B82F6, #F97316, #2D6A4F);
    --accent-gold: #C9A84C;
    --bg-alt: #f0f0ec;
    --warning-bg: #fef3cd;
    --warning-text: #856404;
}

@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@keyframes pricePop { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }

.gradient-line {
    background: var(--grad);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    border-radius: 2px;
}

html {
    font-size: 15px;
}

body {
    font-family: var(--font); color: var(--text); background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased;
}

a {
    color: inherit; text-decoration: none;
}

button {
    font-family: inherit; cursor: pointer; border: none; background: none;
}

img {
    max-width: 100%; display: block;
}

#header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: var(--white);
    border-top: 3px solid transparent;
    border-bottom: 2px solid var(--accent);
    border-image: var(--grad) 1;
    border-image-slice: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    height: var(--header-h);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    width: var(--content-w);
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

.store-validation {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.1;
    color: var(--text);
    white-space: nowrap;
    text-decoration: none;
}

.logo-title {
    font-family: 'Times New Roman', serif;
    font-size: 1.45rem;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Print', 'Snell Roundhand', cursive;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent-gold);
    font-weight: bold;
    margin-top: 1px;
    letter-spacing: 0.5px;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-navigation > span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}

.site-navigation > span:hover {
    color: var(--text);
}

.site-navigation > span.active {
    color: var(--text);
}

.site-navigation > span.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    border-radius: 2px;
}

.user-interactions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-interactions > span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.user-interactions > span:hover {
    background: var(--accent-bg);
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--accent);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer {
    position: fixed; top: 0; right: 0; width: 0; height: 100vh; z-index: 300; pointer-events: none;
}

.cart-drawer.open {
    width: 100%; pointer-events: all;
}

.cart-drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 0.4s; backdrop-filter: blur(2px); pointer-events: none;
}

.cart-drawer.open .cart-drawer-overlay {
    opacity: 1; pointer-events: all;
}

.cart-drawer-panel {
    position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
    background: var(--white); z-index: 301; box-shadow: -6px 0 30px rgba(0,0,0,0.12);
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column; border-left: 3px solid var(--accent);
}

.cart-drawer.open .cart-drawer-panel {
    right: 0;
}

.cart-drawer-header {
    padding: 18px 24px; border-bottom: 2px solid var(--accent); display: flex; justify-content: space-between; align-items: center;
}

.cart-drawer-header h3 {
    font-weight: 700; font-size: 1.1rem; letter-spacing: 0.3px;
}

.cart-close-btn {
    font-size: 1.4rem; color: var(--text-muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s;
}

.cart-close-btn:hover {
    background: var(--danger-bg); color: var(--danger);
}

.cart-drawer-body {
    flex: 1; overflow-y: auto; padding: 20px 24px;
}

.cart-empty-msg {
    text-align: center; color: var(--text-muted); padding: 60px 0; font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item-img {
    width: 56px; height: 56px; border-radius: 8px; background: var(--bg); object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500; font-size: 0.9rem;
}

.cart-item-actions {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}

.cart-qty {
    display: flex; align-items: center; gap: 8px;
}

.cart-qty-btn {
    width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 600; transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: var(--accent-bg); border-color: var(--accent);
}

.cart-qty-val {
    font-weight: 600; font-size: 0.9rem; min-width: 20px; text-align: center;
}

.cart-item-line-total {
    font-weight: 600; font-size: 0.85rem; color: var(--accent);
}

.cart-remove-btn {
    font-size: 0.75rem; color: var(--text-light); transition: color 0.2s;
}

.cart-remove-btn:hover {
    color: var(--danger);
}

.cart-drawer-footer {
    padding: 18px 24px; border-top: 2px solid var(--accent);
}

.cart-total-row {
    display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 600; font-size: 1rem;
}

#content {
    flex: 1 0 auto; display: flex; flex-direction: column; align-items: center; width: var(--content-w); max-width: var(--max-w); margin: 0 auto; padding: 32px 0 48px;
}

#content > * {
    width: 100%; max-width: 100%;
}

#content.loading {
    opacity: 0.5; transition: opacity 0.2s;
}

#footer {
    flex-shrink: 0;
    width: 100%;
    background: var(--white);
    border-top: 3px solid transparent;
    border-image: var(--grad) 1;
    border-image-slice: 1;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 clamp(16px, 4vw, 40px);
}

#footer > span {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

#footer > span:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; cursor: pointer; border: none;
}

.btn-primary {
    background: var(--accent); color: #fff;
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-danger {
    background: var(--danger); color: #fff;
}

.btn-danger:hover {
    background: #b71c1c;
}

.btn-small {
    padding: 6px 14px; font-size: 0.8rem; border-radius: 6px; border: 1px solid var(--border);
}

.btn-small:hover {
    background: var(--accent-bg); border-color: var(--accent);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px; font-size: 1rem; border-radius: 10px;
}

.form-standard {
    max-width: 560px;
}

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

.form-group label {
    display: block; font-weight: 500; font-size: 0.85rem; margin-bottom: 6px; color: var(--text);
}

.form-input {
    width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: var(--font); transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); color: var(--text);
}

.form-input:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.form-textarea {
    resize: vertical; min-height: 80px;
}

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

.form-status {
    margin-top: 12px;
}

.form-success {
    color: var(--success); font-size: 0.88rem; padding: 10px 14px; background: var(--success-bg); border-radius: 8px;
}

.form-error {
    color: var(--danger); font-size: 0.88rem; padding: 10px 14px; background: var(--danger-bg); border-radius: 8px;
}

.checkbox-label {
    display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--accent);
}

.account-split-layout {
    display: flex; width: var(--content-w); max-width: var(--max-w); margin: 0 auto; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--card-shadow); border: 1px solid var(--border); overflow: hidden; min-height: 500px;
}

.account-split-banner {
    flex: 1.15; display: block; background: var(--bg); position: relative;
}

.account-split-banner img {
    width: 100%; height: 100%; object-fit: cover;
}

.account-split-form {
    flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px;
}

.auth-container {
    width: 100%; max-width: 400px;
}

.lux-tabs {
    display: flex; position: relative; background: rgba(0,0,0,0.04); border-radius: 12px; padding: 4px; margin-bottom: 28px;
}

.lux-tab {
    flex: 1; padding: 12px 0; text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; position: relative; z-index: 2; transition: color 0.3s; border-radius: 8px;
}

.lux-tab:hover {
    color: var(--text);
}

.lux-tab.active {
    color: var(--accent-dark);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.auth-form {
    animation: fadeIn 0.3s ease;
}

.notification-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999; padding: 12px 20px; font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; justify-content: space-between; animation: fadeIn 0.3s;
}

.notification-close {
    background: none; border: none; font-size: 1.1rem; cursor: pointer; color: inherit; opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}

.page-message {
    text-align: center; padding: 60px 20px; color: var(--text-muted);
}

.page-message h2 {
    font-size: 1.3rem; margin-bottom: 12px; color: var(--text);
}

.error-message {
    text-align: center; padding: 40px; color: var(--danger); font-weight: 500;
}

.rating-selector {
    display: flex; gap: 6px;
}

.rating-dot {
    width: 16px; height: 16px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 0.2s;
}

.rating-dot.filled {
    background: var(--warning);
}

.review-rating {
    display: flex; gap: 4px;
}

.review-title {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 6px;
}

.review-body {
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}

.review-reply {
    margin-top: 12px; padding: 12px 16px; background: var(--accent-bg); border-radius: 8px; font-size: 0.85rem;
}

.review-reply strong {
    color: var(--accent-dark);
}

.faq-question {
    width: 100%; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.92rem; text-align: left; transition: background 0.2s; color: var(--text);
}

.faq-question:hover {
    background: rgba(45,106,79,0.03);
}

.faq-question.open {
    background: var(--accent-bg);
}

.lux-dashboard {
    display: grid; grid-template-columns: 260px 1fr; gap: 36px; width: var(--content-w); max-width: var(--max-w); margin: 0 auto;
}

.lux-sidebar {
    display: flex; flex-direction: column; gap: 24px;
}

.lux-user-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center;
}

.lux-avatar {
    width: 64px; height: 64px; border-radius: 50%; background: var(--accent-bg); color: var(--accent); font-size: 1.5rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}

.lux-user-name {
    font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
}

.lux-user-email {
    font-size: 0.85rem; color: var(--text-muted); word-break: break-all;
}

.lux-balance-card {
    background: var(--accent-dark); color: #fff; border-radius: var(--radius); padding: 20px; position: relative; overflow: hidden;
}

.lux-balance-card::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%); pointer-events: none;
}

.lux-balance-label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-bottom: 6px;
}

.lux-balance-val {
    font-size: 1.8rem; font-weight: 700;
}

.lux-nav {
    display: flex; flex-direction: column; gap: 4px;
}

.lux-nav-btn {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; color: var(--text-muted); transition: all 0.2s; text-align: left; width: 100%;
}

.lux-nav-btn:hover {
    background: rgba(0,0,0,0.03); color: var(--text);
}

.lux-nav-btn.active {
    background: var(--accent-bg); color: var(--accent);
}

.lux-content {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); min-height: 500px;
}

.lux-panel {
    display: none; padding: 32px; animation: fadeIn 0.3s ease;
}

.lux-panel.active {
    display: block;
}

.lux-panel-header {
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}

.lux-panel-header h2 {
    font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 4px;
}

.lux-panel-header p {
    font-size: 0.9rem; color: var(--text-muted);
}

.lux-item-list {
    display: flex; flex-direction: column; gap: 16px;
}

.lux-card {
    border: 1px solid var(--border); border-radius: 8px; padding: 20px; transition: box-shadow 0.2s;
}

.lux-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.lux-badge {
    display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}

.lux-badge-pending {
    background: #fff3cd; color: #856404;
}

.lux-badge-success {
    background: #d4edda; color: #155724;
}

.lux-badge-info {
    background: #cce5ff; color: #004085;
}

.payment-container {
    max-width: 560px; margin: 0 auto; background: var(--card-bg); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border);
}

.payment-title {
    font-size: 1.1rem; margin-bottom: 16px;
}

.payment-detail {
    padding: 10px 0; border-bottom: 1px solid var(--border);
}

.support-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}

.support-thread {
    max-height: 500px; overflow-y: auto;
}

.support-msg {
    padding: 14px 18px; margin-bottom: 12px; border-radius: 10px; font-size: 0.88rem;
}

.msg-user {
    background: var(--accent-bg); margin-left: 20px;
}

.msg-admin {
    background: var(--card-bg); border: 1px solid var(--border); margin-right: 20px;
}

.msg-header {
    display: flex; justify-content: space-between; margin-bottom: 6px;
}

.msg-header strong {
    font-size: 0.82rem;
}

.msg-date {
    font-size: 0.75rem; color: var(--text-light);
}

.msg-subject {
    font-weight: 600; margin-bottom: 4px;
}

.msg-body {
    line-height: 1.5; color: var(--text-muted);
}

/* ═══ Welcome Gate Overlay ═══ */
.welcome-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
    padding: 20px;
}
.welcome-overlay.visible { opacity: 1; }

.welcome-modal {
    background: var(--white, #fff);
    border-radius: 16px;
    max-width: 680px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease;
}

.welcome-banner {
    width: 100%; height: 200px; overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.welcome-banner-bg {
    width: 100%; height: 100%; object-fit: cover;
}

.welcome-content {
    padding: 32px 36px 28px;
}

.welcome-title {
    font-size: 1.8rem; font-weight: 800; color: var(--text, #1a1a1a); margin: 0 0 4px;
}

.welcome-subtitle {
    font-size: 0.95rem; font-weight: 500; color: var(--accent, #2D6A4F);
    letter-spacing: 0.5px; margin-bottom: 20px;
}

.welcome-intro {
    margin-bottom: 28px;
}
.welcome-intro p {
    font-size: 0.9rem; line-height: 1.7; color: var(--text-muted, #555); margin: 0 0 12px;
}
.welcome-intro strong {
    color: var(--text, #1a1a1a); font-weight: 700;
}

.welcome-section-header {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.92rem; font-weight: 700; color: var(--text, #1a1a1a);
    margin-bottom: 16px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.welcome-section-header svg { color: var(--accent, #2D6A4F); flex-shrink: 0; }

.welcome-cards {
    display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
}
.welcome-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px; border-radius: 10px;
    background: rgba(45,106,79,0.03); border: 1px solid rgba(45,106,79,0.08);
}
.welcome-card-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.welcome-card-title {
    font-size: 0.88rem; font-weight: 700; color: var(--text, #1a1a1a); margin-bottom: 3px;
}
.welcome-card-desc {
    font-size: 0.82rem; color: var(--text-muted, #666); line-height: 1.5;
}

.welcome-rules {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.welcome-rule {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.85rem; color: var(--text-muted, #555); line-height: 1.6;
}
.welcome-rule-num {
    width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
    background: var(--accent, #2D6A4F); color: #fff;
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.welcome-links {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-bottom: 20px;
}
.welcome-links a {
    font-size: 0.82rem; color: var(--text-muted, #888); font-weight: 500;
    text-decoration: none; transition: color 0.2s;
}
.welcome-links a:hover { color: var(--accent, #2D6A4F); }

.welcome-btn {
    width: 100%; padding: 16px 24px;
    background: var(--accent, #2D6A4F); color: #fff;
    border: none; border-radius: 10px;
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; transition: all 0.2s;
}
.welcome-btn:hover {
    background: var(--accent-light, #3d8b6a);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

.welcome-footer-note {
    text-align: center; font-size: 0.75rem; color: var(--text-light, #aaa);
    margin-top: 14px;
}

.blur-protect .product-image img,
.blur-protect .sf-card-image img {
    filter: blur(20px); transition: filter 0.2s;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border); border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

@media (max-width: 768px) {
.site-navigation {
    display: none;
}

#header {
    padding: 0 12px;
}

.support-layout {
    grid-template-columns: 1fr;
}

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

.cart-drawer-panel {
    width: 100%; right: -100%;
}

#footer {
    flex-direction: column; height: auto; padding: 16px 0; gap: 8px;
}

.account-split-layout {
    flex-direction: column; min-height: auto;
}

.account-split-banner {
    display: block; height: 180px;
}

.lux-dashboard {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
:root {
    --content-w: 95%;
}

html {
    font-size: 14px;
}

#header {
    padding: 0 12px;
}

.account-split-form {
    padding: 24px 16px;
}

}

.cart-item-variant {
    font-weight: 500; color: #888; font-size: 0.82rem;
}

.cart-item-meta {
    font-size: 0.75rem; color: #999; font-weight: 500;
    padding-left: 2px; margin-top: 3px; letter-spacing: 0.2px;
}

.sf-section-title {
    text-align: center; margin-bottom: 32px; position: relative;
    display: none;
}

.sf-section-title::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 3px;
    background: var(--grad); background-size: 200% 100%; animation: gradientShift 3s linear infinite;
    border-radius: 2px;
}

.sf-section-title span {
    background: var(--bg); padding: 0 24px; position: relative; z-index: 1;
    font-size: 1.15rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

.sf-banner {
    position: relative; width: 100%; height: 400px; overflow: hidden; border-radius: var(--radius); margin-bottom: 32px;
}

.sf-banner-overlay {
    position: absolute; inset: 0; background: linear-gradient(to right, rgba(15, 35, 25, 0.92) 35%, rgba(15, 35, 25, 0.5) 65%, transparent); display: flex; align-items: center;
}

.sf-coming-soon {
    text-align: center; padding: 60px 20px;
}

.sf-coming-soon h2 {
    font-size: 1.4rem; margin-bottom: 12px; color: var(--text);
}

.sf-coming-soon p {
    color: var(--text-muted);
}

#cat-nav {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

#cat-nav.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

#cat-nav-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#cat-nav-inner::-webkit-scrollbar {
    display: none;
}

.cn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.cn-pill:hover {
    background: rgba(45,106,79,0.06);
    color: #2D6A4F;
}

.cn-pill.cn-active {
    background: #2D6A4F;
    color: #fff;
    border-color: #2D6A4F;
}

.cn-pill svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cn-count {
    font-size: 0.68rem;
    background: rgba(0,0,0,0.08);
    color: inherit;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.cn-pill.cn-active .cn-count {
    background: rgba(255,255,255,0.2);
}

.cn-divider {
    width: 1px;
    height: 18px;
    background: rgba(0,0,0,0.12);
    flex-shrink: 0;
    margin: 0 4px;
}

.sf-storefront {
    width: 100%; margin: 0 auto; padding-top: 20px; overflow: hidden; box-sizing: border-box;
}

.category-section {
    margin-bottom: 12px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Times New Roman', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: var(--accent, #2D6A4F);
    margin: 0 0 16px 0;
    padding: 0;
    letter-spacing: 1px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #2D6A4F 0%, #C9A84C 20%, #3B82F6 40%, #F97316 60%, #2D6A4F 75%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.product-detail {
    animation: fadeIn 0.4s ease;
}

.product-layout {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 24px;
}

.product-image-col {
    position: relative;
}

.product-image {
    border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border);
}

.product-image img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
}

.product-image-placeholder {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--bg); color: var(--text-light); font-size: 0.9rem;
}

.product-info-col {
    display: flex; flex-direction: column;
}

.product-title {
    font-size: 1.4rem; font-weight: 700; margin-bottom: 12px;
}

.product-description {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px;
}

.product-price {
    font-size: 1.5rem; font-weight: 700; color: var(--accent);
}

.product-price.price-pop {
    animation: pricePop 0.3s ease;
}

.price-amount {
    display: inline-block;
}

.product-config-col {
    display: flex; flex-direction: column; gap: 20px;
}

.config-label {
    font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted);
}

.sf-tab-group {
    display: flex; flex-wrap: wrap; gap: 8px;
}

.sf-tab {
    padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 500;
    border: 1.5px solid var(--border); background: var(--white); color: var(--text);
    transition: all 0.2s; cursor: pointer;
}

.sf-tab:hover {
    border-color: var(--accent); color: var(--accent);
}

.sf-tab.active {
    background: var(--accent); color: #fff; border-color: var(--accent);
}

.sf-unit-group {
    display: flex; flex-wrap: wrap; gap: 8px;
}

.sf-unit {
    padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 500;
    border: 1.5px solid var(--border); background: var(--white); color: var(--text);
    transition: all 0.2s; cursor: pointer;
}

.sf-unit:hover {
    border-color: var(--accent);
}

.sf-unit.active {
    background: var(--accent-bg); color: var(--accent); border-color: var(--accent);
}

.sf-qty-stepper {
    display: flex; align-items: center; gap: 12px;
}

.sf-qty-btn {
    width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; transition: all 0.2s; background: var(--white);
}

.sf-qty-btn:hover {
    background: var(--accent-bg); border-color: var(--accent); color: var(--accent);
}

.sf-qty-val {
    font-size: 1.1rem; font-weight: 700; min-width: 30px; text-align: center;
}

.product-actions {
    display: flex; gap: 12px; margin-top: auto;
}

.sf-add-btn {
    flex: 1; padding: 13px 20px; background: var(--accent); color: #fff;
    border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all 0.2s;
}

.sf-add-btn:hover {
    background: var(--accent-light);
}

.sf-buy-btn {
    flex: 1; padding: 13px 20px; background: transparent; color: var(--accent);
    border: 1.5px solid var(--accent); border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s;
}

.sf-buy-btn:hover {
    background: var(--accent-bg);
}

.product-card {
    background: var(--card-bg, #fff);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid var(--accent);
    cursor: pointer;
    display: grid;
    flex-direction: unset;
    width: 100%;
    max-width: 100%;
    min-height: 260px;
    text-align: left;
    transform: none;
    grid-template-columns: 240px 1fr 290px;
    gap: 0;
}

.product-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(27,67,50,0.06);
}

.sf-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.sf-card-image {
    position: relative;
}

.sf-card-image img {
    width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}

.sf-card-body {
    padding: 18px 20px; display: flex; flex-direction: column; flex: 1;
}

.sf-card-price {
    font-weight: 600; color: var(--accent); font-size: 0.95rem; margin-bottom: 14px;
}

.review-form-container {
    max-width: 560px; margin: 0 auto 32px; background: var(--card-bg); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border);
}

.review-form-container h3 {
    margin-bottom: 16px;
}

.img-protect-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; cursor: default;
}

@media (max-width: 1024px) {
.product-layout {
    grid-template-columns: 1fr 1fr;
}

.product-config-col {
    grid-column: 1 / -1;
}
}

@media (max-width: 768px) {
.product-layout {
    grid-template-columns: 1fr;
}

.sf-banner {
    height: auto; min-height: 280px;
}

.sf-banner-overlay {
    background: rgba(15, 35, 25, 0.88); position: relative; z-index: 2;
}

.product-actions {
    flex-direction: column;
}
}

@media (max-width: 480px) {
.sf-tab {
    padding: 6px 12px; font-size: 0.8rem;
}

.sf-unit {
    padding: 6px 12px; font-size: 0.78rem;
}
}

.pb-grid,
.sf-product-grid .sf-grid {
    width: 100%;
    margin-bottom: 32px;
}

.product-row-wrap {
    width: 100%;
    margin-bottom: 32px;
}

.product-row-name {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-dark);
    padding: 0 0 16px;
    margin: 0 0 18px;
    border-bottom: none;
    margin-bottom: 14px;
    background: none;
    -webkit-text-fill-color: var(--accent-dark);
    background-clip: unset;
    -webkit-background-clip: unset;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.product-card .pc-image {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    aspect-ratio: auto;
    height: auto;
    flex-shrink: 0;
}

.product-card .pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
}

.product-card .pc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
}

.product-card .pc-name {
    display: none;
}

.product-card .pc-desc {
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    margin: 0 0 14px;
    line-height: 1.5;
}

.product-card .pc-pricing {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.product-card .pc-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.product-card .pc-original {
    text-decoration: line-through;
    color: var(--text-muted, #999);
    font-size: 1rem;
}

.product-card .pc-multi {
    font-size: 0.85rem;
    color: var(--accent, #2D6A4F);
    font-weight: 600;
    background: rgba(45, 106, 79, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.product-card .pc-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card .pc-btn {
    min-width: 150px;
}

@media (max-width: 640px) {
.product-card {
    flex-direction: column !important;
}

.product-card .pc-image {
    width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        max-height: 220px;
}

.product-row-name {
    font-size: 0.95rem;
}
}

.pc-col-image {
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 240px;
    min-width: 240px;
    border: 1px solid rgba(45,106,79,0.15);
    border-right: 1px solid rgba(0,0,0,0.06);
    margin: 14px;
    border-radius: 10px;
}

.pc-col-image img {
    width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s;
}

.pc-col-info {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.pc-divider {
    border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 0 0 18px;
}

.pc-desc {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.pc-col-controls {
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    background: rgba(245,250,247,0.35);
    border-left: 1px solid rgba(0,0,0,0.05);
}

.pc-selector {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pc-selector-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0;
}

.pc-pills {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
    border: 1.5px solid #d4d4d4;
    border-radius: 7px;
    overflow: hidden;
}

.pc-pill {
    padding: 0 6px;
    border: none;
    border-radius: 0;
    background: #f8f8f6;
    font-size: 0.68rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
    min-width: 0;
    border-right: 1px solid #e0e0e0;
    line-height: 18px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-pill:hover {
    border-color: var(--accent-gold);
    color: #B8860B;
    background: #f0efe8;
}

.pc-pill.active {
    border-color: var(--accent-gold);
    background: rgba(184,134,11,0.08);
    color: #B8860B;
    border-right-color: #e0e0e0;
    font-weight: 800;
}

.pc-qty-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #d4d4d4;
    border-radius: 7px;
    overflow: hidden;
    width: 100%;
    height: 34px;
}

.pc-qty-btn {
    width: auto;
    height: 34px;
    border: none;
    background: #f8f8f6;
    font-size: 1rem;
    cursor: pointer;
    color: #777;
    transition: background 0.15s;
    flex: 1;
    min-width: 0;
}

.pc-qty-btn:hover {
    background: #eee;
}

.pc-qty-val {
    width: auto;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 34px;
    color: #333;
    flex: 1.5;
    min-width: 0;
    height: 34px;
}

.pc-btn-cart {
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 40%, var(--accent-light) 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 14px rgba(27,67,50,0.25);
    overflow: hidden;
}

.pc-btn-cart:hover {
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 40%, #52B788 100%);
    box-shadow: 0 6px 20px rgba(27,67,50,0.35);
    transform: translateY(-1px);
}

.sf-products-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

@media (max-width: 768px) {
.product-card {
    grid-template-columns: 1fr !important;
}

.pc-col-image {
    height: 200px;
}

.pc-col-info {
    border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06);
}
}

.product-row-name::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg,
        #2D6A4F 0%, #C9A84C 25%, #3B82F6 45%, #F97316 60%,
        rgba(249,115,22,0) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    border-radius: 2px;
}

.pc-col-image img,
.pc-col-image .pc-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

.pc-btn-quickbuy {
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 40%, var(--accent-light) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(27,67,50,0.25);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-btn-quickbuy:hover {
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 40%, #52B788 100%);
    box-shadow: 0 6px 20px rgba(27,67,50,0.35);
    transform: translateY(-1px);
}

.pc-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; font-weight: 800;
    color: rgba(27,67,50,0.1); letter-spacing: 4px;
}

.pc-info-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
}

.pc-info-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.pc-info-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-dark);
    white-space: nowrap;
    transition: transform 0.3s ease, color 0.4s ease;
    will-change: transform;
}

.pc-info-rule {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 12px 0 16px 0;
    width: 100%;
}

.pc-btn-quickbuy:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(27,67,50,0.2);
}

.pc-btn-quickbuy .qb-icon {
    margin-right: 4px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
.product-card {
    grid-template-columns: 1fr !important;
}

.pc-col-image {
    margin: 12px 12px 0; aspect-ratio: 16/9 !important;
}

.pc-col-info {
    border-right: none;
}
}

.qb-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 1px 2px rgba(255,255,255,0.3));
}

.cart-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.pc-pill:last-child {
    border-right: none;
}

.pc-qty-unit {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-banner {
    background: #1a2e1a;
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    border: 1px solid rgba(45,106,79,0.3);
    width: 100%;
    box-sizing: border-box;
}

.sf-page-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.sf-page-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.sf-page-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    width: 100%;
    background: linear-gradient(90deg, rgba(26,46,26,0.92) 0%, rgba(26,46,26,0.7) 60%, rgba(26,46,26,0.4) 100%);
}

.page-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-icon-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.page-banner-text h2, .page-banner-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-banner-text p, .page-banner-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.rv-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
}

.rv-star {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: #d4d0cb;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rv-star.filled {
    background: var(--accent-gold);
}

.reviews-tabs {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    gap: 0;
}

.reviews-tab {
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.reviews-tab:hover {
    color: var(--text);
}

.reviews-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.reviews-total {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rv-card {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: box-shadow 0.25s ease, transform 0.15s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.rv-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.rv-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.rv-card-title-date {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

.rv-card-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.rv-vote-stars {
    display: inline-flex;
    gap: 2px;
    cursor: pointer;
}

.rv-vote-stars .rv-star {
    transition: transform 0.15s;
}

.rv-vote-stars:hover .rv-star {
    transform: scale(1.15);
}

.rv-vote-stars.voted {
    cursor: default;
}

.rv-vote-stars.voted .rv-star {
    transform: none;
}

.rv-vote-count-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(45,106,79,0.08);
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.rv-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

/* Review title: larger and bolder to separate from body */
.review-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

/* Review body: lighter color, clear visual separation */
.review-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Leave a Review tab — card background */
.reviews-section .page-message,
.reviews-section .form-standard,
.reviews-section:nth-child(3) {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    max-width: 100%;
}

.rv-votes {
    font-size: 0.8rem;
    color: var(--text-light);
}

.rv-date {
    font-size: 0.78rem;
    color: #999;
}

.rv-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), rgba(45,106,79,0.15), var(--border), transparent);
    margin: 4px 0;
    border: none;
}

.rv-title {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.rv-body {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 12px;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.rv-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(45,106,79,0.06);
    border: 1px solid rgba(45,106,79,0.12);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2D6A4F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rv-verified-icon {
    width: 14px;
    height: 14px;
    position: relative;
}

.rv-verified-icon-head {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    top: 0;
    left: 4px;
}

.rv-verified-icon-body {
    width: 14px;
    height: 7px;
    border-radius: 7px 7px 0 0;
    background: var(--accent);
    position: absolute;
    bottom: 0;
    left: 0;
}

.rv-verified-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rv-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.rv-check::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -1px;
}

.reviews-section {
    display: none;
}

.reviews-section.active {
    display: block;
}

.rv-how-section {
    padding: 32px 0;
}

.rv-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.rv-how-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.rv-how-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.rv-how-card h4 {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.rv-how-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}

.faq-layout > div:first-child {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    width: 100%;
}

.faq-cat-link:hover {
    background: rgba(45,106,79,0.05);
    color: #1a2e1a;
}

.faq-cat-link.active {
    background: rgba(45,106,79,0.08);
    color: #2D6A4F;
    font-weight: 700;
    border-color: rgba(45,106,79,0.2);
}

.faq-cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(45,106,79,0.1);
    color: #2D6A4F;
}

.faq-cat-link.active .faq-cat-icon {
    border-color: rgba(255,255,255,0.5);
}

.faq-cta {
    margin: 16px -16px -16px;
    background: #1a2e1a;
    border: none;
    border-radius: 0 0 14px 14px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.faq-cta h4 {
    font-size: 0.88rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.faq-cta p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    line-height: 1.5;
}

.faq-cta-btn {
    width: 100%;
    padding: 8px 18px;
    background: #2D6A4F;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.78rem;
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.faq-cta-btn:hover {
    background: #3a8a65;
}

.faq-content-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    margin-bottom: 6px;
}

.fq-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.fq-separator {
    height: 1px;
    background: rgba(0,0,0,0.03);
    margin: 2px 0;
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.faq-group-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.faq-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    flex: 1;
}

.faq-group-count {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.faq-group-divider {
    margin-bottom: 16px;
}

.faq-cat-badge {
    background: rgba(45,106,79,0.1);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    padding: 2px 8px;
    background: rgba(0,0,0,0.08);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1.4;
}

.faq-cat-link.active .faq-cat-count {
    background: rgba(255,255,255,0.3);
    color: var(--accent-dark);
}

.faq-cat-name {
    flex: 1;
}

.fq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: #1a2e1a;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
}

.fq-question:hover {
    color: var(--accent-dark);
    background: rgba(45,106,79,0.03);
}

.fq-chevron {
    font-size: 1rem;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 400;
}

.fq-item.open .fq-chevron {
    transform: rotate(90deg);
}

.fq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.fq-item.open .fq-answer-wrap {
    max-height: 600px;
}

.fq-divider {
    height: 3px;
    margin: 0 22px;
    background: var(--grad);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    border-radius: 2px;
}

.fq-answer {
    padding: 0 0 16px;
    font-size: 0.84rem;
    color: #555;
    line-height: 1.6;
}

.track-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.track-right-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.track-card {
    background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
    border: 1px solid rgba(224,220,215,0.6);
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.04),
        0 16px 48px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-gold));
    opacity: 0.4;
    transition: opacity 0.3s;
}

.track-card:hover {
    box-shadow:
        0 8px 32px rgba(0,0,0,0.07),
        0 24px 64px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.track-card:hover::before {
    opacity: 0.8;
}

.track-promise-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.track-promise-item svg {
    flex-shrink: 0;
}

.track-credit-card {
    background: linear-gradient(135deg, rgba(45,106,79,0.05), rgba(45,106,79,0.1));
    border: 1.5px solid rgba(45,106,79,0.18);
    margin-top: 28px;
}

.track-credit-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.track-credit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(45,106,79,0.25);
}

.track-credit-inner h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.track-credit-inner p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.track-help-card {
    background: #fff;
    margin-top: 28px;
}

.track-help-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.track-help-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.track-help-left svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.track-help-left h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.track-help-left p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.track-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.track-grid-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.track-form-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.track-result-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
}

.track-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.track-result-ref {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.track-result-detail {
    font-size: 0.88rem;
    padding: 4px 0;
    color: var(--text);
}

.track-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 24px 0;
}

.track-tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.track-tl-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0dcd7, #d0ccc5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    transition: all 0.4s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid rgba(255,255,255,0.5);
}

.track-tl-done .track-tl-dot {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

.track-tl-current .track-tl-dot {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    box-shadow: 0 0 0 4px rgba(45,106,79,0.15), 0 4px 16px rgba(45,106,79,0.3);
    animation: stepPulse 2.5s ease-in-out infinite;
}

.track-tl-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
    max-width: 80px;
    letter-spacing: 0.5px;
}

.track-tl-done .track-tl-label {
    color: var(--accent);
    font-weight: 800;
}

.track-tl-current .track-tl-label {
    color: var(--accent-dark);
    font-weight: 800;
}

.track-tl-line {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #e0dcd7, #d0ccc5);
    margin-top: 16px;
    flex-shrink: 0;
    border-radius: 2px;
}

.track-tl-line.track-tl-done {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.track-express-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(249,115,22,0.25);
}

.track-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 0;
}

.track-loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: trackPulse 1.2s ease-in-out infinite;
}

.track-loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.track-loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes trackPulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.1); }
}

.track-error {
    padding: 14px 18px;
    background: var(--danger-bg);
    color: var(--danger);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 16px;
}

.track-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.track-section-title svg {
    color: var(--accent);
    filter: drop-shadow(0 1px 2px rgba(45,106,79,0.15));
}

.track-section-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-bg), rgba(45,106,79,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(45,106,79,0.1);
}

.track-section-icon-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

/* Steps — Cinematic */
.track-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 4px;
    counter-reset: track-step;
}

.track-step {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.track-step:first-child {
    padding-top: 0;
}

.track-step-num {
    counter-increment: track-step;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(45,106,79,0.35);
    transition: all 0.3s;
    border: 3px solid rgba(255,255,255,0.2);
}

.track-step-num.active {
    animation: stepPulse 2s ease-in-out infinite;
}

.track-step-line {
    position: absolute;
    left: 23px;
    top: 56px;
    bottom: -8px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(45,106,79,0.08) 100%);
    z-index: 0;
    border-radius: 2px;
}

.track-step:last-child .track-step-line {
    display: none;
}

.track-step-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.track-step-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Notes — Elevated */
.track-credit-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(45,106,79,0.04) 0%, rgba(45,106,79,0.09) 100%);
    border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(45,106,79,0.04);
}

.track-credit-note svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
    filter: drop-shadow(0 1px 2px rgba(45,106,79,0.1));
}

.track-timeline-note {
    margin-top: 28px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(45,106,79,0.03), rgba(45,106,79,0.06));
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(45,106,79,0.03);
}

.track-timeline-note svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* Shipping Options — Premium Cards */
.ship-option {
    background: linear-gradient(135deg, var(--bg) 0%, #faf8f5 100%);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s;
    cursor: default;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.ship-option:hover {
    border-color: rgba(45,106,79,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.ship-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(45,106,79,0.08), rgba(45,106,79,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(45,106,79,0.1);
}

.ship-icon-express {
    background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.15));
    color: #F97316;
}

.ship-option-express {
    border-left: 3px solid #F97316;
}

.ship-option-info {
    flex: 1;
}

.ship-option-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ship-option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ship-price {
    font-weight: 900;
    font-size: 1.05rem;
}

.ship-price.free {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(45,106,79,0.08), rgba(45,106,79,0.15));
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(45,106,79,0.1);
}

.track-form-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 52px 48px;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 50%, #f5f0eb 100%);
    border: 1.5px solid rgba(45,106,79,0.12);
    border-radius: 24px;
    position: relative;
    box-shadow:
        0 8px 40px rgba(45,106,79,0.08),
        0 0 80px rgba(45,106,79,0.03);
    animation: cardFloatUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.track-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad);
    background-size: 300% 100%;
    animation: gradientShift 4s linear infinite;
    border-radius: 22px 22px 0 0;
}

.track-form-section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45,106,79,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.track-form-section svg {
    filter: drop-shadow(0 2px 6px rgba(45,106,79,0.2));
    position: relative;
    z-index: 1;
}

.track-form-section h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent-dark);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.track-form-section p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.track-form-row {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.track-form-row:focus-within {
    border-color: var(--accent);
    box-shadow:
        0 8px 32px rgba(45,106,79,0.15),
        0 0 0 4px rgba(45,106,79,0.06);
}

.track-form-row .form-input {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 18px 28px;
    font-size: 1.05rem;
    background: #fff;
}

.track-form-row .form-input:focus {
    box-shadow: none;
    outline: none;
}

.track-form-row .form-input::placeholder {
    color: #bbb;
    font-weight: 400;
}

.track-form-row .btn {
    flex-shrink: 0;
    border-radius: 0;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    background-size: 200% 100%;
    transition: background-position 0.3s;
}

.track-form-row .btn:hover {
    background-position: 100% 0;
}

/* === CINEMATIC PAGE ENTRANCE ANIMATIONS === */
@keyframes cardFloatUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.97); }
    60% { opacity: 1; transform: translateY(-4px) scale(1.005); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideReveal {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes manifestoFade {
    0% { opacity: 0; transform: translateY(20px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes trustBadgeGlow {
    0%, 100% { box-shadow: 0 2px 16px rgba(45,106,79,0.06); }
    50% { box-shadow: 0 4px 24px rgba(45,106,79,0.12); }
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(45,106,79,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(45,106,79,0.12), 0 3px 12px rgba(45,106,79,0.3); }
}

@keyframes ambientGlow {
    0%, 100% { box-shadow: 0 8px 40px rgba(45,106,79,0.07), 0 0 80px rgba(45,106,79,0.03); }
    50% { box-shadow: 0 12px 48px rgba(45,106,79,0.1), 0 0 100px rgba(45,106,79,0.05); }
}

/* === LEGAL PAGES (PRIVACY / TERMS) — CINEMATIC EDITION === */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
    animation: cardFloatUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-body {
    background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
    border-radius: 24px;
    padding: 56px 64px;
    border: 1px solid rgba(224,220,215,0.6);
    box-shadow:
        0 4px 32px rgba(0,0,0,0.04),
        0 24px 80px rgba(0,0,0,0.03);
    line-height: 1.9;
    font-size: 0.96rem;
    color: var(--text);
    position: relative;
    overflow: hidden;
    counter-reset: legal-section;
}

.legal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad);
    background-size: 300% 100%;
    animation: gradientShift 4s linear infinite;
    z-index: 2;
}

.legal-body::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,106,79,0.025) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Section Headings — Dramatic Numbered Headers */
.legal-heading,
.legal-body h2 {
    counter-increment: legal-section;
    position: relative;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 52px -64px 28px;
    padding: 20px 64px 20px 100px;
    background: linear-gradient(90deg, rgba(45,106,79,0.07) 0%, rgba(45,106,79,0.02) 60%, transparent 100%);
    border-left: 4px solid var(--accent);
    color: var(--accent-dark);
    line-height: 1.3;
    animation: slideReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--section-delay, 0) + 0.1s);
}

.legal-heading:first-child,
.legal-body h2:first-child {
    margin-top: -56px;
    border-radius: 20px 20px 0 0;
    padding-top: 24px;
}

.legal-heading::before,
.legal-body h2::before {
    content: counter(legal-section, decimal-leading-zero);
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(45,106,79,0.1);
    letter-spacing: -1px;
    line-height: 1;
    font-family: var(--font);
}

/* Body Text */
.legal-body p,
.legal-p {
    margin-bottom: 22px;
    color: #3a3a3a;
    line-height: 1.95;
    font-size: 0.96rem;
    position: relative;
    z-index: 1;
}

/* Manifesto Paragraphs — standalone powerful statements */
.legal-body p:only-of-type,
.legal-body p + p + p:has(+ .legal-heading),
.legal-body p:has(+ h2) {
    font-size: 1.05rem;
    line-height: 2;
    color: #222;
    font-weight: 500;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(45,106,79,0.02), rgba(45,106,79,0.06));
    border-radius: 16px;
    border-left: 3px solid var(--accent);
    margin: 32px 0;
    animation: manifestoFade 0.7s ease both;
}

/* Bullet Lists — Premium Card Style */
.legal-list,
.legal-body ul {
    margin: 0 0 32px 0;
    padding: 28px 28px 28px 36px;
    list-style: none;
    background: linear-gradient(135deg, rgba(45,106,79,0.02), rgba(0,0,0,0.01));
    border-radius: 16px;
    border: 1px solid rgba(45,106,79,0.06);
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 16px rgba(0,0,0,0.02);
}

.legal-list li,
.legal-body li {
    margin-bottom: 16px;
    color: #3a3a3a;
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
    font-size: 0.94rem;
}

.legal-list li:last-child,
.legal-body li:last-child {
    margin-bottom: 0;
}

.legal-list li::before,
.legal-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    box-shadow: 0 0 0 4px rgba(45,106,79,0.1);
}

.legal-list li strong,
.legal-body li strong {
    color: var(--accent-dark);
    font-weight: 700;
}

/* Ordered List — Numbered Badges */
.legal-list-ordered {
    counter-reset: ol-counter;
}

.legal-list-ordered li::before {
    content: counter(ol-counter);
    counter-increment: ol-counter;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    box-shadow: 0 2px 8px rgba(45,106,79,0.25);
    border: 2px solid rgba(255,255,255,0.3);
}

/* Legal Note — Trust Badge Style */
.legal-note {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(45,106,79,0.03) 0%, rgba(45,106,79,0.08) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    margin: 32px 0;
    font-size: 0.94rem;
    color: var(--accent-dark);
    line-height: 1.75;
    font-weight: 500;
    animation: trustBadgeGlow 4s ease-in-out infinite;
}

.legal-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(45,106,79,0.04), transparent 60%);
    pointer-events: none;
}

/* === EXCLUDE PAGE — DRAMATIC EDITION === */
.exclude-page {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    animation: cardFloatUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.exclude-page .legal-body {
    padding: 52px 60px;
}

.exclude-section {
    margin-bottom: 36px;
    background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid rgba(224,220,215,0.6);
    box-shadow:
        0 4px 24px rgba(0,0,0,0.04),
        0 16px 60px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    animation: cardFloatUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--section-index, 0) * 0.1s + 0.2s);
}

.exclude-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 50%, var(--warning) 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
}

.exclude-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(198,40,40,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.exclude-section h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
}

.exclude-section p {
    font-size: 0.95rem;
    color: #3a3a3a;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Powerful paragraph in exclusion */
.exclude-section p:only-of-type,
.exclude-section .form-group + p {
    font-size: 1.02rem;
    line-height: 2;
    color: #222;
    font-weight: 500;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(198,40,40,0.02), rgba(198,40,40,0.05));
    border-radius: 14px;
    border-left: 3px solid var(--danger);
}

.exclude-section .form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclude-section .form-textarea {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.92rem;
    background: #faf9f7;
    transition: all 0.25s;
    line-height: 1.7;
}

.exclude-section .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(45,106,79,0.08);
    background: #fff;
    outline: none;
}

.exclude-section .checkbox-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
    line-height: 1.7;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(198,40,40,0.03), rgba(198,40,40,0.06));
    border-radius: 12px;
    border: 1.5px solid rgba(198,40,40,0.12);
    width: 100%;
    transition: all 0.25s;
    cursor: pointer;
}

.exclude-section .checkbox-label:hover {
    background: linear-gradient(135deg, rgba(198,40,40,0.05), rgba(198,40,40,0.1));
    border-color: rgba(198,40,40,0.2);
    transform: translateX(2px);
}

.exclude-section .checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--danger);
    margin-right: 12px;
}

.exclude-section .btn-danger {
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 50%, #9a1818 100%);
    background-size: 200% 100%;
    box-shadow: 0 6px 24px rgba(198,40,40,0.3);
    transition: all 0.3s;
    text-transform: uppercase;
}

.exclude-section .btn-danger:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 32px rgba(198,40,40,0.4);
    transform: translateY(-3px);
}

.exclude-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.exclude-list li {
    padding: 12px 0 12px 28px;
    font-size: 0.93rem;
    color: #444;
    line-height: 1.75;
    position: relative;
}

.exclude-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    box-shadow: 0 0 0 4px rgba(45,106,79,0.1);
}

/* Warning Box — Dramatic */
.exclude-warning {
    background: linear-gradient(135deg, #fef9e8 0%, #fdf3cd 50%, #fef9e8 100%);
    border: 1.5px solid #f0d78c;
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(230,168,23,0.08);
    position: relative;
    overflow: hidden;
}

.exclude-warning::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(230,168,23,0.06), transparent 60%);
    pointer-events: none;
}

.exclude-warning h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--warning-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.exclude-warning p {
    font-size: 0.9rem;
    color: var(--warning-text);
    line-height: 1.65;
    margin-bottom: 10px;
}

.exclude-warning p:last-child {
    margin-bottom: 0;
}

.exclude-page {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.6s ease;
}

.exclude-page .legal-body {
    padding: 48px 52px;
}

.exclude-section {
    margin-bottom: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.exclude-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--danger));
    background-size: 200% 100%;
}

.exclude-section h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-dark);
}

.exclude-section p {
    font-size: 0.94rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px;
}

.exclude-section .form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.exclude-section .form-textarea {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    background: #faf9f7;
    transition: all 0.2s;
}

.exclude-section .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(45,106,79,0.08);
    background: #fff;
}

.exclude-section .checkbox-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    padding: 16px 20px;
    background: rgba(198,40,40,0.03);
    border-radius: 10px;
    border: 1px solid rgba(198,40,40,0.1);
    width: 100%;
    transition: all 0.2s;
}

.exclude-section .checkbox-label:hover {
    background: rgba(198,40,40,0.05);
    border-color: rgba(198,40,40,0.18);
}

.exclude-section .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--danger);
}

.exclude-section .btn-danger {
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c62828, #b71c1c);
    box-shadow: 0 4px 16px rgba(198,40,40,0.25);
    transition: all 0.25s;
}

.exclude-section .btn-danger:hover {
    background: linear-gradient(135deg, #b71c1c, #9a1818);
    box-shadow: 0 6px 24px rgba(198,40,40,0.35);
    transform: translateY(-2px);
}

.exclude-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.exclude-list li {
    padding: 10px 0 10px 24px;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.7;
    position: relative;
}

.exclude-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.exclude-warning {
    background: linear-gradient(135deg, #fef9e8, #fdf3cd);
    border: 1px solid #f0d78c;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(230,168,23,0.08);
}

.exclude-warning h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--warning-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclude-warning p {
    font-size: 0.88rem;
    color: var(--warning-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.exclude-warning p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
.faq-layout {
    grid-template-columns: 1fr;
}

.faq-sidebar {
    flex-direction: row; overflow-x: auto; gap: 4px; padding-bottom: 8px;
}

.faq-cat-link {
    white-space: nowrap; padding: 8px 14px; font-size: 0.82rem;
}

.faq-cta {
    display: none;
}

.track-grid {
    grid-template-columns: 1fr;
}

.track-info-grid {
    grid-template-columns: 1fr;
}

.track-card {
    padding: 28px 24px;
    border-radius: 16px;
}

.track-card::before {
    height: 2px;
}

.track-help-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.track-help-inner .btn {
    width: 100%;
}

.track-form-section {
    padding: 36px 28px;
    border-radius: 18px;
    margin-bottom: 32px;
}

.track-form-section h3 {
    font-size: 1.15rem;
}

.track-form-row {
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1.5px solid var(--border);
    gap: 0;
    overflow: hidden;
}

.track-form-row .form-input {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 16px 20px;
}

.track-form-row .btn {
    border-radius: 0;
    width: 100%;
    padding: 16px;
}

/* Mobile Legal Pages */
.legal-body {
    padding: 36px 28px;
    border-radius: 18px;
}

.legal-body h2,
.legal-heading {
    margin: 40px -28px 20px;
    padding: 16px 28px 16px 72px;
    font-size: 0.72rem;
    letter-spacing: 2px;
}

.legal-body h2:first-child,
.legal-heading:first-child {
    margin-top: -36px;
}

.legal-body h2::before,
.legal-heading::before {
    font-size: 1.4rem;
    left: 20px;
}

.legal-body p,
.legal-p {
    font-size: 0.9rem;
}

.legal-body p:only-of-type,
.legal-body .legal-p:only-of-type {
    padding: 20px 24px;
    font-size: 0.95rem;
}

.legal-body ul,
.legal-list {
    padding: 20px 20px 20px 28px;
}

.legal-note {
    padding: 20px 24px;
}

.exclude-section {
    padding: 28px 24px;
    border-radius: 16px;
}

.exclude-page .legal-body {
    padding: 36px 28px;
}

/* Mobile Timeline */
.track-tl-dot {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
}

.track-tl-line {
    width: 20px;
    height: 2px;
    margin-top: 13px;
}

.track-tl-label {
    font-size: 0.6rem;
    max-width: 60px;
}

/* Mobile Shipping */
.ship-option {
    padding: 18px 20px;
}

.ship-option-icon {
    width: 40px;
    height: 40px;
}

.rv-how-grid {
    grid-template-columns: 1fr;
}

.page-banner {
    padding: 20px 24px;
}
}

.page-checkout {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 16px 48px;
    width: 100%;
}

.co-progress-step.active .co-progress-dot {
    border-color: #2D6A4F; background: #2D6A4F; color: #fff;
}

.co-progress-step.active .co-progress-label {
    color: #2D6A4F;
}

.co-step {
    min-width: 100%; flex-shrink: 0;
}

.co-section {
    margin-bottom: 24px;
}

.co-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a2e1a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2D6A4F;
}

.co-section-title svg {
    color: #2D6A4F; flex-shrink: 0;
}

.co-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eeebe4;
    gap: 8px;
}

.co-item:last-child {
    border-bottom: none;
}

.co-item-info {
    flex: 1;
    min-width: 0;
}

.co-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.co-qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.co-qty-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: #f8f6f0;
    font-size: 0.9rem;
    cursor: pointer;
    color: #666;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.co-qty-btn:hover {
    background: #eee;
}

.co-qty-val {
    width: 26px;
    text-align: center;
    font-weight: 700;
    font-size: 0.78rem;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 26px;
}

.co-empty-cart {
    text-align: center;
    padding: 30px 16px;
    color: #aaa;
    font-size: 0.88rem;
}

.co-btn-link {
    background: none;
    border: none;
    color: #2D6A4F;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
    margin-top: 8px;
}

.co-ship-options {
    display: flex; gap: 10px;
}

.co-ship-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid #d0cdc5;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.co-ship-card:hover {
    border-color: #aaa;
}

.co-ship-card.selected {
    border-color: #2D6A4F;
    background: rgba(45,106,79,0.05);
    border-width: 2px;
}

.co-ship-radio {
    width: 16px; height: 16px; border-radius: 50%; border: 2px solid #ccc;
    flex-shrink: 0; position: relative; transition: border-color 0.2s;
}

.co-ship-card.selected .co-ship-radio {
    border-color: #2D6A4F;
}

.co-ship-card.selected .co-ship-radio::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #2D6A4F;
}

.co-ship-info {
    flex: 1;
}

.co-ship-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #1a1a1a;
}

.co-ship-time {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.co-ship-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: #1a1a1a;
    flex-shrink: 0;
}

.co-ship-price.free {
    color: #2D6A4F;
}

.co-pay-card.selected {
    border-color: #2D6A4F;
    background: rgba(45,106,79,0.03);
    border-width: 2px;
}

.co-pay-card.selected .co-pay-radio {
    border-color: #2D6A4F;
}

.co-pay-card.selected .co-pay-radio::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #2D6A4F;
}

.co-totals {
    padding: 16px 0;
    border-top: 2px solid #c0bdb5;
    margin-top: 8px;
}

.co-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #333;
}

.co-total-final {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1B4332;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 2px solid #c0bdb5;
}

.co-free {
    color: #2D6A4F; font-weight: 600;
}

.co-error {
    color: #c44; font-size: 0.8rem; font-weight: 600; margin-top: 10px; padding: 10px; background: #fff0f0; border-radius: 6px;
}

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

.co-form-group {
    margin-bottom: 12px;
}

.co-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #333;
    margin-bottom: 6px;
}

.co-form-group .form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #c0bdb5;
    border-radius: 8px;
    font-size: 0.92rem;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    color: #1a1a1a;
}

.co-form-group .form-input:focus {
    border-color: #2D6A4F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.co-billing-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #333;
    cursor: pointer;
    margin: 8px 0 16px;
    font-weight: 600;
}

.co-billing-toggle input {
    accent-color: #2D6A4F;
}

.co-billing-fields {
    display: none; padding-top: 12px; border-top: 1px solid #eee; margin-top: 8px;
}

.co-billing-fields.show {
    display: block;
}

.co-copy-btn {
    padding: 8px 20px;
    border: 1.5px solid #2D6A4F;
    border-radius: 6px;
    background: rgba(45,106,79,0.06);
    color: #2D6A4F;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.co-copy-btn:hover {
    background: #2D6A4F;
    color: #fff;
}

.co-copy-btn.copied {
    background: #2D6A4F; color: #fff;
}

@keyframes co-spin { to { transform: rotate(360deg); } }

@media (max-width: 520px) {
.co-ship-options {
    flex-direction: column;
}

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

@media (max-width: 768px) {
.product-card {
    grid-template-columns: 1fr !important;
        min-height: auto !important;
}

.pc-col-image {
    aspect-ratio: 16/10 !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

.pc-col-info {
    padding: 16px 18px 12px !important;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.pc-info-name {
    font-size: 0.92rem !important;
}

.pc-info-price {
    font-size: 1.1rem !important;
}

.pc-col-controls {
    padding: 14px 18px 18px !important;
        border-left: none !important;
}

.pc-selector-label {
    font-size: 0.6rem !important;
}

.pc-pill {
    font-size: 0.68rem !important; padding: 8px 4px !important;
}

.pc-qty-btn {
    height: 38px !important;
}

.pc-qty-val {
    height: 38px !important; line-height: 38px !important;
}

.pc-btn-cart, .pc-btn-quickbuy {
    width: 100% !important;
}

.sf-banner {
    height: auto !important; min-height: 200px !important;
}

.product-row-name {
    font-size: 0.82rem !important; letter-spacing: 1.5px !important;
}

.product-row-wrap {
    margin-bottom: 20px !important;
}

#content {
    padding: 16px 0 32px !important;
}
}

@media (max-width: 400px) {
:root {
    --content-w: 98%;
}

.pc-col-info {
    padding: 12px 14px 10px !important;
}

.pc-col-controls {
    padding: 10px 14px 14px !important;
}

.pc-pill {
    font-size: 0.62rem !important; padding: 6px 2px !important;
}
}

.faq-mobile-select-wrap {
    display: none;
}

.faq-mobile-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(45,106,79,0.25);
    border-radius: 8px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a2e1a;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.faq-mobile-select:focus {
    outline: none;
    border-color: #2D6A4F;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

@media (max-width: 768px) {
.rv-card {
    padding: 18px 20px;
}

.rv-meta {
    gap: 6px;
}

.rv-date {
    margin-left: 0; width: 100%; margin-top: 4px;
}

.rv-card-footer {
    flex-wrap: wrap; gap: 10px;
}

.rv-vote-wrap {
    width: 100%;
}

.reviews-tabs {
    flex-wrap: wrap; gap: 0;
}

.reviews-tab {
    font-size: 0.72rem; padding: 8px 10px;
}

.faq-mobile-select-wrap {
    display: block; margin-bottom: 16px;
}

.faq-layout {
    grid-template-columns: 1fr; gap: 16px;
}

.faq-layout > div:first-child {
    display: none;
}

.fq-question {
    padding: 14px 16px; font-size: 0.82rem;
}

.fq-answer-wrap {
    padding: 0 16px;
}

.fq-answer {
    font-size: 0.8rem;
}

.sf-page-banner-content {
    padding: 20px 18px;
}
}

.co-form-group .form-input::placeholder {
    color: #999;
}

.co-layout {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 28px;
    align-items: start;
}

.co-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.co-right {
    position: sticky;
    top: 100px;
}

.co-summary-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--border, rgba(0,0,0,0.06));
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.co-summary-title {
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a2e1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2D6A4F;
}

.co-pay-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    background: #f4f2ec;
    border-radius: 10px;
    padding: 4px;
}

.co-pay-tab {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #888;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s;
    letter-spacing: 0.5px;
}

.co-pay-tab:hover {
    color: #555;
    background: rgba(255,255,255,0.5);
}

.co-pay-tab.pay-tab-active {
    color: #1B4332;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 800;
}

.co-pay-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.co-pay-panel.active {
    display: block;
}

.co-step-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2D6A4F;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(45,106,79,0.12);
}

.co-form-unit {
    max-width: 200px;
}

.co-stripe-el {
    padding: 12px 14px;
    border: 2px solid #c0bdb5;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 44px;
}

.co-stripe-el.focused {
    border-color: #2D6A4F;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.co-stripe-el.invalid {
    border-color: #E76F51;
}

.co-popup-txid-note {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.45;
    margin-bottom: 8px;
}

.co-crypto-addr {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.72rem;
    color: #333;
    word-break: break-all;
    background: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1.5;
}

.co-crypto-addr:hover {
    background: #f0efe8;
}

.co-et-ref-box {
    background: #f8f6f0;
    border: 1px solid rgba(45,106,79,0.15);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.co-et-instruction {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.co-et-email {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 4px;
}

.co-et-ref-code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-dark);
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid rgba(45,106,79,0.2);
    display: inline-block;
    margin: 6px 0 10px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 1.5px;
}

.co-et-ref-code:hover {
    background: #eef5ee;
}

.co-et-amount {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-top: 12px;
}

.co-del-btn {
    background: none;
    border: none;
    color: #c44;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.co-del-btn:hover {
    color: #a00;
}

.co-item-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-dark);
    flex-shrink: 0;
    min-width: 60px;
    text-align: right;
}

.co-rewards-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(45,106,79,0.06);
    border-left: 3px solid #2D6A4F;
    border-radius: 4px;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.45;
}

.co-rewards-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #2D6A4F;
}

.co-rewards-note strong {
    color: #2D6A4F;
}

.co-credit-row {
    padding: 8px 0;
    border-top: 1px dashed #e0dcd4;
}

.co-credit-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2D6A4F;
}

.co-credit-toggle input[type="checkbox"] {
    accent-color: #2D6A4F;
}

.co-credit-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2D6A4F;
}

.co-total-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-total-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
}

.co-total-discounted {
    color: #2D6A4F;
    animation: discountPop 0.35s ease;
}

@keyframes discountPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.co-btn-place {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #40916C 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(27,67,50,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.co-btn-place:hover {
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 40%, #52B788 100%);
    box-shadow: 0 6px 20px rgba(27,67,50,0.35);
    transform: translateY(-1px);
}

.co-btn-place:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.co-btn-place:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(27,67,50,0.2);
}

.co-fulfillment-notice {
    font-size: 0.72rem;
    color: #999;
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
    padding: 0 8px;
}

.co-agreements {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e8e4dc;
}

.co-agreement-item {
    margin-bottom: 10px;
}

.co-agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #555;
    cursor: pointer;
    line-height: 1.45;
}

.co-agreement-check {
    width: 16px;
    height: 16px;
    accent-color: #2D6A4F;
    flex-shrink: 0;
    margin-top: 1px;
}

.co-agreement-label strong {
    color: var(--accent-dark);
}

.pay-tab-active {
    color: #2D6A4F;
    border-bottom-color: #2D6A4F;
}

.pay-ship-active {
    border-color: #2D6A4F !important;
    background: rgba(45,106,79,0.03) !important;
}

.pay-ship-active .co-ship-radio {
    border-color: #2D6A4F;
}

.pay-ship-active .co-ship-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #2D6A4F;
}

.pay-wallet {
    display: none;
}

.pay-wallet.active {
    display: block;
}

.co-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.co-form-row-3 {
	grid-template-columns: 1fr 1fr 1fr;
}
.co-country-flag {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #888;
	margin-top: 4px;
}
.co-crypto-note {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.5;
	padding: 12px 16px;
	background: rgba(45,106,79,0.04);
	border-radius: 8px;
	border-left: 3px solid #2D6A4F;
	margin-top: 12px;
}
.co-agreement-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.78rem;
	color: #555;
	cursor: pointer;
	line-height: 1.45;
	margin-bottom: 12px;
}
.co-agreement-label a {
	color: #2D6A4F;
	text-decoration: underline;
}
.co-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.co-popup-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	max-width: 520px;
	width: 100%;
	box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.co-popup-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #1B4332;
	margin-bottom: 4px;
}
.co-popup-subtitle {
	font-size: 0.92rem;
	font-weight: 600;
	color: #2D6A4F;
	margin-bottom: 20px;
}
.co-popup-row {
	margin-bottom: 16px;
}
.co-popup-row label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #666;
	margin-bottom: 6px;
}
.co-popup-addr-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.co-popup-addr {
	flex: 1;
	font-family: 'SF Mono','Fira Code','Consolas',monospace;
	font-size: 0.78rem;
	color: #333;
	word-break: break-all;
	background: #f8f6f0;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.08);
	line-height: 1.5;
}
.co-popup-copy {
	padding: 8px 16px;
	border: 1.5px solid #2D6A4F;
	border-radius: 6px;
	background: rgba(45,106,79,0.06);
	color: #2D6A4F;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s;
}
.co-popup-copy:hover {
	background: #2D6A4F;
	color: #fff;
}
.co-popup-amount {
	font-size: 1.1rem;
	font-weight: 800;
	color: #1B4332;
}
.co-popup-note {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.5;
	padding: 12px 16px;
	background: rgba(45,106,79,0.04);
	border-radius: 8px;
	margin-bottom: 16px;
}
.co-popup-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.co-popup-close-btn {
	width: 100%;
	padding: 12px;
	background: transparent;
	color: #666;
	border: 1.5px solid #ccc;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
}
.co-popup-close-btn:hover {
	border-color: #999;
	color: #333;
}
@media (max-width: 768px) {
.co-layout {
    grid-template-columns: 1fr;
        gap: 20px;
}

.co-right {
    position: static;
}

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

.co-ship-options {
    flex-direction: column;
}

.co-pay-tab {
    font-size: 0.75rem;
        padding: 10px 4px;
}

.page-checkout {
    padding: 0 12px 32px;
}

.co-form-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
}

.co-card {
    padding: 18px 16px;
}

.co-popup-card {
    padding: 24px 20px;
}
}

@media (max-width: 480px) {
.co-form-unit {
    max-width: 100%;
}

.co-et-ref-code {
    font-size: 0.95rem;
}

.co-crypto-addr {
    font-size: 0.65rem;
}
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.lux-nav-logout { color: var(--danger); }
.ticket-section-title { font-size: 1rem; margin-bottom: 12px; border-bottom: 2px solid var(--border); padding-bottom: 6px; }
