:root{
  --navy:#07182f;
  --navy-2:#102a4c;
  --blue:#2962ff;
  --blue-dark:#1748d6;
  --teal:#11b8a5;
  --mint:#e8fbf7;
  --sky:#edf5ff;
  --cream:#fbfaf7;
  --white:#ffffff;
  --ink:#132238;
  --muted:#64748b;
  --line:#dce5ef;
  --line-strong:#c8d5e3;
  --success:#0f8a68;
  --warning:#a35f08;
  --danger:#c92a2a;
  --shadow:0 24px 70px rgba(7,24,47,.12);
  --shadow-sm:0 12px 36px rgba(7,24,47,.09);
  --radius:26px;
  --radius-md:18px;
  --radius-sm:12px;
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:"Segoe UI Variable Text","Segoe UI",system-ui,-apple-system,sans-serif;color:var(--ink);background:var(--white);line-height:1.65}
body.menu-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(41,98,255,.28);outline-offset:3px}
.container{width:min(var(--max),calc(100% - 40px));margin-inline:auto}
.narrow{width:min(860px,calc(100% - 40px));margin-inline:auto}
.section{padding:96px 0}
.section-sm{padding:64px 0}
.soft{background:var(--cream)}
.sky{background:var(--sky)}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:var(--sky);border:1px solid #cfe1ff;color:#1748d6;font-size:.76rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--teal)}
.section-head{max-width:760px;margin-bottom:36px}
.section-head.center{text-align:center;margin-inline:auto;margin-bottom:48px}
.section-head h2,.page-hero h1,.display{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;letter-spacing:-.045em;line-height:1.08}
.section-head h2{font-size:clamp(2rem,4vw,3.35rem);margin:14px 0 14px}
.section-head p,.page-hero p{font-size:1.05rem;color:var(--muted);margin:0}
.kicker{font-size:.78rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase;color:var(--blue)}
.lead{font-size:1.14rem;color:#526276}
.muted{color:var(--muted)}
.small{font-size:.86rem}
.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}

