:root{
  --brand-blue:#1779ba;
  --brand-violet:#33287a;
  --brand-red:#c8251d;
  --brand-orange:#f47400;
  --brand-teal:#3db7ad;
  --navy:#102239;
  --bg:#142943;
  --orange:var(--brand-orange);
  --accent:var(--brand-blue);
  --accent-2:var(--brand-teal);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 15% 0%, rgba(244,116,0,.16), transparent 55%),
              radial-gradient(1000px 700px at 80% 15%, rgba(61,183,173,.13), transparent 60%),
              linear-gradient(180deg, var(--navy) 0%, var(--bg) 60%, #0a1727 100%);
  color:var(--text);
  line-height:1.5;
}
body.home-page{
  background:#f7f9ff;
  color:#24303a;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

:focus-visible{outline:3px solid rgba(244,116,0,.65); outline-offset:3px; border-radius:12px}
[id]{scroll-margin-top:90px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px; border-radius:14px; font-weight:800;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  gap:10px; cursor:pointer;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--orange); color:#111; box-shadow:0 14px 30px rgba(244,116,0,.22)}
.btn-primary:hover{box-shadow:0 18px 40px rgba(244,116,0,.28)}
.btn-ghost{background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.14)}
.btn-ghost:hover{background:rgba(255,255,255,.10)}
.btn-danger{background:rgba(255,0,75,.14); border-color:rgba(255,0,75,.35)}
.btn-danger:hover{background:rgba(255,0,75,.20)}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  color:var(--muted); font-weight:700; font-size:13px;
}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  background:rgba(244,116,0,.16); border:1px solid rgba(244,116,0,.35);
  color:#ffd4ad; font-weight:900; font-size:12px;
}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background:linear-gradient(180deg, rgba(11,27,43,.88), rgba(11,27,43,.62));
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:238px;
  height:76px;
  border-radius:0;
  background:url("../assets/secrea-logo.png") center / contain no-repeat;
  box-shadow:none;
  position:relative;
  overflow:hidden;
  flex:0 0 auto;
}
.nav .logo,
.footer .logo,
.home-footer-logo{
  background-color:rgba(255,255,255,.94);
  border-radius:8px;
  padding:8px;
}
.brand-title{display:none; flex-direction:column; line-height:1.05}
.brand-title strong{font-size:18px; letter-spacing:.6px}
.brand-title span{font-size:12px; color:var(--muted); font-weight:700}

.nav-links{display:flex; align-items:center; gap:10px}
.nav-links a{
  padding:10px 12px; border-radius:12px; color:rgba(234,242,255,.86);
  font-weight:900; font-size:14px;
}
.nav-links a:hover{background:rgba(255,255,255,.08)}
.nav-links a.active{background:rgba(255,255,255,.10)}
.nav-actions{display:flex; align-items:center; gap:10px}

.hamburger{display:none; width:44px; height:44px; border-radius:14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  align-items:center; justify-content:center; cursor:pointer;
}
.hamburger span{width:18px; height:2px; background:rgba(234,242,255,.85); display:block; position:relative}
.hamburger span:before,.hamburger span:after{content:""; position:absolute; left:0; width:18px; height:2px; background:rgba(234,242,255,.85)}
.hamburger span:before{top:-6px}
.hamburger span:after{top:6px}

.dropdown{position:relative}
.dropdown > button{
  all:unset; cursor:pointer; padding:10px 12px; border-radius:12px;
  font-weight:900; font-size:14px; color:rgba(234,242,255,.86);
  display:flex; align-items:center; gap:8px;
}
.dropdown > button:hover{background:rgba(255,255,255,.08)}
.caret{display:inline-block; width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-top:6px solid rgba(234,242,255,.8)}

.menu{
  position:absolute; top:48px; left:0;
  width:min(640px, calc(100vw - 40px));
  background:rgba(9,20,32,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  box-shadow: var(--shadow);
  display:none;
  overflow:hidden;
}
.menu.open{display:block}
.menu-grid{display:grid; grid-template-columns: 1.2fr 1fr}
.menu-left{padding:14px}
.menu-right{padding:14px; background:linear-gradient(180deg, rgba(244,116,0,.14), rgba(255,255,255,.03)); border-left:1px solid rgba(255,255,255,.10)}
.menu h4{margin:8px 0 10px; font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:rgba(234,242,255,.72)}
.menu a.item{display:flex; align-items:flex-start; gap:12px; padding:12px; border-radius:14px}
.menu a.item:hover{background:rgba(255,255,255,.06)}
.icon{
  width:34px; height:34px; border-radius:12px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.item strong{display:block; font-size:14px}
.item span{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.fade-up{opacity:0; transform:translateY(10px); transition:opacity .55s ease, transform .55s ease}
.fade-up.show{opacity:1; transform:none}

.hero{padding:42px 0 22px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px}
.hero-card{
  border-radius:28px; border:1px solid rgba(255,255,255,.12);
  background: radial-gradient(900px 500px at 10% 0%, rgba(244,116,0,.18), transparent 55%),
              radial-gradient(700px 420px at 85% 30%, rgba(61,183,173,.14), transparent 62%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden; position:relative; min-height:420px;
}
.hero-card .inner{padding:28px}
.h1{font-size:54px; line-height:1.02; margin:14px 0 12px; letter-spacing:-.02em}
.lead{font-size:16px; color:var(--muted); max-width:56ch}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.hero-meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.hero-side{
  border-radius:28px; border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden; display:flex; flex-direction:column;
}
.side-top{padding:18px 18px 0}
.side-illus{
  margin:14px 18px 18px;
  border-radius:22px; border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 30% 30%, rgba(244,116,0,.22), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(61,183,173,.14), transparent 55%),
              linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  min-height:238px; position:relative;
}
.side-illus:after{content:""; position:absolute; inset:18px; border-radius:18px; border:1px dashed rgba(255,255,255,.18)}
.side-list{padding:0 18px 18px; display:grid; gap:10px}

.section{padding:28px 0}
.section h2{margin:0 0 10px; font-size:28px}
.section p{margin:0; color:var(--muted)}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-top:16px}
.card{
  border-radius:18px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover{transform: translateY(-2px); border-color:rgba(255,255,255,.18); box-shadow:0 18px 55px rgba(0,0,0,.34)}
.card h3{margin:8px 0 6px; font-size:16px}
.card p{margin:0; font-size:13px}
.card .top{display:flex; align-items:center; justify-content:space-between}
.card .chip{font-size:12px; color:#ffd4ad; font-weight:900}

.products-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:16px}
.product{
  border-radius:18px; border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  overflow:hidden; box-shadow: 0 14px 40px rgba(0,0,0,.28);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  cursor: pointer;
}
.product:hover{transform: translateY(-2px); border-color:rgba(255,255,255,.18); box-shadow:0 18px 55px rgba(0,0,0,.34)}
.product .img{
  height:auto;
  aspect-ratio: 1 / 1;
  background:#0a1727;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.product .img:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(11,27,43,.20));
  pointer-events:none;
}
.product .content{padding:16px}
.product h3{margin:0 0 6px; font-size:16px}
.product p{margin:0 0 12px; color:var(--muted); font-size:13px}
.product .row{display:flex; gap:10px; flex-wrap:wrap}
.product .img{position:relative}
.product .img img.product-photo{position:absolute; inset:0; width:100%; height:100%; object-fit:contain; border-radius:0; filter: saturate(1.05) contrast(1.02); background:#f8fbff}
.product .img .image-count{position:absolute; right:0.75rem; bottom:0.75rem; display:inline-block; background:rgba(0,0,0,0.65); color:#fff; font-size:0.8rem; padding:0.25rem 0.5rem; border-radius:999px;}
.product .img.has-photo{background:rgba(0,0,0,.08)}

.upload-panel{margin:24px 0 0; padding:20px; background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));}
.upload-panel-inner{display:grid; gap:16px}
.upload-panel h3{margin:0 0 6px; font-size:18px}
.upload-panel p{margin:0; color:var(--muted); font-size:13px}
.upload-row{display:grid; gap:10px}
.upload-row label{font-weight:900; font-size:13px; color:var(--text)}
.upload-row input[type=file]{padding:12px 14px; border-radius:14px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); color:var(--text)}
.upload-hint{color:var(--muted); font-size:13px; line-height:1.6}

.carousel-cards{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:16px; margin-top:28px}
.product-carousel-card{padding:20px; background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));}
.carousel-header{display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:16px}
.carousel-header h3{margin:0; font-size:18px}
.carousel-header p{margin:4px 0 0; color:var(--muted); font-size:13px}
.carousel-actions{display:flex; gap:10px}
.carousel-button{border:none; background:rgba(255,255,255,.08); color:var(--text); width:40px; height:40px; border-radius:14px; cursor:pointer; font-size:18px; transition:background .14s ease}
.carousel-button:hover{background:rgba(255,255,255,.16)}
.carousel{display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; overscroll-behavior-inline:contain}
.carousel::-webkit-scrollbar{height:10px}
.carousel::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18); border-radius:999px}
.slide{flex:0 0 min(200px, 100%); scroll-snap-align:start; border-radius:20px; padding:18px; min-width:200px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03)}
.slide strong{display:block; margin-bottom:8px; font-size:15px}
.slide span{display:block; color:var(--muted); font-size:13px; line-height:1.4}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:16px}
.quote{
  border-radius:24px; border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.quote p{margin:0; color:rgba(234,242,255,.86)}
.quote span{display:block; margin-top:10px; color:var(--muted); font-size:13px; font-weight:800}

.cta{
  margin-top:18px; border-radius:28px; border:1px solid rgba(255,255,255,.14);
  background: radial-gradient(900px 420px at 10% 0%, rgba(244,116,0,.22), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.cta .inner{padding:22px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.cta h3{margin:0; font-size:22px}
.cta p{margin:4px 0 0; color:var(--muted)}

.footer{margin-top:36px; border-top:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.20));}
.footer .grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:14px; padding:26px 0}
.footer h4{margin:0 0 12px; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(234,242,255,.72)}
.footer a{display:block; padding:6px 0; color:rgba(234,242,255,.86)}
.footer a:hover{color:#fff}
.footer p{margin:0; color:var(--muted)}
.footer .mini{font-size:13px}
.footer .bottom{border-top:1px solid rgba(255,255,255,.10); padding:14px 0; display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; color:rgba(234,242,255,.72); font-size:13px}

.input{
  width:100%; padding:12px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text); outline:none;
}
.input::placeholder{color:rgba(234,242,255,.55)}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
small.hint{color:rgba(234,242,255,.62); display:block; margin-top:8px; font-weight:700}

.notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,242,255,.86);
  font-weight:800;
  display:none;
}
.notice.show{display:block}
.notice.ok{border-color:rgba(0,255,170,.30); background:rgba(0,255,170,.10)}
.notice.err{border-color:rgba(255,0,75,.35); background:rgba(255,0,75,.10)}

