/* At-Tohfa Shop — Wireframe stylesheet (planning mockup, not the final WordPress theme) */
:root{
  --dark:#2e2e2e;
  --dark2:#3a3a3a;
  --teal:#2a8b96;
  --teal-dark:#1f6b75;
  --gold:#e8a33d;
  --white:#ffffff;
  --line:#4a4a4a;
  --muted:#b9b9b9;
  /* used by inline styles in page markup */
  --surface:#262626;
  --input-bg:#1c1c1c;
  --input-text:#eee;
  --heading:#fff;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Segoe UI', 'Noto Sans Bengali', Arial, sans-serif;
  background:#1f1f1f;
  color:#eaeaea;
  line-height:1.6;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:1180px;margin:0 auto;padding:0 20px;}

/* Wireframe note banner */
.note{
  background:#111;
  color:var(--gold);
  text-align:center;
  font-size:13px;
  padding:6px 10px;
  border-bottom:1px solid var(--line);
}

/* Header */
header.site{
  background:var(--dark);
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:10;
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.brand img{width:48px;height:48px;border-radius:50%;}
.brand .name{font-size:16px;font-weight:700;color:var(--gold);white-space:nowrap;line-height:1.25;}
.brand .name span{display:block;font-size:11px;font-weight:400;color:var(--muted);}
nav.main ul{list-style:none;display:flex;gap:15px;flex-wrap:nowrap;}
nav.main a{font-size:13px;font-weight:600;color:#eee;white-space:nowrap;}
nav.main a:hover{color:var(--gold);}
.top-actions{display:flex;gap:10px;align-items:center;flex-shrink:0;}

/* header cart icon (Elementor: "Menu Cart" widget) */
.head-btn{display:flex;}
.hb-ic{
  position:relative;width:40px;height:40px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:#eee;transition:background .2s,color .2s;
}
.hb-ic svg{width:21px;height:21px;}
.head-btn:hover .hb-ic{background:rgba(255,255,255,.08);color:var(--gold);}
.cart-count{
  position:absolute;top:3px;right:1px;min-width:17px;height:17px;padding:0 4px;border-radius:99px;
  display:flex;align-items:center;justify-content:center;
  background:var(--gold);color:#241a06;font-size:10.5px;font-weight:800;line-height:1;
}

/* header login button (Elementor: Button widget) */
.login-btn{
  display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 18px;border-radius:99px;
  background:var(--gold);color:#241a06;font-size:13.5px;font-weight:700;white-space:nowrap;
  box-shadow:0 4px 12px rgba(232,163,61,.25);transition:filter .2s,transform .2s;
}
.login-btn svg{width:16px;height:16px;flex-shrink:0;}
.login-btn:hover{filter:brightness(1.08);transform:translateY(-1px);}

/* Section helpers */
section{padding:46px 0;}
.section-title{text-align:center;margin-bottom:30px;}
.section-title h2{
  font-size:26px;color:var(--gold);
  position:relative;display:inline-block;padding-bottom:14px;
}
.section-title h2::after{
  content:"";position:absolute;left:50%;transform:translateX(-50%);bottom:0;
  width:64px;height:3px;border-radius:2px;
  background:linear-gradient(90deg,var(--teal),var(--gold));
}
.section-title p{color:var(--muted);font-size:14px;margin-top:6px;}
.block{
  border:1px dashed var(--line);
  background:#262626;
  border-radius:10px;
  padding:18px;
}

/* Hero */
.hero{
  background:linear-gradient(135deg,var(--dark2),var(--teal-dark));
  border-radius:14px;
  padding:60px 30px;
  text-align:center;
  margin-top:28px;
}
.hero h1{font-size:30px;color:#fff;margin-bottom:10px;}
.hero p{color:var(--muted);margin-bottom:20px;}
.btn{
  display:inline-block;
  background:var(--gold);
  color:#221a08;
  font-weight:700;
  padding:11px 26px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-size:14px;
}
.btn.outline{background:transparent;border:2px solid var(--gold);color:var(--gold);}
.btn.teal{background:var(--teal);color:#fff;}

/* Grids */
.grid{display:grid;gap:20px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

/* Product card */
.product-card{
  background:#262626;border:1px solid var(--line);border-radius:12px;overflow:hidden;
  position:relative;transition:transform .25s, border-color .25s, box-shadow .25s;
}
.product-card:hover{
  transform:translateY(-6px);border-color:var(--teal);
  box-shadow:0 16px 32px rgba(0,0,0,.45);
}
.product-card .img{
  height:300px;background:#efeae1;overflow:hidden;position:relative;
  display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:12px;
}
.product-card .img img{width:100%;height:100%;object-fit:cover;object-position:center 25%;transition:transform .3s;}
.product-card:hover .img img{transform:scale(1.05);}
.product-card .img.cat-img{height:200px;}

/* Image blocks */
.gallery-main{padding:0;overflow:hidden;}
.gallery-main img{width:100%;height:420px;object-fit:cover;}
.thumb{padding:0;overflow:hidden;cursor:pointer;}
.thumb img{width:100%;height:80px;object-fit:cover;}
.thumb:hover{border-color:var(--gold);}
.photo{padding:0;overflow:hidden;}
.photo img{width:100%;display:block;}
.cart-thumb{width:54px;height:54px;object-fit:cover;border-radius:6px;background:#efeae1;}
.product-card .info{padding:12px;}
.product-card .cat{font-size:11px;color:var(--teal);text-transform:uppercase;}
.product-card .title{font-size:14px;font-weight:600;margin:4px 0;}
.product-card .price{color:var(--gold);font-weight:700;}
.product-card .price del{color:var(--muted);font-weight:400;margin-right:6px;}

/* Icon feature box */
.feature{
  text-align:center;padding:16px;background:#262626;border-radius:10px;border:1px solid var(--line);
}
.feature .ic{
  width:46px;height:46px;border-radius:50%;background:var(--teal);
  display:flex;align-items:center;justify-content:center;margin:0 auto 10px;font-size:20px;
}
.feature h4{font-size:14px;margin-bottom:6px;color:#fff;}
.feature p{font-size:12px;color:var(--muted);}

/* Breadcrumb / page header */
.page-head{
  background:var(--dark2);
  padding:30px 0;
  border-bottom:1px solid var(--line);
  text-align:center;
}
.page-head h1{color:var(--gold);font-size:26px;}
.page-head .crumb{color:var(--muted);font-size:13px;margin-top:6px;}

/* Sidebar layout */
.layout-side{display:grid;grid-template-columns:250px 1fr;gap:26px;}
.sidebar .block{margin-bottom:16px;}
.sidebar h4{font-size:14px;color:var(--gold);margin-bottom:10px;}
.filter-row{font-size:13px;color:var(--muted);padding:4px 0;border-bottom:1px solid var(--line);}

/* Forms */
.form-row{margin-bottom:14px;}
.form-row label{display:block;font-size:13px;color:var(--muted);margin-bottom:5px;}
.form-row input, .form-row textarea, .form-row select{
  width:100%;padding:10px 12px;border-radius:6px;border:1px solid var(--line);
  background:#1c1c1c;color:#eee;font-size:13px;
}

/* Table (cart) */
table.cart-table{width:100%;border-collapse:collapse;}
table.cart-table th, table.cart-table td{
  padding:12px 10px;border-bottom:1px solid var(--line);font-size:13px;text-align:left;
}
table.cart-table th{color:var(--gold);}

/* Tabs */
.tabs{display:flex;gap:10px;border-bottom:1px solid var(--line);margin-bottom:16px;flex-wrap:wrap;}
.tabs span{padding:8px 14px;font-size:13px;border-bottom:2px solid transparent;color:var(--muted);}
.tabs span.active{color:var(--gold);border-color:var(--gold);}

/* Accordion (FAQ) */
.accordion-item{background:#262626;border:1px solid var(--line);border-radius:8px;margin-bottom:10px;padding:14px 16px;}
.accordion-item .q{font-weight:600;color:#fff;font-size:14px;display:flex;justify-content:space-between;}
.accordion-item .a{font-size:13px;color:var(--muted);margin-top:8px;}

/* Footer */
footer.site{
  background:var(--dark);border-top:1px solid var(--line);margin-top:40px;padding:40px 0 16px;
}
.foot-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.25fr;gap:26px;}
.foot-grid h4{color:var(--gold);font-size:14px;margin-bottom:12px;}
.foot-grid p, .foot-grid a{font-size:13px;color:var(--muted);display:block;margin-bottom:8px;}
.foot-bottom{text-align:center;padding-top:20px;margin-top:20px;border-top:1px solid var(--line);font-size:12px;color:var(--muted);}

/* ============ Homepage ============ */

/* announcement strip */
.topstrip{
  background:linear-gradient(90deg,var(--teal-dark),var(--teal));
  color:#fff;font-size:12.5px;text-align:center;padding:9px 14px;
}
.topstrip b{color:#ffe1a8;}

/* hero */
.hero-split{
  display:grid;grid-template-columns:1.05fr .95fr;align-items:stretch;
  background:radial-gradient(900px 360px at 8% 0%,rgba(42,139,150,.32),transparent 62%),
             linear-gradient(135deg,#2c2c2c,#1b1b1b);
  border:1px solid var(--line);border-radius:18px;overflow:hidden;margin-top:26px;
}
.hero-copy{padding:56px 46px;}
.eyebrow{
  display:inline-block;font-size:11.5px;font-weight:700;letter-spacing:1.6px;
  text-transform:uppercase;color:var(--gold);
  background:rgba(232,163,61,.12);border:1px solid rgba(232,163,61,.38);
  padding:6px 14px;border-radius:99px;margin-bottom:18px;
}
.hero-copy :is(h1,h2){font-size:38px;line-height:1.3;color:#fff;margin-bottom:14px;}
.hero-copy :is(h1,h2) em{color:var(--gold);font-style:normal;}
.hero-copy .lead{color:#c8c8c8;font-size:15px;margin-bottom:26px;max-width:450px;}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:30px;}
.hero-trust{display:flex;gap:30px;flex-wrap:wrap;border-top:1px solid var(--line);padding-top:20px;}
.hero-trust div{font-size:12px;color:var(--muted);}
.hero-trust b{display:block;color:#fff;font-size:13.5px;margin-bottom:2px;}
.hero-art{position:relative;min-height:470px;overflow:hidden;}
.hero-art img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;object-position:center 15%;
}
.hero-art::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#1e1e1e 0%,rgba(30,30,30,.55) 32%,transparent 72%);
}


/* hero slider — slides are stacked .hero-split panels, one visible at a time */
.hero-slider{position:relative;display:grid;margin-top:26px;border-radius:18px;--art-h:470px;}
.hero-slider .hero-slide{
  grid-area:1/1;margin-top:0;
  opacity:0;visibility:hidden;
  transition:opacity .7s ease,visibility 0s linear .7s;
}
.hero-slider .hero-slide.is-active{opacity:1;visibility:visible;transition:opacity .7s ease;z-index:1;}
.hero-slide .hero-art img{transform:scale(1.08);transition:transform 6.5s ease-out;}
.hero-slide.is-active .hero-art img{transform:scale(1);}
.hero-slide .hero-copy > *{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease;}
.hero-slide.is-active .hero-copy > *{opacity:1;transform:none;}
.hero-slide.is-active .hero-copy > :nth-child(2){transition-delay:.1s;}
.hero-slide.is-active .hero-copy > :nth-child(3){transition-delay:.2s;}
.hero-slide.is-active .hero-copy > :nth-child(4){transition-delay:.3s;}
.hero-slide.is-active .hero-copy > :nth-child(5){transition-delay:.4s;}
.hero-coupon{
  color:var(--gold);border:1px dashed var(--gold);border-radius:6px;
  padding:1px 8px;letter-spacing:1px;white-space:nowrap;
}

.hero-nav{
  position:absolute;z-index:2;right:22px;bottom:22px;
  display:flex;align-items:center;gap:10px;
  background:rgba(20,20,20,.55);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12);border-radius:99px;padding:5px;
}
.hero-arrow{
  width:34px;height:34px;border-radius:50%;border:0;cursor:pointer;
  display:grid;place-items:center;background:rgba(255,255,255,.1);color:#fff;
  transition:background .2s,color .2s;
}
.hero-arrow svg{width:18px;height:18px;}
.hero-arrow:hover{background:var(--gold);color:#1f1f1f;}
.hero-dots{display:flex;gap:7px;}
.hero-dots button{
  position:relative;overflow:hidden;
  width:8px;height:8px;border-radius:99px;border:0;padding:0;cursor:pointer;
  background:rgba(255,255,255,.4);transition:width .3s,background .3s;
}
.hero-dots button.is-active{width:30px;background:rgba(255,255,255,.28);}
/* autoplay progress fill inside the active dot */
.hero-dots button.is-active::after{
  content:"";position:absolute;inset:0;background:var(--gold);border-radius:inherit;
  transform-origin:left;animation:heroProgress var(--hero-delay,6s) linear forwards;
}
.hero-slider.is-paused .hero-dots button.is-active::after{animation-play-state:paused;}
@keyframes heroProgress{from{transform:scaleX(0);}to{transform:scaleX(1);}}
.hero-arrow:focus-visible,.hero-dots button:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}

@media(max-width:1024px){
  .hero-slider{--art-h:360px;}
  .hero-slider .hero-art{min-height:var(--art-h);}
  /* sit the controls on the bottom edge of the photo, which is on top here */
  .hero-nav{bottom:auto;top:calc(var(--art-h) - 58px);right:16px;}
}
@media(max-width:767px){
  .hero-slider{--art-h:280px;margin-top:16px;border-radius:14px;}
  .hero-nav{top:calc(var(--art-h) - 52px);right:12px;gap:8px;padding:4px;}
  .hero-arrow{width:30px;height:30px;}
}
@media(prefers-reduced-motion:reduce){
  .hero-slider .hero-slide,.hero-slide .hero-art img,.hero-slide .hero-copy > *{transition:none;transform:none;}
  .hero-dots button.is-active::after{animation:none;transform:scaleX(1);}
}
[data-theme="light"] .hero-coupon{color:var(--gold-text);border-color:var(--gold-text);}
/* category tiles */
.cat-tile{
  position:relative;display:block;height:320px;overflow:hidden;
  border:1px solid var(--line);border-radius:14px;
}
.cat-tile img{width:100%;height:100%;object-fit:cover;object-position:center 18%;transition:transform .55s;}
.cat-tile:hover img{transform:scale(1.07);}
.cat-tile .ov{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(12,12,12,.93) 0%,rgba(12,12,12,.3) 52%,transparent 100%);
}
.cat-tile .tx{position:absolute;left:22px;right:22px;bottom:20px;}
.cat-tile h3{color:#fff;font-size:21px;margin-bottom:4px;}
.cat-tile .go{color:var(--gold);font-size:13px;font-weight:600;}
.cat-tile.soon .go{color:var(--muted);}

/* product badges + quick add */
.badge{
  position:absolute;top:12px;left:12px;z-index:2;
  font-size:11px;font-weight:700;padding:5px 11px;border-radius:99px;
  background:var(--teal);color:#fff;
}
.badge.gold{background:var(--gold);color:#241a06;}
.badge.red{background:#c0392b;}
.quick{
  position:absolute;left:12px;right:12px;bottom:12px;z-index:2;
  opacity:0;transform:translateY(12px);transition:.25s;
}
.product-card:hover .quick{opacity:1;transform:none;}
.quick .btn{width:100%;padding:10px;font-size:13px;}

/* USP band */
.usp{background:linear-gradient(180deg,#252525,#1e1e1e);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.feature{transition:transform .25s,border-color .25s;}
.feature:hover{transform:translateY(-4px);border-color:var(--teal);}

/* offer band */
.offer{
  position:relative;overflow:hidden;text-align:center;padding:44px 30px;
  background:linear-gradient(120deg,var(--teal-dark),#2a2a2a 62%);
  border:1px solid var(--teal);border-radius:16px;
}
.offer::before{
  content:"";position:absolute;width:300px;height:300px;border-radius:50%;
  background:rgba(232,163,61,.12);top:-130px;right:-70px;
}
.offer h2{color:#fff;font-size:26px;margin-bottom:10px;position:relative;}
.offer p{color:#cfcfcf;margin-bottom:22px;position:relative;}
.coupon{
  display:inline-block;border:2px dashed var(--gold);color:var(--gold);
  font-weight:800;letter-spacing:2px;padding:7px 18px;border-radius:8px;margin-left:6px;
}

/* review card */
.review{
  background:#262626;border:1px solid var(--line);border-radius:14px;padding:24px;
  position:relative;transition:border-color .25s;
}
.review:hover{border-color:var(--teal);}
.review::before{
  content:"\201C";position:absolute;top:0;right:18px;font-size:76px;line-height:1;
  color:rgba(232,163,61,.16);font-family:Georgia,serif;
}
.stars{color:var(--gold);letter-spacing:3px;font-size:15px;}
.review p.txt{font-size:13.5px;color:#cfcfcf;margin:12px 0 18px;position:relative;}
.who{display:flex;gap:11px;align-items:center;border-top:1px solid var(--line);padding-top:14px;}
.who img{width:40px;height:40px;border-radius:50%;}
.who b{display:block;color:#fff;font-size:13.5px;}
.who span{color:var(--muted);font-size:11.5px;}

/* newsletter */
.news{
  background:linear-gradient(135deg,#282828,#1e1e1e);
  border:1px solid var(--line);border-radius:16px;padding:34px;
}
.news h3{color:var(--gold);font-size:19px;margin-bottom:8px;}
.news p{color:var(--muted);font-size:13.5px;margin-bottom:18px;}
.news .row{display:flex;gap:10px;flex-wrap:wrap;}
.news input{
  flex:1;min-width:190px;padding:12px 14px;border-radius:8px;
  border:1px solid var(--line);background:#161616;color:#eee;font-size:13.5px;
}

/* buttons */
.btn{transition:transform .2s,filter .2s;}
.btn:hover{transform:translateY(-2px);filter:brightness(1.08);}

/* ============ Social icons & contact info ============ */
/* Elementor: "Social Icons" widget + "Icon List" widget */

.social-icons{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.social-icon{
  width:38px;height:38px;flex-shrink:0;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:#383838;border:1px solid var(--line);color:#e6e6e6;
  transition:background .2s,border-color .2s,color .2s,transform .2s;
}
.social-icon svg{width:17px;height:17px;display:block;}
.foot-grid .social-icons a{display:inline-flex;margin:0;color:#e6e6e6;}
a.social-icon:hover{transform:translateY(-3px);color:#fff;}
a.social-icon.facebook:hover, .social-row.facebook:hover .social-icon{background:#1877f2;border-color:#1877f2;color:#fff;}
a.social-icon.instagram:hover, .social-row.instagram:hover .social-icon{background:linear-gradient(45deg,#f09433,#dc2743 50%,#bc1888);border-color:#dc2743;color:#fff;}
a.social-icon.youtube:hover, .social-row.youtube:hover .social-icon{background:#ff0000;border-color:#ff0000;color:#fff;}
a.social-icon.whatsapp:hover, .social-row.whatsapp:hover .social-icon{background:#25d366;border-color:#25d366;color:#fff;}

/* footer contact list */
.contact-list{list-style:none;}
.contact-list li{display:flex;align-items:center;gap:10px;margin-bottom:11px;font-size:13px;color:var(--muted);line-height:1.5;}
.foot-grid .contact-list a, .foot-grid .contact-list span{display:inline;margin:0;color:var(--muted);}
.foot-grid .contact-list a:hover{color:var(--gold);}
.contact-list .ci{
  width:32px;height:32px;flex-shrink:0;border-radius:9px;
  display:inline-flex !important;align-items:center;justify-content:center;
  background:var(--teal);color:#fff !important;
  box-shadow:0 3px 8px rgba(42,139,150,.3);
}
.contact-list .ci svg{width:16px;height:16px;}
.contact-list li > a, .contact-list li > span:last-child{word-break:break-word;}

/* payment badges */
.foot-grid p.pay-title{font-size:11.5px;letter-spacing:.4px;color:#8f8f8f;margin:16px 0 8px;}
.pay-badges{display:flex;gap:6px;flex-wrap:wrap;}
.pay{
  display:inline-flex;align-items:center;gap:7px;
  height:32px;padding:0 9px 0 4px;border-radius:8px;gap:6px;
  background:#fff;font-weight:800;font-size:13px;line-height:1;font-family:Arial,sans-serif;
  box-shadow:0 2px 6px rgba(0,0,0,.3);
}
.pay-ic{
  width:23px;height:23px;border-radius:6px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;color:#fff;
}
.pay-ic svg{width:15px;height:15px;}
.pay.bkash{color:#e2136e;}
.pay.bkash .pay-ic{background:#e2136e;}
.pay.nagad{color:#ec1c24;font-family:inherit;font-size:14px;}
.pay.nagad .pay-ic{background:linear-gradient(135deg,#f7941d,#ec1c24);}
.pay.card{color:#1a3c8f;}
.pay.card .pay-ic{background:linear-gradient(135deg,#1a3c8f,#2f6fd6);}

/* contact page: info cards */
.feature .ic{color:#fff;}
.feature .ic svg{width:22px;height:22px;color:#fff;}
.contact-card{padding:24px 18px;}
.contact-card .ic{width:54px;height:54px;margin-bottom:14px;box-shadow:0 0 0 6px rgba(42,139,150,.15);}
.contact-card h4{font-size:15px;}
.contact-card p{font-size:13px;line-height:1.7;}
.contact-card p a{color:var(--gold);font-weight:600;}
.contact-card p a:hover{text-decoration:underline;}

/* contact page: social list */
.social-block h4{color:var(--gold);margin-bottom:12px;}
.social-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;}
.social-row{
  display:flex;align-items:center;gap:11px;padding:10px 12px;
  background:#1f1f1f;border:1px solid var(--line);border-radius:10px;
  transition:border-color .2s,transform .2s;min-width:0;
}
.social-row:hover{border-color:var(--teal);transform:translateY(-2px);}
.social-row b{display:block;font-size:13.5px;color:#fff;line-height:1.3;}
.social-row small{display:block;font-size:11.5px;color:var(--muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.social-row > span:last-child{min-width:0;}
.social-row .social-icon{border:none;color:#fff;}
.social-row.facebook .social-icon{background:#1877f2;}
.social-row.instagram .social-icon{background:linear-gradient(45deg,#f09433,#dc2743 50%,#bc1888);}
.social-row.youtube .social-icon{background:#ff0000;}
.social-row.whatsapp .social-icon{background:#25d366;}

/* ============ Size chart (homepage) ============ */
/* Elementor: Heading + Image + HTML widget (or a Table widget) */

/* title with a line on both sides */
.line-title{
  display:flex;align-items:center;gap:18px;
  font-size:22px;color:#fff;text-align:center;margin-bottom:30px;
}
.line-title::before, .line-title::after{content:"";flex:1;height:2px;background:linear-gradient(90deg,transparent,var(--gold));}
.line-title::after{background:linear-gradient(90deg,var(--gold),transparent);}

.size-card{
  max-width:980px;margin:0 auto;padding:26px 26px 22px;
  background:linear-gradient(160deg,#343434,#282828);
  border:1px solid var(--line);border-radius:26px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.size-card-head{display:flex;align-items:center;gap:22px;margin-bottom:20px;}
.size-card-head img{width:64px;height:64px;border-radius:50%;border:2px solid var(--gold);flex-shrink:0;}
.size-card-head h3{flex:1;text-align:center;font-size:30px;font-weight:800;color:#fff;font-family:Arial,sans-serif;}
.size-card-head h3 span{color:var(--gold);}

.size-table-wrap{margin:-10px;}   /* cancels the outer border-spacing */
.size-table{
  width:100%;border-collapse:separate;border-spacing:10px;
  font-family:Arial,sans-serif;table-layout:fixed;
}
.size-table th, .size-table td{
  height:58px;padding:0 10px;border-radius:14px;text-align:center;vertical-align:middle;
}
.size-table thead th{background:#141414;color:#fff;font-size:20px;font-weight:800;letter-spacing:.5px;}
.size-table thead th:first-child{background:var(--gold);color:#241a06;}
.size-table tbody th{background:#141414;color:#fff;font-size:16px;font-weight:700;width:26%;}
.size-table td{
  background:#fff;color:#1a1a1a;font-size:20px;font-weight:700;
  box-shadow:inset 0 0 0 2px #1a1a1a, inset 0 0 0 4px #fff, inset 0 0 0 5px #bdbdbd;
}
.size-table tbody tr:hover td{background:#fff6e6;}
.size-note{margin-top:18px;text-align:center;font-size:13px;color:var(--muted);}

/* ============ Components used by responsive layout ============ */

/* mobile menu button (hidden on desktop) */
.menu-toggle{
  display:none;width:40px;height:40px;padding:12px 10px;border-radius:50%;
  background:transparent;border:none;cursor:pointer;
  flex-direction:column;justify-content:space-between;
}
.menu-toggle:hover{background:rgba(255,255,255,.08);}
.menu-toggle span{display:block;height:2px;border-radius:2px;background:#eee;transition:transform .25s,opacity .25s;}
header.site.nav-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
header.site.nav-open .menu-toggle span:nth-child(2){opacity:0;}
header.site.nav-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* cart / checkout: content + order summary */
.layout-summary{grid-template-columns:1fr 330px;}
.prod-cell{display:flex;gap:12px;align-items:center;}
.coupon-row{display:flex;gap:10px;align-items:center;}
.coupon-row input{flex:1;min-width:0;}

/* shop toolbar (result count + sorting) */
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:18px;}

/* single product buttons */
.product-actions{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0;}

/* ============ Responsive ============
   Breakpoints match Elementor defaults:
   tablet ≤1024px · mobile ≤767px (+ small phones ≤480px) */

@media(max-width:1180px){
  nav.main ul{gap:12px;}
  nav.main a{font-size:12.5px;}
}

/* ---------- Tablet ---------- */
@media(max-width:1024px){
  /* header: hamburger menu */
  .topbar{position:relative;gap:12px;}
  .menu-toggle{display:flex;}
  nav.main{
    display:none;position:absolute;left:0;right:0;top:100%;
    background:var(--dark);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
    box-shadow:0 14px 28px rgba(0,0,0,.45);
    max-height:calc(100vh - 80px);overflow-y:auto;
  }
  header.site.nav-open nav.main{display:block;}
  nav.main ul{flex-direction:column;gap:0;padding:6px 20px 12px;}
  nav.main li{border-bottom:1px solid var(--line);}
  nav.main li:last-child{border-bottom:none;}
  nav.main a{display:block;padding:12px 4px;font-size:14px;}
  .top-actions{margin-left:auto;}

  /* hero */
  .hero-split{grid-template-columns:1fr;}
  .hero-copy{padding:38px 30px;}
  .hero-copy :is(h1,h2){font-size:30px;}
  .hero-copy .lead{max-width:none;}
  .hero-art{min-height:360px;order:-1;}
  .hero-art::after{background:linear-gradient(to top,rgba(28,28,28,.9),transparent 55%);}

  /* grids */
  .grid-4{grid-template-columns:repeat(3,1fr);}
  .product-card .img{height:260px;}
  .cat-tile{height:270px;}

  /* sidebars stack */
  .layout-side, .layout-summary{grid-template-columns:1fr;}
  .sidebar{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
  .sidebar .block{margin-bottom:0;}

  /* product page */
  .gallery-main img{height:380px;}

  .foot-grid{grid-template-columns:repeat(2,1fr);}
  section{padding:38px 0;}
}

/* ---------- Mobile ---------- */
@media(max-width:767px){
  .wrap{padding:0 16px;}
  nav.main ul{padding:6px 16px 12px;}
  .topstrip{font-size:11.5px;padding:7px 10px;line-height:1.5;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .topstrip .ts-extra{display:none;}
  .brand img{width:40px;height:40px;}
  .brand .name{font-size:14px;}

  section{padding:32px 0;}
  .section-title{margin-bottom:22px;}
  .section-title h2{font-size:21px;}
  .page-head{padding:24px 0;}
  .page-head h1{font-size:21px;}

  .hero-split{margin-top:16px;border-radius:14px;}
  .hero-copy{padding:26px 20px;}
  .hero-copy :is(h1,h2){font-size:24px;}
  .hero-copy .lead{font-size:14px;}
  .hero-art{min-height:280px;}
  .hero-trust{gap:16px;}

  .grid{gap:14px;}
  .grid-2, .grid-3{grid-template-columns:1fr;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .product-card .img{height:220px;}
  .product-card .info{padding:10px;}
  .product-card .title{font-size:13px;}
  .quick{opacity:1;transform:none;left:8px;right:8px;bottom:8px;}  /* no hover on touch */
  .quick .btn{padding:8px;font-size:12px;}
  .badge{top:8px;left:8px;font-size:10px;padding:4px 9px;}
  .cat-tile{height:220px;}
  .cat-tile h3{font-size:18px;}

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

  .offer{padding:32px 18px;}
  .offer h2{font-size:21px;}
  .coupon{display:inline-block;margin:8px 0 0;}
  .news{padding:24px 18px;}
  .news .row{flex-direction:column;}
  .news .row .btn{text-align:center;}
  .review{padding:20px;}

  /* product page */
  .gallery-main img{height:auto;aspect-ratio:4/5;}
  .product-card .img.cat-img{height:160px;}
  .thumb img{height:64px;}
  .gallery-main + .grid-4{grid-template-columns:repeat(4,1fr);gap:8px;}
  .product-actions .btn{flex:1 1 100%;text-align:center;}

  /* tables → stacked cards (same pattern as WooCommerce "shop_table_responsive") */
  table.cart-table.responsive thead{display:none;}
  table.cart-table.responsive tr{display:block;border-bottom:1px solid var(--line);padding:6px 0;}
  table.cart-table.responsive tr:last-child{border-bottom:none;}
  table.cart-table.responsive td{
    display:flex;justify-content:space-between;align-items:center;gap:12px;
    border:none;padding:6px 2px;text-align:right;
  }
  table.cart-table.responsive td[data-title]::before{
    content:attr(data-title);color:var(--muted);font-size:12px;text-align:left;
  }
  table.cart-table.responsive td.product-name{display:block;text-align:left;}
  table.cart-table.responsive td.product-name::before{display:none;}
  table.cart-table.responsive td.remove, table.cart-table.responsive td.actions{justify-content:flex-end;}
  .coupon-row{flex-wrap:wrap;}
  .coupon-row .btn{flex:1 1 100%;}

  .shop-toolbar select{width:100%;}
  .tabs{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;}
  .tabs span{white-space:nowrap;}

  .foot-grid{grid-template-columns:1fr;gap:20px;}
  footer.site{padding:30px 0 14px;}
}

/* ---------- Small phones ---------- */
@media(max-width:480px){
  .topstrip .ts-label{display:none;}
  .top-actions{gap:6px;}
  .login-btn{padding:0 14px;font-size:13px;}
  .social-list{grid-template-columns:1fr;}
  .brand .name span{display:none;}
  .product-card .img{height:190px;}
  .hero-copy :is(h1,h2){font-size:22px;}
  .btn{padding:10px 20px;}
  .hero-cta .btn{flex:1;text-align:center;padding:10px 12px;white-space:nowrap;}
}

/* button with leading icon */
.btn-icon{display:inline-flex;align-items:center;justify-content:center;gap:8px;}
.btn-icon svg{width:16px;height:16px;flex-shrink:0;}

/* very small phones: keep announcement bar on one line */
@media(max-width:360px){
  .topstrip{font-size:10.5px;padding:7px 6px;}
  .topstrip .ts-ic{display:none;}
  .brand{gap:8px;}
  .brand img{width:34px;height:34px;}
  .brand .name{font-size:12.5px;}
  .top-actions{gap:4px;}
}

/* narrow phones: login button becomes icon only */
@media(max-width:400px){
  .login-btn{width:38px;padding:0;justify-content:center;}
  .login-btn span{display:none;}
}

/* size chart: tablet & mobile */
@media(max-width:1024px){
  .size-card-head h3{font-size:26px;}
  .size-table thead th, .size-table td{font-size:18px;}
  .size-table tbody th{font-size:15px;}
}
@media(max-width:767px){
  .line-title{font-size:16px;gap:10px;margin-bottom:20px;}
  .size-card{padding:16px 12px 14px;border-radius:18px;}
  .size-card-head{gap:12px;margin-bottom:12px;}
  .size-card-head img{width:44px;height:44px;}
  .size-card-head h3{font-size:19px;text-align:left;}
  .size-card-head h3 span{display:block;font-size:14px;}
  .size-table-wrap{margin:-5px;}
  .size-table{border-spacing:5px;}
  .size-table th, .size-table td{height:44px;padding:0 4px;border-radius:9px;}
  .size-table thead th, .size-table td{font-size:15px;}
  .size-table tbody th{font-size:12px;width:30%;line-height:1.25;}
  .size-table td{box-shadow:inset 0 0 0 2px #1a1a1a;}
  .size-note{font-size:12px;}
}
@media(max-width:360px){
  .size-table thead th, .size-table td{font-size:13.5px;}
  .size-table tbody th{font-size:11px;}
}

/* ============ Theme toggle button ============ */
.theme-toggle{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:none;cursor:pointer;color:#eee;
  transition:background .2s,color .2s;
}
.theme-toggle:hover{background:rgba(255,255,255,.08);color:var(--gold);}
.theme-toggle svg{width:20px;height:20px;}
.theme-toggle .ic-moon{display:none;}   /* icon shows the mode you switch to */
[data-theme="light"] .theme-toggle .ic-moon{display:block;}
[data-theme="light"] .theme-toggle .ic-sun{display:none;}

/* ============ Light theme ============ */
/* Default is dark; <html data-theme="light"> switches to these overrides. */
[data-theme="light"]{
  --dark:#ffffff;
  --dark2:#f3efe8;
  --line:#e2ddd4;
  --muted:#6b6b6b;
  --gold-text:#a86a12;   /* darker gold for text on light backgrounds */
  --surface:#f3efe8;
  --input-bg:#fff;
  --input-text:#222;
  --heading:#1f1f1f;
  color-scheme:light;
}
[data-theme="light"] body{background:#faf8f4;color:#2a2a2a;}
[data-theme="light"] .note{background:#fff4e0;color:var(--gold-text);}

/* header */
[data-theme="light"] header.site{box-shadow:0 2px 10px rgba(0,0,0,.05);}
[data-theme="light"] .brand .name{color:var(--gold-text);}
[data-theme="light"] nav.main a{color:#333;}
[data-theme="light"] nav.main a:hover{color:var(--gold-text);}
[data-theme="light"] .hb-ic,
[data-theme="light"] .theme-toggle{color:#333;}
[data-theme="light"] .head-btn:hover .hb-ic,
[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .menu-toggle:hover{background:rgba(0,0,0,.06);color:var(--gold-text);}
[data-theme="light"] .menu-toggle span{background:#333;}
@media(max-width:1024px){
  [data-theme="light"] nav.main{box-shadow:0 14px 28px rgba(0,0,0,.1);}
}

/* text accents */
[data-theme="light"] .section-title h2,
[data-theme="light"] .page-head h1,
[data-theme="light"] .sidebar h4,
[data-theme="light"] table.cart-table th,
[data-theme="light"] .tabs span.active,
[data-theme="light"] .eyebrow,
[data-theme="light"] .hero-copy :is(h1,h2) em,
[data-theme="light"] .product-card .price,
[data-theme="light"] .stars,
[data-theme="light"] .news h3,
[data-theme="light"] .foot-grid h4,
[data-theme="light"] .social-block h4,
[data-theme="light"] .contact-card p a,
[data-theme="light"] .size-card-head h3 span,
[data-theme="light"] .coupon,
[data-theme="light"] .btn.outline{color:var(--gold-text);}
[data-theme="light"] .tabs span.active,
[data-theme="light"] .btn.outline,
[data-theme="light"] .coupon{border-color:var(--gold-text);}
[data-theme="light"] .product-card .cat{color:var(--teal-dark);}

/* headings that were white */
[data-theme="light"] .feature h4,
[data-theme="light"] .accordion-item .q,
[data-theme="light"] .hero-copy :is(h1,h2),
[data-theme="light"] .hero-trust b,
[data-theme="light"] .who b,
[data-theme="light"] .social-row b,
[data-theme="light"] .line-title,
[data-theme="light"] .size-card-head h3{color:#1f1f1f;}

/* cards & surfaces */
[data-theme="light"] .block,
[data-theme="light"] .product-card,
[data-theme="light"] .feature,
[data-theme="light"] .accordion-item,
[data-theme="light"] .review,
[data-theme="light"] .social-row{background:#fff;}
[data-theme="light"] .product-card:hover{box-shadow:0 16px 32px rgba(0,0,0,.1);}
[data-theme="light"] .form-row input,
[data-theme="light"] .form-row textarea,
[data-theme="light"] .form-row select,
[data-theme="light"] .news input{background:#fff;color:#222;}

/* hero */
[data-theme="light"] .hero-split{
  /* warm cream base + soft teal glow (top-left) + soft gold glow (bottom) */
  background:radial-gradient(620px 320px at 0% 0%,rgba(42,139,150,.16),transparent 70%),
             radial-gradient(520px 300px at 38% 110%,rgba(232,163,61,.18),transparent 70%),
             linear-gradient(120deg,#fffaf1 0%,#f8efe0 55%,#f1e4cf 100%);
  border-color:#eadfcb;
  box-shadow:0 18px 40px -18px rgba(120,86,30,.22);
}
[data-theme="light"] .hero-copy .lead{color:#4a4a4a;}
[data-theme="light"] .hero-trust{border-top-color:#e6d9c2;}
[data-theme="light"] .eyebrow{background:rgba(232,163,61,.14);border-color:rgba(168,106,18,.35);}
[data-theme="light"] .hero-art::after{
  background:linear-gradient(90deg,#f7eddd 0%,rgba(247,237,221,.55) 30%,transparent 65%);
}
@media(max-width:1024px){
  [data-theme="light"] .hero-art::after{background:linear-gradient(to top,rgba(252,245,234,.95),transparent 50%);}
}

/* bands */
[data-theme="light"] .usp{background:linear-gradient(180deg,#f3efe8,#faf8f4);}
[data-theme="light"] .offer{background:linear-gradient(120deg,var(--teal-dark),#2f7f88 62%);}
[data-theme="light"] .offer .coupon{color:#ffd28a;border-color:#ffd28a;}
[data-theme="light"] .news{background:linear-gradient(135deg,#ffffff,#f3efe8);}
[data-theme="light"] .review p.txt{color:#444;}

/* size chart */
[data-theme="light"] .size-card{background:linear-gradient(160deg,#ffffff,#f3efe8);box-shadow:0 18px 40px rgba(0,0,0,.08);}
[data-theme="light"] .size-table thead th,
[data-theme="light"] .size-table tbody th{background:#2e2e2e;}
[data-theme="light"] .size-table thead th:first-child{background:var(--gold);}

/* footer */
[data-theme="light"] footer.site{background:#f3efe8;}
[data-theme="light"] .foot-grid p.pay-title{color:#777;}
[data-theme="light"] .foot-grid .contact-list a:hover{color:var(--gold-text);}
[data-theme="light"] .foot-grid .social-icon{background:#fff;color:#444;}
[data-theme="light"] .foot-grid .social-icons a{color:#444;}
[data-theme="light"] .foot-grid .social-icons a:hover{color:#fff;}
[data-theme="light"] .pay{box-shadow:0 1px 4px rgba(0,0,0,.12);border:1px solid var(--line);}

/* ============ WooCommerce loop "Add to cart" button ============ */
/* Keeps WooCommerce class names (.add_to_cart_button, .added_to_cart) so it maps onto the theme */
.product-card .add_to_cart_button{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;height:40px;margin-top:10px;padding:0 12px;
  border-radius:8px;border:0;background:var(--teal);color:#fff;
  font-size:13px;font-weight:700;line-height:1;white-space:nowrap;
  cursor:pointer;box-shadow:0 4px 12px rgba(42,139,150,.22);
  transition:background .2s,transform .2s,box-shadow .2s;
}
.product-card .add_to_cart_button:hover{background:var(--teal-dark);transform:translateY(-1px);box-shadow:0 6px 16px rgba(42,139,150,.3);}
.product-card .add_to_cart_button .atc-ic{width:17px;height:17px;flex-shrink:0;}
.product-card .add_to_cart_button.loading{opacity:.7;cursor:default;}
.product-card .add_to_cart_button.loading .atc-ic{animation:atc-bounce .5s ease-in-out infinite alternate;}
.product-card .add_to_cart_button.added{background:var(--gold);color:#241a06;box-shadow:0 4px 12px rgba(232,163,61,.25);}
.product-card .add_to_cart_button.added span::after{content:" ✓";}
@keyframes atc-bounce{to{transform:translateX(3px);}}
.product-card .added_to_cart{
  display:block;margin-top:8px;text-align:center;font-size:12.5px;font-weight:600;color:var(--teal);
}
.product-card .added_to_cart:hover{text-decoration:underline;}
[data-theme="light"] .product-card .added_to_cart{color:var(--teal-dark);}
@media(max-width:767px){
  .product-card .add_to_cart_button{height:36px;font-size:12px;gap:6px;}
  .product-card .add_to_cart_button .atc-ic{width:15px;height:15px;}
}
/* cards whose image+info is a link (category page): button sits below, outside the link */
.product-card .woocommerce-LoopProduct-link{display:block;}
.product-card .atc-wrap{padding:0 12px 12px;}
.product-card .atc-wrap .add_to_cart_button{margin-top:0;}
@media(max-width:767px){ .product-card .atc-wrap{padding:0 10px 10px;} }

/* ============ Single product: quantity + add to cart + buy now ============ */
/* WooCommerce form.cart: .quantity + .single_add_to_cart_button */
.product-actions.cart{align-items:stretch;}
.quantity{
  display:flex;align-items:center;height:48px;flex-shrink:0;
  border:1px solid var(--line);border-radius:10px;overflow:hidden;background:var(--input-bg);
}
.quantity .qty-btn{
  width:40px;height:100%;border:0;background:transparent;cursor:pointer;
  color:var(--input-text);font-size:20px;line-height:1;transition:background .2s,color .2s;
}
.quantity .qty-btn:hover{background:rgba(42,139,150,.14);color:var(--teal);}
.quantity .qty{
  width:46px;height:100%;border:0;background:transparent;text-align:center;
  color:var(--input-text);font-size:15px;font-weight:700;-moz-appearance:textfield;
}
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.quantity .qty:focus{outline:none;}

.single_add_to_cart_button, .buy-now{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  height:48px;padding:0 22px;border-radius:10px;border:0;cursor:pointer;
  font-size:15px;font-weight:700;line-height:1;white-space:nowrap;
  transition:background .2s,transform .2s,box-shadow .2s,filter .2s;
}
.single_add_to_cart_button{
  flex:1;background:var(--teal);color:#fff;box-shadow:0 6px 16px rgba(42,139,150,.25);
}
.single_add_to_cart_button:hover{background:var(--teal-dark);transform:translateY(-1px);}
.single_add_to_cart_button.loading{opacity:.7;cursor:default;}
.single_add_to_cart_button.loading .pa-ic{animation:atc-bounce .5s ease-in-out infinite alternate;}
.single_add_to_cart_button.added{background:var(--gold);color:#241a06;box-shadow:0 6px 16px rgba(232,163,61,.28);}
.single_add_to_cart_button.added span::after{content:" ✓";}
.buy-now{
  flex:1 1 100%;background:var(--gold);color:#241a06;box-shadow:0 6px 16px rgba(232,163,61,.25);
}
.buy-now:hover{filter:brightness(1.07);transform:translateY(-1px);}
.pa-ic{width:19px;height:19px;flex-shrink:0;}

/* WooCommerce "added to cart" notice */
.woocommerce-message{
  display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;
  margin:-6px 0 16px;padding:11px 14px;border-radius:10px;font-size:13px;
  background:rgba(42,139,150,.12);border:1px solid rgba(42,139,150,.4);color:var(--heading);
}
.woocommerce-message a{color:var(--teal);font-weight:700;white-space:nowrap;}
.woocommerce-message a:hover{text-decoration:underline;}
[data-theme="light"] .woocommerce-message a{color:var(--teal-dark);}

@media(max-width:480px){
  .single_add_to_cart_button, .buy-now{font-size:14px;padding:0 14px;}
  .quantity .qty-btn{width:34px;}
  .quantity .qty{width:38px;}
}

/* ============ Cart page (WooCommerce: .woocommerce-cart-form + .cart_totals) ============ */
.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}
.cart-layout{display:grid;grid-template-columns:1fr 360px;gap:24px;align-items:start;}
.cart-panel{
  background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:22px;
}
[data-theme="light"] .cart-panel{background:#fff;box-shadow:0 10px 30px -18px rgba(0,0,0,.18);}
.cart-panel h2{font-size:18px;color:var(--heading);}
.cart-panel-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:6px;}
.cart-items-count{
  font-size:12px;font-weight:700;color:var(--teal);
  background:rgba(42,139,150,.14);padding:4px 11px;border-radius:99px;
}
[data-theme="light"] .cart-items-count{color:var(--teal-dark);}

/* items table */
.shop_table.cart{width:100%;border-collapse:collapse;}
.shop_table.cart th{
  font-size:12px;font-weight:600;color:var(--muted);text-align:left;
  padding:12px 10px;border-bottom:1px solid var(--line);
}
.shop_table.cart td{padding:16px 10px;border-bottom:1px solid var(--line);vertical-align:middle;font-size:14px;}
.shop_table.cart tbody tr:last-child td{border-bottom:0;}
.shop_table.cart .product-thumbnail{width:92px;padding-left:0;}
.shop_table.cart .product-thumbnail img{
  width:80px;height:96px;object-fit:cover;object-position:center 20%;
  border-radius:10px;background:#efeae1;
}
.shop_table.cart .product-name > a{font-weight:700;color:var(--heading);line-height:1.4;}
.shop_table.cart .product-name > a:hover{color:var(--teal);}
.shop_table.cart .variation{font-size:12px;color:var(--muted);margin-top:4px;}
.shop_table.cart .mobile-price{display:none;}
.shop_table.cart .product-price{color:var(--muted);white-space:nowrap;}
.shop_table.cart .product-subtotal{font-weight:700;color:var(--gold);white-space:nowrap;}
[data-theme="light"] .shop_table.cart .product-subtotal{color:var(--gold-text);}
.shop_table.cart .quantity{height:40px;border-radius:8px;display:inline-flex;}
.shop_table.cart .quantity .qty-btn{width:32px;font-size:18px;}
.shop_table.cart .quantity .qty{width:36px;font-size:14px;}
.shop_table.cart .product-remove{width:44px;text-align:right;padding-right:0;}
.cart_item .remove{
  width:36px;height:36px;border-radius:50%;border:0;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:var(--muted);transition:background .2s,color .2s;
}
.cart_item .remove svg{width:18px;height:18px;}
.cart_item .remove:hover{background:rgba(192,57,43,.12);color:#e74c3c;}
.cart_item.removing{opacity:0;transform:translateX(12px);transition:opacity .3s,transform .3s;}

/* coupon + continue shopping */
.cart-actions{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-top:8px;padding-top:18px;border-top:1px dashed var(--line);
}
.cart-actions .coupon{position:relative;display:flex;gap:8px;flex:1;max-width:420px;min-width:0;}
.cart-actions .coupon-ic{
  position:absolute;left:12px;top:50%;transform:translateY(-50%);
  width:17px;height:17px;color:var(--muted);pointer-events:none;
}
.cart-actions .coupon .input-text{
  flex:1;min-width:0;height:42px;padding:0 12px 0 38px;border-radius:8px;
  border:1px solid var(--line);background:var(--input-bg);color:var(--input-text);font-size:13.5px;
}
.cart-actions .coupon .input-text:focus{outline:none;border-color:var(--teal);}
.cart-actions .apply-coupon{
  height:42px;padding:0 18px;border-radius:8px;cursor:pointer;white-space:nowrap;
  background:transparent;border:1.5px solid var(--teal);color:var(--teal);
  font-size:13.5px;font-weight:700;transition:background .2s,color .2s;
}
.cart-actions .apply-coupon:hover{background:var(--teal);color:#fff;}
[data-theme="light"] .cart-actions .apply-coupon{border-color:var(--teal-dark);color:var(--teal-dark);}
[data-theme="light"] .cart-actions .apply-coupon:hover{background:var(--teal-dark);color:#fff;}
.continue-shopping{font-size:13.5px;font-weight:600;color:var(--teal);}
.continue-shopping:hover{text-decoration:underline;}
[data-theme="light"] .continue-shopping{color:var(--teal-dark);}

/* empty cart */
.cart-empty-msg{text-align:center;padding:48px 22px;}
.cart-empty-msg[hidden], .cart-collaterals[hidden], .woocommerce-cart-form[hidden]{display:none;}
.cart-empty-msg .empty-ic{width:56px;height:56px;color:var(--muted);margin:0 auto 14px;display:block;}
.cart-empty-msg h3{font-size:19px;color:var(--heading);margin-bottom:6px;}
.cart-empty-msg p{font-size:13.5px;color:var(--muted);margin-bottom:18px;}

/* totals */
.cart-collaterals{position:sticky;top:96px;}
.cart_totals h2{margin-bottom:8px;}
.shop_table.totals{width:100%;border-collapse:collapse;}
.shop_table.totals th, .shop_table.totals td{padding:13px 0;border-bottom:1px solid var(--line);font-size:14px;vertical-align:top;}
.shop_table.totals th{text-align:left;font-weight:600;color:var(--muted);}
.shop_table.totals td{text-align:right;}
.shipping-methods{list-style:none;}
.shipping-methods li + li{margin-top:7px;}
.shipping-methods label{display:inline-flex;align-items:center;gap:7px;cursor:pointer;font-size:13px;}
.shipping-methods input{accent-color:var(--teal);width:15px;height:15px;}
.shop_table.totals .order-total th, .shop_table.totals .order-total td{border-bottom:0;padding-top:16px;}
.shop_table.totals .order-total th{color:var(--heading);font-size:15px;}
.shop_table.totals .order-total td{color:var(--gold);font-size:22px;font-weight:800;}
[data-theme="light"] .shop_table.totals .order-total td{color:var(--gold-text);}
.checkout-button{
  display:flex;align-items:center;justify-content:center;gap:9px;height:50px;margin-top:10px;
  border-radius:10px;background:var(--gold);color:#241a06;font-size:15.5px;font-weight:800;
  box-shadow:0 8px 20px rgba(232,163,61,.28);transition:filter .2s,transform .2s;
}
.checkout-button svg{width:18px;height:18px;transition:transform .2s;}
.checkout-button:hover{filter:brightness(1.06);transform:translateY(-1px);}
.checkout-button:hover svg{transform:translateX(3px);}
.cart-trust{list-style:none;display:grid;gap:9px;margin-top:18px;padding-top:16px;border-top:1px dashed var(--line);}
.cart-trust li{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--muted);}
.cart-trust svg{
  width:28px;height:28px;padding:6px;border-radius:8px;flex-shrink:0;
  background:rgba(42,139,150,.14);color:var(--teal);
}

@media(max-width:1024px){
  .cart-layout{grid-template-columns:1fr;}
  .cart-collaterals{position:static;}
}
@media(max-width:767px){
  .cart-panel{padding:16px;border-radius:14px;}
  /* rows become compact cards: thumb | name + qty | remove + total */
  .shop_table.cart thead{display:none;}
  .shop_table.cart tbody{display:block;}
  .shop_table.cart tr.cart_item{
    display:grid;grid-template-columns:76px 1fr auto;
    grid-template-areas:"thumb name remove" "thumb qty total";
    column-gap:12px;row-gap:8px;padding:14px 0;border-bottom:1px solid var(--line);
  }
  .shop_table.cart tr.cart_item:last-child{border-bottom:0;}
  .shop_table.cart td{padding:0;border:0;}
  .shop_table.cart .product-thumbnail{grid-area:thumb;width:auto;}
  .shop_table.cart .product-thumbnail img{width:76px;height:92px;}
  .shop_table.cart .product-name{grid-area:name;font-size:13.5px;}
  .shop_table.cart .mobile-price{display:block;font-size:12px;color:var(--muted);margin-top:2px;}
  .shop_table.cart .product-price{display:none;}
  .shop_table.cart .product-quantity{grid-area:qty;align-self:end;}
  .shop_table.cart .product-subtotal{grid-area:total;align-self:end;text-align:right;line-height:36px;}
  .shop_table.cart .product-remove{grid-area:remove;width:auto;}
  .shop_table.cart .quantity{height:36px;}
  .cart-actions{flex-direction:column;align-items:stretch;}
  .cart-actions .coupon{max-width:none;}
  .continue-shopping{text-align:center;}
}

/* ============ Checkout page (WooCommerce: form.checkout + #order_review) ============ */
/* reuses .cart-layout, .cart-panel, .shop_table.totals, .checkout-button, .cart-trust from the cart page */

/* step indicator */
.checkout-steps{
  list-style:none;display:flex;align-items:center;justify-content:center;gap:10px;
  margin:0 auto 26px;max-width:560px;
}
.checkout-steps li{display:flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:var(--muted);white-space:nowrap;}
.checkout-steps li:not(:last-child)::after{content:"";width:48px;height:2px;border-radius:2px;background:var(--line);margin-left:4px;}
.checkout-steps li.done:not(:last-child)::after{background:var(--teal);}
.step-dot{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  border:2px solid var(--line);font-size:13px;font-weight:800;
}
.step-dot svg{width:15px;height:15px;stroke-width:3;}
.checkout-steps li.done{color:var(--teal);}
.checkout-steps li.done .step-dot{background:var(--teal);border-color:var(--teal);color:#fff;}
.checkout-steps li.active{color:var(--heading);}
.checkout-steps li.active .step-dot{background:var(--gold);border-color:var(--gold);color:#241a06;}
[data-theme="light"] .checkout-steps li.done{color:var(--teal-dark);}

/* section cards */
.checkout-main{display:grid;gap:18px;}
.checkout-card-title{
  display:flex;align-items:center;gap:10px;font-size:16.5px;color:var(--heading);
  margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid var(--line);
}
.ct-ic{
  width:34px;height:34px;border-radius:10px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(42,139,150,.14);color:var(--teal);
}
.ct-ic svg{width:18px;height:18px;}
[data-theme="light"] .ct-ic{color:var(--teal-dark);}

/* fields */
.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px 16px;}
.field-grid .form-row{margin:0;}
.field-grid .form-row-wide{grid-column:1 / -1;}
.woocommerce-checkout .form-row label{display:block;font-size:13px;font-weight:600;color:var(--heading);margin-bottom:6px;}
.woocommerce-checkout .form-row .required{color:#e74c3c;text-decoration:none;border:0;}
.woocommerce-checkout .form-row .optional{font-weight:400;color:var(--muted);font-size:12px;}
.woocommerce-checkout .input-text{
  width:100%;padding:11px 13px;border-radius:9px;font-size:14px;font-family:inherit;
  border:1px solid var(--line);background:var(--input-bg);color:var(--input-text);
  transition:border-color .2s,box-shadow .2s;
}
.woocommerce-checkout textarea.input-text{resize:vertical;min-height:48px;}
.woocommerce-checkout .input-text::placeholder{color:var(--muted);opacity:.8;}
.woocommerce-checkout .input-text:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(42,139,150,.18);}
.woocommerce-checkout .woocommerce-invalid .input-text{border-color:#e74c3c;box-shadow:0 0 0 3px rgba(231,76,60,.14);}

/* radio option cards (shipping + payment) */
.option-cards{list-style:none;display:grid;gap:10px;}
.option-card{
  display:flex;align-items:center;gap:12px;padding:14px 16px;cursor:pointer;
  border:1.5px solid var(--line);border-radius:12px;background:var(--input-bg);
  transition:border-color .2s,background .2s,box-shadow .2s;
}
.option-card:hover{border-color:rgba(42,139,150,.6);}
.option-card input{accent-color:var(--teal);width:18px;height:18px;flex-shrink:0;margin:0;}
.option-card:has(input:checked){
  border-color:var(--teal);background:rgba(42,139,150,.08);box-shadow:0 0 0 3px rgba(42,139,150,.12);
}
.oc-body{flex:1;min-width:0;}
.oc-body b{display:block;font-size:14px;color:var(--heading);}
.oc-body small{display:block;font-size:12px;color:var(--muted);margin-top:1px;}
.oc-price{font-weight:800;font-size:15px;color:var(--gold);white-space:nowrap;}
[data-theme="light"] .oc-price{color:var(--gold-text);}
.oc-ic{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;color:#fff;background:#27ae60;
}
.oc-ic svg{width:19px;height:19px;}
.oc-ic.mobile{background:linear-gradient(135deg,#e2136e,#f7941d);}
.oc-ic.card{background:linear-gradient(135deg,#1a3c8f,#2f6fd6);}
.payment_box{
  margin:8px 0 2px;padding:14px 16px;border-radius:10px;font-size:13px;color:var(--muted);
  background:rgba(42,139,150,.07);border:1px dashed rgba(42,139,150,.45);
}
.payment_box[hidden]{display:none;}
.payment_box b{color:var(--heading);}
.payment_box .input-text{margin-top:10px;}

/* order review */
.review-items{list-style:none;margin:6px 0 4px;}
.review-item{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--line);}
.review-thumb{position:relative;flex-shrink:0;}
.review-thumb img{width:56px;height:66px;object-fit:cover;object-position:center 20%;border-radius:9px;background:#efeae1;}
.review-qty{
  position:absolute;top:-7px;right:-7px;min-width:21px;height:21px;padding:0 5px;border-radius:99px;
  display:flex;align-items:center;justify-content:center;
  background:var(--teal);color:#fff;font-size:11px;font-weight:800;box-shadow:0 0 0 2px var(--surface);
}
[data-theme="light"] .review-qty{box-shadow:0 0 0 2px #fff;}
.review-name{flex:1;min-width:0;font-size:13.5px;font-weight:600;color:var(--heading);line-height:1.4;}
.review-name small{display:block;font-weight:400;font-size:12px;color:var(--muted);}
.review-price{font-size:14px;font-weight:700;white-space:nowrap;}
.checkout-button{width:100%;border:0;cursor:pointer;font-family:inherit;}
.checkout-button.loading{opacity:.75;cursor:default;}
.checkout-error{
  margin-top:12px;padding:10px 12px;border-radius:9px;font-size:12.5px;
  background:rgba(231,76,60,.1);border:1px solid rgba(231,76,60,.4);color:#e74c3c;
}
.checkout-error[hidden]{display:none;}
.terms-note{font-size:11.5px;color:var(--muted);text-align:center;margin-top:10px;}
.terms-note a{color:var(--teal);}
.terms-note a:hover{text-decoration:underline;}
[data-theme="light"] .terms-note a{color:var(--teal-dark);}

/* thank-you state */
.order-received{max-width:560px;margin:0 auto;text-align:center;padding:44px 26px;}
.order-received[hidden], form.checkout[hidden]{display:none;}
.or-ic{
  width:68px;height:68px;border-radius:50%;margin:0 auto 16px;
  display:flex;align-items:center;justify-content:center;
  background:var(--teal);color:#fff;box-shadow:0 0 0 8px rgba(42,139,150,.16);
}
.or-ic svg{width:34px;height:34px;stroke-width:2.6;}
.order-received h2{font-size:20px;color:var(--heading);margin-bottom:8px;}
.order-received p{font-size:14px;color:var(--muted);margin-bottom:20px;}

@media(max-width:767px){
  .checkout-steps{gap:6px;margin-bottom:20px;}
  .checkout-steps li{font-size:12px;gap:6px;}
  .checkout-steps li:not(:last-child)::after{width:18px;}
  .step-dot{width:24px;height:24px;font-size:12px;}
  .field-grid{grid-template-columns:1fr;gap:14px;}
  .option-card{padding:12px 13px;gap:10px;}
  .oc-ic{width:32px;height:32px;}
}

/* contact page: social rows — larger brand-colored icons, white glyph in both themes */
.social-row{padding:12px 14px;gap:13px;}
.social-row .social-icon{
  width:42px;height:42px;border-radius:12px;color:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}
.social-row .social-icon svg{width:20px;height:20px;}
.social-row:hover .social-icon{transform:scale(1.06);}
.social-row.facebook:hover{border-color:#1877f2;}
.social-row.instagram:hover{border-color:#dc2743;}
.social-row.youtube:hover{border-color:#ff0000;}
.social-row.whatsapp:hover{border-color:#25d366;}
[data-theme="light"] .social-row{box-shadow:0 4px 14px -8px rgba(0,0,0,.15);}

/* mobile header: logo only, no shop name text */
@media(max-width:767px){
  .brand .name{display:none;}
}

/* mobile header: taller bar, bigger logo, smaller login button */
@media(max-width:767px){
  .topbar{padding:16px 0;}
  .brand img{width:48px;height:48px;}
  .login-btn{height:32px;padding:0 12px;gap:5px;font-size:12.5px;}
  .login-btn svg{width:14px;height:14px;}
}
@media(max-width:400px){
  .login-btn{width:32px;padding:0;}
}
@media(max-width:360px){
  .brand img{width:44px;height:44px;}
}

/* a little breathing room left of the header logo */
.brand{padding-left:6px;}

/* mobile: one product card per row (home, shop, category, related products) */
@media(max-width:767px){
  .grid:has(> .product-card){grid-template-columns:1fr;gap:18px;}
  .grid > .product-card .img{height:auto;aspect-ratio:4/5;}
  .grid > .product-card .info{padding:14px;}
  .grid > .product-card .title{font-size:15px;}
  .grid > .product-card .price{font-size:16px;}
  .grid > .product-card .add_to_cart_button{height:42px;font-size:14px;}
  .grid > .product-card .atc-wrap{padding:0 14px 14px;}
}
