/* --- Updated CSS with Topbar Font Awesome styles --- */

*{
  box-sizing: border-box;
}

html,body{
  height: 100%;
}

body{
  margin: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

a{
  text-decoration: none;
  color: inherit;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(1200px,92%);
  margin: 0 auto;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 9px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary{
  background: var(--brand);
  color: white;
  box-shadow: 0 8px 24px rgba(255,106,0,.25);
}

.btn.primary:hover{
  background: var(--brand-700);
}

.btn.ghost{
  background: #fff;
  border: 1px solid var(--border);
  border-color: var(--border);
  color: var(--accent);
}

.topbar{
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar .pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
}

header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(1.1) blur(8px);
}

.nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .4px;
}

.logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg,var(--brand),#ffc13a);
  box-shadow: 0 8px 24px rgba(255,106,0,.25);
}

.search{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  min-width: 0;
  position: relative;
}

.search input{
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: .95rem;
}

.search button{
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.icon-btn:hover{
  border-color: #d6d8df;
}

.badge{
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 2px 6px;
  font-weight: 800;
}

.menu{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  text-transform: uppercase;
}

.menu a{
  font-weight: 600;
  color: #111827;
}

.menu a:hover{
  color: var(--brand);
}

main section{
  padding: 1px 0;
}

.grid{
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card .info{
  padding: 14px;
}

.card .title{
  font-weight: 700;
}

.card .sub{
  color: #6b7280;
  font-size: .92rem;
}

.card .price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.card .add{
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

footer{
  border-top: 1px solid var(--border);
  background: #fff;
  margin-top: 20px;
}

.foot{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 28px 0;
}

.copyright{
  padding: 16px 0 36px;
  color: #fff;
  font-size: .9rem;
}

.bottom-nav{
  display: none;
}

.overlay{
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(17,24,39,.55);
  backdrop-filter: blur(4px);
  z-index: 70;
}

.drawer{
  position: absolute;
  inset: 0 auto 0 0;
  width: 86%;
  max-width: 340px;
  background: #fff;
  border-right: 1px solid var(--border);
  box-shadow: 20px 0 40px rgba(0,0,0,.12);
  transform: translateX(-110%);
  transition: transform .3s ease;
}

.overlay.open{
  display: block;
}

.overlay.open .drawer{
  transform: translateX(0);
}

.drawer header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 14px;
}

.drawer nav{
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.drawer nav a{
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  font-weight: 600;
}

.drawer nav a:hover{
  border-color: #d6d8df;
  color: var(--brand);
}

#backToTop{
  position: fixed;
  right: 14px;
  bottom: 80px;
  display: none;
  z-index: 80;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,106,0,.3);
}

.breadcrumb{
  font-size: .9rem;
  color: #6b7280;
  margin: 14px 0;
}

.product{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}

.gallery{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
}

.thumbs{
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.thumbs img{
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

.thumbs img.active{
  outline: 2px solid var(--brand);
}

.viewer{
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff;
  min-height: 420px;
}

.viewer img{
  max-height: 560px;
  width: 100%;
  object-fit: contain;
}

.viewer .zoom{
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
}

.viewer.zooming img{
  opacity: 0;
}

.viewer.zooming .zoom{
  display: block;
}

.viewer .fs-btn{
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}

.options .price{
  font-size: 1.6rem;
  font-weight: 800;
}

.options .meta{
  color: #6b7280;
  font-size: .95rem;
}

.option-row{
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
}

.swatch{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
}

.swatch.active{
  box-shadow: 0 0 0 2px var(--brand);
}

.qty{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.qty button{
  background: #fff;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
}

.qty input{
  width: 56px;
  text-align: center;
  border: 0;
  outline: 0;
}

.pills{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tabs{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  border-bottom: 1px solid var(--border);
}

.tab{
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #fff;
  cursor: pointer;
}

.tab.active{
  color: #ff6a00;
  font-weight: 700;
}

.tabpanels{
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #fff;
  padding: 16px;
  margin-bottom: 18px;
}

.review{
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.similar .grid{
  grid-template-columns: repeat(4,1fr);
}

.share-row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.share{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
}

.form-section{
  display: grid;
  gap: 12px;
}

.fields{
  display: grid;
  gap: 12px;
}

.fields.two{
  grid-template-columns: 1fr;
}

.field{
  display: flex;
  flex-direction: column;
}

.field > span{
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 4px;
}

.field input,.field textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .95rem;
  outline: 0;
  background: #fff;
}

.field input:focus,.field textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}

.pay-list{
  display: grid;
  gap: 10px;
}

.pay-item{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}

.pay-item input{
  accent-color: var(--brand);
}

.pay-item:has(input:checked){
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}

.fullbleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.page-hero{
  background: linear-gradient(90deg,#ff6a00,#ff9800);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.06);
}

.page-hero .inner{
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 24px clamp(16px,5vw,40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-hero h1{
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(22px, 3.2vw, 34px);
}

.page-hero .crumbs{
  margin-top: 6px;
  font-size: .9rem;
  opacity: .95;
}

.page-hero .crumbs a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-hero .crumbs a:hover{
  border-bottom-color: rgba(255,255,255,.6);
}

.tb-left,.tb-right{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand .logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg,var(--brand),#ffc13a);
  box-shadow: 0 8px 24px rgba(255,106,0,.25);
}

.mobile-toggle{
  display: none;
}

.hero{
  position: relative;
}

.slider{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.slides{
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}

.slide{
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.slide .copy{
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow{
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1{
  margin: .2em 0 .4em;
  font-size: clamp(1.6rem,3.4vw,2.6rem);
  line-height: 1.15;
}

.lead{
  color: #4b5563;
  max-width: 60ch;
}

.slide img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-nav{
  position: absolute;
  inset: auto 12px 12px auto;
  display: flex;
  gap: 8px;
}

.navdot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  border: 1px solid #d1d5db;
}

.navdot.active{
  background: var(--brand);
}

section{
  padding: 26px 0;
}

.section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-header h2{
  margin: 0;
  font-size: 1.15rem;
}

.info{
  padding: 14px;
}

.title{
  font-weight: 700;
}

.sub{
  color: var(--muted);
  font-size: .92rem;
}

.price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.price{
  font-weight: 800;
}

.add{
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.add:hover{
  border-color: #d6d8df;
}

.badge-top{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.promo-strip{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.promo{
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.promo .copy{
  position: absolute;
  inset: auto auto 12px 12px;
  background: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.brands{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
}

.brandcell{
  
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  height: 84px;
}

.usp{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.usp .box{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter{
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
}

.newsletter input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  outline: 0;
}

.foot h4{
  margin: 0 0 10px;
  color: #fff;
}

.foot a{
  display: inline-block;
  color: #fff;
  margin: 6px 0;
}

.hero .hero-wrap{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}

.cat-nav{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
}

.cat{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  
  font-weight: 600;
  background: #fff;
}

.cat:hover{
  border-color: #d6d8df;
  color: var(--brand);
}

.cat span{
  width: 24px;
  display: inline-grid;
  place-items: center;
}

#searchResults{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #fff;
  color: #111;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  max-height: 420px;
  overflow: auto;
  display: none;
  z-index: 9999;
}

#searchResults.open{
  display: block;
}

#searchResults .sr-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
  color: inherit;
}

#searchResults .sr-item:hover{
  background: #f6f6f6;
}

#searchResults img{
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}

#searchResults .title{
  font-weight: 700;
  line-height: 1.1;
}

#searchResults .meta{
  color: #6b7280;
  font-size: 12px;
}

#searchResults .price{
  margin-left: auto;
  font-weight: 800;
  white-space: nowrap;
}

#searchResults .sr-empty{
  padding: 10px;
  color: #6b7280;
}

#searchResults .sr-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

#heroSlider{
  position: relative;
}

#heroSlider .slider-arrows{
  pointer-events: none;
}

#heroSlider .navarrow{
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 24px;
  cursor: button;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroSlider .navarrow.prev{
  left: 12px;
}

#heroSlider .navarrow.next{
  right: 12px;
}

#heroSlider .navarrow:hover, #heroSlider .navarrow:focus{
  background: rgba(0,0,0,.6);
  outline: none;
}

.promo-carousel{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-carousel .pc-viewport{
  overflow: hidden;
}

/* Fix spacing for promo carousel */
.promo-carousel .pc-track {
  display: flex;
  gap: 0; /* remove default flex gap */
}

.promo-carousel .promo {
  flex: 0 0 25%;   /* exactly 4 per row */
  padding: 6px;    /* small internal padding for spacing */
  box-sizing: border-box;
}


.promo-carousel img{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.promo-carousel .pc-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-carousel .pc-arrow.prev{
  left: 10px;
}

.promo-carousel .pc-arrow.next{
  right: 10px;
}

.promo-carousel .pc-arrow:hover, .promo-carousel .pc-arrow:focus{
  background: rgba(0,0,0,.65);
  outline: none;
}

.promo-carousel .pc-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.promo-carousel .pc-dots .navdot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
}

.promo-carousel .pc-dots .navdot.active{
  background: #ff9800;
}

.pc2-carousel{
  position: relative;
  margin-top: 14px;
}

.pc2-carousel .pc2-viewport{
  overflow: hidden;
}

.pc2-carousel .pc2-track{
  display: flex;
  gap: 12px;
  transition: transform .5s ease;
  will-change: transform;
}

.pc2-carousel .pc2-item{
  flex: 0 0 100%;
}

.pc2-carousel.products .pc2-item{
  flex-basis: 100%;
}

.pc2-carousel.brands .pc2-item{
  flex-basis: calc(50% - 6px);
}

.pc2-carousel .card{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pc2-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc2-arrow.prev{
  left: 10px;
}

.pc2-arrow.next{
  right: 10px;
}

.pc2-arrow:hover,.pc2-arrow:focus{
  background: rgba(0,0,0,.65);
  outline: none;
}

.pc2-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.pc2-dots .navdot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
}

.pc2-dots .navdot.active{
  background: #ff9800;
}

.fullbleed .section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ff6a00;
  color: #fff;
  padding: 12px clamp(16px, 5vw, 32px);
}

.fullbleed .section-header h2{
  margin: 0;
}

.fullbleed .section-header a{
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.fullbleed .pc2-carousel{
  margin: 0 clamp(16px, 5vw, 32px) 24px;
}

:root{
  --brand: #ff6a00;
  --brand-700: #e65c00;
  --accent: #ff9800;
  --text: #111827;
  --muted: #6b7280;
  --border: #d1d5db;
  --soft: #f9fafb;
  --card: #fff;
  --bg: #fff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
}

.hide-sm{
  display: inline;
}

.topbar i{
  margin-right: 6px;
}

.tb-left span{
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
}

.tb-right a{
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  transition: opacity .2s;
}

.tb-right a:hover{
  opacity: 0.8;
}


@media(max-width:1024px){
.grid{
  grid-template-columns: repeat(3,1fr);
}

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

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

.thumbs{
  grid-template-columns: repeat(6,1fr);
}

}

@media(max-width:760px){
.grid{
  grid-template-columns: repeat(2,1fr);
}

.menu{
  display: none;
}

.bottom-nav{
  position: sticky;
  bottom: 0;
  z-index: 65;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--border);
  background: #ff6a00;
}

.bottom-nav a{
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
}

.similar .grid{
  grid-template-columns: repeat(2,1fr);
}

}

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

}

@media(min-width:860px){
.fields.two{
  grid-template-columns: 1fr 1fr;
}

}

@media (max-width: 1024px){
.slide{
  grid-template-columns: 1fr;
}

.hero .hero-wrap{
  grid-template-columns: 1fr;
}

.cat-nav{
  display: none;
}

}

@media (max-width: 760px){
.grid{
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.brands{
  grid-template-columns: repeat(3,1fr);
}

.promo-strip{
  grid-template-columns: 1fr;
}

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

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

.menu{
  display: none;
}

.mobile-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bottom-nav{
  position: sticky;
  bottom: 0;
  z-index: 65;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--border);
  background: #ff6a00;
}

.bottom-nav a{
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
}

.bottom-nav a.active{
  color: var(--brand);
}

}

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

}

@media (min-width: 640px){
.promo-carousel .promo{
  flex-basis: calc(50% - 6px);
}

}

/* Desktop: show 4 banners per view (so arrows move 4-at-a-go) */
@media (min-width: 1024px){
  /* gap between items is 12px → 3 gaps per row → 36px total → 36/4 = 9px */
  .promo-carousel .promo{ flex-basis: calc(25% - 9px); }
}


/**
@media (min-width: 1024px){
.promo-carousel .promo{
  flex-basis: calc(33.333% - 8px);
}

}
*/

@media (min-width:640px){
.pc2-carousel.products .pc2-item{
  flex-basis: calc(50% - 6px);
}

.pc2-carousel.brands .pc2-item{
  flex-basis: calc(33.333% - 8px);
}

}

@media (min-width:1024px){
.pc2-carousel.products .pc2-item{
  flex-basis: calc(25% - 9px);
}

.pc2-carousel.brands .pc2-item{
  flex-basis: calc(20% - 9px);
}

}

@media (max-width:760px){
.nav{
  grid-template-columns: auto 1fr;
  grid-template-areas: "brand actions"
                         "search search";
  gap: 10px;
  padding: 10px 0;
}

.brand{
  grid-area: brand;
}

.brand img{
  width: 120px;
  height: auto;
}

.search{
  grid-area: search;
  border-radius: 12px;
  padding: 10px 12px;
}

.actions{
  grid-area: actions;
  justify-content: end;
  gap: 8px;
}

.icon-btn{
  padding: 8px 10px;
  border-radius: 12px;
}

.badge{
  top: -4px;
  right: -4px;
}

.hide-sm{
  display: none;
}

}


/* --- Responsive polish: cards + carousels --- */

/* Consistent product card presentation */
.card {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
}
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.badge-top {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff6a00;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Give carousels a little breathing space so arrows don't overlap content */
.promo-carousel .pc-viewport,
.pc2-carousel .pc2-viewport {
  padding-bottom: 10px;
}

/* Keep arrows outside edges on small screens (avoid covering the cards) */
@media (max-width: 640px) {
  /* Peek the next card slightly to suggest swipe */
  .pc2-carousel.products .pc2-item { flex-basis: 88%; }

  .promo-carousel .pc-arrow,
  .pc2-carousel .pc2-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
  .promo-carousel .pc-arrow.prev,
  .pc2-carousel .pc2-arrow.prev { left: -6px; }
  .promo-carousel .pc-arrow.next,
  .pc2-carousel .pc2-arrow.next { right: -6px; }

  /* When very tight, drop arrows to the bottom center */
}
@media (max-width: 480px) {
  .promo-carousel .pc-arrow,
  .pc2-carousel .pc2-arrow {
    top: auto;
    bottom: -6px;
    transform: none;
    width: 36px;
    height: 36px;
  }
  .pc2-carousel .pc2-arrow.prev { left: calc(50% - 44px); }
  .pc2-carousel .pc2-arrow.next { right: calc(50% - 44px); }
  .promo-carousel .pc-arrow.prev { left: calc(50% - 44px); }
  .promo-carousel .pc-arrow.next { right: calc(50% - 44px); }
}

/* Soft edge masks for banner carousel to avoid hard cuts at edges */
.promo-carousel .pc-viewport {
  position: relative;
}
.promo-carousel .pc-viewport::before,
.promo-carousel .pc-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
}
.promo-carousel .pc-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.promo-carousel .pc-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}



