

:root{
  --bg:#050505;--panel:#0d0d0d;--panel2:#141414;--line:#262626;--text:#f5f5f5;
  --muted:#a1a1a1;--white:#fff;--danger:#ff4d4d;--ok:#37d67a;--radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);font-family:Inter,Arial,sans-serif}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.hidden{display:none!important}
.muted{color:var(--muted)}
.container{width:min(1200px,92vw);margin:auto}

header{
  position:sticky;top:0;z-index:50;background:rgba(5,5,5,.88);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line)
}
.nav{height:76px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:2px}
.brand img{width:42px;height:42px;object-fit:contain;border-radius:10px;background:#000}
nav{display:flex;gap:22px}
nav a{color:#ddd;text-decoration:none;font-size:14px;transition:.2s}
nav a:hover{color:#fff}
.actions{display:flex;gap:10px}
.cart-icon{width:19px;height:19px;display:block;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.iconbtn{display:inline-flex;align-items:center;justify-content:center;gap:8px}

.iconbtn,.btn{
  border:1px solid var(--line);background:#111;color:#fff;border-radius:999px;padding:11px 16px;
  transition:.2s transform,.2s background,.2s border
}
.iconbtn:hover,.btn:hover{transform:translateY(-2px);border-color:#444;background:#181818}
.btn.primary{background:#fff;color:#000;border-color:#fff;font-weight:800}
.btn.danger{background:#311;border-color:#622}
.badge-count{
  display:inline-grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border-radius:999px;
  background:#fff;color:#000;font-size:12px;font-weight:800
}

.hero{
  min-height:72vh;display:grid;place-items:center;text-align:center;
  background:
    radial-gradient(circle at 50% 10%,rgba(255,255,255,.09),transparent 38%),
    linear-gradient(180deg,#080808,#050505)
}
.hero .eyebrow{letter-spacing:4px;text-transform:uppercase;color:#999;font-size:12px}
.hero h1{font-size:clamp(44px,7vw,88px);line-height:.95;margin:20px 0;letter-spacing:-4px}
.hero p{max-width:650px;margin:0 auto 30px;color:#aaa;font-size:18px}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.hero-art{
  margin:44px auto 0;display:flex;justify-content:center;gap:16px;perspective:900px
}
.mini-poster{width:130px;aspect-ratio:2/3;border-radius:14px;overflow:hidden;border:1px solid #333;box-shadow:0 20px 70px #000}
.mini-poster img{width:100%;height:100%;object-fit:cover}
.mini-poster:nth-child(1){transform:rotateY(16deg) rotateZ(-6deg)}
.mini-poster:nth-child(2){transform:translateY(-20px)}
.mini-poster:nth-child(3){transform:rotateY(-16deg) rotateZ(6deg)}

section{padding:70px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;margin-bottom:26px;gap:20px}
.section-head h2{font-size:34px;margin:0}
.filters{display:flex;gap:10px;flex-wrap:wrap}
.search,select,.field{
  background:#0f0f0f;border:1px solid var(--line);color:#fff;border-radius:12px;padding:12px 14px;outline:none
}
.search{min-width:230px}
.sort-control{position:relative;min-width:235px;z-index:30}
.sort-trigger{
  width:100%;display:flex;align-items:center;gap:12px;justify-content:flex-start;
  background:linear-gradient(180deg,#171717,#0d0d0d);color:#fff;border:1px solid #333;
  border-radius:13px;padding:12px 14px;box-shadow:0 8px 30px rgba(0,0,0,.25);
  transition:.25s ease;position:relative
}
.sort-trigger:hover{border-color:#666;transform:translateY(-2px);box-shadow:0 12px 35px rgba(0,0,0,.4)}
.sort-icon{font-size:17px;color:#fff;transition:.25s transform}
.sort-chevron{margin-left:auto;color:#aaa;font-size:19px;line-height:1;transition:.3s transform}
.sort-control.open .sort-chevron{transform:rotate(180deg)}
.sort-control.open .sort-trigger{border-color:#777;box-shadow:0 0 0 1px #222,0 12px 40px rgba(0,0,0,.5)}
.sort-menu{
  position:absolute;right:0;top:calc(100% + 8px);width:100%;padding:7px;
  background:rgba(12,12,12,.97);backdrop-filter:blur(18px);
  border:1px solid #333;border-radius:15px;box-shadow:0 22px 60px rgba(0,0,0,.7);
  opacity:0;visibility:hidden;transform:translateY(-8px) scale(.98);
  transform-origin:top right;transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
.sort-control.open .sort-menu{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.sort-option{
  width:100%;display:flex;align-items:center;gap:12px;text-align:left;
  background:transparent;color:#ddd;border:0;border-radius:10px;padding:12px 13px;
  transition:.2s ease;position:relative;overflow:hidden
}
.sort-option span{width:20px;text-align:center;color:#999;transition:.2s}
.sort-option:hover{background:#1d1d1d;color:#fff;transform:translateX(3px)}
.sort-option:hover span{color:#fff;transform:scale(1.15)}
.sort-option.selected{background:linear-gradient(90deg,#fff,#ddd);color:#000;font-weight:800}
.sort-option.selected span{color:#000}
.sort-option.selected:after{
  content:"✓";margin-left:auto;font-size:13px;font-weight:900
}
@media(max-width:720px){.sort-control{width:100%;min-width:0}}
.products{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px
}
.shop-pagination-wrap{
  margin-top:34px;display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap
}
.shop-pagination-status{color:#8f8f8f;font-size:14px}
.shop-pagination{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.shop-page-btn{
  min-width:42px;height:42px;padding:0 13px;border-radius:12px;border:1px solid #303030;
  background:#0d0d0d;color:#d8d8d8;font:inherit;font-weight:800;cursor:pointer;transition:.2s ease
}
.shop-page-btn:hover:not(:disabled){border-color:#666;color:#fff;transform:translateY(-1px)}
.shop-page-btn.active{background:#fff;color:#000;border-color:#fff}
.shop-page-btn:disabled{opacity:.35;cursor:not-allowed}
.shop-page-dots{color:#777;padding:0 2px}
@media(max-width:620px){
  .shop-pagination-wrap{justify-content:center;text-align:center}
  .shop-pagination-status{width:100%}
  .shop-pagination{justify-content:center}
  .shop-page-btn{min-width:40px;height:40px;padding:0 11px}
}
.card{
  background:linear-gradient(180deg,#111,#0b0b0b);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;transition:.25s transform,.25s box-shadow,.25s border
}
.card:hover{transform:translateY(-9px);box-shadow:0 18px 60px rgba(0,0,0,.55);border-color:#444}
.poster-wrap{position:relative;overflow:hidden;aspect-ratio:4/5;background:#151515}
.poster-wrap img{width:100%;height:100%;object-fit:cover;transition:.45s transform}
.card:hover .poster-wrap img{transform:scale(1.06)}
.sale-pill{
  position:absolute;left:12px;top:12px;background:#fff;color:#000;border-radius:999px;padding:7px 10px;font-size:12px;font-weight:900
}
.card-body{padding:16px}
.card-title{font-weight:800;margin-bottom:8px}
.price-row{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.old{text-decoration:line-through;color:#777}
.now{font-weight:900}
.card-actions{display:flex;gap:8px}
.card-actions .btn{flex:1;border-radius:12px}
.card-actions .btn.primary{padding-inline:10px}

.ribbon{
  border:1px solid var(--line);background:#0c0c0c;border-radius:22px;padding:24px;display:grid;
  grid-template-columns:repeat(3,1fr);gap:18px
}
.feature{padding:12px}
.feature b{display:block;margin-bottom:8px}
.feature p{margin:0;color:#929292;line-height:1.5}

.checkout-hold{margin-top:24px;border:1px dashed #343434;border-radius:14px;padding:16px 17px;color:#aaa;line-height:1.5}
.checkout-hold b{display:block;color:#fff;margin-bottom:3px}

.drawer{
  position:fixed;right:-460px;top:0;width:min(430px,95vw);height:100%;z-index:100;background:#0b0b0b;border-left:1px solid var(--line);
  transition:.35s right;display:flex;flex-direction:column;box-shadow:-20px 0 60px #000
}
.drawer.open{right:0}
.drawer-head{padding:20px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--line)}
.drawer-body{padding:18px;overflow:auto;flex:1}
.cart-item{display:grid;grid-template-columns:70px 1fr;gap:12px;padding:12px 0;border-bottom:1px solid #222}
.cart-item img{width:70px;height:90px;border-radius:10px;object-fit:cover}
.qty{display:flex;gap:8px;align-items:center;margin-top:10px}
.qty button{width:30px;height:30px;border-radius:50%;background:#181818;border:1px solid #333;color:#fff}
.drawer-foot{padding:18px;border-top:1px solid var(--line)}
.total-line{display:flex;justify-content:space-between;margin:8px 0}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.66);z-index:90;display:none}
.overlay.show{display:block}

.modal{
  position:fixed;inset:50% auto auto 50%;transform:translate(-50%,-45%);opacity:0;pointer-events:none;
  width:min(900px,94vw);max-height:90vh;overflow:auto;background:#0c0c0c;border:1px solid #333;border-radius:24px;z-index:120;
  transition:.22s;box-shadow:0 30px 100px #000
}
.modal.show{opacity:1;transform:translate(-50%,-50%);pointer-events:auto}
.modal-inner{padding:22px}
.product-modal{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.product-modal img{width:100%;border-radius:18px;aspect-ratio:4/5;object-fit:cover}
.product-modal h2{font-size:34px;margin:0 0 10px}
.option-label{font-size:12px;font-weight:900;letter-spacing:1.4px;text-transform:uppercase;margin:22px 0 10px;color:#aaa}
.finish-options{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:18px}
.finish-option{background:#111;border:1px solid #333;color:#fff;border-radius:14px;padding:14px 15px;text-align:left;cursor:pointer;transition:.2s}
.finish-option b{display:block;font-size:15px;margin-bottom:4px}
.finish-option span{display:block;color:#888;font-size:12px;line-height:1.35}
.finish-option:hover{border-color:#666;transform:translateY(-1px)}
.finish-option.selected{background:#fff;color:#000;border-color:#fff;box-shadow:0 8px 24px rgba(255,255,255,.08)}
.finish-option.selected span{color:#555}

.close-x{background:#171717;border:1px solid #333;color:#fff;width:38px;height:38px;border-radius:50%}
.product-recommendations{margin-top:30px;padding-top:26px;border-top:1px solid #242424}
.product-recommendations-head{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:15px}
.product-recommendations-head .muted{font-size:11px;letter-spacing:1.4px;font-weight:900}
.product-recommendations-head h3{margin:5px 0 0;font-size:22px}
.product-recommendations-head p{margin:0;color:#777;font-size:13px;text-align:right}
.recommendation-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.recommendation-card{appearance:none;width:100%;padding:0;text-align:left;color:inherit;background:#101010;border:1px solid #292929;border-radius:14px;overflow:hidden;cursor:pointer;transition:.22s ease}
.recommendation-card:hover{transform:translateY(-4px);border-color:#555;box-shadow:0 12px 30px rgba(0,0,0,.35)}
.recommendation-card img{display:block;width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:0}
.recommendation-card-copy{padding:11px}
.recommendation-card-title{display:block;font-size:13px;font-weight:800;line-height:1.3;margin-bottom:6px}
.recommendation-card-price{display:block;color:#a8a8a8;font-size:12px;font-weight:700}
@media(max-width:720px){
  .product-recommendations-head{align-items:flex-start;flex-direction:column}
  .product-recommendations-head p{text-align:left}
  .recommendation-grid{grid-template-columns:repeat(2,1fr)}
}

.view{display:none}
.view.active{display:block}
.page{padding:50px 0 80px}
.page h1{font-size:44px;margin:10px 0 28px}

.auth-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.panel{background:#0d0d0d;border:1px solid var(--line);border-radius:20px;padding:24px}
.panel h2,.panel h3{margin-top:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-grid .full{grid-column:1/-1}
.field{width:100%}
textarea.field{min-height:110px;resize:vertical}

.checkout-grid{display:grid;grid-template-columns:1.4fr .8fr;gap:22px}
.payment-option{border:1px solid #2d2d2d;border-radius:14px;padding:14px;margin-top:10px}
.payment-option input{margin-right:8px}
.order-line{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid #222}

.table-wrap{overflow:auto}
table{width:100%;border-collapse:collapse;min-width:780px}
th,td{text-align:left;padding:12px;border-bottom:1px solid #222;font-size:14px}
th{color:#aaa}
.thumb{width:45px;height:60px;object-fit:cover;border-radius:7px}

.toast{
  position:fixed;right:22px;bottom:22px;background:#fff;color:#000;border-radius:14px;padding:14px 18px;
  box-shadow:0 15px 50px #000;z-index:200;transform:translateY(30px);opacity:0;transition:.22s;font-weight:700
}
.toast.show{transform:none;opacity:1}
footer{border-top:1px solid var(--line);padding:45px 0;margin-top:20px}
.footer-grid{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap}
footer a{color:#ddd;text-decoration:none}

@media(max-width:950px){.products{grid-template-columns:repeat(3,1fr)}.checkout-grid{grid-template-columns:1fr}}
@media(max-width:720px){
  nav{display:none}.products{grid-template-columns:repeat(2,1fr)}.product-modal,.auth-grid,.form-grid{grid-template-columns:1fr}
  .form-grid .full{grid-column:auto}.ribbon{grid-template-columns:1fr}.hero-art .mini-poster{width:90px}.hero h1{letter-spacing:-2px}
}
@media(max-width:480px){.products{grid-template-columns:1fr}.section-head{align-items:stretch;flex-direction:column}.search{width:100%}}

.site-footer{border-top:1px solid #252525;margin-top:30px;padding:58px 0 24px;background:
  radial-gradient(circle at 15% 20%,rgba(255,255,255,.045),transparent 28%),#050505}
.footer-brand-row{display:grid;grid-template-columns:1.6fr 1fr .7fr;gap:50px;align-items:center}
.footer-brand{display:flex;align-items:center;gap:20px}
.footer-logo{width:92px;height:92px;border:1px solid #292929;border-radius:18px;overflow:hidden;background:#000;display:grid;place-items:center;transition:.3s}
.footer-logo:hover{transform:translateY(-5px) rotate(-2deg);border-color:#555;box-shadow:0 15px 45px #000}
.footer-logo img{width:100%;height:100%;object-fit:cover}
.footer-name{font-size:25px;font-weight:900;letter-spacing:4px}
.footer-tagline{color:#777;font-size:10px;letter-spacing:2px;margin-top:8px}
.footer-heading{font-size:11px;letter-spacing:2px;color:#777;margin-bottom:13px}
.social-link{display:flex;align-items:center;gap:12px;color:#ddd;text-decoration:none;margin:10px 0;transition:.25s}
.social-link:hover{color:#fff;transform:translateX(5px)}
.social-link small{display:block;color:#666;font-size:10px;margin-bottom:2px}
.social-icon{width:34px;height:34px;border:1px solid #333;border-radius:10px;display:grid;place-items:center;font-weight:900}
.social-icon svg{display:block;width:19px;height:19px}
.social-icon.tiktok svg{width:18px;height:20px;fill:#fff}
.social-icon.youtube svg{width:28px;height:20px}
.footer-links{display:flex;flex-direction:column;align-items:flex-start}
.footer-links a{color:#aaa;text-decoration:none;margin:5px 0;transition:.2s}
.footer-links a:hover{color:#fff;transform:translateX(4px)}
.footer-bottom{border-top:1px solid #1d1d1d;margin-top:42px;padding-top:20px;display:flex;justify-content:space-between;color:#555;font-size:11px}
@media(max-width:720px){.footer-brand-row{grid-template-columns:1fr;gap:30px}.footer-links{align-items:flex-start}.footer-bottom{gap:10px;flex-direction:column}}

.price-row .sale-percent{font-size:10px;font-weight:900;border:1px solid #444;border-radius:999px;padding:5px 7px;color:#fff;letter-spacing:.3px}



/* ===== RYME THEME SWITCHER: Dark → Light → Auto → RYME ===== */
html{color-scheme:dark}
html[data-theme="light"]{color-scheme:light}
html[data-theme="dark"]{color-scheme:dark}
html[data-theme="ryme"]{color-scheme:dark}

.theme-toggle{display:flex;align-items:center;gap:8px;min-width:92px;justify-content:center}
.theme-toggle .theme-icon{font-size:16px;line-height:1}
.theme-toggle .theme-label{font-size:13px;font-weight:800;letter-spacing:.2px}
.theme-toggle[data-mode="auto"]{border-style:dashed}



html[data-theme="light"]{
  --bg:#f5f5f3;
  --panel:#ffffff;
  --panel2:#f0f0ee;
  --line:#d7d7d3;
  --text:#111111;
  --muted:#666662;
  --white:#111111;
}
html[data-theme="light"] body{background:var(--bg);color:var(--text)}
html[data-theme="light"] header{background:rgba(245,245,243,.9);border-color:var(--line);box-shadow:0 1px 0 rgba(0,0,0,.03)}
html[data-theme="light"] nav a{color:#4f4f4b}
html[data-theme="light"] nav a:hover{color:#000}
html[data-theme="light"] .brand img{background:#000}

html[data-theme="light"] .iconbtn,
html[data-theme="light"] .btn{background:#fff;color:#171717;border-color:#d1d1cd;box-shadow:0 4px 16px rgba(0,0,0,.04)}
html[data-theme="light"] .iconbtn:hover,
html[data-theme="light"] .btn:hover{background:#f0f0ed;border-color:#a8a8a2}
html[data-theme="light"] .btn.primary{background:#111;color:#fff;border-color:#111}
html[data-theme="light"] .btn.primary:hover{background:#292929;border-color:#292929}
html[data-theme="light"] .btn.danger{background:#fff0f0;color:#8f1616;border-color:#e6bcbc}
html[data-theme="light"] .badge-count{background:#111;color:#fff}

html[data-theme="light"] .hero{
  background:radial-gradient(circle at 50% 10%,rgba(0,0,0,.06),transparent 40%),linear-gradient(180deg,#fbfbf9,#f2f2ef)
}
html[data-theme="light"] .hero .eyebrow{color:#6f6f69}
html[data-theme="light"] .hero p{color:#62625e}
html[data-theme="light"] .mini-poster{border-color:#d0d0cc;box-shadow:0 20px 55px rgba(0,0,0,.15)}

html[data-theme="light"] .search,
html[data-theme="light"] select,
html[data-theme="light"] .field{background:#fff;color:#111;border-color:#d4d4d0}
html[data-theme="light"] .search::placeholder,
html[data-theme="light"] .field::placeholder{color:#898985}
html[data-theme="light"] .sort-trigger{background:linear-gradient(180deg,#fff,#f3f3f0);color:#111;border-color:#d1d1cd;box-shadow:0 8px 28px rgba(0,0,0,.08)}
html[data-theme="light"] .sort-trigger:hover{border-color:#aaa;box-shadow:0 12px 34px rgba(0,0,0,.12)}
html[data-theme="light"] .sort-icon{color:#111}
html[data-theme="light"] .sort-chevron{color:#686864}
html[data-theme="light"] .sort-control.open .sort-trigger{border-color:#999;box-shadow:0 0 0 1px #e8e8e5,0 12px 34px rgba(0,0,0,.12)}
html[data-theme="light"] .sort-menu{background:rgba(255,255,253,.98);border-color:#d6d6d2;box-shadow:0 22px 55px rgba(0,0,0,.16)}
html[data-theme="light"] .sort-option{color:#444}
html[data-theme="light"] .sort-option span{color:#777}
html[data-theme="light"] .sort-option:hover{background:#eeeeeb;color:#000}
html[data-theme="light"] .sort-option:hover span{color:#000}
html[data-theme="light"] .sort-option.selected{background:#111;color:#fff}
html[data-theme="light"] .sort-option.selected span{color:#fff}

html[data-theme="light"] .card{background:linear-gradient(180deg,#fff,#f8f8f6);border-color:#deded9;box-shadow:0 8px 28px rgba(0,0,0,.04)}
html[data-theme="light"] .card:hover{border-color:#bcbcb6;box-shadow:0 18px 50px rgba(0,0,0,.13)}
html[data-theme="light"] .poster-wrap{background:#e8e8e5}
html[data-theme="light"] .sale-pill{background:#111;color:#fff}
html[data-theme="light"] .old{color:#888883}
html[data-theme="light"] .price-row .sale-percent{border-color:#a8a8a2;color:#111}

html[data-theme="light"] .ribbon{background:#fff;border-color:#deded9}
html[data-theme="light"] .feature p{color:#686864}
html[data-theme="light"] .panel{background:#fff;border-color:#deded9;box-shadow:0 8px 28px rgba(0,0,0,.035)}
html[data-theme="light"] .payment-option{border-color:#d7d7d3;background:#fbfbf9}
html[data-theme="light"] .order-line,
html[data-theme="light"] th,
html[data-theme="light"] td{border-color:#e1e1dd}
html[data-theme="light"] th{color:#777772}

html[data-theme="light"] .drawer{background:#fff;border-color:#d7d7d3;box-shadow:-20px 0 60px rgba(0,0,0,.18)}
html[data-theme="light"] .cart-item{border-color:#e2e2de}
html[data-theme="light"] .qty button{background:#f3f3f0;border-color:#d0d0cc;color:#111}
html[data-theme="light"] .modal{background:#fff;border-color:#d2d2ce;box-shadow:0 30px 90px rgba(0,0,0,.2)}
html[data-theme="light"] .finish-option{background:#f7f7f4;border-color:#d6d6d1;color:#111}
html[data-theme="light"] .finish-option span{color:#73736f}
html[data-theme="light"] .finish-option:hover{border-color:#999}
html[data-theme="light"] .finish-option.selected{background:#111;color:#fff;border-color:#111;box-shadow:none}
html[data-theme="light"] .finish-option.selected span{color:#bbb}
html[data-theme="light"] .close-x{background:#f1f1ee;border-color:#d2d2ce;color:#111}


html[data-theme="light"] .toast{background:#111;color:#fff;box-shadow:0 15px 45px rgba(0,0,0,.2)}
html[data-theme="light"] footer{border-color:#dcdcd8}
html[data-theme="light"] footer a{color:#555551}
html[data-theme="light"] .site-footer{border-color:#dcdcd8;background:radial-gradient(circle at 15% 20%,rgba(0,0,0,.035),transparent 28%),#efefec}
html[data-theme="light"] .footer-logo{border-color:#d2d2ce;background:#000;box-shadow:none}
html[data-theme="light"] .footer-logo:hover{border-color:#aaa;box-shadow:0 15px 40px rgba(0,0,0,.12)}
html[data-theme="light"] .footer-tagline,
html[data-theme="light"] .footer-heading{color:#777772}
html[data-theme="light"] .social-link{color:#444440}
html[data-theme="light"] .social-link:hover{color:#000}
html[data-theme="light"] .social-link small{color:#777772}
html[data-theme="light"] .social-icon{border-color:#cfcfcb}
html[data-theme="light"] .footer-links a{color:#5f5f5b}
html[data-theme="light"] .footer-links a:hover{color:#000}
html[data-theme="light"] .footer-bottom{border-color:#d7d7d3;color:#73736f}
html[data-theme="light"] .checkout-hold{border-color:#c9c9c4;color:#666}
html[data-theme="light"] .checkout-hold b{color:#111}

@media(max-width:560px){
  .theme-toggle{min-width:44px;padding-inline:12px}
  .theme-toggle .theme-label{display:none}
}


/* ===== RYME BRAND REFRESH ===== */
.brand img{
  background:#5271ff;
  border-radius:10px;
}
.footer-logo img{
  background:#5271ff;
}
.hero{
  min-height:auto;
  padding:28px 0 68px;
  background:var(--bg);
}
.ryme-hero-copy{
  text-align:center;
  padding:42px 16px 0;
}
.ryme-hero-copy h1{
  font-size:clamp(40px,6vw,72px);
  line-height:1;
  letter-spacing:-3px;
  margin:16px 0;
}
.ryme-hero-copy p{
  max-width:650px;
  margin:0 auto 14px;
  color:var(--muted);
  font-size:18px;
}
.ryme-hero-copy .hero-proof{
  max-width:780px;
  margin:0 auto 28px;
  font-size:15px;
  line-height:1.65;
  color:var(--muted);
}
html[data-theme="light"] .brand img,
html[data-theme="light"] .footer-logo img{
  background:#5271ff;
}
html[data-theme="light"] .hero{
  background:var(--bg);
}
@media(max-width:720px){
  .hero{padding:16px 0 50px}
.ryme-hero-copy{padding-top:30px}
  .ryme-hero-copy h1{letter-spacing:-2px}
}


/* ===== FINAL HERO LAYOUT ===== */
#homeView .hero{
  min-height:470px;
  padding:68px 0 92px;
  display:flex;
  align-items:flex-start;
}
#homeView .ryme-hero-copy{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding:0 18px;
  text-align:center;
}
#homeView .ryme-hero-copy .eyebrow{
  margin-bottom:18px;
  letter-spacing:4px;
  font-size:12px;
}
#homeView .ryme-hero-copy h1{
  margin:0 0 16px;
  font-size:clamp(48px,5.4vw,74px);
  line-height:.98;
  letter-spacing:-4px;
}
#homeView .ryme-hero-copy > p:not(.hero-proof){
  max-width:720px;
  margin:0 auto 16px;
  font-size:18px;
  line-height:1.25;
}
#homeView .ryme-hero-copy .hero-proof{
  max-width:1160px;
  margin:0 auto 28px;
  font-size:15px;
  line-height:1.7;
}
#homeView .hero-actions{
  margin-top:4px;
}
@media(max-width:720px){
  #homeView .hero{min-height:auto;padding:42px 0 58px}
  #homeView .ryme-hero-copy{padding:0 18px}
  #homeView .ryme-hero-copy h1{font-size:clamp(42px,13vw,58px);letter-spacing:-2.5px}
  #homeView .ryme-hero-copy > p:not(.hero-proof){font-size:17px;line-height:1.35}
  #homeView .ryme-hero-copy .hero-proof{font-size:14px;line-height:1.65}
}


/* ===== RYME BLUE BRAND THEME ===== */
html[data-theme="ryme"]{
  --bg:#5271ff;
  --panel:#5f7bff;
  --panel2:#4563e8;
  --line:rgba(255,255,255,.28);
  --text:#ffffff;
  --muted:#e1e7ff;
  --white:#ffffff;
  --danger:#ffd0d0;
  --ok:#bfffd4;
}
html[data-theme="ryme"] body{
  background:
    radial-gradient(circle at 18% 0%,rgba(255,255,255,.16),transparent 26%),
    linear-gradient(180deg,#5b78ff 0%,#5271ff 45%,#4664eb 100%);
  color:#fff;
}
html[data-theme="ryme"] header{
  background:rgba(69,96,226,.88);
  border-color:rgba(255,255,255,.25);
  box-shadow:0 1px 0 rgba(255,255,255,.08);
}
html[data-theme="ryme"] nav a{color:#eaf0ff}
html[data-theme="ryme"] nav a:hover{color:#fff}
html[data-theme="ryme"] .brand img,
html[data-theme="ryme"] .footer-logo img{background:#5271ff}

html[data-theme="ryme"] .iconbtn,
html[data-theme="ryme"] .btn{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.28);
  box-shadow:0 8px 26px rgba(32,55,157,.13);
}
html[data-theme="ryme"] .iconbtn:hover,
html[data-theme="ryme"] .btn:hover{
  background:rgba(255,255,255,.2);
  border-color:rgba(255,255,255,.5);
}
html[data-theme="ryme"] .btn.primary{
  background:#fff;
  color:#4260e4;
  border-color:#fff;
  box-shadow:0 10px 28px rgba(36,54,143,.18);
}
html[data-theme="ryme"] .btn.primary:hover{background:#f2f5ff;border-color:#f2f5ff}
html[data-theme="ryme"] .btn.danger{background:rgba(124,20,40,.24);border-color:rgba(255,220,225,.48);color:#fff}
html[data-theme="ryme"] .badge-count{background:#fff;color:#4260e4}
html[data-theme="ryme"] .theme-toggle{background:#fff;color:#4260e4;border-color:#fff}
html[data-theme="ryme"] .theme-toggle:hover{background:#f0f3ff;border-color:#fff}
html[data-theme="ryme"] .theme-toggle[data-mode="ryme"]{box-shadow:0 0 0 3px rgba(255,255,255,.14),0 10px 30px rgba(32,55,157,.2)}

html[data-theme="ryme"] .hero,
html[data-theme="ryme"] #homeView .hero{
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.16),transparent 36%),
    linear-gradient(180deg,rgba(82,113,255,.2),rgba(65,91,220,.28));
}
html[data-theme="ryme"] .hero .eyebrow{color:#dbe3ff}
html[data-theme="ryme"] .hero p,
html[data-theme="ryme"] .ryme-hero-copy p,
html[data-theme="ryme"] .ryme-hero-copy .hero-proof{color:#e5eaff}
html[data-theme="ryme"] .mini-poster{border-color:rgba(255,255,255,.36);box-shadow:0 20px 70px rgba(27,44,126,.34)}

html[data-theme="ryme"] .search,
html[data-theme="ryme"] select,
html[data-theme="ryme"] .field{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.3);
}
html[data-theme="ryme"] .search::placeholder,
html[data-theme="ryme"] .field::placeholder,
html[data-theme="ryme"] textarea::placeholder{color:#d7dfff}
html[data-theme="ryme"] select option{background:#4664e8;color:#fff}
html[data-theme="ryme"] .sort-trigger{
  background:linear-gradient(180deg,rgba(255,255,255,.17),rgba(255,255,255,.10));
  color:#fff;border-color:rgba(255,255,255,.3);box-shadow:0 8px 30px rgba(32,55,157,.18)
}
html[data-theme="ryme"] .sort-trigger:hover{border-color:rgba(255,255,255,.55);box-shadow:0 12px 36px rgba(32,55,157,.24)}
html[data-theme="ryme"] .sort-icon,
html[data-theme="ryme"] .sort-chevron{color:#fff}
html[data-theme="ryme"] .sort-control.open .sort-trigger{border-color:rgba(255,255,255,.6);box-shadow:0 0 0 1px rgba(255,255,255,.15),0 12px 40px rgba(32,55,157,.24)}
html[data-theme="ryme"] .sort-menu{background:rgba(69,96,226,.96);border-color:rgba(255,255,255,.28);box-shadow:0 22px 60px rgba(32,55,157,.3)}
html[data-theme="ryme"] .sort-option{color:#eef2ff}
html[data-theme="ryme"] .sort-option span{color:#d4ddff}
html[data-theme="ryme"] .sort-option:hover{background:rgba(255,255,255,.14);color:#fff}
html[data-theme="ryme"] .sort-option:hover span{color:#fff}
html[data-theme="ryme"] .sort-option.selected{background:#fff;color:#4260e4}
html[data-theme="ryme"] .sort-option.selected span{color:#4260e4}

html[data-theme="ryme"] .card{
  background:linear-gradient(180deg,rgba(255,255,255,.17),rgba(255,255,255,.09));
  border-color:rgba(255,255,255,.23);
  box-shadow:0 10px 28px rgba(32,55,157,.10);
}
html[data-theme="ryme"] .card:hover{border-color:rgba(255,255,255,.5);box-shadow:0 18px 55px rgba(32,55,157,.24)}
html[data-theme="ryme"] .poster-wrap{background:rgba(255,255,255,.11)}
html[data-theme="ryme"] .sale-pill{background:#fff;color:#4260e4}
html[data-theme="ryme"] .old{color:#cdd7ff}
html[data-theme="ryme"] .price-row .sale-percent{border-color:rgba(255,255,255,.38);color:#fff}

html[data-theme="ryme"] .ribbon,
html[data-theme="ryme"] .panel,
html[data-theme="ryme"] .payment-option{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.24);
  box-shadow:0 10px 30px rgba(32,55,157,.08);
}
html[data-theme="ryme"] .feature p{color:#e0e6ff}
html[data-theme="ryme"] .order-line,
html[data-theme="ryme"] th,
html[data-theme="ryme"] td{border-color:rgba(255,255,255,.18)}
html[data-theme="ryme"] th{color:#dbe3ff}

html[data-theme="ryme"] .drawer{
  background:linear-gradient(180deg,#5371f6,#4563dd);
  border-color:rgba(255,255,255,.25);
  box-shadow:-20px 0 60px rgba(32,55,157,.32);
}
html[data-theme="ryme"] .drawer-head,
html[data-theme="ryme"] .drawer-foot{border-color:rgba(255,255,255,.2)}
html[data-theme="ryme"] .cart-item{border-color:rgba(255,255,255,.18)}
html[data-theme="ryme"] .qty button{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3);color:#fff}
html[data-theme="ryme"] .overlay{background:rgba(22,41,128,.67)}
html[data-theme="ryme"] .modal{
  background:linear-gradient(180deg,#5b78f8,#4966df);
  border-color:rgba(255,255,255,.3);
  box-shadow:0 30px 100px rgba(25,44,134,.38);
}
html[data-theme="ryme"] .option-label{color:#dce4ff}
html[data-theme="ryme"] .finish-option{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.28);color:#fff}
html[data-theme="ryme"] .finish-option span{color:#dbe3ff}
html[data-theme="ryme"] .finish-option:hover{border-color:rgba(255,255,255,.58)}
html[data-theme="ryme"] .finish-option.selected{background:#fff;color:#4260e4;border-color:#fff;box-shadow:0 8px 28px rgba(31,52,148,.2)}
html[data-theme="ryme"] .finish-option.selected span{color:#7185dd}
html[data-theme="ryme"] .close-x{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3);color:#fff}

html[data-theme="ryme"] .toast{background:#fff;color:#4260e4;box-shadow:0 15px 45px rgba(32,55,157,.25)}
html[data-theme="ryme"] footer,
html[data-theme="ryme"] .site-footer{
  border-color:rgba(255,255,255,.22);
  background:
    radial-gradient(circle at 15% 20%,rgba(255,255,255,.12),transparent 30%),
    linear-gradient(180deg,#4967e7,#3f5dd8);
}
html[data-theme="ryme"] .footer-logo{border-color:rgba(255,255,255,.28);background:#5271ff;box-shadow:none}
html[data-theme="ryme"] .footer-logo:hover{border-color:rgba(255,255,255,.55);box-shadow:0 15px 40px rgba(32,55,157,.24)}
html[data-theme="ryme"] .footer-tagline,
html[data-theme="ryme"] .footer-heading,
html[data-theme="ryme"] .social-link small{color:#d0daff}
html[data-theme="ryme"] .social-link,
html[data-theme="ryme"] .footer-links a,
html[data-theme="ryme"] footer a{color:#eef2ff}
html[data-theme="ryme"] .social-link:hover,
html[data-theme="ryme"] .footer-links a:hover{color:#fff}
html[data-theme="ryme"] .social-icon{border-color:rgba(255,255,255,.3);background:rgba(255,255,255,.06)}
html[data-theme="ryme"] .footer-bottom{border-color:rgba(255,255,255,.2);color:#cbd5ff}
html[data-theme="ryme"] .checkout-hold{border-color:rgba(255,255,255,.35);color:#e0e6ff}
html[data-theme="ryme"] .checkout-hold b{color:#fff}




/* ===== RYME ENDING / FOOTER ===== */
.ryme-end-footer{margin-top:52px;border-top:1px solid var(--line);background:var(--panel);color:var(--text)}
.ryme-footer-main{display:grid;grid-template-columns:minmax(280px,.78fr) minmax(420px,1.35fr);gap:9vw;padding:54px 0 48px;align-items:start}
.ryme-footer-title{font-size:13px;font-weight:900;letter-spacing:.9px;margin-bottom:20px;color:var(--text)}
.ryme-footer-nav{display:flex;flex-direction:column;align-items:flex-start;gap:0}
.ryme-footer-nav a{display:block;padding:7px 0;color:var(--text);text-decoration:none;font-size:14px;opacity:.82;transition:opacity .2s,transform .2s}
.ryme-footer-nav a:hover{opacity:1;transform:translateX(4px)}
.ryme-subscribe-title{margin-top:32px;margin-bottom:14px}
.ryme-subscribe{width:min(360px,100%);height:50px;border:1px solid currentColor;border-radius:11px;display:flex;align-items:center;overflow:hidden;background:transparent}
.ryme-subscribe input{min-width:0;flex:1;height:100%;border:0;outline:0;padding:0 16px;background:transparent;color:var(--text);font-size:15px}
.ryme-subscribe input::placeholder{color:var(--muted)}
.ryme-subscribe button{width:54px;height:100%;border:0;background:transparent;color:var(--text);font-size:24px;line-height:1;transition:transform .2s,background .2s}
.ryme-subscribe button:hover{background:var(--panel2);transform:translateX(2px)}
.ryme-subscribe:focus-within{box-shadow:0 0 0 2px var(--bg),0 0 0 3px var(--text)}
.ryme-footer-brand-block{padding-top:0}
.ryme-footer-brand-logo{display:inline-flex;align-items:center;text-decoration:none;margin-bottom:16px}
.ryme-footer-brand-logo{gap:12px}
.ryme-footer-brand-logo img{display:block;width:50px;height:50px;object-fit:cover;border-radius:12px;background:#000}
.ryme-footer-wordmark{font-size:28px;font-weight:950;letter-spacing:5px;color:var(--text)}
.ryme-footer-brand-block h3{margin:0 0 19px;font-size:18px;line-height:1.25;font-weight:900;letter-spacing:.2px}
.ryme-footer-brand-block p{margin:0;max-width:760px;color:var(--muted);font-size:16px;line-height:1.75}
.ryme-footer-actions{display:flex;justify-content:flex-end;align-items:center;gap:18px;flex-wrap:wrap;margin-top:68px}
.ryme-follow-button{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--text);background:var(--text);color:var(--bg);text-decoration:none;border-radius:999px;padding:10px 16px;font-size:14px;font-weight:900;transition:transform .2s,opacity .2s}
.ryme-follow-button:hover{transform:translateY(-2px);opacity:.9}
.ryme-follow-button span{font-size:19px;line-height:.8}
.ryme-social-row{display:flex;align-items:center;gap:8px}
.ryme-social-row a{width:38px;height:38px;display:grid;place-items:center;border-radius:50%;color:var(--text);text-decoration:none;opacity:.86;transition:background .2s,opacity .2s,transform .2s}
.ryme-social-row a:hover{background:var(--panel2);opacity:1;transform:translateY(-2px)}
.ryme-social-row svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.ryme-social-row a:nth-child(n+2) svg{fill:currentColor;stroke:none}
.ryme-social-row .play{fill:var(--panel);stroke:none}
.ryme-footer-bottom-line{border-top:1px solid var(--line);padding:20px 0 24px;display:flex;justify-content:space-between;gap:18px;color:var(--muted);font-size:11px;letter-spacing:.4px}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
html[data-theme="light"] .ryme-footer-brand-logo img{background:#000}
html[data-theme="light"] .ryme-social-row .play{fill:#fff}
@media(max-width:800px){
 .ryme-footer-main{grid-template-columns:1fr;gap:52px;padding:42px 0 38px}
 .ryme-footer-brand-block{order:-1}
 .ryme-footer-brand-block p{font-size:15px}
 .ryme-footer-actions{justify-content:flex-start;margin-top:34px}
 .ryme-footer-bottom-line{flex-direction:column;gap:8px}
}
@media(max-width:480px){
 .ryme-end-footer{margin-top:36px}
 .ryme-footer-main{padding-top:34px}
 .ryme-footer-brand-logo img{width:46px;height:46px}.ryme-footer-wordmark{font-size:24px}
 .ryme-footer-brand-block h3{font-size:16px}
 .ryme-footer-actions{gap:10px}
 .ryme-follow-button{width:100%;justify-content:center}
 .ryme-social-row{width:100%;justify-content:flex-start}
 .ryme-subscribe{width:100%}
}


/* ===== DEDICATED PRODUCT PAGE ===== */
.product-page{padding:34px 0 80px;min-height:70vh}
.product-breadcrumb{display:flex;align-items:center;gap:9px;color:var(--muted);font-size:13px;margin:4px 0 26px}
.product-breadcrumb a{color:inherit;text-decoration:none}
.product-breadcrumb a:hover{color:var(--text)}
.product-page-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:56px;align-items:start}
.product-gallery{position:sticky;top:105px}
.product-main-image-wrap{background:var(--panel);border:1px solid var(--line);border-radius:24px;padding:18px;box-shadow:0 24px 70px rgba(0,0,0,.16)}
.product-main-image{display:block;width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:15px;background:var(--panel2)}
.product-copy{padding-top:8px}
.product-kicker{font-size:12px;letter-spacing:2.2px;font-weight:900;color:var(--muted);margin-bottom:12px}
.product-copy h1{font-size:clamp(38px,5vw,64px);line-height:.98;letter-spacing:-2.8px;margin:0 0 18px}
.product-page-price{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:22px}
.product-page-price .now{font-size:27px}
.product-page-desc{font-size:16px;line-height:1.75;color:var(--muted);max-width:620px}
.product-meta-line{margin:20px 0 0;padding:15px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);font-size:14px;line-height:1.7;color:var(--muted)}
.product-option-block{margin-top:25px}
.product-option-title{margin-bottom:10px}
.product-option-title b{font-size:13px;font-weight:700;letter-spacing:0;text-transform:none}
.product-page .finish-options{margin-bottom:14px}
.size-options{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:16px}
.size-option{min-width:60px;height:40px;display:inline-flex;align-items:center;justify-content:center;background:#050505;border:1px solid #5f5f5f;color:#fff;border-radius:10px;padding:0 17px;text-align:center;cursor:pointer;font:inherit;font-size:14px;font-weight:500;transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;position:relative;user-select:none;touch-action:manipulation;isolation:isolate;z-index:1}
.size-option:hover:not(.disabled){border-color:#fff}
.size-option{pointer-events:auto}
.size-option.disabled{pointer-events:none}
.size-option.selected{background:#fff;color:#050505;border-color:#fff;box-shadow:none;font-weight:900;font-style:italic}
.size-option.disabled{opacity:.48;cursor:not-allowed}
.size-option:focus-visible{outline:2px solid #5271ff;outline-offset:2px}
.shipping-note{margin:10px 0 0;color:var(--muted);font-size:12px;line-height:1.5}
.product-page-add{width:100%;padding:16px 20px;border-radius:14px;font-size:15px}
.product-back-link{display:inline-flex;align-items:center;gap:8px;margin-top:14px;color:var(--muted);text-decoration:none;font-size:13px}
.product-back-link:hover{color:var(--text)}
.product-info-strip{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:22px}
.product-info-chip{border:1px solid var(--line);border-radius:14px;padding:13px;background:var(--panel)}
.product-info-chip b{display:block;font-size:12px;margin-bottom:4px}
.product-info-chip span{font-size:11px;color:var(--muted);line-height:1.4}
.product-related-section{margin-top:80px;padding-top:36px;border-top:1px solid var(--line)}
.product-related-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:22px}
.product-related-head h2{font-size:34px;margin:5px 0 0}
.product-related-head p{margin:0;color:var(--muted);max-width:460px;text-align:right;font-size:14px;line-height:1.6}
.product-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-related-card{display:block;color:inherit;text-decoration:none;background:var(--panel);border:1px solid var(--line);border-radius:18px;overflow:hidden;transition:.22s transform,.22s border-color,.22s box-shadow}
.product-related-card:hover{transform:translateY(-6px);border-color:color-mix(in srgb,var(--text) 34%,var(--line));box-shadow:0 18px 45px rgba(0,0,0,.17)}
.product-related-card img{display:block;width:100%;aspect-ratio:4/5;object-fit:cover;background:var(--panel2)}
.product-related-copy{padding:14px}
.product-related-title{font-weight:850;font-size:14px;line-height:1.35;margin-bottom:7px}
.product-related-price{font-size:13px;color:var(--muted)}
.product-not-found{max-width:760px;margin:80px auto;text-align:center;padding:45px 24px;border:1px solid var(--line);border-radius:22px;background:var(--panel)}
.product-not-found h1{font-size:42px;margin:0 0 12px}
.product-not-found p{color:var(--muted);line-height:1.7}
.product-page .drawer{z-index:220}.product-page .overlay{z-index:210}.product-page .toast{z-index:240}
@media(max-width:900px){
  .product-page-grid{grid-template-columns:1fr;gap:30px}
  .product-gallery{position:static;max-width:680px;margin:0 auto;width:100%}
  .product-related-grid{grid-template-columns:repeat(2,1fr)}
  .product-related-head{align-items:flex-start;flex-direction:column}
  .product-related-head p{text-align:left}
}
@media(max-width:620px){
  .product-page{padding-top:22px}
  .product-page-grid{gap:22px}
  .product-main-image-wrap{padding:10px;border-radius:18px}
  .product-main-image{border-radius:11px}
  .product-copy h1{font-size:40px;letter-spacing:-1.8px}
  .product-info-strip{grid-template-columns:1fr}
  .product-related-grid{gap:12px}
  .product-related-copy{padding:11px}
  .product-related-head h2{font-size:29px}
}


/* Store-wide sale styling */
.product-sale-pill{position:static;display:inline-flex;margin-bottom:14px;letter-spacing:.04em}
.product-page-price .old{font-size:16px;color:var(--muted);text-decoration:line-through}
.product-page-price .now{font-weight:900}
.product-page-price .sale-percent{font-size:11px;font-weight:900;border:1px solid var(--line);border-radius:999px;padding:6px 8px;text-transform:uppercase}


/* ===== RYME THEME POLISH — dark base + electric blue brand accents ===== */
html[data-theme="ryme"]{
  --bg:#05060a;
  --panel:#0b0d14;
  --panel2:#111522;
  --line:#232b3d;
  --text:#f7f9ff;
  --muted:#929bb2;
  --white:#ffffff;
  --danger:#ff8d9a;
  --ok:#7ff0ad;
  --ryme-blue:#5271ff;
  --ryme-blue-2:#6f89ff;
  --ryme-glow:rgba(82,113,255,.24);
}
html[data-theme="ryme"] body{
  background:
    radial-gradient(circle at 50% -10%,rgba(82,113,255,.16),transparent 34%),
    radial-gradient(circle at 100% 28%,rgba(82,113,255,.07),transparent 26%),
    #05060a;
  color:var(--text);
}
html[data-theme="ryme"] header{
  background:rgba(5,6,10,.88);
  border-color:#1e2534;
  box-shadow:0 1px 0 rgba(82,113,255,.06),0 12px 40px rgba(0,0,0,.18);
  backdrop-filter:blur(18px);
}
html[data-theme="ryme"] nav a{color:#aeb6ca}
html[data-theme="ryme"] nav a:hover{color:#fff}
html[data-theme="ryme"] .brand img,
html[data-theme="ryme"] .footer-logo img,
html[data-theme="ryme"] .ryme-footer-brand-logo img{
  background:#5271ff;
  box-shadow:0 0 0 1px rgba(111,137,255,.2),0 8px 24px rgba(82,113,255,.18);
}
html[data-theme="ryme"] .brand span,
html[data-theme="ryme"] .ryme-footer-wordmark{color:#fff}

html[data-theme="ryme"] .iconbtn,
html[data-theme="ryme"] .btn{
  background:#0d1018;
  color:#f7f9ff;
  border-color:#293248;
  box-shadow:none;
}
html[data-theme="ryme"] .iconbtn:hover,
html[data-theme="ryme"] .btn:hover{
  background:#121725;
  border-color:#5271ff;
  box-shadow:0 0 0 3px rgba(82,113,255,.08);
}
html[data-theme="ryme"] .btn.primary{
  background:linear-gradient(180deg,#607cff,#4968f3);
  color:#fff;
  border-color:#6e87ff;
  box-shadow:0 10px 30px rgba(82,113,255,.22);
}
html[data-theme="ryme"] .btn.primary:hover{
  background:linear-gradient(180deg,#6d87ff,#5271ff);
  border-color:#8aa0ff;
  box-shadow:0 14px 38px rgba(82,113,255,.3);
}
html[data-theme="ryme"] .btn.danger{background:#201015;border-color:#542530;color:#ffbac2}
html[data-theme="ryme"] .badge-count{background:#5271ff;color:#fff;box-shadow:0 0 0 2px #080a10}
html[data-theme="ryme"] .theme-toggle{background:#101522;color:#dfe5ff;border-color:#2d3852}
html[data-theme="ryme"] .theme-toggle:hover{background:#151b2a;border-color:#5271ff}
html[data-theme="ryme"] .theme-toggle[data-mode="ryme"]{
  color:#fff;border-color:#6f89ff;background:#17213f;
  box-shadow:0 0 0 3px rgba(82,113,255,.12),0 10px 28px rgba(0,0,0,.22)
}

html[data-theme="ryme"] .hero,
html[data-theme="ryme"] #homeView .hero{
  background:
    radial-gradient(circle at 50% 0%,rgba(82,113,255,.2),transparent 39%),
    linear-gradient(180deg,#080a11 0%,#05060a 100%);
}
html[data-theme="ryme"] .hero .eyebrow,
html[data-theme="ryme"] .product-kicker{color:#7f97ff}
html[data-theme="ryme"] .hero h1{color:#fff;text-shadow:0 18px 65px rgba(82,113,255,.12)}
html[data-theme="ryme"] .hero p,
html[data-theme="ryme"] .ryme-hero-copy p,
html[data-theme="ryme"] .ryme-hero-copy .hero-proof{color:#9ca5ba}
html[data-theme="ryme"] .mini-poster{border-color:#2d3750;box-shadow:0 24px 70px rgba(0,0,0,.55)}

html[data-theme="ryme"] .search,
html[data-theme="ryme"] select,
html[data-theme="ryme"] .field{
  background:#0c0f17;color:#fff;border-color:#273047;
}
html[data-theme="ryme"] .search:focus,
html[data-theme="ryme"] select:focus,
html[data-theme="ryme"] .field:focus{border-color:#5271ff;box-shadow:0 0 0 3px rgba(82,113,255,.1)}
html[data-theme="ryme"] .search::placeholder,
html[data-theme="ryme"] .field::placeholder,
html[data-theme="ryme"] textarea::placeholder{color:#6f788e}
html[data-theme="ryme"] select option{background:#0b0e15;color:#fff}
html[data-theme="ryme"] .sort-trigger{
  background:linear-gradient(180deg,#111520,#0b0e15);color:#fff;border-color:#283147;box-shadow:0 8px 26px rgba(0,0,0,.2)
}
html[data-theme="ryme"] .sort-trigger:hover,
html[data-theme="ryme"] .sort-control.open .sort-trigger{border-color:#5271ff;box-shadow:0 0 0 3px rgba(82,113,255,.08),0 12px 34px rgba(0,0,0,.28)}
html[data-theme="ryme"] .sort-icon{color:#6f89ff}
html[data-theme="ryme"] .sort-chevron{color:#929bb2}
html[data-theme="ryme"] .sort-menu{background:rgba(9,11,17,.98);border-color:#29334b;box-shadow:0 22px 60px rgba(0,0,0,.5)}
html[data-theme="ryme"] .sort-option{color:#c1c8d8}
html[data-theme="ryme"] .sort-option span{color:#707a90}
html[data-theme="ryme"] .sort-option:hover{background:#11182a;color:#fff}
html[data-theme="ryme"] .sort-option:hover span{color:#7f97ff}
html[data-theme="ryme"] .sort-option.selected{background:#5271ff;color:#fff}
html[data-theme="ryme"] .sort-option.selected span{color:#fff}

html[data-theme="ryme"] .card{
  background:linear-gradient(180deg,#0e1119,#090b11);
  border-color:#20283a;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}
html[data-theme="ryme"] .card:hover{border-color:#4057ba;box-shadow:0 20px 60px rgba(0,0,0,.48),0 0 0 1px rgba(82,113,255,.09)}
html[data-theme="ryme"] .poster-wrap{background:#10131b}
html[data-theme="ryme"] .sale-pill{background:#5271ff;color:#fff;box-shadow:0 8px 24px rgba(82,113,255,.28)}
html[data-theme="ryme"] .old{color:#6f788b}
html[data-theme="ryme"] .price-row .sale-percent{border-color:#33415f;color:#aebcff;background:#0d1322}

html[data-theme="ryme"] .shop-page-btn{background:#0b0e15;color:#aeb6ca;border-color:#273047}
html[data-theme="ryme"] .shop-page-btn:hover:not(:disabled){border-color:#5271ff;color:#fff;background:#11172a}
html[data-theme="ryme"] .shop-page-btn.active{background:#5271ff;color:#fff;border-color:#6f89ff;box-shadow:0 8px 24px rgba(82,113,255,.2)}
html[data-theme="ryme"] .shop-pagination-status,
html[data-theme="ryme"] .shop-page-dots{color:#727c91}

html[data-theme="ryme"] .ribbon,
html[data-theme="ryme"] .panel,
html[data-theme="ryme"] .payment-option,
html[data-theme="ryme"] .product-info-chip,
html[data-theme="ryme"] .product-not-found{
  background:#0b0e15;border-color:#222b3e;box-shadow:0 10px 30px rgba(0,0,0,.12);
}
html[data-theme="ryme"] .feature p{color:#8993a8}
html[data-theme="ryme"] .order-line,
html[data-theme="ryme"] th,
html[data-theme="ryme"] td{border-color:#222a3a}
html[data-theme="ryme"] th{color:#788298}
html[data-theme="ryme"] .checkout-hold{border-color:#33415f;color:#919bb0;background:#080b12}
html[data-theme="ryme"] .checkout-hold b{color:#fff}

html[data-theme="ryme"] .drawer{
  background:linear-gradient(180deg,#0b0e15,#07090e);
  border-color:#263049;
  box-shadow:-24px 0 70px rgba(0,0,0,.58);
}
html[data-theme="ryme"] .drawer-head,
html[data-theme="ryme"] .drawer-foot,
html[data-theme="ryme"] .cart-item{border-color:#20283a}
html[data-theme="ryme"] .qty button{background:#111620;border-color:#2b3650;color:#fff}
html[data-theme="ryme"] .qty button:hover{border-color:#5271ff;background:#151d31}
html[data-theme="ryme"] .overlay{background:rgba(0,0,0,.74);backdrop-filter:blur(3px)}
html[data-theme="ryme"] .modal{background:linear-gradient(180deg,#0e121c,#090b11);border-color:#2b3650;box-shadow:0 32px 110px rgba(0,0,0,.7)}
html[data-theme="ryme"] .close-x{background:#111620;border-color:#2b3650;color:#fff}
html[data-theme="ryme"] .toast{background:#5271ff;color:#fff;box-shadow:0 15px 45px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.08)}

html[data-theme="ryme"] .product-main-image-wrap{
  background:linear-gradient(180deg,#0d111a,#090b11);
  border-color:#26314a;
  box-shadow:0 28px 80px rgba(0,0,0,.38),0 0 60px rgba(82,113,255,.05);
}
html[data-theme="ryme"] .product-main-image{background:#10141e}
html[data-theme="ryme"] .product-page-desc,
html[data-theme="ryme"] .product-meta-line,
html[data-theme="ryme"] .product-back-link,
html[data-theme="ryme"] .product-related-head p,
html[data-theme="ryme"] .product-related-price{color:#8f99ae}
html[data-theme="ryme"] .product-meta-line,
html[data-theme="ryme"] .product-related-section{border-color:#222b3e}
html[data-theme="ryme"] .product-related-card{background:#0b0e15;border-color:#222b3e}
html[data-theme="ryme"] .product-related-card:hover{border-color:#5271ff;box-shadow:0 18px 48px rgba(0,0,0,.35),0 0 0 1px rgba(82,113,255,.08)}
html[data-theme="ryme"] .product-related-card img{background:#111522}

html[data-theme="ryme"] footer,
html[data-theme="ryme"] .site-footer,
html[data-theme="ryme"] .ryme-end-footer{
  border-color:#1e2637;
  background:
    radial-gradient(circle at 72% 15%,rgba(82,113,255,.11),transparent 30%),
    linear-gradient(180deg,#080a0f,#05060a);
}
html[data-theme="ryme"] .footer-tagline,
html[data-theme="ryme"] .footer-heading,
html[data-theme="ryme"] .social-link small,
html[data-theme="ryme"] .ryme-footer-brand-block p,
html[data-theme="ryme"] .ryme-footer-bottom-line{color:#7f899f}
html[data-theme="ryme"] .social-link,
html[data-theme="ryme"] .footer-links a,
html[data-theme="ryme"] footer a,
html[data-theme="ryme"] .ryme-footer-nav a{color:#b8c0d2}
html[data-theme="ryme"] .social-link:hover,
html[data-theme="ryme"] .footer-links a:hover,
html[data-theme="ryme"] .ryme-footer-nav a:hover{color:#fff}
html[data-theme="ryme"] .social-icon{border-color:#2a344b;background:#0d111a}
html[data-theme="ryme"] .footer-bottom,
html[data-theme="ryme"] .ryme-footer-bottom-line{border-color:#1d2535}
html[data-theme="ryme"] .ryme-subscribe{border-color:#323e59;background:#090c13;color:#fff}
html[data-theme="ryme"] .ryme-subscribe:focus-within{border-color:#5271ff;box-shadow:0 0 0 3px rgba(82,113,255,.1)}
html[data-theme="ryme"] .ryme-subscribe button:hover{background:#11182a}
html[data-theme="ryme"] .ryme-follow-button{background:#5271ff;color:#fff;border-color:#6f89ff;box-shadow:0 10px 28px rgba(82,113,255,.18)}
html[data-theme="ryme"] .ryme-follow-button:hover{background:#607cff;opacity:1}
html[data-theme="ryme"] .ryme-social-row a:hover{background:#11182a;color:#fff}
html[data-theme="ryme"] .ryme-social-row .play{fill:#05060a}


/* Clean sale pricing — one hierarchy, no duplicated “From” labels */
.sale-price-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:2px 0 16px;min-height:34px}
.sale-price-row .price-prefix{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.sale-price-row .now{font-size:18px;line-height:1;font-weight:950;letter-spacing:-.35px;color:var(--text)}
.sale-price-row .old{font-size:12px;line-height:1;color:var(--muted);text-decoration:line-through;text-decoration-thickness:1px;text-decoration-color:currentColor;opacity:.75}
.sale-price-row .sale-percent{margin-left:2px;display:inline-flex;align-items:center;justify-content:center;min-height:25px;padding:0 8px;border-radius:999px;border:1px solid #33415f;background:#0d1322;color:#aebcff;font-size:9px;font-weight:950;letter-spacing:.06em;white-space:nowrap}
.card-body{padding:16px 16px 17px}
.card-title{margin-bottom:10px}
html[data-theme="light"] .sale-price-row .sale-percent{background:#111;color:#fff;border-color:#111}
html[data-theme="ryme"] .sale-price-row .sale-percent{background:rgba(82,113,255,.12);border-color:rgba(82,113,255,.42);color:#cbd5ff}
.sale-related-price{display:flex!important;align-items:center;gap:6px;flex-wrap:wrap}
.sale-related-price .price-prefix{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.sale-related-price strong{font-size:13px;color:var(--text)}
.sale-related-price .old{font-size:10px}
.sale-related-price .sale-percent{font-size:8px;font-weight:900;border:1px solid var(--line);border-radius:999px;padding:3px 5px;color:var(--muted)}
@media(max-width:480px){.sale-price-row .now{font-size:17px}.sale-price-row{gap:7px}}

/* Product page sale price hierarchy */
.product-page-price{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:4px 0 22px}
.product-page-price .now{font-size:30px;font-weight:950;letter-spacing:-.8px;color:var(--text);line-height:1}
.product-page-price .old{font-size:14px;color:var(--muted);text-decoration:line-through;text-decoration-thickness:1px;opacity:.72}
.product-page-price .sale-percent{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:0 9px;border:1px solid #33415f;border-radius:999px;background:#0d1322;color:#aebcff;font-size:10px;font-weight:950;letter-spacing:.06em;white-space:nowrap}
html[data-theme="light"] .product-page-price .sale-percent{background:#111;color:#fff;border-color:#111}
html[data-theme="ryme"] .product-page-price .sale-percent{background:rgba(82,113,255,.12);border-color:rgba(82,113,255,.42);color:#cbd5ff}
.sale-related-price{display:flex;align-items:center;gap:5px;flex-wrap:wrap}
.sale-related-price .price-prefix{font-size:9px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.sale-related-price strong{font-size:13px;color:var(--text)}
.sale-related-price .old{font-size:10px;color:var(--muted);text-decoration:line-through;opacity:.72}
.sale-related-price .sale-percent{font-size:8px;font-weight:900;border:1px solid var(--line);border-radius:999px;padding:3px 5px;color:var(--muted)}
@media(max-width:620px){.product-page-price .now{font-size:27px}}
