:root {
  color-scheme: light;
  --cream: #FAF7F0;
  --navy: #092B49;
  --navy-dark: #082B46;
  --orange: #FF9B3D;
  --orange-dark: #E8892F;
  --mint: #9FE2CF;
  --mint-strong: #65CDB2;
  --mint-dark: #159B7D;
  --white: #FFFFFF;
  --muted: #536273;
  --border: #E2E7E5;
  --image-bg: #F1EEE7;
  --radius: 18px;
  font-family: Inter, Poppins, Nunito, system-ui, sans-serif;
}
* { box-sizing: border-box; }
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--navy); user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
body, button, input, select, textarea { font: inherit; }
input, textarea, select { user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { border: 0; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header { width: min(1280px, calc(100% - 32px)); margin: 0 auto; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 5; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); letter-spacing: .08em; font-size: 13px; white-space: nowrap; font-weight: 700; }
.brand b { font-weight: 900; }.brand small { display: block; font-size: 8px; letter-spacing: .28em; color: var(--orange); margin-top: 2px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px 4px 12px 4px; background: var(--mint); color: var(--navy); font-size: 12px; letter-spacing: 0; }
.main-nav { display: none; gap: 28px; color: var(--navy); font-size: 13px; font-weight: 600; }.main-nav a { transition: color .2s; color: var(--navy); }.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 8px; }.lang-dropdown { display: inline-flex; align-items: center; }
.lang-select {
  appearance: none;
  background: transparent;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  border: 0;
  padding: 0 24px 0 8px;
  height: 40px;
  min-width: 60px;
  border-radius: 12px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%239FE2CF' stroke-width='2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.lang-select:hover { background: var(--soft); }
.lang-toggle, .theme-toggle, .menu-toggle { min-width: 40px; height: 40px; border-radius: 12px; background: transparent; color: var(--mint); font-size: 12px; font-weight: 800; }.lang-toggle:hover, .theme-toggle:hover, .menu-toggle:hover { background: var(--soft); }
.admin-link { display: none; color: var(--muted); font-size: 12px; }.menu-toggle { display: block; font-size: 20px; }
.hero { display: grid; gap: 42px; padding: 45px 0 70px; min-height: 600px; align-items: center; background: var(--cream); color: var(--navy); }.hero-copy { max-width: 590px; text-align: center; margin-inline: auto; }.hero-search { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 6px; max-width: 470px; box-shadow: 0 10px 25px rgba(0,0,0,.06); }.hero-search input { flex: 1; min-width: 0; margin: 0; border: 0; background: transparent; padding: 11px; }.hero-search input:focus {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}.hero-search button { width: 38px; height: 38px; border-radius: 9px; background: var(--orange); color: var(--white); font-size: 20px; }.eyebrow { color: var(--orange); font-size: 11px; letter-spacing: .25em; font-weight: 900; text-transform: uppercase; margin: 0 0 16px; }.hero h1 { margin: 0; font-size: clamp(42px, 9vw, 76px); line-height: 1.1; letter-spacing: -.02em; color: var(--navy); max-width: 650px; text-align: center; font-family: "Playfair Display", "Georgia", "Times New Roman", serif; font-weight: 900; }.hero-copy > p:not(.eyebrow) { color: var(--navy); line-height: 1.75; max-width: 500px; margin: 24px auto 0; font-size: 16px; font-weight: 600; text-align: center; }.hero-actions, .contact-actions, .detail-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }.primary-button, .outline-button, .quiet-button, .btn-navy, .btn-mint, .btn-orange { min-height: 46px; padding: 0 18px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 12px; font-weight: 800; transition: transform .1s, background .2s, color .2s, filter .1s; position: relative; overflow: hidden; white-space: nowrap; flex-shrink: 0; }
.primary-button:active, .outline-button:active, .quiet-button:active {
  transform: scale(0.94);
  transition: none;
}
.primary-button::after, .outline-button::after, .quiet-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s;
}
.primary-button:active::after, .outline-button:active::after, .quiet-button:active::after {
  animation: flashlight-burst .15s ease-out;
}
@keyframes flashlight-burst {
  0% { opacity: 0; }
  50% { opacity: 0.6; }
  100% { opacity: 0; }
}.primary-button { background: var(--navy); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,.1); }.primary-button:hover { background: #123D5D; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
.btn-navy:hover { background: #123D5D; transform: translateY(-2px); }
.btn-mint { background: var(--mint-dark); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
.btn-mint:hover { background: #107A63; transform: translateY(-2px); }
.btn-orange { background: var(--orange-dark); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
.btn-orange:hover { background: #C67525; transform: translateY(-2px); }
.outline-button { border: 1px solid var(--mint); color: var(--navy); background: var(--mint); }.outline-button:hover { background: var(--mint-strong); color: var(--navy); }.quiet-button, .link-button { color: var(--mint); background: transparent; }.quiet-button { text-decoration: underline; text-underline-offset: 5px; }.link-button { font-size: 12px; font-weight: 800; }.link-button:hover { color: var(--orange); }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 11px; color: var(--muted); font-size: 11px; margin: 35px auto 0; }.hero-proof strong { color: var(--mint-dark); }.avatar-stack { display: flex; }.avatar-stack i { width: 28px; height: 28px; display: grid; place-items: center; margin-left: -6px; border: 2px solid var(--cream); border-radius: 50%; background: var(--gold-soft); color: var(--mint-dark); font-size: 8px; font-style: normal; font-weight: 800; }.avatar-stack i:first-child { margin-left: 0; background: var(--soft); }
.hero-visual { position: relative; min-height: 410px; }.hero-image { overflow: hidden; border-radius: 48% 12px 12px 12px; background: var(--image-bg); }.hero-image img { width: 100%; height: 100%; object-fit: cover; }.hero-image-main { position: absolute; inset: 0 28px 42px 0; }.hero-image-small { position: absolute; width: 40%; height: 33%; right: 0; bottom: 0; border-radius: 12px 12px 42% 12px; border: 8px solid var(--orange); }.hero-note { position: absolute; top: 18px; right: 4px; background: var(--orange); color: var(--white); width: 85px; height: 85px; border-radius: 50%; display: grid; place-items: center; text-align: center; font-size: 11px; line-height: 1.2; transform: rotate(9deg); }.hero-note span { display: block; font-size: 18px; }.hero-note b { font-weight: 700; }.hero-stat { position: absolute; left: -12px; bottom: 18px; width: 120px; padding: 14px; border-radius: 13px; background: var(--white); box-shadow: 0 14px 35px rgba(0,0,0,.1); display: flex; gap: 8px; align-items: center; }.hero-stat strong { font-size: 25px; color: var(--mint-dark); }.hero-stat span { font-size: 9px; color: var(--muted); line-height: 1.2; }
.category-section, .products-section, .reviews-section { padding: 58px 0 0; }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 24px; }.section-heading h2, .about-copy h2, .contact-copy h2, .request-section h2, .admin-page h1 { margin: 0; color: var(--navy); font-size: clamp(25px, 4vw, 38px); letter-spacing: -.04em; line-height: 1.05; }.section-heading .eyebrow { margin-bottom: 9px; color: var(--orange); }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }.category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; display: flex; align-items: center; gap: 11px; text-align: left; min-height: 94px; transition: transform .2s, border .2s, box-shadow .2s; }.category-card:hover { transform: translateY(-3px); border-color: var(--border); box-shadow: 0 14px 28px rgba(9, 43, 73, 0.08); }.category-icon { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--mint); color: var(--navy); font-size: 20px; }.category-card b, .category-card small { display: block; }.category-card b { font-size: 12px; }.category-card small { color: var(--muted); font-size: 10px; margin-top: 4px; }.category-card em { margin-left: auto; align-self: start; font-size: 10px; color: var(--orange-dark); font-style: normal; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }.product-card { min-width: 0; background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .25s, box-shadow .25s; box-shadow: 0 8px 24px rgba(9, 43, 73, 0.08); }.product-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px rgba(9, 43, 73, 0.12); }.product-image { display: block; width: 100%; aspect-ratio: 1 / 1.08; padding: 0; background: var(--image-bg); position: relative; overflow: hidden; text-align: left; }.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }.product-card:hover .product-image img { transform: scale(1.04); }.condition-badge { position: absolute; left: 9px; top: 9px; padding: 5px 7px; border-radius: 5px; background: var(--white); color: var(--navy); font-size: 8px; font-weight: 900; letter-spacing: .08em; }.condition-badge.used { color: var(--orange); background: var(--orange-soft); }.condition-badge.like-new { color: var(--navy); background: var(--mint); }.image-count { position: absolute; right: 9px; bottom: 9px; padding: 5px 7px; border-radius: 5px; background: rgba(0,0,0,.76); color: #fff; font-size: 9px; }.product-card-body { padding: 13px; }.product-meta { display: flex; justify-content: space-between; gap: 8px; color: var(--orange-dark); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; opacity: 0.8; }.product-card h3 { font-size: 13px; margin: 9px 0 13px; line-height: 1.25; min-height: 33px; color: var(--navy); font-weight: 700; }.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 5px; }.product-bottom strong { color: var(--navy-dark); font-size: 15px; font-weight: 900; }
.price-currency { font-size: 0.7em; font-weight: 600; opacity: 0.7; vertical-align: baseline; }
.price-amount { font-size: inherit; font-weight: inherit; }.stock-dot { color: var(--muted); font-size: 8px; white-space: nowrap; }.stock-dot::first-letter { color: var(--mint-dark); }.card-actions { display: flex; align-items: center; gap: 6px; margin-top: 12px; border-top: 1px solid var(--border); padding-top: 10px; }.icon-button { width: 30px; height: 30px; background: var(--mint); border-radius: 8px; color: var(--navy); font-size: 18px; }.icon-button.is-active { color: #8a2b3b; background: #fceaea; }.text-button { background: none; color: var(--muted); font-size: 9px; padding: 5px; }.text-button:hover, .text-button.is-active { color: var(--orange); }.view-button { margin-left: auto; background: transparent; color: var(--muted); border: 1px solid var(--border); font-size: 10px; font-weight: 800; white-space: nowrap; }.view-button span { color: var(--orange); }
.about-section { display: grid; gap: 38px; padding: 110px 0 80px; align-items: center; }.about-image { position: relative; max-width: 510px; }.about-image img { width: 100%; aspect-ratio: 1.1; object-fit: cover; border-radius: 12px 46% 12px 12px; }.about-image span { position: absolute; right: -12px; bottom: 18px; background: var(--orange); color: #fff; padding: 12px 15px; border-radius: 10px; font-size: 10px; font-weight: 800; }.about-copy > p:not(.eyebrow), .contact-copy > p:not(.eyebrow), .request-section p { color: var(--muted); line-height: 1.75; font-size: 14px; }.about-points { display: grid; gap: 10px; color: var(--navy); font-size: 11px; font-weight: 700; margin: 25px 0; }
.review-score { color: var(--mint-dark); font-size: 18px; font-weight: 800; }.review-score small { color: var(--muted); font-size: 11px; }.review-grid { display: grid; gap: 12px; }.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: 0 8px 24px rgba(9, 43, 73, 0.08); }.stars { color: var(--orange); letter-spacing: 2px; font-size: 12px; }.review-card p { min-height: 72px; color: var(--muted); line-height: 1.65; font-size: 13px; }.review-card footer { display: flex; align-items: center; gap: 9px; }.review-avatar { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--navy); font-size: 9px; font-weight: 800; }.review-card footer b, .review-card footer small { display: block; }.review-card footer b { font-size: 11px; }.review-card footer small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.request-section { margin-top: 90px; padding: 28px; border-radius: 20px; background: var(--white); color: var(--navy); border: 1px solid var(--border); display: grid; gap: 24px; }.request-section h2 { color: var(--navy); }.request-section p { color: var(--muted); margin-bottom: 0; }.request-section .eyebrow { color: var(--orange); }.request-form { display: flex; gap: 9px; align-items: end; }.request-form input { min-width: 0; flex: 1; }.request-form .primary-button { background: var(--navy); color: #fff; white-space: nowrap; }.contact-section { margin-top: 90px; padding: 60px 0 85px; display: grid; gap: 35px; }.contact-details { display: grid; gap: 14px; }.contact-details > div { display: grid; grid-template-columns: 35px 1fr; column-gap: 10px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }.contact-details span { grid-row: span 2; color: var(--orange); font-size: 20px; }.contact-details b { font-size: 11px; }.contact-details p { color: var(--muted); font-size: 12px; margin: 5px 0 0; }
.site-footer { background: var(--navy); color: #fff; padding: 30px max(20px, calc((100% - 1180px)/2)) 20px; border-top: 6px solid var(--gold); }.footer-main { display: grid; gap: 32px; }.footer-brand .brand { color: var(--ink); font-size: 16px; }
.footer-brand .brand b { color: var(--navy); font-size: 18px; }
.footer-brand p { max-width: 300px; color: var(--muted); font-size: 14px; line-height: 1.6; opacity: 0.9; }.site-footer h3 { color: var(--gold-intense); font-size: 11px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .1em; }.site-footer > .footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }.site-footer > .footer-main > div:not(.footer-brand) a { color: var(--ink); transition: color .2s; }
.site-footer > .footer-main > div:not(.footer-brand) a:hover { color: var(--gold-intense); }
.site-footer > .footer-main > div:not(.footer-brand) span { color: var(--muted); opacity: 0.8; }.socials { display: flex; align-items: center; gap: 9px; margin-top: 17px; color: var(--gold); }.social-link { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; transition: transform .2s, color .2s, background .2s, border-color .2s; }.social-link:hover, .social-link:focus-visible { transform: translateY(-3px); outline: none; border-color: var(--gold); }
.social-link[href*="whatsapp"] { color: #25D366; }
.social-link[href*="tiktok"] { color: #000000; }
.social-link[href*="instagram"] { color: #E4405F; }
.social-link[href*="facebook"] { color: #1877F2; }
.social-link[href*="twitter"], .social-link[href*="x.com"] { color: #000000; }
.social-link svg { width: 18px; height: 18px; }.footer-bottom { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: var(--ink); opacity: 1; font-size: 9px; }
.shop-page { padding: 52px 0 100px; background: var(--cream); color: var(--navy); }.shop-heading { display: flex; justify-content: space-between; align-items: end; gap: 10px; margin-bottom: 25px; }.shop-heading h1 { margin: 0; font-size: clamp(38px, 8vw, 65px); letter-spacing: -.06em; color: var(--navy); }.shop-heading p:not(.eyebrow) { color: var(--muted); font-size: 12px; }.mobile-filter { display: block; background: var(--mint); color: var(--navy); padding: 12px; border-radius: 9px; font-size: 11px; font-weight: 800; }.shop-layout { display: grid; gap: 26px; }.filter-panel { display: none; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 18px; align-self: start; }.filter-panel.is-open { display: block; }.filter-top { display: flex; justify-content: space-between; margin-bottom: 22px; }.filter-panel label, .filter-panel legend { color: var(--navy); font-size: 11px; font-weight: 800; }.filter-panel > label { display: block; margin-bottom: 22px; }.filter-panel fieldset { border: 0; padding: 0; margin: 0 0 22px; }.filter-panel legend { margin-bottom: 10px; }.radio-row { display: block !important; color: var(--muted) !important; font-weight: 500 !important; padding: 6px 0; }.radio-row input { accent-color: var(--orange); margin-right: 6px; }.search-input, .filter-panel input[type=range], input, select, textarea { display: block; width: 100%; border: 1px solid var(--border); background: var(--white); border-radius: 9px; color: var(--navy); padding: 12px; outline: none; margin-top: 8px; font-size: 12px; }.filter-panel input[type=range] { padding: 0; accent-color: var(--orange); }.filter-panel output { float: right; color: var(--navy); font-size: 10px; }.result-toolbar { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 11px; margin-bottom: 14px; }.result-toolbar select { display: inline-block; width: auto; margin: 0; padding: 8px; }.empty-state { text-align: center; padding: 70px 20px; background: var(--white); border: 1px dashed var(--border); border-radius: 18px; }.empty-state > span { font-size: 32px; color: var(--orange); }.empty-state h2 { color: var(--navy); font-size: 22px; }.empty-state p { color: var(--muted); font-size: 12px; }
.product-detail { padding: 35px 0 100px; background: var(--cream); }.back-link { color: var(--muted); background: none; font-size: 12px; font-weight: 700; margin-bottom: 25px; }.back-link:hover { color: var(--navy); }.detail-layout { display: grid; gap: 34px; }.main-gallery { width: 100%; padding: 0; position: relative; background: var(--image-bg); border-radius: 18px; overflow: hidden; aspect-ratio: 1 / .92; }.main-gallery img { width: 100%; height: 100%; object-fit: cover; }.main-gallery span { position: absolute; bottom: 14px; right: 14px; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.86); color: var(--navy); font-size: 10px; font-weight: 800; }.thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }.thumb { flex: 0 0 66px; height: 58px; padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: #eee; }.thumb.active { border-color: var(--gold); }.thumb img { width: 100%; height: 100%; object-fit: cover; }.detail-copy { padding-top: 6px; }.detail-copy h1 { color: var(--navy); font-size: clamp(30px, 6vw, 54px); letter-spacing: -.055em; line-height: 1; margin: 15px 0; }.detail-price { color: var(--navy-dark); font-size: 22px; font-weight: 900; }.detail-price span { color: #64748b; font-size: 10px; font-weight: 500; margin-left: 9px; }.detail-description { color: var(--navy); font-size: 14px; line-height: 1.8; max-width: 520px; font-weight: 500; }.detail-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 25px 0; }.detail-facts div { background: var(--image-bg); border-radius: 9px; padding: 11px 9px; }.detail-facts small, .detail-facts b { display: block; }.detail-facts small { color: var(--navy); opacity: 0.7; font-size: 9px; margin-bottom: 5px; font-weight: 600; }.detail-facts b { font-size: 10px; }.secondary-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 18px; }.related { margin-top: 85px; }
.admin-login { min-height: 72vh; display: grid; place-items: center; }.login-card { max-width: 400px; width: 100%; background: var(--surface); border: 1px solid var(--line); padding: 35px; border-radius: 20px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2); }.admin-symbol { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-size: 22px; margin-bottom: 25px; }.login-card h1 { margin: 0; color: var(--green); }.login-card > p:not(.eyebrow) { color: var(--muted); font-size: 12px; line-height: 1.6; }.login-card form { margin-top: 24px; }.login-card .primary-button { width: 100%; margin-top: 12px; }.admin-page { padding: 48px 0 90px; }.admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 15px; margin-bottom: 28px; }.admin-heading .primary-button { white-space: nowrap; }.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }.stat-grid > div { padding: 16px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }.stat-grid span { color: var(--gold); display: block; font-size: 18px; }.stat-grid small, .stat-grid strong { display: block; }.stat-grid small { color: var(--muted); font-size: 10px; margin: 12px 0 5px; }.stat-grid strong { color: var(--green); font-size: 24px; }.admin-table-card { background: var(--surface); border: 1px solid var(--line); border-radius: 15px; margin-top: 18px; overflow: hidden; }.table-heading { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--line); }.table-heading h2 { margin: 0; font-size: 17px; color: var(--green); }.table-heading span { color: var(--muted); font-size: 10px; }.admin-row { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-bottom: 1px solid var(--line); }.admin-product { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 0; }.admin-product img { width: 38px; height: 38px; border-radius: 7px; object-fit: cover; }.admin-product b, .admin-product small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.admin-product b { font-size: 10px; }.admin-product small { color: var(--muted); font-size: 8px; margin-top: 4px; }.row-stat { color: var(--muted); font-size: 9px; display: none; }.row-actions { display: flex; gap: 5px; }.row-actions button { background: var(--soft); color: var(--green); padding: 7px; border-radius: 6px; font-size: 9px; }.row-actions .danger, .quiet-button.danger { color: #a04f5d; background: #fff0f1; }
.modal-backdrop { position: fixed; inset: 0; z-index: 20; padding: 20px; background: rgba(0,0,0,.7); display: grid; place-items: center; animation: fade .2s ease; }.modal-card { position: relative; width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 28px; border-radius: 18px; background: var(--surface); }.modal-card h2 { color: var(--green); margin-top: 0; }.modal-card form { display: grid; gap: 12px; }.modal-card label { font-size: 11px; font-weight: 800; color: var(--green); }.modal-card textarea { resize: vertical; }.modal-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--soft); font-size: 20px; }.fullscreen-gallery { position: relative; width: min(850px, 100%); display: grid; place-items: center; }.fullscreen-gallery > img { max-height: 78vh; width: auto; max-width: 100%; object-fit: contain; border-radius: 10px; }.gallery-controls { display: flex; align-items: center; gap: 18px; margin-top: 16px; color: #fff; font-size: 12px; }.gallery-controls button { background: rgba(255,255,255,.14); color: #fff; width: 38px; height: 38px; border-radius: 50%; }.fullscreen-gallery .modal-close { top: -42px; right: 0; background: rgba(255,255,255,.15); color: #fff; }.compare-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }.compare-table > div { display: grid; gap: 8px; font-size: 11px; }.compare-table img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 9px; }.compare-table strong { color: var(--green); }.compare-table span { color: var(--muted); font-size: 10px; }.compare-tray { position: fixed; z-index: 10; left: 12px; right: 12px; bottom: 12px; padding: 12px; border-radius: 14px; background: var(--surface); color: var(--ink); border: 2px solid var(--green); box-shadow: 0 12px 30px rgba(0,0,0,.2); display: flex; align-items: center; gap: 12px; }.compare-tray small { display: block; color: var(--muted); font-size: 8px; margin-top: 3px; }.compare-items { display: flex; gap: 6px; flex: 1; overflow: auto; }.compare-items span { background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 7px; white-space: nowrap; font-size: 9px; color: var(--ink); }.compare-items button { background: none; color: var(--green); padding: 0 0 0 5px; }.primary-button.small { min-height: 34px; font-size: 9px; padding: 0 10px; background: var(--gold); white-space: nowrap; }.toast { position: fixed; z-index: 30; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 9px; font-size: 11px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }.toast.show { opacity: 1; transform: translate(-50%, 0); }
:root[data-theme="dark"] { color-scheme: dark; --bg: #0f172a; --surface: #1e293b; --soft: #334155; --line: #475569; --ink: #f1f5f9; --muted: #94a3b8; --green: #60a5fa; --green-2: #93c5fd; }:root[data-theme="dark"] body { background: var(--bg); }:root[data-theme="dark"] .brand-mark { background: var(--green); color: #1e293b; }:root[data-theme="dark"] .hero-image-small { border-color: var(--bg); }:root[data-theme="dark"] .hero-note { color: #1e293b; }:root[data-theme="dark"] .primary-button { background: var(--green); color: #1e293b; }:root[data-theme="dark"] .outline-button { color: var(--green); border-color: var(--green); }:root[data-theme="dark"] .outline-button:hover { background: var(--green); color: #1e293b; }:root[data-theme="dark"] .site-footer { background: #0f172a; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@media (min-width: 650px) { .section-wrap { width: min(1180px, calc(100% - 64px)); }.site-header { width: min(1280px, calc(100% - 64px)); }.main-nav { display: flex; }.menu-toggle { display: none; }.admin-link { display: block; }.hero { grid-template-columns: 1fr 1fr; padding-top: 70px; }.hero-visual { min-height: 490px; }.category-grid { grid-template-columns: repeat(4, 1fr); }.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }.about-section { grid-template-columns: 1fr 1fr; gap: 80px; }.review-grid { grid-template-columns: repeat(3, 1fr); }.request-section { grid-template-columns: 1fr 1.1fr; align-items: center; padding: 38px 45px; }.contact-section { grid-template-columns: 1fr 1fr; align-items: center; }.footer-main { grid-template-columns: 1.5fr 1fr 1fr; }.shop-layout { grid-template-columns: 220px 1fr; }.filter-panel { display: block; }.mobile-filter { display: none; }.detail-layout { grid-template-columns: 1.05fr .95fr; align-items: start; }.stat-grid { grid-template-columns: repeat(4, 1fr); }.row-stat { display: block; }.row-actions { margin-left: auto; } }
@media (max-width: 649px) { .main-nav.is-open { display: flex; position: absolute; top: 70px; left: 0; right: 0; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; flex-direction: column; box-shadow: 0 20px 40px rgba(20,60,45,.12); }.request-form { display: grid; }.request-form .primary-button { width: 100%; }.detail-facts b { line-height: 1.2; }.compare-tray { flex-wrap: wrap; }.compare-tray > div:first-child { width: 100%; } }
.admin-heading-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.admin-heading-actions .outline-button, .admin-heading-actions .primary-button { min-height: 42px; padding-inline: 13px; }
.admin-profile { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 18px; padding: 17px 19px; background: var(--surface); border: 1px solid var(--line); border-radius: 15px; }.admin-profile > div { min-width: 0; }.admin-profile .eyebrow, .admin-profile strong, .admin-profile small { display: block; }.admin-profile .eyebrow { margin-bottom: 7px; }.admin-profile strong { color: var(--green); font-size: 15px; }.admin-profile small { color: var(--muted); font-size: 10px; line-height: 1.6; margin-top: 5px; }.admin-profile .link-button { white-space: nowrap; }
.wide-modal { width: min(720px, 100%); }.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.form-grid label, .modal-card form > label { min-width: 0; }.check-row { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 11px; font-weight: 800; }.check-row input { width: 18px; height: 18px; margin: 0; accent-color: var(--green); }
.request-form { min-width: 0; }.request-form .form-note { color: #64748b; font-size: 10px; margin: 0; }.request-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }.request-fields label { color: #475569; font-size: 10px; font-weight: 800; }.request-fields input, .request-fields textarea { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; margin-top: 6px; }.request-fields textarea { resize: vertical; }.request-fields input::placeholder, .request-fields textarea::placeholder { color: #a4bdb0; }.request-full-width { grid-column: 1 / -1; }
:root[data-theme="aurora"] { color-scheme: dark; --bg: #0f172a; --surface: rgba(30, 41, 59, .9); --soft: rgba(51, 65, 85, .35); --line: rgba(148, 163, 184, .2); --ink: #f1f5f9; --muted: #94a3b8; --green: #60a5fa; --green-2: #93c5fd; --gold: #fbbf24; --gold-soft: rgba(251, 191, 36, .18); }
:root[data-theme="aurora"] body { background: linear-gradient(120deg, #0f172a, #1e293b 45%, #1e1b4b); background-size: 220% 220%; animation: auroraShift 18s ease infinite; }.theme-toggle { transition: transform .3s ease; }.theme-toggle:hover { transform: rotate(24deg) scale(1.08); }.hero-image, .category-card, .product-card, .review-card, .admin-profile, .admin-table-card { box-shadow: 0 18px 50px rgba(0, 0, 0, .2); }.hero-note { animation: floatNote 4s ease-in-out infinite; }.hero-stat { animation: floatNote 5s ease-in-out infinite reverse; }
@keyframes auroraShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes floatNote { 0%, 100% { transform: translateY(0) rotate(9deg); } 50% { transform: translateY(-8px) rotate(4deg); } }
@media (max-width: 649px) { .form-grid, .request-fields { grid-template-columns: 1fr; }.request-full-width { grid-column: auto; }.admin-heading { align-items: flex-start; flex-direction: column; }.admin-heading-actions { justify-content: flex-start; width: 100%; }.admin-profile { align-items: flex-start; flex-direction: column; }.admin-profile .link-button { padding: 0; } }
 .content-editor-modal h3 { margin: 18px 0 2px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--green); font-size: 15px; }
 .content-editor-modal h3:first-of-type { margin-top: 2px; padding-top: 0; border-top: 0; }
 .modal-help { color: var(--muted); font-size: 12px; line-height: 1.6; margin: -4px 0 10px; }
 .editor-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 5px; }
 @media (max-width: 649px) { .editor-actions { align-items: stretch; flex-direction: column-reverse; } .editor-actions button { width: 100%; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }

/* Pro Account and Admin Profile Styles */
.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .2s, border-color .2s;
}
.account-btn:hover {
  background: var(--soft);
  border-color: var(--green);
}
.user-avatar {
  font-size: 18px;
  background: var(--mint);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
}
.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.user-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}
.user-role {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-pro-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.admin-pro-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--mint);
  color: var(--navy);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: 0 0 60px;
}
.admin-role-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.admin-pro-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.admin-pro-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.admin-pro-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -.02em;
}
.admin-pro-id {
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.admin-pro-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.admin-pro-label {
  color: var(--muted);
  font-weight: 600;
}
.admin-pro-value {
  color: var(--ink);
  font-weight: 500;
}


.admin-profile-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; }
.crm-modal { max-height: calc(100vh - 24px); }
.crm-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 20px 0; }
.crm-summary > div { padding: 14px 12px; border-radius: 11px; background: var(--soft); text-align: center; }
.crm-summary strong, .crm-summary span { display: block; }
.crm-summary strong { color: var(--green); font-size: 22px; }
.crm-summary span { color: var(--muted); font-size: 9px; margin-top: 4px; }
.crm-toolbar { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.crm-section { overflow: hidden; margin-top: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.crm-section .table-heading { padding: 14px; }
.crm-section .table-heading h3 { margin: 0; color: var(--green); font-size: 14px; }
.crm-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--line); }
.crm-row > div:first-child { min-width: 0; flex: 1; }
.crm-row b, .crm-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm-row b { color: var(--ink); font-size: 11px; }
.crm-row small { max-width: 440px; color: var(--muted); font-size: 9px; margin-top: 4px; }
.crm-row select { width: auto; min-width: 108px; margin: 0; padding: 8px; font-size: 10px; }
.crm-status { flex: 0 0 auto; padding: 5px 7px; border-radius: 6px; background: var(--gold-soft); color: var(--gold); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.crm-status.paid, .crm-status.delivered, .crm-status.active { background: #dbeafe; color: var(--green); }
.crm-status.cancelled, .crm-status.closed, .crm-status.inactive { background: #fae9ec; color: #a04f5d; }
.crm-empty { padding: 24px 14px; color: var(--muted); font-size: 11px; text-align: center; }
@media (max-width: 649px) { .admin-profile-actions { justify-content: flex-start; }.crm-row { align-items: flex-start; flex-wrap: wrap; }.crm-row > div:first-child { flex-basis: calc(100% - 10px); }.crm-row .row-actions { margin-left: auto; }.crm-row select { margin-left: auto; }.crm-summary strong { font-size: 18px; } }


.seller-row { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-top: 1px solid var(--line); }.seller-avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-weight: 900; }.seller-copy { flex: 1; min-width: 0; }.seller-copy b, .seller-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.seller-copy b { color: var(--ink); font-size: 12px; }.seller-copy small { color: var(--muted); font-size: 9px; margin-top: 4px; }.seller-status { padding: 5px 7px; border-radius: 6px; background: var(--gold-soft); color: var(--gold); font-size: 9px; font-weight: 800; }.seller-status.suspended { background: #fae9ec; color: #e58b9a; }.seller-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 18px 0 8px; color: var(--muted); font-size: 11px; }.danger-text { background: transparent; color: #e58b9a; font-size: 10px; font-weight: 800; }.records-preview { max-height: 340px; overflow: auto; margin: 12px 0; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--muted); font: 10px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; word-break: break-word; }.records-meta { display: flex; justify-content: space-between; gap: 12px; padding: 12px; border-radius: 10px; background: var(--soft); color: var(--muted); font-size: 10px; }.records-meta strong { color: var(--green); }.seller-list { margin-top: 8px; }
@media (max-width: 649px) { .seller-row { flex-wrap: wrap; }.seller-row .seller-copy { flex: 1 1 calc(100% - 55px); }.seller-row .seller-status { margin-left: 46px; }.seller-row .danger-text { margin-left: auto; }.records-meta { flex-direction: column; } }
body { background: var(--bg); color: var(--ink); }
.brand-mark { background: var(--green); color: #fff; }
.primary-button { background: var(--green); color: #fff; }
.primary-button:hover { background: var(--green-2); }
.outline-button { color: var(--green); border-color: var(--green); }
.outline-button:hover { background: var(--green); color: #fff; }
:root[data-theme="dark"] .brand-mark,
:root[data-theme="aurora"] .brand-mark { background: var(--green); color: #fff; }
:root[data-theme="dark"] .primary-button,
:root[data-theme="aurora"] .primary-button { background: var(--green); color: #fff; }
:root[data-theme="dark"] .primary-button:hover,
:root[data-theme="aurora"] .primary-button:hover { background: var(--green-2); }
:root[data-theme="dark"] .outline-button,
:root[data-theme="aurora"] .outline-button { color: var(--green); border-color: var(--green); }
:root[data-theme="dark"] .outline-button:hover,
:root[data-theme="aurora"] .outline-button:hover { background: var(--green); color: #fff; }

.product-grid { grid-template-columns: 1fr; gap: 18px; }
.product-card { background: var(--surface); border-color: var(--line); border-radius: 20px; box-shadow: 0 14px 30px rgba(0, 0, 0, .16); }
.product-card:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, .26); }
.product-image { aspect-ratio: 1 / .92; background: var(--soft); }
.product-card-body { padding: 18px; }
.product-meta { font-size: 10px; }
.product-card h3 { font-size: 16px; min-height: 40px; margin: 11px 0 16px; color: var(--ink); }
.product-bottom strong { color: var(--green); font-size: 15px; }
.stock-dot { color: var(--muted); font-size: 10px; }
.card-actions { display: grid; grid-template-columns: auto 1fr; gap: 9px; margin-top: 16px; padding-top: 13px; }
.card-actions .btn-mint,
.card-actions .btn-orange { grid-column: 1 / -1; min-height: 43px; border-radius: 10px; }
.icon-button, .text-button { min-height: 40px; }
.icon-button { background: var(--soft); color: var(--green); }
.text-button { color: var(--green); }

input, select, textarea, .search-input { background: var(--soft); color: var(--ink); border-color: var(--line); }
input::placeholder, textarea::placeholder { color: #86a99a; }
.main-gallery { background: var(--soft); }
.main-gallery span { background: rgba(7, 24, 17, .86); color: #e7f7ed; }
.thumb { background: var(--soft); }

@media (min-width: 520px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 650px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.cart-header { min-width: 44px; height: 40px; padding: 0 8px; border-radius: 11px; background: var(--mint); color: var(--navy); font-size: 15px; }.cart-header span { display: inline-grid; place-items: center; min-width: 17px; height: 17px; margin-left: 2px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 9px; font-weight: 900; }.cart-page { padding: 52px 0 100px; background: var(--cream); }.cart-layout { display: grid; gap: 20px; align-items: start; }.cart-lines, .cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: 16px; }.cart-line { display: flex; align-items: center; gap: 13px; padding: 14px; border-bottom: 1px solid var(--border); }.cart-line:last-of-type { border-bottom: 0; }.cart-line img { width: 74px; height: 74px; flex: 0 0 74px; object-fit: cover; border-radius: 10px; }.cart-line-copy { min-width: 0; flex: 1; }.cart-line-copy b, .cart-line-copy small { display: block; }.cart-line-copy b { font-size: 12px; }.cart-line-copy small { color: var(--muted); font-size: 10px; margin-top: 4px; }.cart-line > strong { color: var(--mint-dark); font-size: 11px; white-space: nowrap; }.quantity-control { display: flex; align-items: center; gap: 7px; margin-top: 9px; }.quantity-control button { min-width: 28px; min-height: 28px; padding: 0 7px; border-radius: 7px; background: var(--mint); color: var(--navy); font-weight: 800; }.quantity-control span { min-width: 16px; text-align: center; font-size: 11px; }.quantity-control .remove-line { background: transparent; color: var(--muted); font-size: 10px; font-weight: 600; }.cart-note { display: grid; gap: 3px; margin: 14px; padding: 13px; border-radius: 10px; background: var(--mint); }.cart-note b { color: var(--navy); font-size: 11px; }.cart-note span { color: var(--muted); font-size: 10px; line-height: 1.5; }.cart-summary { padding: 22px; }.cart-summary .eyebrow { margin-bottom: 18px; }.summary-row, .summary-total { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; color: var(--muted); font-size: 11px; }.summary-row strong, .summary-total strong { color: var(--mint-dark); }.summary-total { margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--navy); font-weight: 800; }.summary-total strong { font-size: 18px; }.full-button { width: 100%; margin-top: 10px; }.cart-button { flex: 1; min-height: 30px; padding: 0 7px; border-radius: 8px; background: var(--orange-soft); color: var(--navy); font-size: 9px; font-weight: 900; white-space: nowrap; }.cart-button:disabled, .primary-button:disabled { opacity: .45; cursor: not-allowed; transform: none; }.checkout-modal h3 { margin: 8px 0 10px; color: var(--navy); font-size: 14px; }.checkout-columns { display: grid; gap: 22px; }.payment-list { display: grid; gap: 7px; margin-top: 17px; }.payment-option { display: flex; align-items: flex-start; gap: 9px; padding: 10px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }.payment-option input { width: auto; margin: 2px 0 0; accent-color: var(--orange); }.payment-option b, .payment-option small { display: block; }.payment-option b { font-size: 11px; }.payment-option small { color: var(--muted); font-size: 9px; line-height: 1.4; margin-top: 3px; }.checkout-total { margin-top: 18px; padding-top: 5px; border-top: 1px solid var(--border); }.checkout-total > div { display: flex; justify-content: space-between; padding: 7px 0; font-size: 11px; }.checkout-total .summary-total { margin-top: 5px; }.success-card { text-align: center; }.success-mark { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 25px; font-weight: 900; }.success-card h2 { margin-bottom: 8px; }.success-card > p:not(.eyebrow):not(.modal-help) { color: var(--muted); font-size: 13px; }.success-actions { margin-top: 20px; }.product-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 12px 0 25px; }.product-info-grid div { padding: 11px 9px; border: 1px solid var(--border); border-radius: 9px; }.product-info-grid small, .product-info-grid b { display: block; }.product-info-grid small { color: var(--muted); font-size: 9px; margin-bottom: 5px; }.product-info-grid b { font-size: 10px; line-height: 1.3; }.low-stock-panel { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; padding: 14px 17px; border: 1px solid var(--border); border-radius: 13px; background: var(--white); }.low-stock-panel b, .low-stock-panel span { display: block; }.low-stock-panel b { color: var(--navy); font-size: 11px; }.low-stock-panel > span { color: var(--muted); font-size: 10px; margin-top: 4px; }.low-stock-panel.warning { border-color: var(--orange); background: var(--orange-soft); }.low-stock-panel.warning b { color: var(--orange); }.low-stock-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }.low-stock-list span { padding: 6px 8px; border-radius: 7px; background: var(--orange-soft); color: var(--navy); font-size: 9px; }.low-stock-list strong { color: #a04f5d; margin-left: 3px; }.policies-page { padding: 55px 0 100px; }.policies-page h1 { max-width: 650px; margin: 0; color: var(--navy); font-size: clamp(38px, 8vw, 66px); letter-spacing: -.06em; line-height: .98; }.policies-intro { max-width: 560px; color: var(--muted); font-size: 14px; line-height: 1.75; margin: 22px 0 36px; }.policy-grid { display: grid; gap: 12px; }.policy-card { display: flex; gap: 14px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 15px; }.policy-card > span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--mint); color: var(--navy); font-weight: 900; }.policy-card h3 { margin: 2px 0 8px; color: var(--navy); font-size: 14px; }.policy-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 12px; }.policy-contact { margin-top: 40px; padding: 26px; border-radius: 17px; background: var(--white); color: var(--navy); border: 1px solid var(--border); } .policy-contact h2 { margin: 0; font-size: 24px; color: var(--navy); } .policy-contact p { color: var(--muted); font-size: 12px; line-height: 1.6; } .policy-contact .primary-button { background: var(--navy); }
@media (min-width: 650px) { .cart-layout { grid-template-columns: 1fr 320px; }.checkout-columns { grid-template-columns: 1fr 1fr; }.policy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 649px) { .cart-line { align-items: flex-start; flex-wrap: wrap; }.cart-line > strong { margin-left: auto; }.cart-line-copy { min-width: calc(100% - 90px); }.product-info-grid { grid-template-columns: 1fr; }.low-stock-panel { align-items: flex-start; flex-direction: column; }.low-stock-list { justify-content: flex-start; }.cart-header { padding-inline: 5px; } }

/* Final responsive pass: keep a dense, scannable catalogue on phones. */
@media (max-width: 519px) {
  .section-wrap { width: calc(100% - 24px); max-width: 1180px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .product-card { border-radius: 13px; box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); }
  .product-image { aspect-ratio: 1 / 1; }
  .product-card-body { padding: 9px; }
  .product-meta { gap: 4px; font-size: 7px; letter-spacing: .035em; }
  .product-meta span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-card h3 { font-size: 11px; line-height: 1.22; min-height: 28px; margin: 7px 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-bottom { display: block; }
  .product-bottom strong { display: block; font-size: 11px; line-height: 1.2; overflow-wrap: anywhere; }
  .stock-dot { display: block; margin-top: 4px; font-size: 8px; }
  .card-actions { grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 8px; padding-top: 8px; }
  .card-actions .icon-button, .card-actions .text-button { min-width: 0; min-height: 34px; font-size: 9px; padding: 0 4px; }
  .card-actions .text-button { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .card-actions .cart-button, .card-actions .view-button { grid-column: auto; min-height: 38px; padding: 0 4px; font-size: 9px; line-height: 1.1; }
  .condition-badge { left: 6px; top: 6px; padding: 4px 5px; font-size: 7px; }
  .image-count { right: 6px; bottom: 6px; padding: 4px 5px; font-size: 8px; }
  .category-grid { gap: 7px; }
  .category-card { min-height: 76px; padding: 10px 8px; gap: 7px; border-radius: 12px; }
  .category-icon { width: 30px; height: 30px; font-size: 15px; border-radius: 9px; }
  .category-card b { font-size: 10px; }
  .category-card small { font-size: 8px; }
  .category-card em { font-size: 8px; }
  .shop-page { padding-top: 30px; }
  .shop-heading { align-items: center; margin-bottom: 16px; }
  .shop-heading h1 { font-size: 38px; }
  .result-toolbar { margin-bottom: 10px; }
  .result-toolbar select { max-width: 122px; font-size: 10px; padding: 7px; }
}
@media (min-width: 520px) and (max-width: 649px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .product-card-body { padding: 11px; }
  .product-card h3 { font-size: 12px; }
  .card-actions .cart-button, .card-actions .view-button { font-size: 10px; }
}
@media (max-width: 649px) {
  .product-grid { align-items: start; }
  .product-card { height: 100%; }
  .product-card .card-actions button { overflow: hidden; }
  .filter-panel { padding: 14px; }
  .admin-page { padding-top: 28px; }
}

/* Master Admin-controlled storefront branding and campaign surfaces. */
.brand-logo { width: 38px; height: 38px; flex: 0 0 38px; object-fit: contain; border-radius: 10px; background: var(--surface); }
.announcement-bar { width: min(1180px, calc(100% - 40px)); margin: 8px auto 0; min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--gold-soft); color: var(--ink); font-size: 11px; font-weight: 800; text-align: center; }
.announcement-bar span, .announcement-bar b { color: var(--gold); }.announcement-bar b { margin-left: 4px; }
.promo-banner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .65fr); gap: 22px; align-items: stretch; margin-top: 58px; padding: 24px; overflow: hidden; border-radius: 22px; background: linear-gradient(120deg, var(--surface), var(--soft)); border: 1px solid var(--line); }
.promo-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }.promo-copy h2 { margin: 0; color: var(--ink); font-size: clamp(24px, 4vw, 40px); line-height: 1.05; letter-spacing: -.04em; }.promo-copy p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 13px; line-height: 1.7; }.promo-copy .primary-button { margin-top: 7px; }
.promo-banner > img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; border-radius: 15px; }
.product-card.is-pinned { border-color: var(--gold); }.product-card.is-promoted { box-shadow: 0 10px 30px rgba(231, 187, 104, .12); }.campaign-badge { background: var(--gold); color: #fff; }.campaign-dot { position: absolute; top: 9px; right: 9px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(9, 27, 21, .78); color: var(--gold); font-size: 11px; }.product-promo-text { margin: -5px 0 9px; overflow: hidden; color: var(--gold); font-size: 9px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (max-width: 649px) { .announcement-bar { width: calc(100% - 24px); margin-top: 4px; font-size: 9px; }.promo-banner { grid-template-columns: 1fr; gap: 14px; margin-top: 35px; padding: 16px; }.promo-banner > img { min-height: 150px; max-height: 200px; }.promo-copy h2 { font-size: 27px; }.promo-copy p:not(.eyebrow) { font-size: 11px; } }

.price-tag-label { display: inline-block; margin: 0 0 5px; padding: 4px 7px; border-radius: 5px; background: var(--gold-soft); color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .04em; }
.product-bottom strong del { display: inline-block; margin-left: 4px; color: var(--muted); font-size: 9px; font-weight: 600; }
.detail-price .price-tag-label { display: block; width: max-content; margin-bottom: 8px; }

/* Media controls for the Master Admin customizer. */
.file-field { display: grid; gap: 8px; }
.file-field input[type="file"] { width: 100%; min-height: 44px; padding: 10px; border: 1px dashed var(--line); border-radius: 10px; background: var(--soft); color: var(--ink); font-size: 11px; }
.image-upload-preview { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-height: 72px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); }
.image-upload-preview img { width: 64px; height: 64px; object-fit: contain; border-radius: 9px; background: var(--surface); }
.image-upload-preview button { min-height: 36px; }
.brand-logo { width: 40px; height: 40px; flex: 0 0 40px; object-fit: contain; }
.brand-preview-card img { width: 64px; height: 64px; flex: 0 0 64px; object-fit: contain; border-radius: 12px; background: var(--surface); }

/* Optional social-account fields in the Master Admin branding form. */
.social-field { display: grid; gap: 8px; }
.social-field-label { display: flex; align-items: center; gap: 9px; min-height: 28px; color: var(--ink); font-size: 12px; font-weight: 700; }
.social-field-label svg { width: 21px; height: 21px; flex: 0 0 21px; color: var(--gold); }
.social-field-label span { display: grid; gap: 2px; }
.social-field-label small { color: var(--muted); font-size: 10px; font-weight: 500; }
.social-field input { min-height: 44px; }

/* Books CRM admin page — sub-tab strip + per-report tables. */
.books-tab-strip { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.books-tab-strip button { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 13px; font-family: inherit; }
.books-tab-strip button:hover { color: var(--text, #fff); border-color: var(--accent, #e7bb68); }
.books-tab-strip button.active { background: var(--accent, #e7bb68); color: #101820; border-color: var(--accent, #e7bb68); font-weight: 600; }
.books-body { padding-top: 4px; }
.books-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.books-table th, .books-table td { padding: 6px 8px; border-bottom: 1px solid var(--border); text-align: left; }
.books-table th { color: var(--muted); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.books-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.books-table tr.totals { font-weight: 600; background: rgba(255,255,255,0.04); }
.books-table.compact th, .books-table.compact td { padding: 4px 6px; }
.books-totals { display: flex; justify-content: space-between; padding: 12px 8px; border-top: 1px solid var(--border); margin-top: 8px; font-weight: 600; }
.books-empty, .books-error { color: var(--muted); padding: 24px 8px; text-align: center; }
.books-error { color: #ff7a7a; }
.books-chart { width: 100%; height: 80px; display: block; }
.books-forecast-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.books-forecast-card { border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.books-forecast-card h4 { margin: 0 0 8px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.books-forecast-spark { margin-bottom: 8px; }
.books-wishlist-product { border: 1px solid var(--border); border-radius: 8px; padding: 12px; margin-bottom: 12px; }
.books-wishlist-head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.books-wishlist-head img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; background: var(--border); }
.books-wishlist-head h4 { margin: 0 0 2px; font-size: 14px; }
.books-wishlist-head small { color: var(--muted); }
.books-wishlist .row-actions { white-space: nowrap; display: flex; gap: 6px; }
.books-wishlist .row-actions .quiet-button,
.books-wishlist .row-actions .primary-button { padding: 4px 8px; font-size: 12px; }


/* Product Star Ratings */
.star-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-size: 14px; }.star-rating.interactive { background: var(--soft); padding: 6px 12px; border-radius: 20px; border: 1px solid var(--line); transition: background .2s; cursor: pointer; }.star-rating.interactive:hover { background: var(--gold-soft); }
.star-rating .stars-container { display: flex; gap: 2px; }
.star-rating .star { cursor: default; transition: transform .1s; }
.star-rating.interactive .star { cursor: pointer; transition: transform .2s, color .2s; font-size: 1.2em; }
.star-rating.interactive .star:hover { transform: scale(1.3); color: var(--gold-intense); }
.star-rating.interactive .star:active { transform: scale(0.9); } .star-rating.interactive:active { transform: scale(0.98); }
.star-rating .rating-count { color: var(--muted); font-size: 10px; margin-left: 4px; font-weight: 500; }
.star-rating .star.full { color: var(--gold); }
.star-rating .star.half { color: var(--gold); opacity: 0.6; }
.star-rating .star.none { color: var(--line); }

.rate-this-product { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; }
.rate-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.rate-this-product .star-rating { justify-content: center; font-size: 24px; }
.rate-this-product .star { font-size: 32px; }

/* Pro Home Page Styles */
.hero-catchphrase { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; font-family: "Playfair Display", serif; font-style: italic; text-align: center; }
.trust-strip { display: flex; justify-content: center; gap: 30px; padding: 15px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); color: var(--muted); font-size: 11px; font-weight: 600; }
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-icon { color: var(--mint-dark); font-weight: 900; }
.why-inno { padding: 80px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); padding: 30px; border-radius: 20px; border: 1px solid var(--border); text-align: center; transition: transform .2s, box-shadow .2s; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,.05); }
.value-icon { font-size: 30px; color: var(--orange); margin-bottom: 15px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.final-cta { padding: 80px 0; background: var(--navy); color: var(--white); text-align: center; }
.cta-content h2 { color: var(--white); font-size: clamp(30px, 5vw, 48px); margin-bottom: 30px; }
.final-cta .primary-button.large { font-size: 16px; padding: 15px 30px; }

@media (max-width: 649px) {
  .trust-strip { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .value-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 28px; }
}

/* Pro Shop Page Styles */
.shop-hero { padding: 60px 0 40px; text-align: center; background: var(--white); border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.shop-hero h1 { font-size: clamp(32px, 6vw, 54px); margin: 10px 0; letter-spacing: -.04em; color: var(--navy); }
.shop-hero p { color: var(--muted); font-size: 16px; margin-bottom: 30px; font-weight: 500; }
.shop-hero-search { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 6px; max-width: 500px; margin: 0 auto; box-shadow: 0 10px 20px rgba(0,0,0,.04); }
.shop-hero-search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px; font-size: 14px; }
.shop-hero-search button { width: 40px; height: 40px; border-radius: 9px; background: var(--navy); color: var(--white); font-size: 18px; }

.category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 30px; }
.category-pill { padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--border); color: var(--muted); font-size: 12px; font-weight: 600; transition: all .2s; }
.category-pill:hover, .category-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.shop-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; padding-bottom: 20px; }
.page-num { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--white); border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; }
.page-num.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-num:hover:not(.active) { background: var(--soft); color: var(--navy); }
.page-next { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--white); border: 1px solid var(--border); color: var(--navy); font-size: 14px; cursor: pointer; }
.page-next:hover { background: var(--soft); }

@media (max-width: 649px) {
  .shop-hero { padding: 40px 0 30px; }
  .shop-hero-search { max-width: 100%; }
  .category-pills { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
}

@media (min-width: 650px) {
  .shop-layout { grid-template-columns: 240px 1fr; gap: 30px; }
}

/* Dark Theme Overrides for Shop Pro */
:root[data-theme="dark"] .shop-hero, :root[data-theme="dark"] .category-pill { background: var(--surface); border-color: var(--line); }
:root[data-theme="dark"] .shop-hero h1, :root[data-theme="dark"] .shop-hero p { color: var(--ink); }
:root[data-theme="dark"] .shop-hero-search { background: var(--soft); border-color: var(--line); }
:root[data-theme="dark"] .shop-hero-search input { color: var(--ink); }
:root[data-theme="dark"] .category-pill { color: var(--muted); }
:root[data-theme="dark"] .page-num { background: var(--surface); border-color: var(--line); color: var(--muted); }
:root[data-theme="dark"] .page-next { background: var(--surface); border-color: var(--line); color: var(--ink); }

:root[data-theme="aurora"] .shop-hero, :root[data-theme="aurora"] .category-pill { background: var(--surface); border-color: var(--line); }
:root[data-theme="aurora"] .shop-hero h1, :root[data-theme="aurora"] .shop-hero p { color: var(--ink); }
:root[data-theme="aurora"] .shop-hero-search { background: var(--soft); border-color: var(--line); }
:root[data-theme="aurora"] .shop-hero-search input { color: var(--ink); }
:root[data-theme="aurora"] .category-pill { color: var(--muted); }
:root[data-theme="aurora"] .page-num { background: var(--surface); border-color: var(--line); color: var(--muted); }
:root[data-theme="aurora"] .page-next { background: var(--surface); border-color: var(--line); color: var(--ink); }

	/* Pro Editorial About Page Styles */
	.about-page { display: grid; gap: 80px; padding: 60px 0 100px; }
	.about-hero { text-align: center; padding: 80px 0; background: var(--white); border-radius: 30px; border: 1px solid var(--border); margin-bottom: 40px; }
	.about-hero h1 { font-size: clamp(32px, 6vw, 54px); letter-spacing: -.04em; color: var(--navy); margin-bottom: 20px; font-family: "Playfair Display", serif; }
	.about-hero p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.6; }

	.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
	.about-grid-img { width: 100%; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
	.about-grid-img img { width: 100%; height: 100%; object-fit: cover; }
	.about-grid-copy h2 { font-size: 28px; margin-bottom: 20px; color: var(--navy); }
	.about-grid-copy p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 20px; }

	.mission-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
	.value-box { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; transition: transform .2s; }
	.value-box:hover { transform: translateY(-5px); }
	.value-box .icon { font-size: 24px; color: var(--orange); margin-bottom: 15px; display: block; }
	.value-box h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
	.value-box p { font-size: 13px; color: var(--muted); line-height: 1.6; }

	.trust-section { text-align: center; padding: 60px 0; background: var(--image-bg); border-radius: 30px; }
	.trust-section h2 { font-size: 28px; margin-bottom: 40px; color: var(--navy); }
	.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.trust-item { padding: 20px; background: var(--white); border-radius: 16px; border: 1px solid var(--border); }

	.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
	.team-card { text-align: center; }
	.team-card img { width: 100%; aspect-ratio: 1; border-radius: 20px; object-fit: cover; margin-bottom: 15px; filter: grayscale(0.2); transition: filter .3s; }
	.team-card:hover img { filter: grayscale(0); }
	.team-card b { display: block; font-size: 14px; color: var(--navy); }
	.team-card small { font-size: 11px; color: var(--muted); }

	.about-cta { text-align: center; padding: 80px 0; background: var(--navy); color: var(--white); border-radius: 30px; }
	.about-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 20px; }
	.about-cta .primary-button { background: var(--orange); color: var(--white); }

	@media (max-width: 850px) {
	  .about-grid { grid-template-columns: 1fr; }
	  .mission-values { grid-template-columns: 1fr; }
	  .trust-grid { grid-template-columns: 1fr; }
	  .team-grid { grid-template-columns: repeat(2, 1fr); }
	}

	/* Dark Theme Overrides for About */
	:root[data-theme="dark"] .about-hero, :root[data-theme="dark"] .about-grid-copy, :root[data-theme="dark"] .value-box, :root[data-theme="dark"] .trust-item, :root[data-theme="dark"] .trust-section { background: var(--surface); border-color: var(--line); }
	:root[data-theme="dark"] .about-hero h1, :root[data-theme="dark"] .about-grid-copy h2, :root[data-theme="dark"] .value-box h3, :root[data-theme="dark"] .trust-section h2, :root[data-theme="dark"] .team-card b { color: var(--ink); }
	:root[data-theme="dark"] .about-hero p, :root[data-theme="dark"] .about-grid-copy p, :root[data-theme="dark"] .value-box p, :root[data-theme="dark"] .trust-item p { color: var(--muted); }
	:root[data-theme="aurora"] .about-hero, :root[data-theme="aurora"] .about-grid-copy, :root[data-theme="aurora"] .value-box, :root[data-theme="aurora"] .trust-item, :root[data-theme="aurora"] .trust-section { background: var(--surface); border-color: var(--line); }
	:root[data-theme="aurora"] .about-hero h1, :root[data-theme="aurora"] .about-grid-copy h2, :root[data-theme="aurora"] .value-box h3, :root[data-theme="aurora"] .trust-section h2, :root[data-theme="aurora"] .team-card b { color: var(--ink); }
	:root[data-theme="aurora"] .about-hero p, :root[data-theme="aurora"] .about-grid-copy p, :root[data-theme="aurora"] .value-box p, :root[data-theme="aurora"] .trust-item p { color: var(--muted); }

	/* Pro Customer Account Page Styles */
	.account-dashboard { display: grid; gap: 40px; padding: 60px 0 100px; }
	.account-welcome { background: var(--navy); color: var(--white); padding: 60px 40px; border-radius: 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
	.account-welcome h1 { font-size: 32px; margin: 0; color: var(--white); font-family: "Playfair Display", serif; }
	.account-welcome p { color: var(--mint); font-size: 14px; margin: 8px 0 0; }
	.account-welcome .user-badge { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); color: var(--navy); display: grid; place-items: center; font-size: 24px; font-weight: 900; border: 4px solid rgba(255,255,255,.2); }

	.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
	.account-nav { display: flex; flex-direction: column; gap: 8px; }
	.account-nav .nav-item { padding: 14px 20px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--muted); transition: all .2s; cursor: pointer; }
	.account-nav .nav-item.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
	.account-nav .nav-item:hover:not(.active) { background: var(--image-bg); color: var(--navy); }

	.account-main { display: grid; gap: 30px; }
	.account-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
	.account-card h2 { font-size: 22px; margin: 0 0 20px; color: var(--navy); }
	.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.profile-item { display: flex; flex-direction: column; gap: 6px; }
	.profile-item label { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
	.profile-item span { font-size: 15px; color: var(--navy); font-weight: 600; }

	.account-footer { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }

	@media (max-width: 850px) {
	  .account-grid { grid-template-columns: 1fr; }
	  .account-welcome { flex-direction: column; text-align: center; }
	}

	/* Pro Policies Page Styles */
	.policies-page { padding: 60px 0 100px; }
	.policies-hero { text-align: center; margin-bottom: 60px; }
	.policies-hero h1 { font-size: clamp(32px, 6vw, 54px); color: var(--navy); margin-bottom: 16px; font-family: "Playfair Display", serif; }
	.policies-hero p { color: var(--muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

	.policy-hub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.policy-group { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: transform .2s; }
	.policy-group:hover { transform: translateY(-5px); }
	.policy-group h3 { font-size: 22px; color: var(--navy); margin: 0 0 20px; display: flex; align-items: center; gap: 12px; }
	.policy-group h3 .icon { font-size: 24px; color: var(--orange); }
	.policy-list { display: grid; gap: 20px; }
	.policy-item { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
	.policy-item:last-child { border-bottom: 0; }
	.policy-item b { display: block; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
	.policy-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

	.policy-help { text-align: center; margin-top: 60px; padding: 60px 40px; background: var(--navy); color: var(--white); border-radius: 30px; }
	.policy-help h2 { color: var(--white); font-size: 28px; margin-bottom: 15px; }
	.policy-help p { color: var(--mint); font-size: 15px; margin-bottom: 30px; }
	.policy-help .primary-button { background: var(--orange); color: var(--white); }

	@media (max-width: 850px) {
	  .policy-hub { grid-template-columns: 1fr; }
	}

	/* Dark Theme Overrides */
	:root[data-theme="dark"] .account-card, :root[data-theme="dark"] .account-nav .nav-item:not(.active), :root[data-theme="dark"] .policy-group, :root[data-theme="dark"] .policy-item { background: var(--surface); border-color: var(--line); }
	:root[data-theme="dark"] .account-card h2, :root[data-theme="dark"] .profile-item span, :root[data-theme="dark"] .policy-group h3, :root[data-theme="dark"] .policy-item b { color: var(--ink); }
	:root[data-theme="dark"] .account-nav .nav-item { color: var(--muted); }
	:root[data-theme="aurora"] .account-card, :root[data-theme="aurora"] .account-nav .nav-item:not(.active), :root[data-theme="aurora"] .policy-group, :root[data-theme="aurora"] .policy-item { background: var(--surface); border-color: var(--line); }
	:root[data-theme="aurora"] .account-card h2, :root[data-theme="aurora"] .profile-item span, :root[data-theme="aurora"] .policy-group h3, :root[data-theme="aurora"] .policy-item b { color: var(--ink); }
	:root[data-theme="aurora"] .account-nav .nav-item { color: var(--muted); }


	/* Pro Editorial About Page Styles */
	.about-page { display: grid; gap: 80px; padding: 60px 0 100px; }
	.about-hero { text-align: center; padding: 80px 0; background: var(--white); border-radius: 30px; border: 1px solid var(--border); margin-bottom: 40px; }
	.about-hero h1 { font-size: clamp(32px, 6vw, 54px); letter-spacing: -.04em; color: var(--navy); margin-bottom: 20px; font-family: "Playfair Display", serif; }
	.about-hero p { max-width: 600px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.6; }

	.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
	.about-grid-img { width: 100%; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
	.about-grid-img img { width: 100%; height: 100%; object-fit: cover; }
	.about-grid-copy h2 { font-size: 28px; margin-bottom: 20px; color: var(--navy); }
	.about-grid-copy p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 20px; }

	.mission-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
	.value-box { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; transition: transform .2s; }
	.value-box:hover { transform: translateY(-5px); }
	.value-box .icon { font-size: 24px; color: var(--orange); margin-bottom: 15px; display: block; }
	.value-box h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
	.value-box p { font-size: 13px; color: var(--muted); line-height: 1.6; }

	.trust-section { text-align: center; padding: 60px 0; background: var(--image-bg); border-radius: 30px; }
	.trust-section h2 { font-size: 28px; margin-bottom: 40px; color: var(--navy); }
	.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.trust-item { padding: 20px; background: var(--white); border-radius: 16px; border: 1px solid var(--border); }

	.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
	.team-card { text-align: center; }
	.team-card img { width: 100%; aspect-ratio: 1; border-radius: 20px; object-fit: cover; margin-bottom: 15px; filter: grayscale(0.2); transition: filter .3s; }
	.team-card:hover img { filter: grayscale(0); }
	.team-card b { display: block; font-size: 14px; color: var(--navy); }
	.team-card small { font-size: 11px; color: var(--muted); }

	.about-cta { text-align: center; padding: 80px 0; background: var(--navy); color: var(--white); border-radius: 30px; }
	.about-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 20px; }
	.about-cta .primary-button { background: var(--orange); color: var(--white); }

	@media (max-width: 850px) {
	  .about-grid { grid-template-columns: 1fr; }
	  .mission-values { grid-template-columns: 1fr; }
	  .trust-grid { grid-template-columns: 1fr; }
	  .team-grid { grid-template-columns: repeat(2, 1fr); }
	}

	/* Dark Theme Overrides for About */
	:root[data-theme="dark"] .about-hero, :root[data-theme="dark"] .about-grid-copy, :root[data-theme="dark"] .value-box, :root[data-theme="dark"] .trust-item, :root[data-theme="dark"] .trust-section { background: var(--surface); border-color: var(--line); }
	:root[data-theme="dark"] .about-hero h1, :root[data-theme="dark"] .about-grid-copy h2, :root[data-theme="dark"] .value-box h3, :root[data-theme="dark"] .trust-section h2, :root[data-theme="dark"] .team-card b { color: var(--ink); }
	:root[data-theme="dark"] .about-hero p, :root[data-theme="dark"] .about-grid-copy p, :root[data-theme="dark"] .value-box p, :root[data-theme="dark"] .trust-item p { color: var(--muted); }
	:root[data-theme="aurora"] .about-hero, :root[data-theme="aurora"] .about-grid-copy, :root[data-theme="aurora"] .value-box, :root[data-theme="aurora"] .trust-item, :root[data-theme="aurora"] .trust-section { background: var(--surface); border-color: var(--line); }
	:root[data-theme="aurora"] .about-hero h1, :root[data-theme="aurora"] .about-grid-copy h2, :root[data-theme="aurora"] .value-box h3, :root[data-theme="aurora"] .trust-section h2, :root[data-theme="aurora"] .team-card b { color: var(--ink); }
	:root[data-theme="aurora"] .about-hero p, :root[data-theme="aurora"] .about-grid-copy p, :root[data-theme="aurora"] .value-box p, :root[data-theme="aurora"] .trust-item p { color: var(--muted); }