/* --- Mobile: show 4 product cards per view --- */
@media (max-width: 640px){
  /* Each item takes a quarter width minus gap compensation (gap = 12px -> 3 gaps = 36px; 36/4 = 9px) */
  .pc2-carousel.products .pc2-item { flex-basis: calc(25% - 9px); }

  /* Compact card so 4-up stays clean */
  .card img { aspect-ratio: 1 / 1; }
  .card .info { padding: 8px; }
  .card .title { font-size: 12px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .card .sub { display: none; }
  .card .price { font-size: 12px; font-weight: 700; }
}



/* --- Fix: Promo carousel on phones (<=639px) shows 2-up and non-overlapping controls --- */
@media (max-width: 639px){
  /* 2 banners per view, accounting for 12px gap */
  .promo-carousel .promo { flex-basis: calc(50% - 6px); }

  /* Give room for arrows/dots */
  .promo-carousel .pc-viewport { padding-bottom: 32px; }

  /* Place arrows as small buttons under the slider, centered */
  .promo-carousel .pc-arrow{
    top: auto;
    bottom: -8px;
    transform: none;
    width: 36px;
    height: 36px;
  }
  .promo-carousel .pc-arrow.prev{ left: calc(50% - 46px); }
  .promo-carousel .pc-arrow.next{ right: calc(50% - 46px); }

  /* Nudge dots down a touch for clarity */
  .promo-carousel .pc-dots{ margin-top: 14px; }
}

/* --- Hide topbar on phones --- */
@media (max-width: 639px){
  .topbar{ display: none !important; }
}

/* PDP Similar Products carousel sizing */
.similar .pc2-viewport { overflow: hidden; }
.similar .pc2-track    { display:flex; gap:0; }      /* no external gap */
.similar .pc2-item     { flex:0 0 50%; padding:8px; box-sizing:border-box; }
.similar .card .image-link { display:block; }
.similar .card img     { width:100%; height:auto; display:block; border-radius:12px; }

/* ≥768px: 3 per view */
@media (min-width:768px){
  .similar .pc2-item { flex-basis: calc(100% / 3); }
}
/* ≥1024px: 4 per view (so each click scrolls 4-at-a-go) */
@media (min-width:1024px){
  .similar .pc2-item { flex-basis: 25%; }
}

/* === Mobile hero slider (≤640px): stack, smaller type, capped image height === */
@media (max-width: 640px){
  .hero .hero-wrap{ display:block; }         /* slider full width */
  .slide{ grid-template-columns:1fr; }       /* stack text then image */
  .slide .copy{ padding:14px 14px 10px; }

  .slide .eyebrow{ font-size:11px; letter-spacing:.08em; }
  .slider .slide h1{
    font-size:22px; line-height:1.2;
    margin:6px 0 8px; letter-spacing:-.01em;
  }
  .slider .slide .lead{
    font-size:14px; line-height:1.5; color:#6b7280;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
  }
  .slider .slide .btn{ font-size:11px; padding:5px 10px; }

  /* image never overwhelms on phones */
  .slider .slide img{
    width:100%;
    height:38vh; max-height:320px;
    object-fit:cover; border-radius:12px;
  }

  /* smaller arrows; nudge outward so they don’t cover content */
  #heroSlider .navarrow{
    width:34px; height:34px; font-size:18px; background:rgba(0,0,0,.40);
  }
  #heroSlider .navarrow.prev{ left:-6px; }
  #heroSlider .navarrow.next{ right:-6px; }

  .slider-nav .navdot{ width:6px; height:6px; }
}