/* Header */
.topbar{background:var(--navy);color:#d7e5f5;font-size:.82rem}
.topbar-row{min-height:39px;display:flex;justify-content:space-between;align-items:center;gap:20px}
.topbar strong,.topbar a{color:#fff}
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.94);backdrop-filter:blur(18px);border-bottom:1px solid rgba(220,229,239,.92)}
.navbar{height:80px;display:flex;align-items:center;gap:26px}
.brand{display:flex;align-items:center;flex:0 0 auto}
.brand img{width:204px;height:auto}
.nav-links{display:flex;align-items:center;gap:24px;margin-left:auto}
.nav-links a{font-size:.92rem;font-weight:700;color:#35475d;position:relative;padding:28px 0}
.nav-links a::after{content:"";position:absolute;height:2px;left:0;right:100%;bottom:20px;background:linear-gradient(90deg,var(--blue),var(--teal));transition:.24s}
.nav-links a:hover,.nav-links a.active{color:var(--navy)}
.nav-links a:hover::after,.nav-links a.active::after{right:0}
.nav-actions{display:flex;align-items:center;gap:10px}
.currency-select{height:44px;border:1px solid var(--line);background:#fff;border-radius:11px;padding:0 10px;color:var(--ink);font-size:.82rem;font-weight:800}
.icon-btn{width:44px;height:44px;border-radius:12px;border:1px solid var(--line);background:#fff;color:var(--navy);display:grid;place-items:center;position:relative;transition:.2s}
.icon-btn:hover{border-color:#9fc0ff;background:var(--sky)}
.icon-btn svg{width:20px;height:20px}
.cart-count{position:absolute;right:-5px;top:-6px;width:21px;height:21px;border-radius:50%;background:var(--blue);color:#fff;font-size:.7rem;font-weight:800;display:grid;place-items:center;border:2px solid #fff}
.menu-toggle{display:none}
.mobile-utility{display:none}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:12px 20px;border-radius:12px;border:1px solid transparent;font-weight:800;transition:transform .2s,box-shadow .2s,background .2s,border-color .2s}
.btn:hover{transform:translateY(-2px)}
.btn-primary{color:#fff;background:linear-gradient(135deg,var(--blue),var(--blue-dark));box-shadow:0 12px 30px rgba(41,98,255,.25)}
.btn-primary:hover{box-shadow:0 18px 38px rgba(41,98,255,.32)}
.btn-secondary{background:#fff;border-color:var(--line);color:var(--navy)}
.btn-secondary:hover{border-color:#a7c3f3;background:var(--sky)}
.btn-dark{background:var(--navy);color:#fff}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.26);color:#fff}
.btn-sm{min-height:41px;padding:9px 15px;font-size:.86rem}
.btn-block{width:100%}
.text-link{display:inline-flex;align-items:center;gap:7px;color:var(--blue);font-weight:800}
.text-link:hover{color:var(--blue-dark)}

/* Hero */
.hero{position:relative;overflow:hidden;padding:78px 0 88px;background:
 radial-gradient(circle at 10% 0%,rgba(41,98,255,.14),transparent 32%),
 radial-gradient(circle at 91% 10%,rgba(17,184,165,.17),transparent 31%),
 linear-gradient(180deg,#fff 0%,#f7faff 100%)}
.hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(7,24,47,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(7,24,47,.03) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 75%)}
.hero-grid{position:relative;display:grid;grid-template-columns:1.02fr .98fr;align-items:center;gap:64px}
.hero-copy h1{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:clamp(3.2rem,6vw,5.65rem);line-height:.97;letter-spacing:-.064em;margin:18px 0 22px;max-width:760px}
.hero-copy h1 span{background:linear-gradient(90deg,var(--blue),var(--teal));-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-copy>p{font-size:1.16rem;color:#526276;max-width:660px;margin:0 0 30px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-note{display:flex;flex-wrap:wrap;gap:16px 24px;margin-top:27px;color:#4d5e72;font-size:.88rem;font-weight:700}
.hero-note span{display:flex;align-items:center;gap:8px}
.hero-note i{width:20px;height:20px;border-radius:50%;display:grid;place-items:center;background:#dff8f1;color:var(--success);font-style:normal;font-size:.72rem}
.hero-media{position:relative}
.hero-photo{position:relative;border-radius:32px;overflow:hidden;box-shadow:var(--shadow);aspect-ratio:1.05}
.hero-photo img{width:100%;height:100%;object-fit:cover}
.hero-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(7,24,47,.22))}
.float-card{position:absolute;z-index:3;background:rgba(255,255,255,.96);border:1px solid rgba(220,229,239,.95);box-shadow:var(--shadow-sm);border-radius:16px;padding:14px 16px;display:flex;gap:11px;align-items:center;max-width:235px}
.float-card strong{display:block;font-size:.88rem}
.float-card span{display:block;color:var(--muted);font-size:.76rem}
.float-icon{width:38px;height:38px;border-radius:12px;background:var(--mint);color:var(--success);display:grid;place-items:center;font-weight:900}
.fc-one{left:-28px;top:38px}
.fc-two{right:-24px;bottom:42px}
.fc-two .float-icon{background:var(--sky);color:var(--blue)}

/* Trust / stats */
.trust-strip{border-block:1px solid var(--line);background:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{display:flex;align-items:center;gap:13px;padding:25px 24px;border-right:1px solid var(--line)}
.trust-item:last-child{border-right:0}
.trust-icon{width:44px;height:44px;border-radius:14px;background:var(--sky);color:var(--blue);display:grid;place-items:center}
.trust-icon svg{width:22px;height:22px}
.trust-item strong{display:block;font-size:.92rem}
.trust-item span{display:block;color:var(--muted);font-size:.78rem}
.stats{display:grid;grid-template-columns:repeat(4,1fr);border-radius:24px;background:var(--navy);color:#fff;overflow:hidden}
.stat{padding:28px;border-right:1px solid rgba(255,255,255,.12)}
.stat:last-child{border-right:0}
.stat strong{display:block;font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:2rem}
.stat span{font-size:.82rem;color:#c8d6e5}

/* Photo category cards */
.category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.category-card{position:relative;min-height:350px;border-radius:24px;overflow:hidden;box-shadow:var(--shadow-sm);isolation:isolate}
.category-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s}
.category-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,24,47,.05) 20%,rgba(7,24,47,.88) 100%);z-index:-1}
.category-card img{z-index:-2}
.category-card:hover img{transform:scale(1.045)}
.category-card-content{position:absolute;left:26px;right:26px;bottom:25px;color:#fff}
.category-card .pill{display:inline-flex;padding:6px 10px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);backdrop-filter:blur(8px);border-radius:999px;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.category-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.55rem;line-height:1.15;margin:12px 0 5px}
.category-card p{margin:0;color:#dce6f2;font-size:.9rem}
.category-card .round-link{position:absolute;right:24px;top:24px;width:43px;height:43px;border-radius:50%;display:grid;place-items:center;background:#fff;color:var(--navy);font-weight:900}

/* Product cards */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product-card{border:1px solid var(--line);border-radius:22px;background:#fff;overflow:hidden;display:flex;flex-direction:column;transition:.25s}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:#b8cdf1}
.product-media{position:relative;aspect-ratio:1.18;background:#eef3f8;overflow:hidden}
.product-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-card:hover .product-media img{transform:scale(1.035)}
.badge{position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;background:var(--navy);color:#fff;font-size:.7rem;font-weight:800;letter-spacing:.03em}
.badge.green{background:var(--success)}
.badge.blue{background:var(--blue)}
.wishlist{position:absolute;right:13px;top:13px;width:39px;height:39px;border-radius:50%;border:1px solid rgba(220,229,239,.95);background:rgba(255,255,255,.94);display:grid;place-items:center;color:var(--navy);font-size:1.15rem}
.product-body{padding:19px;display:flex;flex-direction:column;flex:1}
.product-type{font-size:.69rem;color:var(--muted);font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.product-card h3{font-size:1.03rem;line-height:1.38;margin:7px 0 9px}
.condition-label{display:inline-flex;align-items:center;gap:7px;width:max-content;max-width:100%;padding:6px 9px;border-radius:999px;background:#e9faf5;color:#08775a;font-size:.71rem;font-weight:800}
.meta-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:11px;color:var(--muted);font-size:.75rem}
.meta-row span{padding-right:8px;border-right:1px solid var(--line)}
.meta-row span:last-child{border-right:0}
.price-row{display:flex;align-items:baseline;gap:8px;margin:15px 0 16px}
.price{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.35rem;font-weight:800;color:var(--navy)}
.old-price{font-size:.83rem;color:#93a1b2;text-decoration:line-through}
.product-actions{display:flex;gap:8px;margin-top:auto}
.product-actions .btn{flex:1;min-height:43px;padding:9px 10px;font-size:.82rem}
.photo-note{font-size:.77rem;color:var(--muted);margin:15px 0 0}

/* Feature layouts */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.photo-panel{position:relative;border-radius:28px;overflow:hidden;box-shadow:var(--shadow);min-height:510px}
.photo-panel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.photo-panel.short{min-height:430px}
.photo-caption{position:absolute;left:22px;right:22px;bottom:22px;padding:18px;border-radius:16px;background:rgba(7,24,47,.88);backdrop-filter:blur(10px);color:#fff}
.photo-caption strong{display:block}
.photo-caption span{color:#cbd8e6;font-size:.82rem}
.check-list{display:grid;gap:15px;margin:27px 0 31px}
.check{display:flex;gap:12px;align-items:flex-start}
.check-mark{flex:0 0 27px;height:27px;border-radius:9px;background:#ddf8ef;color:var(--success);display:grid;place-items:center;font-weight:900}
.check strong{display:block;margin-bottom:2px}
.check span{display:block;color:var(--muted);font-size:.88rem}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.info-card{padding:28px;border:1px solid var(--line);border-radius:20px;background:#fff}
.info-card-icon{width:52px;height:52px;border-radius:15px;background:var(--sky);color:var(--blue);display:grid;place-items:center;margin-bottom:22px}
.info-card-icon svg{width:25px;height:25px}
.info-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:0 0 8px;font-size:1.17rem}
.info-card p{margin:0;color:var(--muted);font-size:.9rem}
.bento{display:grid;grid-template-columns:1.15fr .85fr;gap:22px}
.bento-card{border-radius:26px;overflow:hidden;position:relative;min-height:360px;background:var(--navy);color:#fff}
.bento-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.bento-card::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,24,47,.94),rgba(7,24,47,.32))}
.bento-copy{position:relative;z-index:2;padding:38px;max-width:510px}
.bento-copy h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:2rem;line-height:1.12;margin:12px 0}
.bento-copy p{color:#d4dfeb}
.bento-side{display:grid;gap:22px}
.mini-bento{padding:30px;border-radius:24px;background:var(--sky);border:1px solid #d7e6fb}
.mini-bento.dark{background:var(--navy);color:#fff;border-color:var(--navy)}
.mini-bento h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.4rem;margin:12px 0 6px}
.mini-bento p{margin:0;color:var(--muted)}
.mini-bento.dark p{color:#cbd8e6}

/* CTA */
.cta-panel{position:relative;overflow:hidden;padding:56px;border-radius:30px;background:
 radial-gradient(circle at 85% 10%,rgba(17,184,165,.35),transparent 30%),
 linear-gradient(135deg,var(--navy),#173a69);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:40px}
.cta-panel::after{content:"";position:absolute;width:280px;height:280px;border:1px solid rgba(255,255,255,.12);border-radius:50%;right:-90px;bottom:-170px}
.cta-panel h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:clamp(2rem,4vw,3.25rem);line-height:1.08;letter-spacing:-.045em;margin:0 0 10px}
.cta-panel p{margin:0;color:#cdd9e6;max-width:690px}
.cta-actions{display:flex;gap:11px;flex-wrap:wrap;position:relative;z-index:2}

/* FAQ */
.faq{max-width:880px;margin:auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:22px;border:0;background:transparent;text-align:left;padding:23px 0;color:var(--ink);font-weight:800}
.faq-q span:last-child{font-size:1.4rem;transition:.23s}
.faq-a{max-height:0;overflow:hidden;color:var(--muted);transition:max-height .3s}
.faq-item.open .faq-a{max-height:260px;padding-bottom:22px}
.faq-item.open .faq-q span:last-child{transform:rotate(45deg)}

/* Page hero */
.page-hero{position:relative;overflow:hidden;padding:82px 0;background:
 radial-gradient(circle at 90% 0%,rgba(17,184,165,.17),transparent 34%),
 linear-gradient(135deg,#edf5ff,#fff)}
.page-hero-grid{display:grid;grid-template-columns:1fr .8fr;align-items:center;gap:54px}
.page-hero h1{font-size:clamp(2.8rem,6vw,4.85rem);margin:13px 0 16px;max-width:900px}
.breadcrumbs{font-size:.8rem;color:var(--muted);font-weight:700}
.breadcrumbs a{color:var(--blue)}
.page-hero-photo{border-radius:24px;overflow:hidden;aspect-ratio:1.4;box-shadow:var(--shadow-sm)}
.page-hero-photo img{width:100%;height:100%;object-fit:cover}

/* Shop */
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:34px}
.filters{position:sticky;top:105px;height:max-content;border:1px solid var(--line);border-radius:20px;padding:22px;background:#fff}
.filters h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:0 0 8px}
.filter-group{padding:18px 0;border-bottom:1px solid var(--line)}
.filter-group:last-child{border-bottom:0;padding-bottom:0}
.filter-group h4{font-size:.84rem;margin:0 0 11px}
.filter-option{display:flex;align-items:center;gap:9px;margin:10px 0;color:#4d5e72;font-size:.87rem}
.filter-option input{accent-color:var(--blue)}
.shop-toolbar{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.search-box{flex:1;max-width:470px;position:relative}
.search-box input,.form-control{width:100%;border:1px solid var(--line);border-radius:12px;padding:13px 14px;background:#fff;color:var(--ink)}
.search-box input:focus,.form-control:focus{border-color:#9fc0ff;box-shadow:0 0 0 4px #edf5ff;outline:0}
.sort-select{height:47px;border:1px solid var(--line);border-radius:12px;background:#fff;padding:0 13px;color:var(--ink)}
.shop-products{grid-template-columns:repeat(3,1fr)}
.condition-banner{display:flex;gap:14px;align-items:flex-start;padding:18px 20px;border-radius:16px;background:var(--mint);border:1px solid #c8efe5;margin-bottom:22px}
.condition-banner strong{display:block}
.condition-banner span{display:block;color:#4d6e66;font-size:.84rem}

/* Product detail */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:start}
.product-gallery{position:sticky;top:110px}
.product-main-photo{border-radius:25px;overflow:hidden;background:#eef3f8;aspect-ratio:1.08;box-shadow:var(--shadow-sm)}
.product-main-photo img{width:100%;height:100%;object-fit:cover}
.product-detail h1{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:clamp(2rem,4vw,3.3rem);line-height:1.12;letter-spacing:-.04em;margin:12px 0}
.detail-price{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:2rem;font-weight:800;color:var(--navy);margin:18px 0}
.detail-pills{display:flex;flex-wrap:wrap;gap:9px;margin:15px 0}
.detail-pill{padding:8px 11px;border-radius:999px;background:var(--sky);color:#1748d6;font-size:.76rem;font-weight:800}
.spec-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:24px 0}
.spec{padding:15px;border:1px solid var(--line);border-radius:14px}
.spec strong{display:block;font-size:.82rem}
.spec span{display:block;color:var(--muted);font-size:.8rem}
.detail-actions{display:flex;gap:10px;flex-wrap:wrap}
.disclosure{padding:17px;border-radius:14px;background:var(--cream);border:1px solid #ebe6dc;color:#665f53;font-size:.82rem;margin-top:22px}

/* Services */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.service-card{padding:30px;border:1px solid var(--line);border-radius:22px;background:#fff;transition:.23s}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.service-icon{width:58px;height:58px;border-radius:17px;background:var(--sky);color:var(--blue);display:grid;place-items:center;margin-bottom:30px}
.service-icon svg{width:28px;height:28px}
.service-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.25rem;margin:0 0 8px}
.service-card p{color:var(--muted);font-size:.9rem;margin:0 0 18px}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;counter-reset:step}
.process-card{counter-increment:step;padding:27px;border-radius:20px;background:#fff;border:1px solid var(--line)}
.process-card::before{content:"0" counter(step);display:block;font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.7rem;color:#b4c8e8;margin-bottom:26px}
.process-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.08rem;margin:0 0 7px}
.process-card p{margin:0;color:var(--muted);font-size:.86rem}

/* About */
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.value-card{padding:31px;border-radius:22px;background:#fff;border:1px solid var(--line)}
.value-card .number{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;color:#aac1e5;font-size:1.8rem}
.value-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:22px 0 8px}
.value-card p{margin:0;color:var(--muted);font-size:.9rem}
.market-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.market-card{padding:34px;border-radius:24px;border:1px solid var(--line);background:#fff}
.market-card h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.5rem;margin:0 0 8px}
.market-card p{color:var(--muted)}
.market-flag{display:inline-flex;padding:7px 11px;border-radius:999px;background:var(--sky);color:var(--blue);font-weight:800;font-size:.78rem}

/* Forms */
.form-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:34px}
.contact-panel{padding:32px;border-radius:24px;background:var(--navy);color:#fff}
.contact-panel h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin-top:0}
.contact-panel p{color:#cbd8e6}
.contact-list{display:grid;gap:18px;margin:28px 0}
.contact-item{display:flex;gap:13px}
.contact-item-icon{width:42px;height:42px;border-radius:13px;background:rgba(255,255,255,.1);display:grid;place-items:center}
.contact-item strong{display:block}
.contact-item span,.contact-item a{color:#cbd8e6;font-size:.85rem}
.form-card{padding:34px;border-radius:24px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-sm)}
.form-card h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin-top:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:17px}
.form-group{display:grid;gap:7px}
.form-group.full{grid-column:1/-1}
.form-group label{font-size:.82rem;font-weight:800}
.form-control{min-height:48px}
textarea.form-control{min-height:130px;resize:vertical}
.form-help{color:var(--muted);font-size:.76rem}
.success-message{display:none;padding:15px;border-radius:12px;background:var(--mint);color:var(--success);font-weight:700;margin-top:16px}
.success-message.show{display:block}

/* Cart */
.cart-layout{display:grid;grid-template-columns:1fr 360px;gap:30px;align-items:start}
.cart-list{display:grid;gap:16px}
.cart-item{display:grid;grid-template-columns:130px 1fr auto;gap:20px;align-items:center;padding:17px;border:1px solid var(--line);border-radius:18px;background:#fff}
.cart-item img{width:130px;height:110px;object-fit:cover;border-radius:13px;background:#eef3f8}
.cart-item h3{font-size:1rem;margin:0 0 5px}
.cart-item p{margin:0;color:var(--muted);font-size:.8rem}
.quantity{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:10px;overflow:hidden;margin-top:10px}
.quantity button{width:34px;height:34px;border:0;background:#fff}
.quantity span{min-width:32px;text-align:center;font-weight:800}
.remove-btn{margin-left:10px;border:0;background:transparent;color:var(--danger);font-size:.78rem;font-weight:800}
.summary-card{position:sticky;top:105px;padding:26px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-sm)}
.summary-card h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin-top:0}
.summary-row{display:flex;justify-content:space-between;gap:18px;padding:10px 0;color:#526276}
.summary-row.total{border-top:1px solid var(--line);margin-top:8px;padding-top:18px;color:var(--navy);font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.25rem;font-weight:800}
.empty-state{text-align:center;padding:68px 24px;border:1px dashed var(--line-strong);border-radius:22px;background:#fff}
.empty-state .big-icon{width:64px;height:64px;border-radius:20px;background:var(--sky);color:var(--blue);display:grid;place-items:center;margin:0 auto 18px}
.empty-state h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:0 0 8px}
.empty-state p{color:var(--muted)}

/* Blog */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:23px}
.blog-card{border:1px solid var(--line);border-radius:22px;background:#fff;overflow:hidden;transition:.24s}
.blog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-sm)}
.blog-image{aspect-ratio:1.45;overflow:hidden}
.blog-image img{width:100%;height:100%;object-fit:cover;transition:.4s}
.blog-card:hover .blog-image img{transform:scale(1.04)}
.blog-body{padding:23px}
.blog-tag{font-size:.7rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--blue)}
.blog-card h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.28rem;line-height:1.25;margin:10px 0}
.blog-card p{color:var(--muted);font-size:.88rem;margin:0 0 14px}
.article{font-size:1.02rem}
.article h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.8rem;line-height:1.2;margin:42px 0 13px}
.article h3{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;font-size:1.25rem;margin:30px 0 9px}
.article p,.article li{color:#4f6073}
.article ul,.article ol{padding-left:24px}
.article-image{width:100%;max-height:520px;object-fit:cover;border-radius:24px;margin:30px 0}
.article-note{padding:20px;border-left:4px solid var(--blue);background:var(--sky);border-radius:0 14px 14px 0}
.article-meta{display:flex;flex-wrap:wrap;gap:14px;color:var(--muted);font-size:.82rem;margin:14px 0 25px}

/* Legal */
.policy{padding:38px;border:1px solid var(--line);border-radius:22px;background:#fff}
.policy h2{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:34px 0 10px;font-size:1.45rem}
.policy h2:first-child{margin-top:0}
.policy p,.policy li{color:#526276}
.updated{display:inline-flex;padding:8px 12px;border-radius:999px;background:var(--sky);color:var(--blue)!important;font-size:.8rem;font-weight:800}

/* Footer */
.footer{background:var(--navy);color:#fff;padding:72px 0 0}
.footer-grid{display:grid;grid-template-columns:1.35fr repeat(3,.72fr);gap:44px}
.footer-brand img{width:205px;filter:brightness(0) invert(1)}
.footer-brand p{max-width:410px;color:#b9c9da;font-size:.9rem}
.footer h4{font-family:"Segoe UI Variable Display","Segoe UI",system-ui,sans-serif;margin:4px 0 17px}
.footer-links{display:grid;gap:10px}
.footer-links a{color:#b9c9da;font-size:.86rem}
.footer-links a:hover{color:#fff}
.socials{display:flex;gap:8px;margin-top:20px}
.socials a{width:38px;height:38px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;font-weight:800}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:24px 0;margin-top:54px;border-top:1px solid rgba(255,255,255,.12);color:#9eb1c5;font-size:.78rem}
.footer-bottom-links{display:flex;gap:18px}
.toast{position:fixed;right:24px;bottom:24px;z-index:200;background:var(--navy);color:#fff;padding:13px 17px;border-radius:12px;box-shadow:var(--shadow);transform:translateY(20px);opacity:0;pointer-events:none;transition:.25s}
.toast.show{transform:none;opacity:1}
.back-top{position:fixed;right:24px;bottom:82px;width:42px;height:42px;border-radius:12px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-sm);display:none;place-items:center;z-index:90}
.back-top.show{display:grid}

/* Responsive */
@media(max-width:1080px){
  .nav-links{gap:17px}
  .quote-nav{display:none}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .shop-products{grid-template-columns:repeat(2,1fr)}
  .hero-grid{gap:38px}
  .footer-grid{grid-template-columns:1.2fr repeat(3,.8fr);gap:30px}
}
@media(max-width:900px){
  .section{padding:76px 0}
  .menu-toggle{display:grid}
  .nav-links{position:fixed;left:16px;right:16px;top:92px;display:none;flex-direction:column;align-items:stretch;gap:0;padding:16px;border-radius:18px;background:#fff;box-shadow:var(--shadow);border:1px solid var(--line);margin:0}
  .nav-links.open{display:flex}
  .nav-links a{padding:13px 10px}
  .nav-links a::after{display:none}
  .mobile-utility{display:block;padding:10px}
  .hero-grid,.page-hero-grid,.split,.product-detail,.form-layout{grid-template-columns:1fr}
  .hero-copy{text-align:center}
  .hero-copy>p{margin-inline:auto}
  .hero-actions,.hero-note{justify-content:center}
  .hero-media{max-width:680px;margin-inline:auto}
  .fc-one{left:10px}.fc-two{right:10px}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:0}.trust-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .category-grid,.info-grid,.service-grid,.values-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(2){border-right:0}.stat:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.12)}
  .bento{grid-template-columns:1fr}
  .shop-layout{grid-template-columns:1fr}
  .filters{position:static}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .market-grid{grid-template-columns:1fr}
  .cart-layout{grid-template-columns:1fr}
  .summary-card,.product-gallery{position:static}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
  .footer-grid>div:last-child{grid-column:2/4}
}
@media(max-width:680px){
  .container,.narrow{width:min(100% - 28px,var(--max))}
  .section{padding:62px 0}
  .section-sm{padding:48px 0}
  .topbar-row{justify-content:center;text-align:center;min-height:43px}
  .topbar-row span:last-child{display:none}
  .navbar{height:72px;gap:12px}
  .brand img{width:166px}
  .currency-select{display:none}
  .mobile-utility .currency-select{display:block;width:100%}
  .hero{padding:54px 0 68px}
  .hero-copy h1{font-size:clamp(2.7rem,13vw,4.3rem)}
  .hero-photo{border-radius:24px}
  .float-card{position:relative;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;margin-top:12px;max-width:none}
  .trust-grid,.category-grid,.info-grid,.service-grid,.values-grid,.blog-grid,.product-grid,.shop-products,.process-grid,.stats{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid var(--line)!important}
  .trust-item:last-child{border-bottom:0!important}
  .category-card{min-height:310px}
  .photo-panel{min-height:390px}
  .cta-panel{padding:34px 24px;display:block}
  .cta-actions{margin-top:24px}
  .shop-toolbar{align-items:stretch;flex-direction:column}
  .search-box{max-width:none}
  .sort-select{width:100%}
  .form-grid{grid-template-columns:1fr}
  .form-group.full{grid-column:auto}
  .form-card,.contact-panel{padding:25px}
  .cart-item{grid-template-columns:90px 1fr}
  .cart-item img{width:90px;height:85px}
  .cart-item>div:last-child{grid-column:2;text-align:left!important}
  .spec-list{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
  .footer-grid>div:last-child{grid-column:auto}
  .footer-bottom{align-items:flex-start;flex-direction:column}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}

/* Simplified email contact form and generic product imagery */
.simple-contact-form .form-grid{grid-template-columns:1fr 1fr}
.simple-contact-form .form-group.full{grid-column:1/-1}
.simple-contact-form textarea{min-height:180px;resize:vertical}
.form-delivery-note{display:flex;align-items:center;gap:10px;margin-top:18px;padding:13px 15px;border-radius:14px;background:#eef9f7;color:#115e59;font-size:.9rem;font-weight:650}
.form-delivery-note svg{width:20px;height:20px;flex:0 0 auto}
.footer-email{margin-top:12px!important}.footer-email a{color:#fff;font-weight:800;text-decoration:none}.footer-email a:hover{text-decoration:underline}
.product-media img,.product-main-photo img,.cart-item img{background:#eef4f8}
@media(max-width:680px){.simple-contact-form .form-grid{grid-template-columns:1fr}}


/* CIRCAHOOP_FULL_PHOTO_COVERAGE
   Complete premium photo treatment for product, service and support cards. */
.visual-card-photo,
.compact-card-photo,
.contact-card-photo,
.mini-bento-photo{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#edf5fb,#e7f4f2);
  border-bottom:1px solid rgba(11,42,72,.08);
}
.visual-card-photo{height:185px;margin:-1px -1px 22px;border-radius:22px 22px 14px 14px}
.compact-card-photo{height:138px;margin:-1px -1px 18px;border-radius:18px 18px 12px 12px}
.contact-card-photo{height:225px;margin:-1px -1px 26px;border-radius:24px 24px 14px 14px}
.mini-bento-photo{height:128px;margin:-24px -24px 20px;border-radius:20px 20px 12px 12px}
.visual-card-photo img,
.compact-card-photo img,
.contact-card-photo img,
.mini-bento-photo img{width:100%;height:100%;display:block;transition:transform .45s ease,filter .45s ease}
.photo-cover img{object-fit:cover;object-position:center}
.photo-contain img{object-fit:contain;padding:10px;background:linear-gradient(145deg,#eef6fb,#e7f5f3)}
.service-card:has(.visual-card-photo),
.value-card:has(.visual-card-photo),
.market-card:has(.visual-card-photo),
.info-card:has(.compact-card-photo),
.process-card:has(.compact-card-photo),
.contact-panel:has(.contact-card-photo){overflow:hidden;padding-top:0}
.service-card:hover .visual-card-photo img,
.value-card:hover .visual-card-photo img,
.market-card:hover .visual-card-photo img,
.info-card:hover .compact-card-photo img,
.process-card:hover .compact-card-photo img,
.mini-bento:hover .mini-bento-photo img{transform:scale(1.035);filter:saturate(1.05)}
.service-card:has(.visual-card-photo)>:not(.visual-card-photo),
.value-card:has(.visual-card-photo)>:not(.visual-card-photo),
.market-card:has(.visual-card-photo)>:not(.visual-card-photo){margin-left:24px;margin-right:24px}
.service-card:has(.visual-card-photo)>:last-child,
.value-card:has(.visual-card-photo)>:last-child,
.market-card:has(.visual-card-photo)>:last-child{margin-bottom:24px}
.info-card:has(.compact-card-photo)>:not(.compact-card-photo),
.process-card:has(.compact-card-photo)>:not(.compact-card-photo){margin-left:20px;margin-right:20px}
.info-card:has(.compact-card-photo)>:last-child,
.process-card:has(.compact-card-photo)>:last-child{margin-bottom:20px}
.contact-panel:has(.contact-card-photo)>:not(.contact-card-photo){margin-left:28px;margin-right:28px}
.contact-panel:has(.contact-card-photo)>:last-child{margin-bottom:28px}
.product-media{min-height:270px;background:linear-gradient(145deg,#eff6fb,#e9f6f2)}
.product-media img,.product-main-photo img,.cart-item>img{display:block!important;opacity:1!important;visibility:visible!important}
.product-media img,.product-main-photo img{object-fit:contain!important;padding:12px}
.product-card .product-media img{width:100%!important;height:270px!important}
.product-main-photo img{width:100%!important;min-height:420px!important;max-height:520px!important}
.cart-item>img{width:124px!important;height:112px!important;object-fit:contain!important;background:#eef5fa;border-radius:14px;padding:8px}
@media(max-width:760px){
  .visual-card-photo{height:210px}
  .compact-card-photo{height:165px}
  .contact-card-photo{height:190px}
  .product-media,.product-card .product-media img{min-height:235px!important;height:235px!important}
  .product-main-photo img{min-height:300px!important}
}


/* REAL_BRANDLESS_PHOTO_FINAL */
.product-card .product-media img,
.product-gallery img,
.category-card > img,
.visual-card-photo img,
.compact-card-photo img,
.blog-image img,
.photo-panel img,
.page-hero-photo img,
.contact-card-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-card .product-media { background: linear-gradient(145deg,#edf3f8,#fff); }
.product-card .product-media img { object-position: center; filter: saturate(.92) contrast(1.03); }
.cta-panel { overflow:hidden; display:grid; grid-template-columns:minmax(180px,260px) 1fr auto; align-items:center; gap:28px; }
.cta-photo { height:160px; margin:-26px 0 -26px -26px; border-radius:20px 0 0 20px; overflow:hidden; background:#eaf0f6; }
.cta-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.empty-state-photo { width:min(520px,100%); height:260px; margin:0 auto 26px; overflow:hidden; border-radius:24px; background:#eef3f8; }
.empty-state-photo img { width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:850px){
 .cta-panel{grid-template-columns:1fr;}
 .cta-photo{height:220px;margin:-22px -22px 0;border-radius:18px 18px 0 0;}
}











/* CIRCAHOOP_FINAL_CONTACT_AND_CHAT */
.footer-chat-button{
  display:inline-flex;align-items:center;gap:9px;margin:4px 0 18px;
  padding:12px 17px;border:1px solid rgba(255,255,255,.25);border-radius:12px;
  color:#071a33;background:#fff;font:800 .9rem/1 inherit;cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.14);transition:transform .2s ease,background .2s ease
}
.footer-chat-button:hover{background:#eaf4ff;transform:translateY(-1px)}
.contact-honeypot{
  position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;
  overflow:hidden!important;opacity:0!important;pointer-events:none!important
}
.contact-form-status{
  margin-top:16px;padding:14px 16px;border-radius:13px;font-size:.92rem;line-height:1.55
}
.contact-form-status.is-success{border:1px solid #a9dfce;color:#12634f;background:#eafaf5}
.contact-form-status.is-error{border:1px solid #efb7b7;color:#862828;background:#fff0f0}
.contact-form-status a{color:inherit;font-weight:800;text-decoration:underline}
.back-top{right:28px;bottom:105px}
@media(max-width:600px){.back-top{right:16px;bottom:92px}}