.whatsapp{
  position:fixed; right:18px; bottom:86px; z-index:60;
  width:54px; height:54px; border-radius:18px;
  background: linear-gradient(135deg, #25d366, #17b857);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.22);
}
.whatsapp svg{width:26px; height:26px; fill:var(--navy)}

/* Mobile sticky CTA bar */
.sticky-cta{
  position:fixed; left:14px; right:14px; bottom:14px; z-index:65;
  display:none;
  background:rgba(9,20,32,.88);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:10px;
  backdrop-filter: blur(12px);
}
.sticky-cta .row{display:flex; gap:10px}
.sticky-cta .row a{flex:1}

.mobile-panel{
  display:none;
  position:fixed; inset:68px 14px 14px 14px; z-index:70;
  border-radius:22px;
  background:rgba(9,20,32,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding:14px;
}
.mobile-panel.open{display:block}
.mobile-panel a{display:block; padding:12px 12px; border-radius:14px; font-weight:900}
.mobile-panel a:hover{background:rgba(255,255,255,.06)}
.mobile-panel .divider{height:1px; background:rgba(255,255,255,.10); margin:10px 0}

@media (max-width: 980px){
  .logo{width:184px; height:58px}
  .hero-grid{grid-template-columns:1fr}
  .h1{font-size:44px}
  .grid-4{grid-template-columns: 1fr 1fr}
  .products-grid{grid-template-columns: 1fr 1fr}
  .carousel-cards{grid-template-columns: 1fr}
  .split{grid-template-columns:1fr}
  .footer .grid{grid-template-columns:1fr}
  .nav-links{display:none}
  .nav-actions .btn-ghost{display:none}
  .hamburger{display:flex}
  .menu{left:auto; right:0}
  .sticky-cta{display:block}
}
@media (max-width: 560px){
  .h1{font-size:38px}
  .products-grid{grid-template-columns: 1fr}
  .grid-4{grid-template-columns: 1fr}
  .form-row{grid-template-columns:1fr}
}

.hidden{display:none !important}

.grid-2{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start}

.form-card{padding:22px;}
.tab-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px}
.tab-row .btn{flex:1}
.tab-row .active{background:rgba(244,116,0,.18); border-color:rgba(244,116,0,.30)}

.field{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
.field label{font-weight:700; color:var(--text); font-size:14px}

.table{width:100%; border-collapse:collapse; margin-top:16px}
.table th, .table td{padding:12px 14px; border:1px solid rgba(255,255,255,.10); text-align:left; color:var(--text)}
.table th{background:rgba(255,255,255,.04); font-size:13px; font-weight:800}

.status-pill{display:inline-flex; align-items:center; padding:6px 12px; border-radius:999px; font-size:12px; font-weight:800; text-transform:capitalize}
.status-pending{background:rgba(255,184,0,.16); color:#ffd77f}
.status-confirmed{background:rgba(0,181,255,.16); color:#a0e7ff}
.status-shipped{background:rgba(0,255,148,.14); color:#b9ffd4}
.status-cancelled{background:rgba(255,0,75,.14); color:#ffb4c2}

.shop-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.button-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.admin-grid{display:grid; gap:16px}
.catalog-tools{display:grid; grid-template-columns: minmax(220px, 1fr) 180px; gap:10px; margin:14px 0 4px}
.dashboard-grid{display:grid; grid-template-columns:repeat(5, minmax(0, 1fr)); gap:12px; margin:16px 0}
.dashboard-card{padding:16px; border-radius:14px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05)}
.dashboard-card strong{display:block; font-size:28px; line-height:1; color:#fff}
.dashboard-card span{display:block; margin-top:8px; color:var(--muted); font-size:13px; font-weight:800}
.public-catalog-tools{margin:18px 0 4px}
.card-title-row{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.card-title-row h3{display:flex; align-items:center; gap:10px; margin:0}
.status-active{border-color:rgba(0,255,148,.28); background:rgba(0,255,148,.12); color:#b9ffd4}
.status-inactive{border-color:rgba(255,0,75,.28); background:rgba(255,0,75,.12); color:#ffb4c2}
.product-inactive{opacity:.68}
.product button:disabled{opacity:.45; cursor:not-allowed}
.product-actions{margin-top:12px}

@media (max-width: 960px){
  .grid-2, .admin-grid{grid-template-columns:1fr}
  .catalog-tools{grid-template-columns:1fr}
}

/* Image preview thumbnails in admin product form */
.image-previews{display:flex; gap:8px; margin-top:8px}
.image-previews img, .preview-thumb{width:80px;height:80px;object-fit:cover;border-radius:8px;border:1px solid rgba(255,255,255,.12)}
.preview-wrap{position:relative; display:inline-block}
.preview-wrap .preview-del{position:absolute; right:6px; bottom:6px; padding:6px 8px; font-size:12px; border-radius:8px}
.product-card-preview{margin-top:16px}
.product-card-preview h4{margin:0 0 10px; font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em}
.product-card-preview .product{max-width:320px; cursor:default}
.product-card-preview .product:hover{transform:none}
.product-preview-card .img{aspect-ratio:4 / 3}
.admin-wide{grid-column:1 / -1}
.quote-actions{display:flex; gap:6px; flex-wrap:wrap}
.btn-sm{padding:8px 10px; border-radius:10px; font-size:12px}
.quote-new{border-color:rgba(255,184,0,.28); background:rgba(255,184,0,.12); color:#ffd77f}
.quote-contacted{border-color:rgba(0,181,255,.28); background:rgba(0,181,255,.12); color:#a0e7ff}
.quote-won{border-color:rgba(0,255,148,.28); background:rgba(0,255,148,.12); color:#b9ffd4}
.quote-lost{border-color:rgba(255,0,75,.28); background:rgba(255,0,75,.12); color:#ffb4c2}
.product-modal{position:fixed; inset:0; z-index:90; display:grid; place-items:center; padding:20px}
.product-modal-backdrop{position:absolute; inset:0; background:rgba(4,10,18,.72); backdrop-filter:blur(8px)}
.product-modal-panel{position:relative; width:min(940px, 100%); max-height:min(720px, calc(100vh - 40px)); overflow:auto; display:grid; grid-template-columns:1fr 1fr; gap:18px; padding:18px; border-radius:18px; border:1px solid rgba(255,255,255,.14); background:var(--navy); box-shadow:var(--shadow)}
.product-modal-close{position:absolute; top:12px; right:12px; z-index:2; width:38px; height:38px; border-radius:12px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.08); color:var(--text); font-size:24px; cursor:pointer}
.product-modal-media img[data-detail-img]{width:100%; aspect-ratio:1 / 1; object-fit:cover; border-radius:14px; background:#0a1727}
.detail-thumbs{display:flex; gap:8px; margin-top:10px}
.detail-thumbs button{padding:0; border:1px solid rgba(255,255,255,.14); background:transparent; border-radius:10px; overflow:hidden; cursor:pointer}
.detail-thumbs img{width:72px; height:72px; object-fit:cover; display:block}
.product-modal-content{display:flex; flex-direction:column; align-items:flex-start; gap:12px; padding:18px 8px}
.product-modal-content h3{margin:0; font-size:28px}
.product-modal-content p{margin:0; color:var(--muted)}
.product-detail-layout{display:grid; grid-template-columns:minmax(280px, .9fr) 1.1fr; gap:24px; align-items:start}
.product-detail-media img[data-main-product-img]{width:100%; aspect-ratio:1 / 1; object-fit:cover; border-radius:18px; background:#0a1727; border:1px solid rgba(255,255,255,.12)}
.product-detail-content{display:flex; flex-direction:column; align-items:flex-start; gap:14px}
.product-detail-content h1{margin:0; font-size:42px; line-height:1.05}
.product-detail-content p{margin:0; color:var(--muted); font-size:16px}
.home-nav{position:absolute; top:0; left:0; right:0; z-index:40; border-bottom:1px solid rgba(255,255,255,.22)}
.home-nav-inner{height:88px; display:flex; align-items:center; justify-content:space-between; gap:28px}
.home-nav .logo{width:260px; height:82px; filter:drop-shadow(0 8px 18px rgba(0,0,0,.22))}
.home-links{display:flex; align-items:center; gap:32px}
.home-links a,.home-menu{color:#fff; font-weight:900; font-size:15px; text-shadow:0 2px 12px rgba(0,0,0,.28)}
.home-links a:hover,.home-menu:hover{color:var(--brand-orange)}
.home-menu{padding:10px 0}
.home-hero{position:relative; min-height:720px; overflow:hidden; display:flex; align-items:center}
.home-hero-bg{position:absolute; inset:0; background:linear-gradient(90deg, rgba(9,24,39,.90), rgba(9,24,39,.62) 42%, rgba(9,24,39,.16)), url("/assets/img/secrea/hero-maker-studio.svg") center / cover no-repeat; transform:scale(1.02)}
.maker-hero:after{content:""; position:absolute; inset:auto 0 0; height:42%; background:linear-gradient(180deg, transparent, rgba(247,249,255,.98)); pointer-events:none}
.maker-scene{position:absolute; right:min(7vw, 110px); top:170px; width:min(520px, 42vw); height:430px; z-index:1; pointer-events:none}
.maker-card{position:absolute; min-width:190px; padding:18px; border-radius:20px; color:#fff; background:rgba(9,20,32,.72); border:1px solid rgba(255,255,255,.18); box-shadow:0 22px 70px rgba(0,0,0,.28); backdrop-filter:blur(14px); animation:makerFloat 5.2s ease-in-out infinite}
.maker-card strong{display:block; font-size:20px; line-height:1}
.maker-card em{display:block; margin-top:8px; color:rgba(255,255,255,.72); font-style:normal; font-weight:800; font-size:13px}
.printer-card{right:80px; top:18px}
.shirt-card{left:10px; top:150px; animation-delay:.7s}
.mug-card{right:0; bottom:10px; animation-delay:1.15s}
.maker-dot{display:block; width:54px; height:54px; margin-bottom:14px; border-radius:16px; background:linear-gradient(135deg, var(--brand-orange), var(--brand-red)); position:relative}
.maker-dot:after{content:""; position:absolute; left:13px; top:14px; width:28px; height:24px; border:4px solid rgba(255,255,255,.88); border-top:0; border-radius:0 0 8px 8px}
.maker-shirt{display:block; width:58px; height:52px; margin-bottom:14px; background:var(--brand-teal); clip-path:polygon(22% 0, 38% 0, 44% 12%, 56% 12%, 62% 0, 78% 0, 100% 20%, 86% 42%, 76% 36%, 76% 100%, 24% 100%, 24% 36%, 14% 42%, 0 20%)}
.maker-mug{display:block; width:58px; height:54px; margin-bottom:14px; border-radius:12px 12px 18px 18px; background:#fff; position:relative}
.maker-mug:after{content:""; position:absolute; right:-22px; top:14px; width:26px; height:26px; border:8px solid #fff; border-left:0; border-radius:0 20px 20px 0}
@keyframes makerFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-14px) rotate(1deg)}
}
.home-hero-inner{position:relative; padding-top:86px; padding-bottom:170px}
.home-kicker{margin:0 0 18px; color:var(--brand-orange); font-weight:900; font-size:18px; text-transform:capitalize}
.home-hero h1{max-width:760px; margin:0; color:#fff; font-size:72px; line-height:1.08; letter-spacing:0}
.home-lead{max-width:580px; margin:20px 0 0; color:rgba(255,255,255,.82); font-size:18px}
.home-actions{display:flex; gap:16px; flex-wrap:wrap; margin-top:36px}
.home-btn-light{background:#fff; color:#1b2430; border-color:#fff}
.home-categories{position:relative; z-index:2; margin-top:-138px; padding-bottom:86px}
.home-category-grid{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:28px; align-items:end}
.home-category-card{position:relative; min-height:224px; display:flex; flex-direction:column; justify-content:flex-end; gap:18px; padding:36px 32px; border-radius:8px; background:linear-gradient(145deg, var(--brand-violet), var(--navy)); color:#fff; box-shadow:0 18px 45px rgba(10,28,48,.22); overflow:hidden}
.home-category-card:before{content:""; position:absolute; inset:-90px auto auto -80px; width:190px; height:190px; border-radius:50%; background:rgba(61,183,173,.18)}
.home-category-card:after{content:""; position:absolute; right:-45px; bottom:-55px; width:140px; height:140px; border-radius:42px; background:rgba(244,116,0,.16); transform:rotate(18deg)}
.home-category-card > *{position:relative; z-index:1}
.home-category-card.featured{min-height:304px}
.home-line-icon{align-self:flex-start; display:grid; place-items:center; width:76px; height:58px; border:2px solid var(--brand-orange); color:var(--brand-orange); border-radius:50%; font-weight:900}
.home-category-card h3{margin:0; font-size:24px; line-height:1.2}
.home-category-card p{margin:0; color:rgba(255,255,255,.84); font-size:15px}
.home-card-action{position:absolute; right:18px; bottom:18px; display:grid; place-items:center; width:18px; height:18px; border-radius:50%; background:var(--brand-orange); color:var(--navy); font-weight:900}
.home-about{padding:95px 0 120px; color:#24303a}
.home-about-grid{display:grid; grid-template-columns:.95fr 1.05fr; gap:90px; align-items:center}
.home-about-copy h2{margin:0 0 32px; font-size:42px; letter-spacing:4px; color:#242a31}
.home-about-copy h2:after{content:""; display:block; width:74px; height:3px; background:linear-gradient(90deg, var(--brand-orange), var(--brand-teal)); margin-top:24px}
.home-about-copy p{max-width:520px; color:#66727d; font-size:16px; line-height:1.8}
.home-about-copy ul{display:grid; gap:14px; margin:34px 0; padding-left:18px; color:#2b3b4d; font-weight:800}
.home-about-copy li::marker{color:var(--brand-orange)}
.home-about-media{position:relative; min-height:430px}
.home-about-main{position:absolute; top:0; right:20px; width:420px; height:270px; object-fit:cover; border-radius:8px; background:#fff}
.home-about-small{position:absolute; left:20px; bottom:40px; width:300px; height:210px; object-fit:cover; border-radius:8px; box-shadow:0 20px 55px rgba(20,41,67,.20); background:#fff}
.maker-media:before{content:""; position:absolute; right:0; top:28px; width:360px; height:360px; border-radius:50%; background:linear-gradient(135deg, rgba(244,116,0,.18), rgba(61,183,173,.22)); filter:blur(2px)}
.home-experience{position:absolute; right:20px; bottom:40px; min-width:230px; padding:20px 26px; border-radius:8px; background:linear-gradient(145deg, var(--brand-blue), var(--brand-violet)); color:#fff; display:flex; flex-direction:column}
.home-experience strong{font-size:18px}
.home-experience span{font-weight:900}
.home-footer{background:linear-gradient(145deg, #0f1c2c, var(--navy) 58%, var(--brand-violet)); color:#fff; padding:72px 0 28px}
.home-footer-grid{display:grid; grid-template-columns:1.25fr .75fr 1fr 1fr; gap:64px}
.home-footer-logo{width:230px; height:72px; margin-bottom:24px}
.home-footer h4{margin:0 0 22px; font-size:13px; letter-spacing:.16em; text-transform:uppercase}
.home-footer p,.home-footer a{color:rgba(255,255,255,.78); font-weight:700; line-height:1.7}
.home-footer a{display:block; padding:4px 0}
.home-socials{display:flex; gap:12px; margin-top:28px}
.home-socials a{display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:rgba(61,183,173,.18); color:#fff}
.home-subscribe{position:relative}
.home-subscribe input{padding-right:54px; background:#202b3a; border-color:#202b3a}
.home-subscribe button{position:absolute; right:8px; top:8px; width:34px; height:34px; border:0; border-radius:50%; background:var(--brand-orange); color:#111; cursor:pointer; font-weight:900}
.home-footer-bottom{display:flex; justify-content:space-between; gap:16px; margin-top:34px; padding-top:18px; border-top:1px solid rgba(255,255,255,.14); color:#7ed6d0; font-size:13px}
.home-admin-band{padding:0 0 110px; background:#fff; color:#24303a}
.home-admin-grid{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px}
.home-admin-card{display:flex; flex-direction:column; gap:12px; min-height:210px; padding:28px; border:1px solid #e7edf4; border-radius:8px; background:#f8fafc; box-shadow:0 18px 42px rgba(16,36,57,.08)}
.home-admin-card span{width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:var(--brand-orange); color:var(--navy); font-weight:900}
.home-admin-card strong{font-size:22px; color:var(--navy)}
.home-admin-card p{margin:0; color:#566575}
@media (max-width: 960px){
  .home-nav{position:absolute}
  .home-nav-inner{height:auto; padding:12px 0}
  .home-links{display:none}
  .home-nav .logo{width:192px; height:62px}
  .home-hero{min-height:680px}
  .maker-scene{right:4%; top:360px; width:300px; height:260px; opacity:.7}
  .maker-card{min-width:150px; padding:14px}
  .printer-card{right:30px; top:0}
  .shirt-card{left:0; top:96px}
  .mug-card{right:0; bottom:0}
  .home-hero h1{font-size:48px}
  .home-category-grid{grid-template-columns:1fr 1fr}
  .home-about-grid{grid-template-columns:1fr; gap:40px}
  .home-about-media{min-height:560px}
  .home-admin-grid{grid-template-columns:1fr}
  .home-footer-grid{grid-template-columns:1fr 1fr}
  .dashboard-grid{grid-template-columns:1fr 1fr}
  .product-modal-panel{grid-template-columns:1fr}
  .product-detail-layout{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .home-menu{display:none}
  .home-hero{min-height:620px}
  .maker-scene{display:none}
  .home-hero h1{font-size:40px}
  .home-hero-inner{padding-bottom:120px}
  .home-categories{margin-top:-90px}
  .home-category-grid{grid-template-columns:1fr}
  .home-category-card,.home-category-card.featured{min-height:210px}
  .home-about{padding:60px 0}
  .home-about-copy h2{font-size:32px}
  .home-about-main,.home-about-small,.home-experience{position:static; width:100%; margin-top:14px}
  .home-about-media{min-height:0}
  .home-footer-grid{grid-template-columns:1fr}
  .home-footer-bottom{flex-direction:column}
  .dashboard-grid{grid-template-columns:1fr}
}

/* SECREA creative studio refresh */
:root{
  --ink:#07111f;
  --ink-2:#101d32;
  --paper:#f7fbff;
  --paper-2:#edf4fb;
  --line:rgba(13,32,54,.12);
  --glass:rgba(255,255,255,.12);
  --glow-blue:rgba(23,121,186,.34);
  --glow-orange:rgba(244,116,0,.32);
  --glow-teal:rgba(61,183,173,.28);
}

body.home-page{
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(244,116,0,.12), transparent 60%),
    radial-gradient(900px 620px at 100% 10%, rgba(61,183,173,.16), transparent 58%),
    var(--paper);
  color:var(--ink);
}

.studio-hero{
  min-height:780px;
  isolation:isolate;
}
.studio-hero .home-hero-bg{
  background:
    linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.78) 42%, rgba(7,17,31,.28)),
    radial-gradient(650px 480px at 72% 42%, rgba(244,116,0,.38), transparent 58%),
    radial-gradient(760px 560px at 88% 12%, rgba(61,183,173,.28), transparent 62%),
    url("/assets/img/secrea/hero-maker-studio.svg") center / cover no-repeat;
}
.studio-noise{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.28;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(90deg, #000, transparent 82%);
}
.studio-hero .home-hero-inner{
  z-index:2;
  padding-top:126px;
}
.studio-hero .home-kicker,
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 16px;
  color:var(--brand-orange);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.studio-hero .home-kicker:before,
.eyebrow:before{
  content:"";
  width:34px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--brand-orange), var(--brand-teal));
}
.studio-hero .home-hero h1,
.studio-hero h1{
  max-width:850px;
  font-size:clamp(48px, 7vw, 92px);
  line-height:.95;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.studio-hero .home-lead{
  max-width:680px;
  color:rgba(255,255,255,.82);
  font-size:20px;
}
.studio-hero .btn{
  border-radius:999px;
  padding:15px 22px;
}
.studio-hero .btn-primary{
  background:linear-gradient(135deg, var(--brand-orange), #ffb13d);
  color:#111927;
}
.home-btn-light{
  color:#0d1a2b;
  box-shadow:0 18px 42px rgba(255,255,255,.18);
}
.hero-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hero-proof span{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
  backdrop-filter:blur(12px);
  font-weight:800;
}
.hero-proof strong{color:#fff; font-size:22px}
.studio-hero .maker-card{
  border-radius:28px;
  background:linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  box-shadow:0 28px 90px rgba(0,0,0,.36);
}

.section-heading{
  max-width:760px;
  margin-bottom:28px;
}
.section-heading h2,
.catalog-heading h2{
  margin:0;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.02;
  letter-spacing:-.03em;
  text-wrap:balance;
}
.section-heading p,
.catalog-heading p{
  margin:14px 0 0;
  color:#586779;
  font-size:17px;
}
.dark-on-light .eyebrow{color:var(--brand-violet)}

.studio-categories{
  margin-top:-116px;
  padding-bottom:72px;
}
.studio-categories .home-category-grid{
  gap:16px;
}
.studio-categories .home-category-card{
  min-height:270px;
  border-radius:26px;
  padding:28px;
  background:
    linear-gradient(160deg, rgba(51,40,122,.98), rgba(16,34,57,.98)),
    radial-gradient(220px 160px at 15% 10%, rgba(61,183,173,.22), transparent 65%);
  box-shadow:0 28px 70px rgba(12,30,50,.22);
  transform:translateY(0);
  transition:transform .18s ease, box-shadow .18s ease;
}
.studio-categories .home-category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 36px 86px rgba(12,30,50,.30);
}
.studio-categories .home-category-card.featured{
  min-height:330px;
  background:
    radial-gradient(300px 220px at 88% 18%, rgba(244,116,0,.32), transparent 62%),
    linear-gradient(155deg, var(--brand-blue), var(--brand-violet));
}
.studio-categories .home-line-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
}
.studio-categories .home-card-action{
  width:38px;
  height:38px;
  right:24px;
  bottom:24px;
}

.studio-showcase{
  padding:82px 0;
  background:
    radial-gradient(520px 360px at 85% 10%, rgba(61,183,173,.20), transparent 62%),
    linear-gradient(180deg, #fff, #eef5fb);
}
.studio-showcase-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:16px;
}
.showcase-panel{
  min-height:240px;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  background:#fff;
  box-shadow:0 22px 56px rgba(16,36,57,.10);
}
.showcase-big{
  grid-row:span 2;
  min-height:496px;
  color:#fff;
  background:
    radial-gradient(500px 340px at 18% 10%, rgba(244,116,0,.42), transparent 62%),
    radial-gradient(500px 340px at 85% 82%, rgba(61,183,173,.30), transparent 60%),
    linear-gradient(150deg, var(--ink), var(--brand-violet));
}
.showcase-panel span{
  display:inline-grid;
  place-items:center;
  min-width:48px;
  height:48px;
  padding:0 14px;
  border-radius:16px;
  background:rgba(244,116,0,.14);
  color:var(--brand-orange);
  font-weight:950;
}
.showcase-panel h2,
.showcase-panel h3{
  margin:52px 0 12px;
  font-size:clamp(24px, 3vw, 46px);
  line-height:1.03;
  letter-spacing:-.03em;
}
.showcase-panel h3{font-size:28px}
.showcase-panel p{margin:0; color:#5b6a7b; font-size:16px}
.showcase-big p{color:rgba(255,255,255,.76); font-size:18px}
.showcase-panel.orange span{background:rgba(244,116,0,.16)}
.showcase-panel.teal span{background:rgba(61,183,173,.16); color:#168d86}

.studio-about{
  background:var(--paper);
}
.studio-about .home-about-copy h2{
  margin-bottom:24px;
  max-width:560px;
  font-size:clamp(36px, 5vw, 64px);
  letter-spacing:-.04em;
}
.studio-about .home-about-copy h2:after{display:none}
.studio-about .home-about-main,
.studio-about .home-about-small{
  border:1px solid var(--line);
  box-shadow:0 24px 60px rgba(16,36,57,.14);
}
.studio-about .home-experience{
  border-radius:24px;
  box-shadow:0 24px 60px rgba(16,36,57,.18);
}
.studio-process{
  padding:88px 0 110px;
  background:#fff;
}
.studio-process .home-admin-grid{
  margin-top:18px;
}
.studio-process .home-admin-card{
  border-radius:26px;
  min-height:240px;
  background:
    linear-gradient(180deg, #fff, #f5f9fd);
  transition:transform .16s ease, border-color .16s ease;
}
.studio-process .home-admin-card:hover{
  transform:translateY(-5px);
  border-color:rgba(244,116,0,.38);
}

.catalog-page{
  background:
    radial-gradient(780px 520px at 12% 0%, rgba(244,116,0,.20), transparent 62%),
    radial-gradient(780px 520px at 90% 10%, rgba(61,183,173,.18), transparent 58%),
    linear-gradient(180deg, #081421, #102239 42%, #07111f);
}
.catalog-page .nav{
  background:rgba(7,17,31,.78);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.catalog-hero{
  padding:76px 0 34px;
  position:relative;
  overflow:hidden;
}
.catalog-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:42px 42px;
  pointer-events:none;
}
.catalog-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(280px, .85fr);
  gap:32px;
  align-items:center;
}
.catalog-hero h1{
  margin:18px 0;
  max-width:820px;
  font-size:clamp(44px, 6vw, 86px);
  line-height:.96;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.catalog-hero p{
  max-width:700px;
  color:rgba(234,242,255,.76);
  font-size:19px;
}
.catalog-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.catalog-hero-card{
  min-height:380px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:34px;
  padding:28px;
  background:
    radial-gradient(300px 260px at 70% 18%, var(--glow-orange), transparent 62%),
    radial-gradient(360px 300px at 10% 78%, var(--glow-teal), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  box-shadow:0 30px 90px rgba(0,0,0,.34);
  backdrop-filter:blur(18px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.catalog-hero-card strong{
  display:block;
  font-size:34px;
  line-height:1;
  letter-spacing:-.03em;
}
.catalog-orbit{
  position:relative;
  min-height:220px;
  margin-bottom:30px;
}
.catalog-orbit:before{
  content:"";
  position:absolute;
  inset:20px;
  border:1px dashed rgba(255,255,255,.28);
  border-radius:50%;
}
.catalog-orbit span{
  position:absolute;
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border-radius:24px;
  background:#fff;
  color:var(--ink);
  font-weight:950;
  box-shadow:0 18px 38px rgba(0,0,0,.24);
}
.catalog-orbit span:nth-child(1){left:50%; top:0; transform:translateX(-50%)}
.catalog-orbit span:nth-child(2){right:16px; top:50%; transform:translateY(-50%)}
.catalog-orbit span:nth-child(3){left:50%; bottom:0; transform:translateX(-50%)}
.catalog-orbit span:nth-child(4){left:16px; top:50%; transform:translateY(-50%)}

.catalog-section{
  padding-top:36px;
}
.catalog-heading{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:end;
  margin-bottom:18px;
}
.catalog-count-pill{
  flex:0 0 auto;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.08);
  font-weight:950;
}
.catalog-page .catalog-heading p{color:rgba(234,242,255,.68)}
.catalog-page .catalog-heading h2{color:#fff}
.catalog-page .public-catalog-tools{
  position:sticky;
  top:94px;
  z-index:10;
  padding:12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:rgba(7,17,31,.74);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}
.catalog-page .input{
  min-height:50px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
}
.catalog-page .products-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  margin-top:26px;
}
.catalog-page .product{
  position:relative;
  border-radius:30px;
  border-color:rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow:0 24px 70px rgba(0,0,0,.30);
  overflow:hidden;
}
.catalog-page .product:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(244,116,0,.14), transparent 34%, rgba(61,183,173,.10));
  opacity:0;
  transition:opacity .18s ease;
}
.catalog-page .product:hover{
  transform:translateY(-8px);
  border-color:rgba(244,116,0,.35);
  box-shadow:0 34px 95px rgba(0,0,0,.42);
}
.catalog-page .product:hover:before{opacity:1}
.catalog-page .product .img{
  margin:12px 12px 0;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, #ffffff, #eef5fb);
}
.catalog-page .product .img img.product-photo{
  padding:10px;
  object-fit:contain;
  background:linear-gradient(135deg, #fff, #f3f8fc);
}
.catalog-page .product .content{
  position:relative;
  padding:18px 18px 20px;
}
.catalog-page .product h3{
  font-size:21px;
  line-height:1.1;
  letter-spacing:-.02em;
}
.catalog-page .product p{
  min-height:56px;
  color:rgba(234,242,255,.66);
}
.catalog-page .product .row{
  gap:8px;
}
.catalog-page .product .row .btn{
  border-radius:999px;
  padding:10px 13px;
  font-size:13px;
}
.catalog-page .product .row .pill{
  padding:7px 10px;
  font-size:12px;
  background:rgba(255,255,255,.075);
}
.catalog-page .product .image-count{
  right:12px;
  bottom:12px;
  background:rgba(7,17,31,.78);
  backdrop-filter:blur(8px);
}
.catalog-service-strip .card{
  border-radius:28px;
}
.carousel-cards > *,
.product-carousel-card,
.carousel-header,
.carousel-header > div,
.carousel{
  min-width:0;
}
.product-carousel-card{
  overflow:hidden;
}
.carousel{
  max-width:100%;
}

@media (max-width: 980px){
  .studio-showcase-grid,
  .catalog-hero-grid{
    grid-template-columns:1fr;
  }
  .showcase-big{min-height:360px}
  .catalog-heading{
    align-items:flex-start;
    flex-direction:column;
  }
  .catalog-page .products-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .studio-hero{min-height:690px}
  .studio-hero .home-hero-inner{padding-top:102px}
  .hero-proof span{width:100%; justify-content:space-between}
  .studio-categories{margin-top:-70px}
  .studio-showcase{padding:54px 0}
  .studio-showcase-grid{grid-template-columns:1fr}
  .showcase-big{grid-row:auto; min-height:320px}
  .catalog-hero{padding-top:44px}
  .catalog-hero-card{min-height:320px}
  .catalog-page .products-grid{grid-template-columns:1fr}
  .catalog-page .public-catalog-tools{position:relative; top:auto}
}

/* Print-inspired homepage direction */
.print-inspired{
  background:#fff;
  color:#111827;
}
.print-inspired .home-nav{
  position:relative;
  z-index:50;
  background:#fff;
  border-bottom:1px solid #e9edf3;
  box-shadow:0 2px 16px rgba(16,24,40,.05);
}
.print-inspired .home-nav-inner{
  height:86px;
}
.print-inspired .home-nav .logo{
  width:250px;
  height:78px;
  background-color:#fff;
  border-radius:0;
  filter:none;
  padding:0;
}
.print-inspired .home-links{
  gap:30px;
}
.print-inspired .home-links a{
  color:#111827;
  text-shadow:none;
  font-size:13px;
}
.print-inspired .home-links a:hover{
  color:var(--brand-blue);
}
.home-social-mini{
  display:flex;
  align-items:center;
  gap:10px;
  color:#6b7280;
  font-size:12px;
  font-weight:800;
}
.home-social-mini a:not(.home-panel-login){
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#eef2f7;
  color:#111827;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.home-social-mini .social-icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.home-social-mini .social-icon.facebook{
  background:#1877f2;
  color:#fff;
}
.home-social-mini .social-icon.instagram{
  background:linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
  color:#fff;
}
.home-social-mini .social-icon.tiktok{
  background:#111827;
  color:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.18), -2px 0 0 #25f4ee, 2px 0 0 #fe2c55;
}
.home-social-mini .home-panel-login{
  width:auto;
  height:auto;
  padding:8px 14px;
  border-radius:999px;
  background:var(--brand-yellow);
  color:#111827;
  font-size:12px;
  box-shadow:0 10px 24px rgba(255,221,0,.25);
}
.home-social-mini a:not(.home-panel-login):hover{
  transform:translateY(-2px) scale(1.06);
  box-shadow:0 14px 28px rgba(15,23,42,.18);
  filter:saturate(1.12);
}
.print-category-bar{
  position:relative;
  z-index:40;
  min-height:38px;
  display:flex;
  justify-content:center;
  gap:0;
  background:#bb0062;
  box-shadow:0 8px 22px rgba(187,0,98,.18);
  overflow-x:auto;
}
.print-category-bar a{
  flex:0 0 auto;
  padding:11px 18px;
  color:#fff;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
.print-category-bar a:hover{
  background:rgba(255,255,255,.14);
}
.print-hero{
  position:relative;
  min-height:405px;
  overflow:hidden;
  background:#101820;
}
.print-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.62) 48%, rgba(0,0,0,.25)),
    radial-gradient(520px 320px at 80% 35%, rgba(61,183,173,.26), transparent 60%),
    url("/assets/img/secrea/hero-maker-studio.svg") center / cover no-repeat;
  filter:saturate(1.08) contrast(1.05);
}
.print-hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(360px, .95fr);
  align-items:center;
  min-height:405px;
  gap:36px;
}
.print-hero-copy{
  display:block;
  max-width:650px;
  padding:44px 0;
}
.print-hero-copy p{
  margin:0 0 8px;
  color:#f8e600;
  font-size:18px;
  font-weight:950;
}
.print-hero-copy h1{
  margin:0;
  color:#fff;
  font-size:clamp(42px, 5vw, 72px);
  line-height:.93;
  letter-spacing:-.035em;
  text-transform:uppercase;
}
.print-hero-copy h2{
  max-width:650px;
  margin:14px 0 24px;
  color:#fff;
  font-size:20px;
  line-height:1.35;
  font-weight:850;
  text-transform:uppercase;
}
.print-yellow-btn,
.print-outline-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 24px;
  border-radius:999px;
  font-weight:950;
  font-size:14px;
}
.print-yellow-btn{
  background:#f8e600;
  color:#111827;
  box-shadow:0 14px 28px rgba(248,230,0,.25);
}
.print-yellow-btn:hover{
  transform:translateY(-2px);
}
.print-outline-btn{
  border:2px solid #111827;
  color:#111827;
}
.print-hero-person{
  position:relative;
  align-self:stretch;
  display:flex;
  align-items:end;
  justify-content:center;
  overflow:hidden;
}
.hero-flyer-stage{
  position:absolute;
  inset:10px 0 0 0;
  pointer-events:none;
  z-index:0;
}
.hero-flyer-stage:before{
  content:"";
  position:absolute;
  inset:34px 10px 22px 36px;
  border-radius:34px;
  border:4px solid rgba(61,183,173,.34);
  background:
    linear-gradient(135deg, rgba(8,14,30,.86), rgba(15,23,42,.42)),
    radial-gradient(420px 220px at 70% 60%, rgba(248,230,0,.14), transparent 60%);
  box-shadow:0 30px 80px rgba(0,0,0,.22);
}
.hero-flyer-card{
  position:absolute;
  width:150px;
  height:104px;
  object-fit:cover;
  background:#fff;
  border:6px solid rgba(255,255,255,.92);
  border-radius:18px;
  box-shadow:0 24px 58px rgba(0,0,0,.32);
  opacity:.72;
  transform:translateY(8px) rotate(var(--flyer-rotate, 0deg)) scale(.94);
  transition:opacity .55s ease, transform .55s ease, filter .55s ease;
  filter:saturate(.92) contrast(.95);
}
.hero-flyer-card.is-visible{
  opacity:.88;
  transform:translateY(0) rotate(var(--flyer-rotate, 0deg)) scale(1);
}
.hero-flyer-card:nth-child(1){
  right:34px;
  top:42px;
  --flyer-rotate:6deg;
}
.hero-flyer-card:nth-child(2){
  left:22px;
  top:54px;
  --flyer-rotate:-8deg;
}
.hero-flyer-card:nth-child(3){
  right:42px;
  bottom:44px;
  --flyer-rotate:-5deg;
}
.hero-flyer-card:nth-child(4){
  left:34px;
  bottom:36px;
  --flyer-rotate:5deg;
}
.hero-flyer-main{
  position:absolute;
  left:50%;
  top:50%;
  width:min(330px, 70%);
  aspect-ratio:1.42 / 1;
  object-fit:cover;
  background:#fff;
  border:10px solid rgba(255,255,255,.96);
  border-radius:26px;
  box-shadow:0 34px 90px rgba(0,0,0,.40);
  opacity:0;
  transform:translate(-50%, -50%) rotate(-2deg) scale(.92);
  transition:opacity .65s ease, transform .65s ease;
  z-index:3;
}
.hero-flyer-main.is-visible{
  opacity:1;
  transform:translate(-50%, -50%) rotate(-2deg) scale(1);
}
.hero-flyer-caption{
  position:absolute;
  left:50%;
  bottom:22px;
  z-index:4;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  max-width:78%;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(17,24,39,.82);
  color:#fff;
  font-size:12px;
  font-weight:950;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
  opacity:0;
  transition:opacity .65s ease;
}
.hero-flyer-caption.is-visible{
  opacity:1;
}
.hero-flyer-caption span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#f8e600;
  box-shadow:0 0 0 5px rgba(248,230,0,.18);
}
.hero-product-stack{
  position:relative;
  z-index:1;
  width:min(520px, 100%);
  min-height:350px;
}
.hero-product-stack img{
  position:absolute;
  object-fit:cover;
  background:#fff;
  box-shadow:0 26px 60px rgba(0,0,0,.28);
}
.hero-product-stack img:nth-child(1){
  width:270px;
  height:270px;
  right:20px;
  bottom:24px;
  border-radius:50%;
  border:10px solid rgba(255,255,255,.92);
}
.hero-product-stack img:nth-child(2){
  width:210px;
  height:230px;
  left:20px;
  bottom:62px;
  border-radius:18px;
  transform:rotate(-5deg);
}
.hero-product-stack img:nth-child(3){
  width:180px;
  height:180px;
  left:150px;
  top:26px;
  border-radius:22px;
  transform:rotate(6deg);
}
.mini-ruler span:nth-child(1),
.title-bars span:nth-child(1){background:#ff2f83}
.mini-ruler span:nth-child(2),
.title-bars span:nth-child(2){background:#f8e600}
.mini-ruler span:nth-child(3),
.title-bars span:nth-child(3){background:#00b8e6}
.title-bars span:nth-child(4){background:#303030}

.seasonal-promo-section{
  position:relative;
  overflow:hidden;
  min-height:520px;
  background:#eaf6f8;
  color:#0f172a;
}
.seasonal-promo-section[hidden]{
  display:none;
}
.seasonal-promo-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(239,249,250,.96), rgba(239,249,250,.80) 45%, rgba(210,224,223,.72)),
    var(--seasonal-bg, url("/assets/img/secrea/product-flyers.svg")) center / cover no-repeat;
  filter:saturate(.92);
}
.seasonal-promo-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(620px 280px at 10% 100%, rgba(248,230,0,.28), transparent 60%),
    radial-gradient(540px 280px at 82% 36%, rgba(0,184,230,.18), transparent 60%);
}
.seasonal-promo-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 640px);
  align-items:center;
  gap:64px;
  min-height:520px;
  padding:58px 0;
}
.seasonal-kicker{
  display:block;
  max-width:620px;
  margin-bottom:30px;
  padding:14px 22px;
  border:1px solid rgba(255,143,15,.45);
  border-radius:999px;
  background:rgba(255,247,237,.80);
  color:#8a4500;
  font-size:20px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.seasonal-promo-copy h2{
  max-width:760px;
  margin:0;
  color:#0f172a;
  font-size:clamp(54px, 7vw, 96px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.seasonal-promo-copy p{
  max-width:760px;
  margin:28px 0 0;
  color:#52667a;
  font-size:23px;
  line-height:1.55;
}
.seasonal-promo-actions{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:44px;
}
.seasonal-promo-actions .print-yellow-btn{
  background:#ff8f0f;
  box-shadow:0 18px 38px rgba(255,143,15,.25);
}
.seasonal-promo-actions .print-outline-btn{
  background:#fff;
  border-color:#e2edf4;
  box-shadow:0 14px 32px rgba(16,24,40,.08);
}
.seasonal-promo-board{
  position:relative;
}
.seasonal-promo-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  padding:18px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 30px rgba(16,24,40,.10);
}
.seasonal-promo-top strong{
  color:#8a4500;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.seasonal-promo-top a{
  color:#005aa6;
  font-weight:950;
}
.seasonal-flyer-feature{
  position:relative;
  overflow:hidden;
  min-height:292px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 30px 80px rgba(16,24,40,.24);
}
.seasonal-flyer-feature img{
  width:100%;
  height:100%;
  min-height:292px;
  display:block;
  object-fit:cover;
}
.seasonal-flyer-feature:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:35%;
  background:linear-gradient(180deg, transparent, rgba(15,23,42,.78));
}
.seasonal-arrow{
  position:absolute;
  z-index:3;
  top:56%;
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#0f172a;
  box-shadow:0 12px 28px rgba(16,24,40,.16);
  font-size:30px;
  font-weight:900;
  cursor:pointer;
}
.seasonal-prev{left:-20px}
.seasonal-next{right:-20px}
.seasonal-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:18px;
}
.seasonal-dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:50%;
  background:rgba(15,23,42,.25);
  cursor:pointer;
}
.seasonal-dots button.is-active{
  width:28px;
  border-radius:999px;
  background:#ff8f0f;
}

.print-solutions,
.print-featured{
  background:#fff;
  padding:68px 0 26px;
}
.print-featured{
  padding-top:28px;
  padding-bottom:84px;
}
.print-section-title{
  max-width:620px;
  margin:0 auto 48px;
  text-align:center;
}
.print-section-title.compact{
  margin-bottom:34px;
}
.print-section-title h2{
  margin:0;
  color:#111827;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.print-section-title p{
  margin:18px auto 0;
  color:#6b7280;
  font-size:13px;
  line-height:1.65;
}
.title-bars{
  width:178px;
  height:6px;
  display:grid;
  grid-template-columns:1fr .9fr 1fr .9fr;
  gap:0;
  margin:16px auto 0;
}
.print-service-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:44px;
}
.print-service-card{
  display:block;
  text-align:center;
  color:#111827;
}
.print-service-card img{
  width:100%;
  aspect-ratio:1.28 / 1;
  object-fit:cover;
  background:#eef2f7;
  display:block;
  box-shadow:0 16px 35px rgba(17,24,39,.10);
  transition:transform .18s ease, box-shadow .18s ease;
}
.print-service-card:hover img,
.print-product-tile:hover img{
  transform:translateY(-5px);
  box-shadow:0 24px 52px rgba(17,24,39,.18);
}
.mini-ruler{
  height:7px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
}
.print-service-card h3{
  margin:16px 0 4px;
  font-size:24px;
  line-height:1;
}
.print-service-card p{
  margin:0;
  color:#6b7280;
  font-size:13px;
}
.print-product-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:28px 24px;
}
.print-product-tile{
  display:block;
  color:#111827;
  text-align:center;
}
.print-product-tile img{
  display:block;
  width:100%;
  aspect-ratio:1.18 / 1;
  object-fit:cover;
  background:#eef2f7;
  transition:transform .18s ease, box-shadow .18s ease;
}
.print-product-tile h3{
  margin:12px 0 0;
  color:#111827;
  font-size:22px;
  line-height:1.05;
}
.print-cta-row{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:42px;
}
.print-inspired .home-footer{
  background:#111827;
}

@media (max-width: 980px){
  .print-inspired .home-nav-inner{
    height:auto;
    padding:12px 0;
  }
  .home-social-mini{
    display:none;
  }
  .print-category-bar{
    justify-content:flex-start;
  }
  .print-hero-inner{
    grid-template-columns:1fr;
    gap:0;
  }
  .print-hero-copy{
    padding:42px 0 12px;
  }
  .print-hero-person{
    min-height:300px;
  }
  .print-service-grid{
    gap:24px;
  }
  .seasonal-promo-inner{
    grid-template-columns:1fr;
    gap:32px;
    min-height:auto;
  }
  .seasonal-promo-copy h2{
    font-size:clamp(44px, 12vw, 72px);
  }
  .seasonal-promo-board{
    max-width:680px;
  }
  .print-product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .print-inspired .home-nav .logo{
    width:190px;
    height:60px;
  }
  .print-hero{
    min-height:auto;
  }
  .print-hero-inner{
    min-height:auto;
  }
  .print-hero-copy h1{
    font-size:42px;
  }
  .print-hero-copy h2{
    font-size:15px;
  }
  .seasonal-promo-inner{
    padding:42px 0;
  }
  .seasonal-kicker{
    font-size:13px;
    margin-bottom:18px;
  }
  .seasonal-promo-copy p{
    font-size:17px;
  }
  .seasonal-arrow{
    display:none;
  }
  .hero-product-stack{
    min-height:260px;
  }
  .hero-product-stack img:nth-child(1){
    width:190px;
    height:190px;
    right:8px;
  }
  .hero-product-stack img:nth-child(2){
    width:155px;
    height:175px;
    left:0;
  }
  .hero-product-stack img:nth-child(3){
    width:130px;
    height:130px;
    left:124px;
    top:18px;
  }
  .print-solutions{
    padding-top:46px;
  }
  .print-service-grid,
  .print-product-grid{
    grid-template-columns:1fr;
  }
  .print-section-title h2{
    font-size:30px;
  }
}

/* Shared print system for every public panel/page */
.print-subpage{
  background:#fff;
  color:#111827;
}
.print-subpage .nav{
  position:sticky;
  top:0;
  z-index:60;
  background:#fff;
  border-bottom:1px solid #e9edf3;
  box-shadow:0 2px 16px rgba(16,24,40,.05);
}
.print-subpage .nav-inner{
  padding:10px 0;
}
.print-subpage .nav .logo,
.print-subpage .footer .logo{
  width:236px;
  height:74px;
  background-color:#fff;
  border-radius:0;
  padding:0;
}
.print-subpage .nav-links a,
.print-subpage .dropdown > button{
  color:#111827;
  text-shadow:none;
}
.print-subpage .nav-links a:hover,
.print-subpage .nav-links a.active,
.print-subpage .dropdown > button:hover{
  color:var(--brand-blue);
  background:#f1f5f9;
}
.print-subpage .caret{
  border-top-color:#111827;
}
.print-subpage .btn,
.print-subpage .btn-primary,
.print-subpage .btn-ghost{
  border-radius:999px;
  font-weight:950;
}
.print-subpage .btn-primary{
  background:#f8e600;
  color:#111827;
  box-shadow:0 12px 24px rgba(248,230,0,.24);
}
.print-subpage .btn-ghost{
  background:#fff;
  color:#111827;
  border:2px solid #e5e7eb;
}
.print-subpage .btn-ghost:hover{
  border-color:#111827;
  background:#fff;
}
.print-subpage .print-category-bar{
  position:sticky;
  top:83px;
}
.print-page-section{
  padding:62px 0 74px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(720px 380px at 8% 0%, rgba(255,47,131,.08), transparent 60%),
    radial-gradient(760px 380px at 92% 0%, rgba(0,184,230,.10), transparent 60%);
}
.print-subpage .section h2,
.print-subpage .section h1{
  color:#111827;
}
.print-subpage .section p{
  color:#667085;
}
.print-subpage .badge{
  background:#fff4c4;
  border-color:#f8e600;
  color:#111827;
}
.print-subpage .card,
.shop-panel-page .card{
  border:1px solid #e7edf4;
  border-radius:24px !important;
  background:#fff;
  color:#111827;
  box-shadow:0 18px 42px rgba(16,24,40,.08);
}
.print-subpage .card:hover{
  box-shadow:0 24px 58px rgba(16,24,40,.12);
}
.print-subpage .card h1,
.print-subpage .card h2,
.print-subpage .card h3{
  color:#111827;
}
.print-subpage .card p,
.print-subpage .mini,
.print-subpage .hint{
  color:#667085;
}
.print-subpage .icon{
  background:#111827;
  color:#fff;
  border-radius:16px;
}
.print-subpage .chip{
  color:#bb0062;
}
.print-subpage .input,
.print-subpage input,
.print-subpage select,
.print-subpage textarea{
  background:#f8fafc;
  color:#111827;
  border:2px solid #e5e7eb;
  border-radius:16px;
  caret-color:#111827;
  font-weight:700;
}
.print-subpage .input::placeholder,
.print-subpage input::placeholder,
.print-subpage textarea::placeholder{
  color:#64748b;
  opacity:1;
  font-weight:700;
}
.print-subpage .input::-webkit-input-placeholder,
.print-subpage input::-webkit-input-placeholder,
.print-subpage textarea::-webkit-input-placeholder{
  color:#64748b;
  opacity:1;
}
.print-subpage .input::-moz-placeholder,
.print-subpage input::-moz-placeholder,
.print-subpage textarea::-moz-placeholder{
  color:#64748b;
  opacity:1;
}
.print-subpage input:-webkit-autofill,
.print-subpage textarea:-webkit-autofill,
.print-subpage select:-webkit-autofill{
  -webkit-text-fill-color:#111827;
  box-shadow:0 0 0 1000px #f8fafc inset;
}
.print-subpage .input:focus,
.print-subpage input:focus,
.print-subpage select:focus,
.print-subpage textarea:focus{
  border-color:#00b8e6;
  box-shadow:0 0 0 4px rgba(0,184,230,.12);
}
.print-subpage .pill{
  background:#f8fafc;
  color:#334155;
  border-color:#e5e7eb;
}
.print-subpage .cta{
  background:
    radial-gradient(500px 260px at 12% 0%, rgba(255,47,131,.20), transparent 58%),
    radial-gradient(500px 260px at 88% 0%, rgba(0,184,230,.18), transparent 58%),
    #111827;
  border-radius:28px;
}
.print-subpage .cta h3,
.print-subpage .cta p{
  color:#fff;
}
.print-subpage .footer{
  background:#111827;
  color:#fff;
}
.print-subpage .footer a,
.print-subpage .footer p,
.print-subpage .footer .bottom{
  color:rgba(255,255,255,.76);
}

.catalog-page.print-subpage{
  background:#fff;
}
.catalog-page.print-subpage .catalog-hero{
  background:#111827;
}
.catalog-page.print-subpage .catalog-hero:before{
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
}
.catalog-page.print-subpage .catalog-hero-grid{
  min-height:360px;
}
.catalog-page.print-subpage .catalog-hero h1{
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 4px 24px rgba(0,0,0,.38);
  position:relative;
  z-index:1;
}
.catalog-page.print-subpage .catalog-hero-card{
  border-radius:18px;
  color:#fff;
}
.catalog-page.print-subpage .catalog-hero-card strong{
  color:#fff;
}
.catalog-page.print-subpage .catalog-hero-card p{
  color:rgba(255,255,255,.78);
}
.catalog-page.print-subpage .catalog-photo-card{
  position:relative;
  min-height:430px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(340px 220px at 85% 20%, rgba(248,230,0,.18), transparent 62%),
    radial-gradient(360px 260px at 18% 85%, rgba(0,184,230,.22), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
}
.catalog-photo-collage{
  position:relative;
  min-height:305px;
}
.catalog-photo-collage img{
  position:absolute;
  object-fit:cover;
  background:#fff;
  border:7px solid rgba(255,255,255,.92);
  box-shadow:0 22px 54px rgba(0,0,0,.30);
}
.catalog-photo-collage .catalog-photo-main{
  left:50%;
  top:22px;
  width:min(390px, 82%);
  height:240px;
  border-radius:24px;
  transform:translateX(-50%) rotate(-2deg);
  z-index:3;
}
.catalog-photo-collage img:nth-child(2){
  left:10px;
  bottom:2px;
  width:170px;
  height:190px;
  border-radius:18px;
  transform:rotate(-7deg);
  z-index:2;
}
.catalog-photo-collage img:nth-child(3){
  right:8px;
  bottom:12px;
  width:175px;
  height:175px;
  border-radius:50%;
  transform:rotate(5deg);
  z-index:4;
}
.catalog-photo-collage img:nth-child(4){
  right:72px;
  top:0;
  width:138px;
  height:138px;
  border-radius:22px;
  transform:rotate(8deg);
  z-index:1;
}
.catalog-social-panel{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  background:rgba(17,24,39,.72);
  backdrop-filter:blur(12px);
}
.catalog-social-panel span{
  color:#fff;
  font-weight:950;
}
.catalog-social-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.catalog-social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-size:12px;
  font-weight:950;
}
.catalog-social-links a:hover{
  background:#f8e600;
}
.catalog-page.print-subpage .catalog-section{
  background:#fff;
}
.catalog-page.print-subpage .catalog-heading h2{
  color:#111827;
}
.catalog-page.print-subpage .catalog-heading p{
  color:#667085;
}
.catalog-page.print-subpage .catalog-count-pill{
  background:#111827;
}
.catalog-page.print-subpage .public-catalog-tools{
  background:#fff;
  border-color:#e7edf4;
  box-shadow:0 18px 42px rgba(16,24,40,.08);
}
.catalog-page.print-subpage .products-grid{
  gap:28px 24px;
}
.catalog-page.print-subpage .product,
.shop-panel-page .product{
  border:0;
  border-radius:0;
  background:#fff;
  box-shadow:none;
  color:#111827;
}
.catalog-page.print-subpage .product:hover,
.shop-panel-page .product:hover{
  transform:translateY(-5px);
  box-shadow:none;
}
.catalog-page.print-subpage .product:before{
  display:none;
}
.catalog-page.print-subpage .product .img,
.shop-panel-page .product .img{
  margin:0;
  border-radius:0;
  border:0;
  aspect-ratio:1.18 / 1;
  box-shadow:0 16px 35px rgba(17,24,39,.10);
}
.catalog-page.print-subpage .product .img:before,
.shop-panel-page .product .img:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:7px;
  z-index:2;
  background:linear-gradient(90deg, #ff2f83 0 33%, #f8e600 33% 66%, #00b8e6 66%);
}
.catalog-page.print-subpage .product .img img.product-photo,
.shop-panel-page .product .img img.product-photo{
  padding:8px;
  background:#fff;
}
.catalog-page.print-subpage .product .content,
.shop-panel-page .product .content{
  padding:16px 6px 4px;
  text-align:center;
}
.catalog-page.print-subpage .product h3,
.shop-panel-page .product h3{
  color:#111827;
  font-size:22px;
}
.catalog-page.print-subpage .product p,
.shop-panel-page .product p{
  color:#667085;
  min-height:auto;
}
.catalog-page.print-subpage .product .row,
.shop-panel-page .product .row{
  justify-content:center;
}

.product-page .product-detail-layout{
  align-items:center;
  border:1px solid #e7edf4;
  border-radius:32px;
  padding:26px;
  background:#fff;
  box-shadow:0 24px 58px rgba(16,24,40,.10);
  overflow:hidden;
}
.product-page .product-detail-media,
.product-page .product-detail-content{
  min-width:0;
}
.product-page .product-detail-media img[data-main-product-img]{
  background:#fff;
  object-fit:contain;
  border-radius:0;
  border:0;
  box-shadow:0 16px 35px rgba(17,24,39,.10);
}
.product-page .detail-thumbs button{
  border:2px solid #e5e7eb;
  flex:0 0 auto;
}
.product-page .detail-thumbs{
  max-width:100%;
  overflow-x:auto;
  padding-bottom:8px;
}
.product-page .detail-thumbs img{
  object-fit:contain;
  background:#fff;
}
.product-page .product-detail-content h1{
  color:#111827;
  text-transform:uppercase;
  overflow-wrap:anywhere;
}
.product-page .product-detail-content p{
  color:#667085;
}

.shop-panel-page{
  background:#f8fafc;
}
.shop-panel-page .grid-2{
  align-items:stretch;
}
.shop-panel-page .card h1{
  font-size:clamp(36px, 5vw, 62px);
  line-height:.98;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.shop-panel-page #authSection,
.shop-panel-page #catalogSection,
.shop-panel-page #cartSection,
.shop-panel-page #ordersSection,
.shop-panel-page #profileSection,
.shop-panel-page #adminSection{
  background:#fff;
  border-top:1px solid #e7edf4;
}
.shop-panel-page .dashboard-card{
  background:#111827;
  border-radius:20px;
  border:0;
  box-shadow:0 16px 35px rgba(17,24,39,.12);
}
.shop-panel-page .dashboard-card strong{
  color:#f8e600;
}
.shop-panel-page .dashboard-card span{
  color:rgba(255,255,255,.76);
}
.shop-panel-page .table,
.shop-panel-page table{
  background:#fff;
  color:#111827;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 35px rgba(17,24,39,.08);
}
.shop-panel-page .table th,
.shop-panel-page table th{
  background:#bb0062;
  color:#fff;
}
.shop-panel-page .table td,
.shop-panel-page table td{
  border-color:#edf2f7;
  color:#334155;
}
.shop-panel-page .field label,
.shop-panel-page .product-card-preview h4,
.shop-panel-page .toggle-control,
.shop-panel-page .toggle-control span{
  color:#111827;
  font-weight:900;
}
.shop-panel-page .field small,
.shop-panel-page small.hint,
.shop-panel-page .hint,
.shop-panel-page .mini{
  color:#475569;
  font-weight:800;
}
.shop-panel-page input[type="file"]{
  color:#111827;
  background:#f8fafc;
}
.shop-panel-page input[type="checkbox"]{
  accent-color:#00b8e6;
}
.shop-panel-page #productForm .field{
  gap:10px;
}
.shop-panel-page #productForm .field label{
  display:block;
  font-size:15px;
  letter-spacing:.01em;
}
.shop-panel-page #productForm .field label:has(input[type="checkbox"]){
  display:flex;
  align-items:center;
  gap:10px;
}
.seasonal-flyers-card{
  margin:18px 0;
}
.seasonal-flyer-form{
  display:grid;
  grid-template-columns:minmax(180px, 1.2fr) minmax(220px, 1.2fr) 160px 160px 110px 150px;
  gap:14px;
  align-items:end;
  margin-top:18px;
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#f8fafc;
}
.seasonal-flyer-form .field{
  margin:0;
}
.seasonal-flyer-form .input{
  min-height:46px;
}
.seasonal-flyer-form-active{
  min-height:46px;
  padding-bottom:4px;
}
.flyer-form-message{
  grid-column:1 / -1;
  display:none;
  margin:0;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid transparent;
  background:#ecfdf5;
  color:#047857;
  font-size:14px;
  font-weight:900;
}
.flyer-form-message.err{
  display:block;
  border-color:#fecaca;
  background:#fef2f2;
  color:#b91c1c;
}
.flyer-form-message.ok{
  display:block;
  border-color:#a7f3d0;
  background:#ecfdf5;
  color:#047857;
}
.product-form-message{
  margin-top:14px;
}
.seasonal-flyers-list{
  display:grid;
  gap:18px;
  margin-top:22px;
}
.seasonal-flyers-head,
.seasonal-flyer-row{
  display:grid;
  grid-template-columns:230px minmax(180px, 1fr) 150px 190px 190px 130px;
  gap:22px;
  align-items:center;
}
.seasonal-flyers-head{
  color:#111827;
  font-weight:950;
  padding:0 2px;
}
.seasonal-flyer-row{
  padding:14px 0;
  border-top:1px solid #edf2f7;
}
.seasonal-flyer-preview{
  display:flex;
  align-items:center;
  gap:14px;
}
.seasonal-flyer-preview img{
  width:104px;
  height:72px;
  object-fit:cover;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 24px rgba(16,24,40,.10);
}
.seasonal-flyer-preview span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:74px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #fed7aa;
  background:#fff7ed;
  color:#92400e;
  font-weight:900;
}
.seasonal-flyer-name strong{
  display:block;
  color:#111827;
  font-size:20px;
  font-weight:950;
}
.seasonal-flyer-name span{
  display:block;
  margin-top:4px;
  color:#0f172a;
}
.seasonal-flyer-active{
  display:flex;
  align-items:center;
  gap:12px;
  color:#111827;
  font-weight:950;
}
.seasonal-flyer-active input{
  width:20px;
  height:20px;
}
.seasonal-flyer-row .input{
  min-height:48px;
}
@media (max-width: 1180px){
  .seasonal-flyer-form{
    grid-template-columns:1fr 1fr;
  }
  .seasonal-flyers-head{
    display:none;
  }
  .seasonal-flyer-row{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .seasonal-flyer-row .btn{
    justify-self:start;
  }
}
@media (max-width: 720px){
  .seasonal-flyer-form{
    grid-template-columns:1fr;
  }
  .seasonal-flyer-row{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .print-subpage .print-category-bar{
    top:73px;
    justify-content:flex-start;
  }
  .product-page .product-detail-layout{
    padding:18px;
    grid-template-columns:minmax(0, 1fr);
  }
}
@media (max-width: 640px){
  .print-subpage .nav .logo,
  .print-subpage .footer .logo{
    width:190px;
    height:60px;
  }
  .print-page-section{
    padding:42px 0 58px;
  }
  .print-subpage .print-category-bar{
    top:65px;
  }
}