/* Optionally even tighter on very small phones */
@media (max-width: 380px){
  .slider .slide h1{ font-size:20px; }
  .slider .slide .lead{ -webkit-line-clamp:2; }
  .slider .slide img{ height:34vh; }
}

/* ========== Hero slide: image first on mobile ========== */
/* 1) Define grid areas for desktop (copy | media) */
.slide{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "copy media";
}
.slide .copy{ grid-area: copy; }
.slide > a{  grid-area: media; display:block; }

/* 2) On mobile: stack with media first, then copy */
@media (max-width: 640px){
  .slide{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
  }

  /* Mobile sizing polish */
  .slide .copy{ padding: 14px 14px 10px; }
  .slide .eyebrow{ font-size: 11px; letter-spacing: .08em; }
  .slider .slide h1{
    font-size: 22px; line-height: 1.2;
    margin: 6px 0 8px; letter-spacing: -.01em;
  }
  .slider .slide .lead{
    font-size: 14px; line-height: 1.5; color: #6b7280;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .slider .slide .btn{ font-size:11px; padding:5px 10px; }

  /* Keep image impactful but not huge */
  .slide > a img{
    width: 100%;
    height: 38vh;           /* nice mobile height */
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Smaller arrows so they don't crowd content */
  #heroSlider .navarrow{
    width: 34px; height: 34px; font-size: 18px; background: rgba(0,0,0,.4);
  }
  #heroSlider .navarrow.prev{ left: -6px; }
  #heroSlider .navarrow.next{ right: -6px; }
  .slider-nav .navdot{ width: 6px; height: 6px; }
}

/* Extra tight phones */
@media (max-width: 380px){
  .slider .slide h1{ font-size: 20px; }
  .slider .slide .lead{ -webkit-line-clamp: 2; }
  .slide > a img{ height: 34vh; }
}

/* --- App landing: balanced layout, no squeeze --- */
.app-landing{
  display:grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  align-items:center;
  gap: clamp(16px, 4vw, 28px);
  padding: 20px 0;
}
.app-copy .pills{ margin:12px 0 16px; }
.app-copy .store-buttons{ display:flex; flex-wrap:wrap; gap:10px; }

.app-visual{
  display:grid; place-items:center; min-height:280px;
}
.app-visual .app-visual-inner{
  display:grid; place-items:center; gap:10px; text-align:center;
}
.app-visual .app-visual-inner i{
  font-size:56px; color: var(--brand);
}

/* Stack on phones */
@media (max-width: 760px){
  .app-landing{ grid-template-columns: 1fr; }
  .app-visual{ max-width: 520px; margin: 0 auto; }
}

/* --- App slider (full-bleed, responsive) --- */
.app-slider{ position:relative; max-width:1200px; margin: 0 auto; }
.app-viewport{ overflow:hidden; border-radius: 16px; border:1px solid var(--border); }
.app-slides{ display:flex; transition: transform .5s ease; will-change: transform; }
.app-slide{ flex: 0 0 100%; }
.app-slide img{
  width:100%;
  /* desktop-ish banner ratio */
  aspect-ratio: 21/9;
  object-fit: cover; display:block;
}

/* Mobile: taller view for app shots */
@media (max-width: 640px){
  .app-slide img{ aspect-ratio: 16/9; }
}

/* Slider arrows & dots */
.app-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border:0; border-radius:999px;
  background: rgba(0,0,0,.45); color:#fff; font-size:24px; cursor:pointer;
}
.app-arrow.prev{ left:10px; }
.app-arrow.next{ right:10px; }
.app-arrow:hover{ background: rgba(0,0,0,.65); }
.app-dots{ display:flex; gap:8px; justify-content:center; margin-top:10px; }
.app-dots .navdot{
  width:10px; height:10px; border-radius:50%; border:0; background:#ddd; cursor:pointer;
}
.app-dots .navdot.active{ background: var(--brand); }

/* App CTA layout (prevents “squeezed at one end”) */
.app-cta{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items:center;
}
.app-cta__buttons{ display:flex; flex-wrap:wrap; gap:10px; }
.app-cta__note{ color:#6b7280; margin-top:10px; font-size:.9rem; }

.app-cta__card{
  padding:24px;
  min-height:260px;
  display:grid;
  place-items:center;
}
.app-cta__card-inner{
  display:grid; place-items:center; gap:8px; text-align:center;
}
.app-cta__card-inner i{ font-size:56px; color:var(--brand); }

/* Responsive: auto-fit columns so content centers and stacks well */
@media (max-width: 960px){
  .app-cta{
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    justify-items:start; /* keeps text left-aligned */
  }
}
@media (max-width: 640px){
  .app-cta{ gap:16px; }
  .app-cta__card{ min-height:220px; }
}

.about { margin: 28px 0 64px; }
.grid { display:grid; gap:18px; }
.grid.two { grid-template-columns: 1.2fr 1fr; }
.grid.three { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .grid.two,.grid.three{ grid-template-columns: 1fr; } }

.card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:12px; padding:18px; }
.card.highlight { background: #0f172a; color:#fff; }
.card__icon{ font-size:22px; margin-bottom:8px; }

.checklist{ padding-left:18px; margin:0; }
.checklist li{ margin:6px 0; }

.band{ margin-top:36px; padding:22px; background: #f8fafc; border-radius:12px; }

.stats{ display:grid; grid-template-columns: repeat(4,1fr); gap:12px; text-align:center; }
.stat__num{ font-weight:800; font-size:28px; }
.stat__label{ color:#64748b; font-size:14px; }
@media (max-width: 700px){ .stats{ grid-template-columns: repeat(2,1fr);} }

.timeline{ margin-top:40px; }
.timeline ol{ list-style:none; margin:0; padding:0; border-left:2px dashed #e2e8f0; }
.timeline li{ position:relative; margin:0 0 18px 18px; padding-left:12px; }
.timeline .dot{ position:absolute; left:-10px; top:6px; width:12px; height:12px; border-radius:50%; background:#0ea5e9; }

.trust .logos-row{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin-top:12px;}
.trust .logos-row img{ height:28px; width:auto; filter: grayscale(100%); opacity:.9; }

.team{ margin-top:40px; }
.person img{ width:100%; height:240px; object-fit:cover; border-radius:12px; margin-bottom:8px; }

.faq details{ border:1px solid #e5e7eb; border-radius:10px; padding:12px 14px; margin:10px 0; background:#fff; }
.faq summary{ cursor:pointer; font-weight:600; display:flex; align-items:center; gap:10px; }

.contact .row{ display:flex; gap:12px; flex-wrap:wrap; }

/* Toast used by iOS “coming soon” */
#soonToast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20,20,20,.95);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}
#soonToast.show{ opacity: 1; transform: translateX(-50%) translateY(0); }








