/* =====================================================
   FLIPZIFY FINAL MERGED PREMIUM STYLE.CSS
   Premium Olive Theme + Responsive + Animations
===================================================== */

:root{
  --olive:#556b2f;
  --olive-2:#6f873d;
  --olive-dark:#1f2d12;
  --olive-deep:#111b09;
  --olive-soft:#edf4df;
  --olive-light:#f8fbef;
  --cream:#fbfaf4;
  --white:#ffffff;
  --text:#17210f;
  --muted:#66715c;
  --muted-2:#8b947f;
  --border:#dfe8d2;
  --danger:#c0392b;
  --success:#1f8f45;
  --warning:#d98b17;
  --shadow:0 24px 70px rgba(31,45,18,.14);
  --shadow-soft:0 14px 34px rgba(31,45,18,.09);
  --shadow-hover:0 30px 80px rgba(31,45,18,.20);
  --radius:26px;
  --radius-lg:38px;
  --transition:.28s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left,rgba(85,107,47,.08),transparent 34%),
    var(--cream);
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
}

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

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

button,input,select,textarea{
  font-family:inherit;
}

button{
  cursor:pointer;
}

button:disabled{
  opacity:.55;
  cursor:not-allowed;
}

input,select,textarea{
  width:100%;
  border:1px solid var(--border);
  outline:none;
  border-radius:16px;
  padding:14px 15px;
  font-size:15px;
  background:#fff;
  color:var(--text);
  transition:var(--transition);
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--olive);
  box-shadow:0 0 0 4px rgba(85,107,47,.12);
}

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

.hidden{
  display:none!important;
}

/* ================= TOP MARQUEE ================= */

.top-marquee{
  background:linear-gradient(90deg,var(--olive-deep),var(--olive-dark));
  color:#fff;
  overflow:hidden;
  padding:9px 0;
  white-space:nowrap;
}

.marquee-track{
  display:inline-flex;
  gap:42px;
  animation:marqueeMove 28s linear infinite;
}

.marquee-track:hover{
  animation-play-state:paused;
}

.marquee-track span{
  font-size:14px;
  font-weight:900;
}

@keyframes marqueeMove{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ================= HEADER ================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(223,232,210,.9);
  box-shadow:0 12px 35px rgba(31,45,18,.07);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:28px;
  font-weight:950;
  color:var(--olive-dark);
  letter-spacing:-.8px;
}

.logo small{
  display:block;
  margin-top:-6px;
  font-size:10px;
  font-weight:900;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.7px;
}

.logo-badge{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  overflow:hidden;
  background:#ffffff00;
  box-shadow:0 10px 24px rgba(31, 45, 18, 0);
}

.logo-badge img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-links a{
  position:relative;
  padding:10px 15px;
  border-radius:999px;
  font-size:14px;
  font-weight:850;
  color:var(--olive-dark);
  transition:var(--transition);
}

.nav-links a:hover,
.nav-links a.active{
  background:var(--olive-soft);
  color:var(--olive-dark);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:4px;
  width:0;
  height:2px;
  background:var(--olive);
  border-radius:99px;
  transform:translateX(-50%);
  transition:var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:34%;
}

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

.cart-btn{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  position:relative;
  border-radius:50%;
  background:#fff;
  color:var(--olive-dark);
  font-size:24px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.cart-btn:hover{
  transform:translateY(-3px) scale(1.04);
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--olive);
  color:#fff;
  border:2px solid #fff;
  font-size:11px;
  font-weight:950;
}

.menu-btn{
  width:46px;
  height:46px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:50%;
  display:none;
  place-items:center;
  gap:4px;
  box-shadow:var(--shadow-soft);
}

.menu-btn span{
  width:19px;
  height:2px;
  background:var(--olive-dark);
  border-radius:99px;
}

/* ================= COMMON ================= */

.section{
  padding:82px 0;
}

.white-section{
  background:#fff;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--olive-soft);
  color:var(--olive);
  border:1px solid var(--border);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:18px;
}

.light-eyebrow{
  background:rgba(255,255,255,.15);
  color:#fff;
  border-color:rgba(255,255,255,.25);
}

.section-head{
  max-width:780px;
  margin:0 auto 44px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(31px,4vw,50px);
  line-height:1.08;
  letter-spacing:-1.4px;
  color:var(--olive-dark);
  margin-bottom:12px;
}

.section-head p{
  color:var(--muted);
  font-size:16px;
}

.form-subtitle{
  color:var(--muted);
  margin:-8px 0 18px;
}

/* ================= BUTTONS ================= */

.btn,
.primary-btn,
.secondary-btn,
.mini-btn,
.checkout-link,
.shop-link,
.faq-whatsapp-btn,
.buy-now-btn,
.wishlist-btn,
.copy-order-btn,
.clear-cart-btn,
.danger-btn,
.fz-save-product,
.fz-clear-form,
.fz-admin-logout{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-weight:950;
  border:0;
  transition:var(--transition);
  min-height:44px;
  white-space:nowrap;
}

.btn{
  padding:13px 24px;
  font-size:15px;
}

.btn-primary,
.primary-btn,
.checkout-link,
.buy-now-btn,
.fz-save-product{
  background:linear-gradient(135deg,var(--olive-2),var(--olive-dark));
  color:#fff;
  box-shadow:0 16px 34px rgba(85,107,47,.26);
}

.btn-secondary,
.secondary-btn,
.shop-link,
.wishlist-btn,
.fz-clear-form{
  background:#fff;
  color:var(--olive-dark);
  border:1px solid var(--border);
}

.btn-light{
  background:#fff;
  color:var(--olive-dark);
}

.btn-outline-light{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  background:transparent;
}

.btn-wide{
  width:100%;
}

.danger-btn,
.clear-cart-btn{
  background:#fff1ef;
  color:var(--danger);
  border:1px solid #ffd3cc;
}

.btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.mini-btn:hover,
.checkout-link:hover,
.shop-link:hover,
.buy-now-btn:hover,
.wishlist-btn:hover,
.copy-order-btn:hover,
.fz-save-product:hover,
.fz-clear-form:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-hover);
}

/* ================= HERO ================= */

.hero,
.products-hero,
.about-hero,
.checkout-hero,
.cart-hero,
.tracking-hero,
.return-hero,
.legal-hero{
  padding:78px 0 62px;
  background:
    radial-gradient(circle at 9% 18%,rgba(85,107,47,.15),transparent 33%),
    radial-gradient(circle at 92% 12%,rgba(85,107,47,.10),transparent 30%),
    linear-gradient(135deg,#fbfff1,#ffffff);
}

.hero-grid,
.products-hero-grid,
.about-hero-grid,
.checkout-hero-grid,
.tracking-hero-grid,
.return-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:48px;
  align-items:center;
}

.hero h1,
.products-hero h1,
.about-hero h1,
.checkout-hero h1,
.cart-hero h1,
.tracking-hero h1,
.return-hero h1,
.legal-hero h1{
  font-size:clamp(40px,6vw,76px);
  line-height:.96;
  letter-spacing:-2.5px;
  color:var(--olive-dark);
  margin-bottom:20px;
}

.hero p,
.products-hero p,
.about-hero p,
.checkout-hero p,
.cart-hero p,
.tracking-hero p,
.return-hero p,
.legal-hero p,
.lead{
  color:var(--muted);
  font-size:18px;
  max-width:660px;
  margin-bottom:24px;
}

.hero-actions,
.about-actions,
.return-hero-actions,
.thankyou-actions,
.product-actions,
.detail-actions,
.cart-summary-actions,
.track-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.searchbar,
.hero-search-box,
.tracking-search,
.return-tracker-form{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px;
  max-width:660px;
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
}

.searchbar input,
.hero-search-box input,
.tracking-search input,
.return-tracker-form input{
  flex:1;
  border:0;
  box-shadow:none;
  background:transparent;
  padding:0 16px;
}

.searchbar button,
.hero-search-box button,
.tracking-search button,
.return-tracker-form button{
  border:0;
  padding:13px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--olive),var(--olive-dark));
  color:#fff;
  font-weight:950;
  white-space:nowrap;
}

.tracking-hint{
  font-size:14px!important;
  color:var(--muted)!important;
}

.hero-points{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-points div{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:22px;
  padding:17px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.hero-points div:hover{
  transform:translateY(-5px);
}

.hero-points strong{
  display:block;
  font-size:21px;
  color:var(--olive-dark);
}

.hero-points span{
  color:var(--muted);
  font-size:13px;
}

/* ================= SLIDER / VISUALS ================= */

.hero-slider{
  height:540px;
  border-radius:38px;
  overflow:hidden;
  position:relative;
  border:10px solid #fff;
  background:var(--olive-soft);
  box-shadow:var(--shadow);
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.08);
  transition:.9s ease;
}

.slide.active-slide{
  opacity:1;
  transform:scale(1);
}

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

.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(17,27,9,.76),rgba(17,27,9,.04));
}

.slide-content{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:26px;
  padding:22px;
}

.slide-content span{
  color:var(--olive);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}

.slide-content h3{
  color:var(--olive-dark);
  font-size:25px;
  line-height:1.15;
  margin-top:5px;
}

.slider-dots{
  position:absolute;
  top:24px;
  right:24px;
  z-index:4;
  display:flex;
  gap:8px;
}

.slider-dots button{
  width:11px;
  height:11px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.68);
  transition:var(--transition);
}

.slider-dots button.active-dot{
  width:30px;
  border-radius:99px;
  background:#fff;
}

/* ================= CARDS / GRIDS ================= */

.service-strip,
.checkout-trust-section,
.cart-trust-section,
.product-trust-section,
.return-trust,
.tracking-trust-grid,
.review-trust-strip,
.about-stats{
  width:min(1180px,92%);
  margin:35px auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-strip{
  grid-template-columns:repeat(3,1fr);
  margin-top:-30px;
  position:relative;
  z-index:5;
}

.service-card,
.sidebar-point,
.payment-card,
.checkout-mini-card,
.return-process-card,
.process-card,
.mission-card,
.eligible-card,
.review-card,
.faq-item,
.legal-card,
.note-box,
.checkout-warning,
.return-policy-check,
.premium-policy-check,
.policy-check,
.cart-saving-box,
.sidebar-offer{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.service-card:hover,
.sidebar-point:hover,
.payment-card:hover,
.process-card:hover,
.mission-card:hover,
.eligible-card:hover,
.review-card:hover,
.faq-item:hover,
.legal-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.service-card{
  display:flex;
  align-items:center;
  gap:16px;
}

.service-card img{
  width:82px;
  height:82px;
  border-radius:20px;
  object-fit:cover;
}

.service-card h3,
.process-card h3,
.mission-card h3,
.eligible-card h3,
.faq-item h3,
.review-card h3{
  color:var(--olive-dark);
  font-size:19px;
  margin-bottom:5px;
}

.service-card p,
.process-card p,
.mission-card p,
.eligible-card p,
.faq-item p,
.review-card p{
  color:var(--muted);
  font-size:14px;
}

.category-grid,
.values-grid,
.growth-grid,
.process-grid,
.return-policy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.category-card,
.showcase-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  min-height:420px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.category-card:hover,
.showcase-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
}

.category-card img,
.showcase-card img{
  height:100%;
  object-fit:cover;
  transition:.8s ease;
}

.category-card:hover img,
.showcase-card:hover img{
  transform:scale(1.08);
}

.category-card::after,
.showcase-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(17,27,9,.82),rgba(17,27,9,.06));
}

.category-card div,
.showcase-card div{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:2;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  padding:18px;
  color:#fff;
}

.category-card span,
.showcase-card span{
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}

.category-card h3,
.showcase-card h3{
  font-size:25px;
  line-height:1.1;
  margin:8px 0;
}

.hero-product-showcase .showcase-card{
  min-height:520px;
}

/* ================= PRODUCTS ================= */

.premium-filter-bar{
  width:min(1180px,92%);
  margin:34px auto;
  display:grid;
  grid-template-columns:1.3fr .75fr .75fr;
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.category-pills{
  width:min(1180px,92%);
  margin:0 auto 28px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.category-pills button{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  color:var(--olive-dark);
  font-weight:900;
  transition:var(--transition);
}

.category-pills button:hover,
.category-pills button.active-cat{
  background:var(--olive-dark);
  color:#fff;
  transform:translateY(-3px);
}

.product-layout{
  width:min(1180px,92%);
  margin:45px auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  align-items:start;
}

.product-sidebar,
.product-main-area{
  background:#fff;
  border:1px solid var(--border);
  border-radius:32px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.product-sidebar{
  position:sticky;
  top:105px;
  display:grid;
  gap:14px;
}

.product-sidebar h3{
  color:var(--olive-dark);
  font-size:22px;
}

.sidebar-point{
  padding:16px;
}

.sidebar-point strong{
  color:var(--olive-dark);
}

.sidebar-point p{
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}

.sidebar-offer{
  background:linear-gradient(135deg,var(--olive),var(--olive-dark));
  color:#fff;
}

.sidebar-offer span{
  display:block;
  color:rgba(255,255,255,.78);
  margin-top:5px;
}

.product-list-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.product-list-head h2{
  color:var(--olive-dark);
  font-size:34px;
  line-height:1.1;
}

.product-list-head p{
  color:var(--muted);
  font-weight:850;
}

.product-grid,
.premium-product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.section .premium-product-grid,
.section .product-grid{
  width:min(1180px,92%);
  margin:auto;
}

.product-card{
  min-height:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  position:relative;
  transition:var(--transition);
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
}

.product-image{
  height:235px;
  position:relative;
  overflow:hidden;
  background:var(--olive-soft);
}

.product-image img{
  height:100%;
  object-fit:cover;
  transition:.8s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-image span,
.tag,
.live-view{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(255,255,255,.94);
  color:var(--olive-dark);
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.live-view{
  left:auto;
  right:14px;
  color:var(--success);
}

.product-info{
  padding:20px;
  display:flex;
  flex-direction:column;
  height:calc(100% - 235px);
}

.product-info h3{
  color:var(--olive-dark);
  font-size:19px;
  line-height:1.25;
  margin-bottom:7px;
  min-height:48px;
}

.product-info p{
  color:var(--muted);
  font-size:14px;
  margin-bottom:14px;
  min-height:44px;
}

.rating-row,
.detail-rating-row{
  color:#d99a1b;
  font-weight:900;
  font-size:14px;
  margin-bottom:10px;
}

.price-row,
.product-bottom,
.detail-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.price-row strong,
.product-bottom strong,
.detail-price-row strong{
  color:var(--olive);
  font-size:24px;
  font-weight:950;
}

.price-row del,
.detail-price-row del{
  color:var(--muted-2);
  font-size:14px;
}

.product-actions{
  margin-top:auto!important;
  padding-top:16px;
}

.mini-btn{
  flex:1;
  min-width:110px;
  background:var(--olive-dark);
  color:#fff;
  padding:10px 16px;
  font-size:13px;
}

.status-pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:var(--olive-soft);
  color:var(--olive-dark);
  font-weight:950;
  font-size:12px;
}

.status-pill.dark{
  background:var(--olive-dark);
  color:#fff;
}

.empty-products,
.fz-loading-products,
.loader,
.loading-track,
.empty-track,
.empty-return-track,
.not-found-track,
.empty-cart-msg{
  grid-column:1/-1;
  text-align:center;
  background:#fff;
  border:1px dashed var(--border);
  border-radius:28px;
  padding:38px;
  color:var(--muted);
  box-shadow:var(--shadow-soft);
}

.pagination{
  width:100%;
  margin:30px auto 0;
}

/* ================= PRODUCT MODAL ================= */

.product-details-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(17,27,9,.72);
  backdrop-filter:blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.product-details-modal.show{
  display:flex;
}

.product-details-box{
  width:min(1000px,96vw);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:34px;
  box-shadow:0 40px 100px rgba(0,0,0,.35);
  position:relative;
  padding:24px;
}

.modal-close-btn{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  font-size:22px;
  z-index:3;
}

.product-details-box .product-layout{
  width:100%;
  margin:0;
  grid-template-columns:.9fr 1.1fr;
}

.details-image-box img{
  height:430px;
  object-fit:cover;
  border-radius:26px;
}

.details-thumb-row{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.details-thumb-row img{
  width:72px;
  height:72px;
  border-radius:14px;
  object-fit:cover;
  border:2px solid var(--border);
  cursor:pointer;
}

.detail-feature-box,
.detail-use-box,
.detail-policy-grid div{
  background:var(--olive-light);
  border:1px solid var(--border);
  border-radius:20px;
  padding:16px;
  margin-top:14px;
}

.detail-policy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}

/* ================= CART / CHECKOUT / RETURN / TRACK ================= */

.cart-layout,
.premium-checkout-layout,
.return-main-layout,
.premium-tracking-wrap,
.legal-premium-layout{
  width:min(1180px,92%);
  margin:50px auto;
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:24px;
  align-items:start;
}

.cart-items-panel,
.cart-summary-panel,
.premium-cart-summary,
.premium-checkout-form,
.checkout-price-box,
.premium-return-form,
.return-result-card,
.premium-result-card,
.legal-toc,
.legal-content{
  background:#fff;
  border:1px solid var(--border);
  border-radius:32px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.cart-summary-panel,
.premium-cart-summary,
.legal-toc{
  position:sticky;
  top:105px;
}

.cart-panel-head,
.summary-head,
.fz-form-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}

.cart-product-card,
.checkout-cart-item{
  display:grid;
  grid-template-columns:100px 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px;
  border:1px solid var(--border);
  border-radius:24px;
  margin-bottom:14px;
  background:var(--olive-light);
  word-break:break-word;
}

.cart-product-card img,
.checkout-cart-item img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:18px;
}

.qty-controls{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
}

.qty-controls button{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  font-weight:950;
}

.remove-cart-btn{
  color:var(--danger);
  background:#fff;
  border:1px solid #ffd4ce;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  margin-top:8px;
}

.cart-summary-row,
.return-line,
.return-status-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  color:var(--muted);
}

.cart-summary-row.total,
.grand-total{
  color:var(--olive-dark);
  font-size:21px;
  font-weight:950;
  border-bottom:0;
}

.cart-summary-actions{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.cart-saving-box{
  background:var(--olive-light);
  margin:14px 0;
}

.cart-saving-box strong{
  color:var(--olive-dark);
}

.cart-saving-box p,
.note-box p,
.checkout-warning p{
  color:var(--muted);
  font-size:14px;
  margin-top:5px;
}

.premium-checkout-steps,
.thankyou-steps{
  width:min(1180px,92%);
  margin:34px auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.premium-checkout-steps div,
.thankyou-steps div{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.premium-checkout-steps span,
.thankyou-steps span,
.return-status-step span,
.timeline-step span,
.checkout-mini-card span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--olive-soft);
  color:var(--olive-dark);
  font-weight:950;
  margin-bottom:10px;
}

.premium-checkout-steps .active span,
.timeline-step.active span{
  background:var(--olive-dark);
  color:#fff;
}

.checkout-mini-card{
  display:grid;
  gap:12px;
}

.checkout-mini-card div{
  display:flex;
  align-items:center;
  gap:12px;
}

.checkout-mini-card div p{
  margin:0;
  font-size:14px;
}

.form-row,
.return-form-grid,
.fz-form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  align-items:start;
}

.form-row label,
.return-form-grid label,
.fz-form-grid label,
.fz-product-form label,
.premium-checkout-form label,
.premium-return-form label{
  display:block;
  color:var(--olive-dark);
  font-weight:900;
  font-size:14px;
  width:100%;
  margin-bottom:14px;
}

.form-row input,
.form-row select,
.form-row textarea,
.return-form-grid input,
.return-form-grid select,
.return-form-grid textarea,
.fz-form-grid input,
.fz-form-grid select,
.fz-form-grid textarea{
  margin-top:7px;
}

.payment-options{
  display:grid;
  gap:12px;
  margin:20px 0;
}

.payment-card{
  display:flex!important;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
  margin-bottom:0!important;
}

.payment-card input{
  width:auto;
  min-width:18px;
  margin-top:6px;
  box-shadow:none!important;
}

.payment-card p{
  color:var(--muted);
  font-size:14px;
}

.policy-check{
  display:flex!important;
  align-items:flex-start;
  gap:10px;
  line-height:1.5;
}

.policy-check input{
  width:18px!important;
  min-width:18px;
  height:18px;
  margin-top:4px;
  box-shadow:none!important;
}

.policy-check span{
  flex:1;
  color:var(--muted);
}

.policy-check a{
  color:var(--olive-dark);
  font-weight:950;
}

/* ================= TRACK / RETURN VISUALS ================= */

.tracking-visual,
.why-image,
.about-hero-image,
.return-hero-card{
  position:relative;
  border-radius:36px;
  overflow:hidden;
  min-height:520px;
  box-shadow:var(--shadow);
}

.tracking-visual img,
.why-image img,
.about-hero-image img,
.return-hero-card img{
  height:100%;
  object-fit:cover;
}

.tracking-floating-card,
.about-floating-card,
.return-badge{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  padding:20px;
}

.tracking-floating-card strong,
.about-floating-card strong,
.return-badge strong{
  display:block;
  color:var(--olive-dark);
  font-size:20px;
}

.premium-timeline{
  display:grid;
  gap:14px;
}

.timeline-step,
.return-status-step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.timeline-step.active{
  border-color:var(--olive);
  background:var(--olive-light);
}

.return-policy-grid ul,
.legal-card ul{
  padding-left:20px;
  color:var(--muted);
}

/* ================= ABOUT ================= */

.why-section,
.about-story,
.about-mission{
  width:min(1180px,92%);
  margin:78px auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
}

.why-content h2,
.about-story h2,
.about-mission h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.08;
  color:var(--olive-dark);
  letter-spacing:-1.4px;
  margin-bottom:16px;
}

.why-content p,
.about-story p,
.about-mission p{
  color:var(--muted);
  margin-bottom:16px;
}

.why-list,
.check-list{
  display:grid;
  gap:12px;
  list-style:none;
}

.why-list li,
.check-list li{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:13px 15px;
  box-shadow:var(--shadow-soft);
}

.about-values{
  width:min(1180px,92%);
  margin:70px auto;
}

.review-card img{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:14px;
}

/* ================= BANNERS ================= */

.premium-banner,
.about-cta,
.return-cta,
.checkout-info-banner,
.thankyou-cta,
.tracking-support-box,
.faq-support-box{
  width:min(1180px,92%);
  margin:54px auto;
  padding:46px;
  border-radius:38px;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.18),transparent 30%),
    linear-gradient(135deg,var(--olive),var(--olive-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  box-shadow:var(--shadow);
}

.premium-banner h2,
.about-cta h2,
.return-cta h2,
.checkout-info-banner h2,
.thankyou-cta h2,
.tracking-support-box h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.08;
  letter-spacing:-1.4px;
  margin-bottom:12px;
}

.premium-banner p,
.about-cta p,
.return-cta p,
.checkout-info-banner p,
.thankyou-cta p,
.tracking-support-box p{
  color:rgba(255,255,255,.78);
}

/* ================= LEGAL ================= */

.legal-premium-layout{
  grid-template-columns:.32fr .68fr;
}

.legal-toc{
  display:grid;
  gap:10px;
}

.legal-toc h3{
  color:var(--olive-dark);
}

.legal-toc a{
  padding:11px 13px;
  border-radius:14px;
  color:var(--muted);
  font-weight:850;
  transition:var(--transition);
}

.legal-toc a:hover{
  background:var(--olive-soft);
  color:var(--olive-dark);
}

.legal-content{
  display:grid;
  gap:18px;
}

.legal-card h2{
  color:var(--olive-dark);
  margin-bottom:10px;
}

/* ================= THANK YOU ================= */

.thankyou-hero{
  min-height:calc(100vh - 120px);
  display:grid;
  place-items:center;
  text-align:center;
  padding:80px 20px;
  background:
    radial-gradient(circle at 50% 12%,rgba(85,107,47,.15),transparent 28%),
    linear-gradient(135deg,#fbfff1,#fff);
}

.success-circle{
  width:96px;
  height:96px;
  display:grid;
  place-items:center;
  border-radius:50%;
  margin:0 auto 20px;
  background:linear-gradient(135deg,var(--success),#0f6e31);
  color:#fff;
  font-size:48px;
  font-weight:950;
  box-shadow:0 20px 50px rgba(31,143,69,.28);
  animation:popIn .55s ease both;
}

.thankyou-hero h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1;
  color:var(--olive-dark);
  letter-spacing:-2px;
  max-width:850px;
}

.thankyou-hero p{
  max-width:720px;
  color:var(--muted);
}

.order-id-card{
  width:min(520px,92vw);
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:26px;
  margin:24px auto;
  box-shadow:var(--shadow);
}

.order-id-card h3{
  color:var(--olive);
  font-size:30px;
  letter-spacing:.5px;
}

.copy-order-btn{
  margin-top:14px;
  padding:12px 20px;
  background:var(--olive-dark);
  color:#fff;
}

/* ================= ADMIN ================= */

.fz-admin-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 15% 12%,rgba(85,107,47,.18),transparent 34%),
    linear-gradient(135deg,#f8fbef,#fff);
  padding:40px 20px;
}

.fz-admin-login{
  min-height:calc(100vh - 80px);
  display:grid;
  place-items:center;
}

.fz-admin-card{
  width:min(430px,94vw);
  background:#fff;
  border:1px solid var(--border);
  border-radius:34px;
  padding:30px;
  box-shadow:var(--shadow);
}

.fz-admin-logo{
  text-align:center;
  margin-bottom:22px;
}

.fz-admin-logo img{
  width:74px;
  height:74px;
  object-fit:contain;
  margin:0 auto 12px;
}

.fz-admin-logo h1{
  color:var(--olive-dark);
  font-size:30px;
}

.fz-admin-card button,
.fz-save-product{
  width:100%;
  padding:14px 20px;
  margin-top:14px;
}

.fz-admin-small{
  color:var(--muted);
  font-size:13px;
  text-align:center;
  margin-top:14px;
}

.fz-admin-dashboard{
  width:min(1180px,96%);
  margin:auto;
}

.fz-admin-topbar,
.fz-admin-stats,
.fz-admin-note,
.fz-product-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  margin-bottom:20px;
}

.fz-admin-topbar{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}

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

.fz-admin-stats div{
  background:var(--olive-light);
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
}

.fz-admin-stats strong{
  color:var(--olive-dark);
  font-size:22px;
}

.fz-admin-message{
  margin-top:14px;
  color:var(--olive-dark);
  font-weight:900;
}

/* ================= FOOTER ================= */

.footer{
  background:
    radial-gradient(circle at top left, rgba(139,148,68,.12), transparent 34%),
    linear-gradient(180deg,#1b2118,#151914);
  color:#f5f5f0;
  padding:75px 0 24px;
  margin-top:80px;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-wrap{
  display:grid;
  grid-template-columns:1.35fr .85fr .95fr 1fr;
  gap:45px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  margin-bottom:22px;
}

.footer-logo img{
  width:62px;
  height:62px;
  object-fit:contain;
  background:transparent;
  padding:0;
  border-radius:0;
  box-shadow:none;
}

.footer-logo h2{
  margin:0;
  font-size:32px;
  color:#fff;
  font-weight:900;
}

.footer-logo span{
  color:#bfc78e;
  font-size:14px;
  font-weight:700;
}

.footer-brand p{
  color:#cfd4ca;
  line-height:1.8;
  max-width:430px;
  margin-bottom:26px;
}

.footer-socials{
  display:flex;
  gap:12px;
}

.footer-socials a{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(31,45,21,.06);
}

.footer-socials a:hover{
  background:#6b722d;
  color:#fff;
  transform:translateY(-4px);
}

.footer-col h3{
  font-size:18px;
  margin-bottom:24px;
  color:#fff;
  position:relative;
}

.footer-col h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:34px;
  height:3px;
  border-radius:999px;
  background:#8b9444;
}

.footer-col a{
  display:block;
  color:#cfd4ca;
  text-decoration:none;
  margin-bottom:15px;
  transition:.3s ease;
  font-weight:600;
}

.footer-col a:hover{
  color:#fff;
  transform:translateX(6px);
}

.footer-contact a{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-contact i{
  color:#6b722d;
}

.footer-help-btn{
  margin-top:10px;
  display:inline-flex !important;
  width:max-content;
  padding:12px 18px;
  border-radius:999px;
  background:#6b722d;
  color:#fff !important;
  font-weight:900;
  box-shadow:0 14px 30px rgba(107,114,45,.22);
}

.footer-help-btn:hover{
  background:#596022;
  transform:translateY(-4px) !important;
}

.footer-bottom{
  margin-top:50px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#cfd4ca;
  font-size:14px;
}

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

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

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

/* ================= ANIMATIONS ================= */

.reveal-section,
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:.75s ease;
}

.reveal-section.visible,
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes popIn{
  from{transform:scale(.7);opacity:0}
  to{transform:scale(1);opacity:1}
}

.toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(20px);
  background:var(--olive-dark);
  color:#fff;
  padding:13px 20px;
  border-radius:999px;
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:var(--transition);
  z-index:4000;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
  .hero-grid,
  .products-hero-grid,
  .about-hero-grid,
  .checkout-hero-grid,
  .tracking-hero-grid,
  .return-hero-grid,
  .why-section,
  .about-story,
  .about-mission,
  .cart-layout,
  .premium-checkout-layout,
  .return-main-layout,
  .premium-tracking-wrap,
  .legal-premium-layout,
  .product-layout,
  .product-details-box .product-layout{
    grid-template-columns:1fr;
  }

  .product-sidebar,
  .cart-summary-panel,
  .premium-cart-summary,
  .legal-toc{
    position:static;
  }

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

  .service-strip,
  .checkout-trust-section,
  .cart-trust-section,
  .product-trust-section,
  .return-trust,
  .tracking-trust-grid,
  .review-trust-strip,
  .about-stats,
  .premium-checkout-steps,
  .thankyou-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:840px){
  .menu-btn{
    display:grid;
  }

  .nav-links{
    position:absolute;
    left:4%;
    right:4%;
    top:88px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:14px;
    box-shadow:var(--shadow);
  }

  .nav-links.show{
    display:flex;
  }

  .nav-links a{
    width:100%;
  }

  .hero-slider,
  .tracking-visual,
  .why-image,
  .about-hero-image,
  .return-hero-card{
    height:430px;
    min-height:430px;
  }

  .category-grid,
  .values-grid,
  .growth-grid,
  .process-grid,
  .return-policy-grid,
  .fz-admin-stats{
    grid-template-columns:1fr;
  }

  .premium-filter-bar,
  .form-row,
  .return-form-grid,
  .fz-form-grid{
    grid-template-columns:1fr;
  }

  .premium-banner,
  .about-cta,
  .return-cta,
  .checkout-info-banner,
  .thankyou-cta,
  .tracking-support-box,
  .faq-support-box,
  .fz-admin-topbar{
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
  }

}

@media(max-width:560px){
  .container{
    width:92%;
  }

  .top-marquee{
    padding:8px 0;
  }

  .marquee-track{
    gap:28px;
    animation-duration:22s;
  }

  .logo{
    font-size:22px;
  }

  .logo small{
    display:none;
  }

  .logo-badge{
    width:40px;
    height:40px;
  }

  .nav{
    min-height:70px;
  }

  .hero,
  .products-hero,
  .about-hero,
  .checkout-hero,
  .cart-hero,
  .tracking-hero,
  .return-hero,
  .legal-hero{
    padding:48px 0 42px;
  }

  .hero h1,
  .products-hero h1,
  .about-hero h1,
  .checkout-hero h1,
  .cart-hero h1,
  .tracking-hero h1,
  .return-hero h1,
  .legal-hero h1{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  .hero p,
  .products-hero p,
  .about-hero p,
  .checkout-hero p,
  .cart-hero p,
  .tracking-hero p,
  .return-hero p,
  .legal-hero p{
    font-size:16px;
  }

  .searchbar,
  .hero-search-box,
  .tracking-search,
  .return-tracker-form{
    border-radius:22px;
    flex-direction:column;
    align-items:stretch;
  }

  .searchbar input,
  .hero-search-box input,
  .tracking-search input,
  .return-tracker-form input{
    min-height:46px;
  }

  .hero-points,
  .service-strip,
  .checkout-trust-section,
  .cart-trust-section,
  .product-trust-section,
  .return-trust,
  .tracking-trust-grid,
  .review-trust-strip,
  .about-stats,
  .premium-checkout-steps,
  .thankyou-steps{
    grid-template-columns:1fr;
  }

  .hero-slider,
  .tracking-visual,
  .why-image,
  .about-hero-image,
  .return-hero-card{
    height:360px;
    min-height:360px;
    border-radius:28px;
  }

  .hero-slider{
    border-width:7px;
  }

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

  .product-sidebar,
  .product-main-area,
  .cart-items-panel,
  .cart-summary-panel,
  .premium-checkout-form,
  .checkout-price-box,
  .premium-return-form,
  .return-result-card,
  .premium-result-card,
  .legal-toc,
  .legal-content{
    padding:18px;
    border-radius:24px;
  }

  .product-actions{
    flex-direction:column;
  }

  .product-actions button,
  .btn,
  .primary-btn,
  .secondary-btn,
  .checkout-link,
  .shop-link,
  .mini-btn{
    width:100%;
  }

  .cart-product-card,
  .checkout-cart-item{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }

  .cart-product-card img,
  .checkout-cart-item img{
    width:100%;
    height:210px;
  }

  .details-image-box img{
    height:300px;
  }

  .detail-policy-grid{
    grid-template-columns:1fr;
  }

  .premium-banner,
  .about-cta,
  .return-cta,
  .checkout-info-banner,
  .thankyou-cta,
  .tracking-support-box,
  .faq-support-box{
    width:92%;
    padding:26px;
    border-radius:28px;
  }
}

/* ================= WHATSAPP SUPPORT ================= */

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:3500;
  border:0;
  border-radius:999px;
  padding:13px 18px;
  display:flex;
  align-items:center;
  gap:9px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  font-weight:950;
  box-shadow:0 18px 45px rgba(18,140,126,.32);
  transition:.28s ease;
}

.whatsapp-float i{
  font-size:22px;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 24px 60px rgba(18,140,126,.42);
}

@media(max-width:560px){
  .whatsapp-float{
    right:14px;
    bottom:14px;
    padding:12px 15px;
  }

  .whatsapp-float span{
    display:none;
  }

  .whatsapp-float i{
    font-size:24px;
  }
}

/* IMAGE BLANK SPACE FIX */
.why-image,
.about-hero-image,
.tracking-visual,
.return-hero-card{
  height:520px;
  background:transparent;
}

.why-image img,
.about-hero-image img,
.tracking-visual img,
.return-hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* ===============================
   FLIPZIFY CLEAN PREMIUM 
   REVIEW SECTION
================================ */

.premium-reviews-section{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(107,114,45,.10), transparent 32%),
    linear-gradient(180deg,#fbfbf5,#f7f8ef);
  overflow:hidden;
}

.review-slider{
  position:relative;
  margin-top:45px;
}

.review-window{
  overflow:hidden;
  padding:10px 8px 28px;
}

.review-track{
  display:flex;
  gap:24px;
  transition:transform .6s ease;
  will-change:transform;
}

.premium-review-card{
  flex:0 0 calc((100% - 48px) / 3);
  min-height:330px;
  background:#fff;
  border:1px solid rgba(107,114,45,.15);
  border-radius:26px;
  padding:24px;
  position:relative;
  overflow:hidden;
  box-shadow:0 14px 38px rgba(31,45,21,.08);
  transition:.35s ease;
}

.premium-review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(31,45,21,.15);
  border-color:rgba(107,114,45,.35);
}

.quote-mark{
  position:absolute;
  right:22px;
  top:10px;
  font-size:70px;
  font-family:Georgia,serif;
  color:rgba(107,114,45,.12);
  line-height:1;
}

.review-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

.review-profile{
  width:78px;
  height:78px;
  position:relative;
  flex-shrink:0;
}

.review-profile img{
  width:78px;
  height:78px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #6b722d;
  padding:3px;
  background:#fff;
  box-shadow:0 12px 28px rgba(107,114,45,.22);
}

.review-profile span{
  position:absolute;
  right:-2px;
  bottom:3px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#6b722d;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  border:3px solid #fff;
}

.review-tag{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:#f0f2df;
  color:#5f6628;
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}

.premium-review-card h3{
  margin:0;
  font-size:20px;
  color:#111;
  font-weight:900;
}

.review-rating{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(107,114,45,.14);
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  margin-bottom:16px;
}

.review-rating span{
  color:#f6a400;
  letter-spacing:2px;
  font-size:16px;
}

.review-rating strong{
  color:#5f6628;
  font-size:14px;
}

.premium-review-card p{
  color:#555d66;
  font-size:15px;
  line-height:1.75;
  margin:0 0 18px;
}

.review-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 13px;
  border-radius:16px;
  background:#f5f6eb;
  color:#5f6628;
  font-size:13px;
  font-weight:800;
}

.review-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:30px;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  transition:.3s ease;
}

.review-arrow:hover{
  background:#6b722d;
  transform:translateY(-50%) scale(1.08);
}

.review-arrow.prev{
  left:-18px;
}

.review-arrow.next{
  right:-18px;
}

@media(max-width:992px){
  .premium-review-card{
    flex:0 0 calc((100% - 24px) / 2);
  }
}

@media(max-width:768px){
  .premium-reviews-section{
    padding:70px 0;
  }

  .review-window{
    padding:8px 2px 22px;
  }

  .premium-review-card{
    flex:0 0 100%;
    min-height:auto;
  }

  .review-arrow{
    width:38px;
    height:38px;
    font-size:26px;
  }

  .review-arrow.prev{
    left:4px;
  }

  .review-arrow.next{
    right:4px;
  }
}

/* ===============================
   PREMIUM TRUST SECTION
================================ */

.product-trust-section{
  width:min(1180px,92%);
  margin:70px auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.trust-card{
  background:#fff;
  border:1px solid rgba(107,114,45,.12);
  border-radius:30px;
  padding:30px 26px;
  box-shadow:0 14px 35px rgba(31,45,21,.05);
  transition:.35s ease;
}

.trust-card:hover{
  transform:translateY(-8px);
  border-color:#6b722d;
  box-shadow:0 24px 60px rgba(31,45,21,.12);
}

.trust-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#f1f3e2;
  color:#6b722d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:22px;
}

.trust-card h3{
  font-size:22px;
  line-height:1.4;
  margin-bottom:14px;
  color:#172012;
  font-weight:850;
}

.trust-card p{
  color:#596252;
  line-height:1.8;
  font-size:15px;
}

/* TABLET */
@media(max-width:992px){

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

}

/* MOBILE */
@media(max-width:768px){

  .product-trust-section{
    grid-template-columns:1fr;
    gap:18px;
  }

  .trust-card{
    padding:26px 22px;
    border-radius:24px;
  }

  .trust-card h3{
    font-size:20px;
  }

}

.confidence-section{
  padding:90px 0;
  background:#fff;
}

.confidence-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:45px;
}

.confidence-card{
  background:#fbfcf5;
  border:1px solid rgba(107,114,45,.14);
  border-radius:28px;
  padding:28px 24px;
  box-shadow:0 12px 30px rgba(31,45,21,.05);
  transition:.35s ease;
}

.confidence-card:hover{
  transform:translateY(-8px);
  border-color:#6b722d;
  box-shadow:0 24px 55px rgba(31,45,21,.12);
}

.confidence-card span{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#eef2da;
  color:#6b722d;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:20px;
}

.confidence-card h3{
  font-size:21px;
  color:#17210f;
  margin-bottom:10px;
}

.confidence-card p{
  color:#596252;
  font-size:15px;
  line-height:1.8;
}

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

@media(max-width:768px){
  .confidence-section{
    padding:70px 0;
  }

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

/* FIX ABOUT HIGHLIGHTS */
.about-highlights{
  width:min(1180px,92%);
  margin:45px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.highlight-card{
  min-height:150px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(107,114,45,.14);
  border-radius:24px;
  padding:24px 18px;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 12px 30px rgba(31,45,21,.06);
}

.highlight-card h3{
  font-size:28px;
  line-height:1.15;
  color:#1b2414;
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:-.5px;
}

.highlight-card p{
  color:#5e6658;
  font-size:15px;
  font-weight:700;
  margin:0;
}

.highlight-card:hover{
  transform:translateY(-6px);
  border-color:#6b722d;
  box-shadow:0 22px 50px rgba(31,45,21,.12);
}

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

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

  .highlight-card{
    min-height:125px;
  }
}

.tracking-features{
  width:min(1180px,92%);
  margin:60px auto 0;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.tracking-card{
  background:#fff;
  border:1px solid rgba(107,114,45,.12);
  border-radius:28px;
  padding:30px 24px;

  box-shadow:0 12px 35px rgba(31,45,21,.05);
  transition:.35s ease;
}

.tracking-card:hover{
  transform:translateY(-8px);
  border-color:#6b722d;
  box-shadow:0 24px 60px rgba(31,45,21,.12);
}

.tracking-icon{
  width:58px;
  height:58px;
  border-radius:18px;

  background:#eef2da;
  color:#6b722d;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
  margin-bottom:20px;
}

.tracking-card h3{
  font-size:24px;
  line-height:1.35;
  margin-bottom:12px;
  color:#172012;
  font-weight:800;
}

.tracking-card p{
  color:#596252;
  font-size:15px;
  line-height:1.8;
}

/* TABLET */
@media(max-width:992px){

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

}

/* MOBILE */
@media(max-width:768px){

  .tracking-features{
    grid-template-columns:1fr;
  }

  .tracking-card{
    padding:26px 22px;
  }

  .tracking-card h3{
    font-size:22px;
  }

}

.return-help-section{
  width:min(1180px,92%);
  margin:55px auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.return-help-card{
  background:#fff;
  border:1px solid rgba(107,114,45,.14);
  border-radius:28px;
  padding:30px 24px;
  box-shadow:0 14px 35px rgba(31,45,21,.06);
  transition:.35s ease;
}

.return-help-card:hover{
  transform:translateY(-8px);
  border-color:#6b722d;
  box-shadow:0 24px 60px rgba(31,45,21,.12);
}

.return-help-card span{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#eef2da;
  color:#6b722d;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:20px;
}

.return-help-card h3{
  font-size:22px;
  color:#172012;
  margin-bottom:10px;
  font-weight:850;
}

.return-help-card p{
  color:#596252;
  font-size:15px;
  line-height:1.8;
}

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

@media(max-width:768px){
  .return-help-section{
    grid-template-columns:1fr;
  }
}

.checkout-trust-section{
  width:min(1180px,92%);
  margin:60px auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.checkout-trust-card{
  background:#fff;
  border:1px solid rgba(107,114,45,.14);
  border-radius:28px;

  padding:30px 24px;

  box-shadow:0 14px 35px rgba(31,45,21,.06);
  transition:.35s ease;
}

.checkout-trust-card:hover{
  transform:translateY(-8px);
  border-color:#6b722d;

  box-shadow:0 24px 60px rgba(31,45,21,.12);
}

.checkout-icon{
  width:58px;
  height:58px;

  border-radius:18px;

  background:#eef2da;
  color:#6b722d;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:25px;
  margin-bottom:20px;
}

.checkout-trust-card h3{
  font-size:24px;
  line-height:1.4;
  margin-bottom:12px;

  color:#172012;
  font-weight:850;
}

.checkout-trust-card p{
  color:#596252;
  font-size:15px;
  line-height:1.8;
}

/* TABLET */
@media(max-width:992px){

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

}

/* MOBILE */
@media(max-width:768px){

  .checkout-trust-section{
    grid-template-columns:1fr;
  }

}

.checkout-info-section{
  width:min(1180px,92%);
  margin:60px auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.checkout-info-card{
  background:#fff;
  border:1px solid rgba(107,114,45,.14);

  border-radius:28px;
  padding:30px 24px;

  box-shadow:0 14px 35px rgba(31,45,21,.06);

  transition:.35s ease;
}

.checkout-info-card:hover{
  transform:translateY(-8px);

  border-color:#6b722d;

  box-shadow:0 24px 60px rgba(31,45,21,.12);
}

.checkout-info-icon{
  width:58px;
  height:58px;

  border-radius:18px;

  background:#eef2da;
  color:#6b722d;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:25px;
  margin-bottom:20px;
}

.checkout-info-card h3{
  font-size:24px;
  color:#172012;

  margin-bottom:12px;
  font-weight:850;
}

.checkout-info-card p{
  color:#596252;

  font-size:15px;
  line-height:1.8;
}

/* TABLET */
@media(max-width:992px){

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

}

/* MOBILE */
@media(max-width:768px){

  .checkout-info-section{
    grid-template-columns:1fr;
  }

}

.upi-payment-box {
  margin: 18px 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(85, 107, 47, 0.22);
  background: linear-gradient(135deg, #f8fbf2, #ffffff);
  box-shadow: 0 14px 35px rgba(31, 45, 20, 0.08);
}

.upi-payment-box h3 {
  margin-bottom: 8px;
  color: #26351b;
}

.upi-payment-box p {
  margin: 6px 0;
  color: #4d5b42;
}

.upi-payment-box small {
  display: block;
  margin-top: 10px;
  color: #6b735f;
  line-height: 1.5;
}

/* ================= FINAL CHECKOUT + ADMIN + RETURN TRACKING FIXES ================= */

.small-note,
.cod-note{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:#fff8e8;
  border:1px solid #f1d79a;
  color:#6b4a12;
  font-size:14px;
  line-height:1.5;
}

.fz-product-form small,
.fz-admin-note code{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.fz-admin-note code{
  background:var(--olive-light);
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:14px;
  word-break:break-all;
}

#upiPayBtn{
  margin-top:12px;
}

.checkout-price-box{
  position:sticky;
  top:105px;
}

.return-track-result{
  text-align:left;
  padding:10px;
}

.return-success-icon{
  width:58px;
  height:58px;
  margin:0 auto 16px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#25b34b,#0f7a2c);
  color:#fff;
  font-size:30px;
  font-weight:900;
  box-shadow:0 14px 32px rgba(31,143,69,.22);
}

.return-track-result h3{
  text-align:center;
  color:var(--olive-dark);
  font-size:26px;
  margin-bottom:20px;
}

.return-detail-line{
  display:grid;
  grid-template-columns:115px 1fr;
  gap:12px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid var(--border);
}

.return-detail-line span{
  color:var(--muted);
  font-weight:900;
}

.return-detail-line strong{
  color:var(--olive-dark);
  font-weight:900;
  word-break:break-word;
}

.return-status-badge{
  width:max-content;
  min-width:105px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  background:var(--olive-soft);
  border:1px solid var(--border);
  color:var(--olive-dark)!important;
  text-align:center;
  text-transform:capitalize;
  margin-left:0;
}

.return-info-note{
  margin-top:18px;
  padding:15px;
  border-radius:18px;
  background:var(--olive-light);
  border:1px solid var(--border);
  color:var(--muted);
  line-height:1.6;
}

@media(max-width:1100px){
  .checkout-price-box{
    position:static;
  }
}

@media(max-width:560px){
  .return-detail-line{
    grid-template-columns:1fr;
    gap:4px;
  }
}

.product-bullet-list{
  margin-top:14px;
  padding-left:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-bullet-list li{
  list-style:disc;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
  font-weight:500;
}

.upi-qr-image{
  width:230px;
  max-width:100%;
  margin:18px auto;
  border-radius:22px;
  border:1px solid var(--border);
  padding:10px;
  background:#fff;
  box-shadow:0 14px 34px rgba(31,45,18,.10);
}

.upi-scan-text{
  text-align:center;
  color:var(--muted);
  margin:10px 0;
}

.upi-id-box{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0;
  padding:12px 14px;
  border-radius:16px;
  background:var(--olive-light);
  border:1px solid var(--border);
  color:var(--olive-dark);
  font-weight:900;
}

.safe-payment-note{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:#ecfff2;
  border:1px solid #bce8c8;
  color:#16713a;
  font-size:14px;
  line-height:1.5;
  text-align:center;
  font-weight:800;
}

/* ================= FINAL PRODUCT + CHECKOUT FIXES ================= */

.product-image{
  cursor:pointer;
}

.product-actions{
  gap:8px;
}

.product-actions .mini-btn{
  min-width:auto;
  flex:1;
  padding:8px 10px;
  font-size:12px;
  min-height:38px;
  border-radius:14px;
}

.zoomable-product-image{
  cursor:zoom-in;
}

.image-zoom-modal{
  position:fixed;
  inset:0;
  z-index:5000;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.86);
  padding:18px;
}

.image-zoom-modal.show{
  display:flex;
}

.image-zoom-modal img{
  width:auto;
  max-width:94vw;
  max-height:88vh;
  object-fit:contain;
  border-radius:22px;
  background:#fff;
}

.image-zoom-close{
  position:fixed;
  top:20px;
  right:22px;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:30px;
  font-weight:900;
  z-index:5001;
}

@media(max-width:560px){
  .checkout-hero{
    padding:28px 0 22px;
  }

  .checkout-hero h1{
    font-size:32px;
  }

  .checkout-hero p{
    font-size:14px;
    margin-bottom:14px;
  }

  .checkout-mini-card,
  .premium-checkout-steps,
  .checkout-info-section{
    display:none;
  }

  .premium-checkout-layout{
    margin:22px auto;
  }

  .product-actions{
    flex-direction:row;
  }

  .product-actions .mini-btn{
    width:auto;
    font-size:11px;
    padding:8px 7px;
  }
}

/* ================= FINAL COMPACT FLOATING CART ================= */

.mobile-sticky-cart{
  position:fixed!important;
  left:50%!important;
  right:auto!important;
  top:auto!important;
  bottom:18px!important;
  transform:translateX(-50%)!important;
  z-index:999999!important;
  display:none!important;
  width:auto!important;
  max-width:calc(100% - 24px)!important;
  padding:0!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  pointer-events:none!important;
}

.mobile-sticky-cart button{
  pointer-events:auto!important;
  width:auto!important;
  min-width:auto!important;
  height:42px!important;
  min-height:42px!important;
  padding:0 16px!important;
  border:0!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,var(--olive),var(--olive-dark))!important;
  color:#fff!important;
  font-size:13px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  white-space:nowrap!important;
  box-shadow:0 12px 28px rgba(0,0,0,.22)!important;
}

.mobile-sticky-cart span{
  min-width:20px!important;
  height:20px!important;
  padding:0 6px!important;
  border-radius:999px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#fff!important;
  color:var(--olive-dark)!important;
  font-size:11px!important;
  font-weight:950!important;
}

@media(max-width:768px){
  .mobile-sticky-cart{
    display:flex!important;
  }
}

@media(min-width:769px){
  .mobile-sticky-cart{
    display:none!important;
  }
}

/* ================= PRODUCT PAGE MOBILE + PREMIUM CARD FIX ================= */

/* Product page mobile scroll कम */
@media(max-width:768px){
  .products-hero{
    padding:28px 0 18px!important;
  }

  .products-hero-grid{
    gap:18px!important;
  }

  .products-hero h1{
    font-size:32px!important;
    line-height:1.05!important;
    margin-bottom:12px!important;
  }

  .products-hero p{
    font-size:14px!important;
    margin-bottom:14px!important;
  }

  .hero-product-showcase,
  .product-trust-section,
  .product-sidebar,
  .premium-banner,
  .products-hero .hero-actions{
    display:none!important;
  }

  .premium-filter-bar{
    margin:16px auto!important;
    padding:12px!important;
    border-radius:20px!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .category-pills{
    margin:0 auto 14px!important;
    gap:8px!important;
    overflow-x:auto!important;
    flex-wrap:nowrap!important;
    padding-bottom:8px!important;
  }

  .category-pills button{
    flex-shrink:0!important;
    padding:8px 13px!important;
    font-size:12px!important;
  }

  .product-layout{
    margin:18px auto!important;
    display:block!important;
  }

  .product-main-area{
    padding:14px!important;
    border-radius:22px!important;
  }

  .product-list-head{
    margin-bottom:14px!important;
  }

  .product-list-head h2{
    font-size:24px!important;
  }

  .product-list-head .eyebrow{
    margin-bottom:8px!important;
  }

  #productCountText{
    font-size:12px!important;
  }

  .section.white-section{
    padding-top:36px!important;
  }
}

/* Premium Flipkart-like Product Card */
.premium-fz-card{
  border-radius:24px!important;
  background:#fff!important;
  border:1px solid rgba(85,107,47,.13)!important;
  overflow:hidden!important;
  box-shadow:0 10px 28px rgba(31,45,18,.08)!important;
}

.premium-fz-card:hover{
  transform:translateY(-6px)!important;
  box-shadow:0 22px 55px rgba(31,45,18,.16)!important;
}

.premium-fz-image{
  height:220px!important;
  background:#f8fbef!important;
  cursor:pointer!important;
}

.premium-fz-image img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

.product-card-badges{
  position:absolute;
  top:12px;
  left:12px;
  right:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  z-index:2;
}

.product-tag-badge,
.discount-badge{
  position:static!important;
  padding:6px 10px!important;
  border-radius:999px!important;
  font-size:11px!important;
  font-weight:950!important;
  background:rgba(255,255,255,.95)!important;
  color:var(--olive-dark)!important;
  box-shadow:0 8px 18px rgba(0,0,0,.08)!important;
}

.discount-badge{
  color:#15803d!important;
}

.premium-fz-info{
  padding:15px!important;
}

.premium-rating{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:8px!important;
  margin-bottom:8px!important;
  font-size:12px!important;
}

.premium-rating span{
  background:#f4f8ea;
  color:#556b2f;
  padding:4px 8px;
  border-radius:999px;
  font-weight:950;
}

.premium-rating small{
  color:var(--muted);
  font-weight:800;
}

.premium-fz-info h3{
  font-size:16px!important;
  line-height:1.3!important;
  min-height:42px!important;
  margin-bottom:6px!important;
}

.premium-fz-info p{
  font-size:13px!important;
  line-height:1.5!important;
  min-height:38px!important;
  margin-bottom:8px!important;
}

.premium-price-row{
  margin-top:8px!important;
}

.premium-price-row strong{
  font-size:22px!important;
}

.premium-price-row del{
  font-size:12px!important;
}

.stock-badge{
  padding:5px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
}

.stock-badge.in{
  background:#ecfff2;
  color:#16713a;
}

.stock-badge.out{
  background:#fff1ef;
  color:#c0392b;
}

/* Smaller better buttons */
.premium-product-actions{
  margin-top:12px!important;
  padding-top:10px!important;
  display:grid!important;
  grid-template-columns:.75fr .75fr 1fr!important;
  gap:7px!important;
}

.premium-product-actions .mini-btn{
  min-width:auto!important;
  width:100%!important;
  min-height:34px!important;
  padding:7px 8px!important;
  border-radius:12px!important;
  font-size:11px!important;
  font-weight:950!important;
}

.view-btn{
  background:#f4f8ea!important;
  color:var(--olive-dark)!important;
}

.ask-btn{
  background:#eef7f0!important;
  color:#16713a!important;
}

.add-btn{
  background:linear-gradient(135deg,var(--olive),var(--olive-dark))!important;
  color:#fff!important;
}

/* Mobile product card compact */
@media(max-width:560px){
  .premium-product-grid{
    gap:14px!important;
  }

  .premium-fz-card{
    border-radius:20px!important;
  }

  .premium-fz-image{
    height:200px!important;
  }

  .premium-fz-info{
    padding:13px!important;
  }

  .premium-fz-info h3{
    font-size:15px!important;
    min-height:auto!important;
  }

  .premium-fz-info p{
    font-size:12px!important;
    min-height:auto!important;
  }

  .premium-price-row strong{
    font-size:20px!important;
  }

  .premium-product-actions{
    grid-template-columns:.7fr .7fr 1fr!important;
    gap:6px!important;
  }

  .premium-product-actions .mini-btn{
    font-size:10.5px!important;
    min-height:32px!important;
    padding:6px!important;
  }
}

/* ================= PREMIUM PRODUCT DETAIL MODAL FIX ================= */

.product-details-box{
  border-radius:28px!important;
  padding:18px!important;
}

.product-details-box .product-layout{
  gap:22px!important;
}

.details-image-box img{
  height:390px!important;
  border-radius:22px!important;
  object-fit:cover!important;
}

.details-thumb-row{
  gap:8px!important;
  overflow-x:auto!important;
  padding-bottom:6px!important;
}

.details-thumb-row img{
  width:62px!important;
  height:62px!important;
  border-radius:12px!important;
  flex-shrink:0!important;
}

.detail-feature-box,
.detail-use-box{
  padding:14px!important;
  border-radius:18px!important;
  background:#fbfff3!important;
}

.detail-feature-box h3,
.detail-use-box h3{
  font-size:16px!important;
  color:var(--olive-dark)!important;
  margin-bottom:8px!important;
}

.product-bullet-list{
  margin-top:8px!important;
  padding-left:18px!important;
  gap:6px!important;
}

.product-bullet-list li{
  font-size:13.5px!important;
  line-height:1.55!important;
}

.detail-price-row strong{
  font-size:26px!important;
}

.detail-policy-grid{
  grid-template-columns:repeat(3,1fr)!important;
  gap:8px!important;
}

.detail-policy-grid div{
  font-size:12px!important;
  padding:10px!important;
  border-radius:14px!important;
}

.detail-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:9px!important;
}

.detail-actions .btn{
  width:100%!important;
  min-height:40px!important;
  padding:9px 12px!important;
  font-size:12px!important;
  border-radius:14px!important;
}

.detail-actions .btn:nth-child(3){
  grid-column:1 / -1;
}

@media(max-width:560px){
  .product-details-modal{
    padding:10px!important;
  }

  .product-details-box{
    width:96vw!important;
    max-height:88vh!important;
    border-radius:22px!important;
    padding:14px!important;
  }

  .details-image-box img{
    height:270px!important;
  }

  .product-details-box h2{
    font-size:24px!important;
  }

  .detail-rating-row{
    font-size:12px!important;
  }

  .detail-price-row strong{
    font-size:24px!important;
  }

  .detail-policy-grid{
    grid-template-columns:1fr!important;
  }

  .detail-actions{
    grid-template-columns:1fr!important;
  }

  .detail-actions .btn:nth-child(3){
    grid-column:auto;
  }
}

/* ================= PRODUCT DETAIL FINAL FIX ================= */

.detail-description-box{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  background:#fbfff4;
}

.detail-description-box h3{
  margin-bottom:10px;
  color:var(--olive-dark);
  font-size:17px;
}

.product-bullet-list{
  margin:0;
  padding-left:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.product-bullet-list li{
  font-size:14px;
  line-height:1.6;
  color:#374151;
}

.detail-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr 1fr!important;
  gap:10px!important;
  margin-top:18px!important;
}

.detail-actions .btn{
  min-height:42px!important;
  padding:10px 12px!important;
  border-radius:14px!important;
  font-size:12px!important;
  font-weight:900!important;
}

.detail-actions .btn-primary{
  background:linear-gradient(135deg,var(--olive),var(--olive-dark))!important;
}

@media(max-width:560px){

  .detail-actions{
    grid-template-columns:1fr 1fr 1fr!important;
    gap:7px!important;
  }

  .detail-actions .btn{
    min-height:38px!important;
    padding:8px 6px!important;
    font-size:10.5px!important;
    border-radius:12px!important;
  }

  .product-bullet-list li{
    font-size:13px!important;
  }
}

.detail-description-box{
  margin:14px 0;
  padding:14px;
  border-radius:18px;
  background:#fbfff4;
  border:1px solid var(--border);
}

.detail-description-box h3{
  margin-bottom:10px;
  color:var(--olive-dark);
  font-size:16px;
}

.detail-actions{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  width:100%!important;
  margin-top:18px!important;
}

.detail-actions .btn{
  width:100%!important;
  min-width:0!important;
  min-height:40px!important;
  padding:8px 6px!important;
  border-radius:14px!important;
  font-size:11px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  white-space:nowrap!important;
}

@media(max-width:560px){

  .detail-actions{
    grid-template-columns:1fr 1fr 1fr!important;
    gap:6px!important;
  }

  .detail-actions .btn{
    min-height:37px!important;
    font-size:10px!important;
    padding:7px 4px!important;
  }
}

/* ================= CART MOBILE SCROLL REDUCE ================= */

@media(max-width:768px){
  .cart-hero{
    padding:28px 0 18px!important;
  }

  .cart-hero h1{
    font-size:32px!important;
    margin-bottom:10px!important;
  }

  .cart-hero p{
    font-size:14px!important;
    margin-bottom:12px!important;
  }

  .cart-hero .hero-actions,
  .checkout-trust-section,
  .section.white-section{
    display:none!important;
  }

  .cart-layout{
    margin:18px auto!important;
    gap:16px!important;
  }

  .cart-items-panel,
  .cart-summary-panel{
    padding:14px!important;
    border-radius:22px!important;
  }

  .cart-panel-head{
    margin-bottom:12px!important;
  }

  .cart-panel-head h2,
  .summary-head h2{
    font-size:22px!important;
  }

  .cart-product-card{
    grid-template-columns:74px 1fr!important;
    gap:10px!important;
    padding:10px!important;
    border-radius:18px!important;
  }

  .cart-product-card img{
    width:74px!important;
    height:74px!important;
    border-radius:14px!important;
  }

  .cart-product-card h3{
    font-size:14px!important;
    line-height:1.3!important;
  }

  .cart-product-card p{
    font-size:13px!important;
  }

  .cart-product-card > div:last-child{
    grid-column:1 / -1!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }

  .qty-controls{
    margin-top:8px!important;
  }

  .qty-controls button{
    width:30px!important;
    height:30px!important;
  }

  .remove-cart-btn{
    padding:8px 12px!important;
    border-radius:12px!important;
    font-size:12px!important;
  }

  .cart-summary-row{
    padding:10px 0!important;
  }

  .cart-saving-box,
  .note-box{
    padding:12px!important;
    border-radius:16px!important;
  }
}

/* ================= RETURN PAGE MOBILE SCROLL REDUCE ================= */

@media(max-width:768px){

  .return-hero{
    padding:30px 0 20px!important;
  }

  .return-hero-grid{
    gap:18px!important;
  }

  .return-hero h1{
    font-size:31px!important;
    line-height:1.08!important;
    margin-bottom:12px!important;
  }

  .return-hero p{
    font-size:14px!important;
    margin-bottom:14px!important;
  }

  .return-hero-card,
  .return-help-section,
  .return-policy-section,
  .process-grid,
  .return-cta{
    display:none!important;
  }

  .return-hero-actions{
    margin-top:14px!important;
    gap:8px!important;
  }

  .return-hero-actions .btn{
    min-height:40px!important;
    padding:9px 14px!important;
    font-size:12px!important;
    border-radius:14px!important;
  }

  .return-main-layout{
    margin:18px auto!important;
    gap:16px!important;
  }

  .premium-return-form,
  .return-result-card{
    padding:15px!important;
    border-radius:22px!important;
  }

  .premium-return-form h2,
  .return-result-card h2{
    font-size:24px!important;
  }

  .form-subtitle{
    font-size:13px!important;
    margin-bottom:14px!important;
  }

  .return-form-grid{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }

  .premium-return-form input,
  .premium-return-form select,
  .premium-return-form textarea{
    min-height:44px!important;
    padding:11px 13px!important;
    font-size:13px!important;
    border-radius:14px!important;
  }

  .premium-return-form textarea{
    min-height:95px!important;
  }

  .premium-return-form button{
    min-height:44px!important;
    border-radius:14px!important;
    font-size:13px!important;
  }

  .return-tracker-form{
    gap:8px!important;
  }

  .return-tracker-form input{
    min-height:42px!important;
    font-size:13px!important;
  }

  .return-tracker-form button{
    min-height:42px!important;
    padding:0 16px!important;
    font-size:12px!important;
    border-radius:13px!important;
  }

  #returnTrackingResult{
    padding:14px!important;
    border-radius:18px!important;
    margin-top:14px!important;
  }

  #returnTrackingResult h3{
    font-size:22px!important;
    line-height:1.2!important;
  }

  #returnTrackingResult p{
    font-size:13px!important;
    line-height:1.5!important;
  }

  #returnTrackingResult .status-badge{
    padding:6px 12px!important;
    font-size:11px!important;
  }
}

.product-description-text{
  font-size:14px;
  line-height:1.8;
  color:#4b5563;
}

.product-description-text br{
  content:"";
}

/* ================= FINAL PRODUCT MODAL BUTTON FORCE FIX ================= */

.product-details-box .detail-actions{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:7px!important;
  width:100%!important;
  margin-top:16px!important;
  padding:0!important;
}

.product-details-box .detail-actions .btn{
  flex:1 1 0!important;
  width:0!important;
  min-width:0!important;
  max-width:none!important;
  min-height:38px!important;
  height:38px!important;
  padding:0 6px!important;
  border-radius:13px!important;
  font-size:10.5px!important;
  font-weight:950!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  line-height:1!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}

.product-details-box .detail-actions .btn:nth-child(3){
  grid-column:auto!important;
  flex:1 1 0!important;
  width:0!important;
}

@media(max-width:560px){
  .product-details-box .detail-actions{
    display:flex!important;
    flex-direction:row!important;
    gap:6px!important;
  }

  .product-details-box .detail-actions .btn{
    min-height:36px!important;
    height:36px!important;
    padding:0 4px!important;
    font-size:9.5px!important;
    border-radius:12px!important;
  }
}

/* ================= PRODUCT IMAGE FIT FIX ================= */

.premium-fz-image{
  height:260px!important;
  background:#fff!important;
  padding:12px!important;
}

.premium-fz-image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  border-radius:18px!important;
  background:#fff!important;
}

.product-card:hover .premium-fz-image img{
  transform:scale(1.03)!important;
}

.product-card-badges{
  top:12px!important;
  left:12px!important;
  right:12px!important;
}

.product-tag-badge,
.discount-badge{
  padding:7px 12px!important;
  font-size:12px!important;
}

/* Mobile image height */
@media(max-width:560px){
  .premium-fz-image{
    height:230px!important;
    padding:10px!important;
  }
}

/* ================= UNIFIED PRODUCT BUTTONS ================= */

.premium-product-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr 1fr!important;
  gap:8px!important;
  margin-top:14px!important;
}

.product-mini-btn{
  width:100%!important;
  min-width:0!important;
  min-height:40px!important;
  border:none!important;
  border-radius:14px!important;
  font-size:11px!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  transition:.25s ease!important;
}

.product-mini-btn:hover{
  transform:translateY(-2px)!important;
}

.view-btn{
  background:#f3f7ea!important;
  color:var(--olive-dark)!important;
}

.ask-btn{
  background:#eef8f0!important;
  color:#16713a!important;
}

.add-btn{
  background:linear-gradient(135deg,var(--olive),var(--olive-dark))!important;
  color:#fff!important;
}

.add-btn:disabled{
  opacity:.6!important;
  cursor:not-allowed!important;
}

@media(max-width:560px){

  .premium-product-actions{
    gap:6px!important;
  }

  .product-mini-btn{
    min-height:36px!important;
    font-size:10px!important;
    border-radius:12px!important;
  }
}

/* ================= EQUAL HEIGHT PRODUCT CARD FIX ================= */

.premium-fz-card{
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
}

.premium-fz-info{
  display:flex!important;
  flex-direction:column!important;
  flex:1!important;
}

.premium-fz-info h3{
  min-height:84px!important;
}

.premium-fz-info p{
  min-height:48px!important;
}

.premium-price-row{
  margin-top:auto!important;
  min-height:42px!important;
}

.premium-product-actions{
  margin-top:14px!important;
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:8px!important;
}

.product-mini-btn{
  height:42px!important;
  min-height:42px!important;
}

@media(max-width:560px){
  .premium-fz-info h3{
    min-height:auto!important;
  }

  .premium-fz-info p{
    min-height:auto!important;
  }

  .premium-price-row{
    margin-top:10px!important;
  }
}

/* ================= TRACKING PAGE MOBILE SCROLL REDUCE ================= */

@media(max-width:768px){
  .tracking-hero{
    padding:28px 0 18px!important;
  }

  .tracking-hero-grid{
    gap:16px!important;
  }

  .tracking-hero h1{
    font-size:32px!important;
    line-height:1.06!important;
    letter-spacing:-1.2px!important;
    margin-bottom:10px!important;
  }

  .tracking-hero p,
  .tracking-hint{
    font-size:14px!important;
    line-height:1.5!important;
    margin-bottom:12px!important;
  }

  .tracking-search{
    margin-bottom:10px!important;
    padding:7px!important;
    border-radius:18px!important;
    gap:8px!important;
  }

  .tracking-search input{
    min-height:42px!important;
    padding:0 12px!important;
    font-size:13px!important;
  }

  .tracking-search button{
    min-height:42px!important;
    padding:0 16px!important;
    font-size:12px!important;
    border-radius:14px!important;
  }

  .tracking-visual,
  .tracking-features,
  .tracking-support-box,
  .tracking-trust-grid{
    display:none!important;
  }

  .premium-tracking-wrap{
    margin:18px auto!important;
    gap:16px!important;
    display:block!important;
  }

  .premium-result-card,
  .return-result-card{
    padding:15px!important;
    border-radius:22px!important;
  }

  .premium-result-card h2,
  .return-result-card h2{
    font-size:23px!important;
    line-height:1.2!important;
    margin-bottom:10px!important;
  }

  .premium-timeline{
    gap:10px!important;
  }

  .timeline-step,
  .return-status-step{
    padding:12px!important;
    border-radius:18px!important;
  }

  .timeline-step span,
  .return-status-step span{
    width:32px!important;
    height:32px!important;
    font-size:13px!important;
    margin-bottom:6px!important;
  }

  .timeline-step h3,
  .return-status-step h3{
    font-size:15px!important;
    line-height:1.3!important;
    margin-bottom:4px!important;
  }

  .timeline-step p,
  .return-status-step p,
  .loading-track,
  .empty-track,
  .not-found-track{
    font-size:13px!important;
    line-height:1.45!important;
  }

  .loading-track,
  .empty-track,
  .not-found-track{
    padding:20px 14px!important;
    border-radius:20px!important;
  }
}

@media(max-width:560px){
  .tracking-search{
    flex-direction:row!important;
    align-items:center!important;
  }

  .tracking-search input{
    min-width:0!important;
  }

  .tracking-search button{
    width:auto!important;
    white-space:nowrap!important;
  }
}


/* ================= CHECKOUT INSTANT FIX =================
   Checkout form should not wait for scroll reveal animation.
========================================================= */
.checkout-page .premium-checkout-layout,
.premium-checkout-layout.visible{
  opacity:1 !important;
  transform:none !important;
  visibility:visible !important;
}

/* =====================================================
   FLIPZIFY ADMIN DASHBOARD V2 UPGRADE
===================================================== */
.fz-admin-v2 .fz-admin-dashboard{display:grid;grid-template-columns:260px 1fr;min-height:100vh;background:#f6f4ed;color:#1f2418}.fz-admin-v2 .hidden{display:none!important}.fz-admin-sidebar{background:#26301e;color:#fff;padding:22px;display:flex;flex-direction:column;gap:10px;position:sticky;top:0;height:100vh}.fz-admin-brand-mini{display:flex;align-items:center;gap:12px;margin-bottom:18px}.fz-admin-brand-mini img{width:46px;height:46px;border-radius:14px;background:#fff}.fz-admin-brand-mini strong{display:block;font-size:20px}.fz-admin-brand-mini span{display:block;font-size:12px;opacity:.75}.fz-admin-nav,.fz-admin-sidebar .wide{border:0;border-radius:14px;padding:13px 14px;text-align:left;cursor:pointer;background:rgba(255,255,255,.08);color:#fff;font-weight:700}.fz-admin-nav.active,.fz-admin-nav:hover{background:#d6b878;color:#1f2418}.fz-admin-sidebar .wide{margin-top:auto;background:#fff;color:#26301e;text-align:center}.fz-admin-main{padding:24px;overflow:auto}.fz-admin-session-box{background:#fff;border:1px solid #e3ddcc;border-radius:18px;padding:12px 18px;text-align:center;box-shadow:0 12px 30px rgba(38,48,30,.08)}.fz-admin-session-box small{display:block;color:#747066}.fz-admin-session-box strong{font-size:22px;color:#26301e}.fz-admin-tab{display:none}.fz-admin-tab.active{display:block}.fz-admin-stats{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.fz-admin-two-col{display:grid;grid-template-columns:1.4fr .8fr;gap:18px;margin-top:18px}.fz-admin-panel{background:#fff;border:1px solid #e2ddcc;border-radius:24px;padding:22px;margin-top:18px;box-shadow:0 14px 35px rgba(38,48,30,.08)}.fz-admin-panel h2{margin:0 0 8px}.warning-soft{background:#fff9e8}.fz-admin-checklist{padding-left:20px;line-height:1.9}.fz-admin-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;background:#fff;border-radius:22px;padding:20px;border:1px solid #e2ddcc}.fz-admin-toolbar button,.fz-admin-inline-form button,.fz-admin-status-update button,.fz-admin-panel button{border:0;background:#26301e;color:#fff;border-radius:14px;padding:12px 18px;font-weight:800;cursor:pointer}.fz-admin-table-wrap{overflow:auto}.fz-admin-table{width:100%;border-collapse:collapse;font-size:14px}.fz-admin-table th,.fz-admin-table td{padding:13px;border-bottom:1px solid #eee8d8;text-align:left}.fz-admin-table th{background:#f6f4ed;color:#26301e}.fz-admin-inline-form,.fz-admin-status-update{display:flex;gap:12px;flex-wrap:wrap;margin:15px 0}.fz-admin-inline-form input,.fz-admin-status-update select{flex:1;min-width:220px;border:1px solid #ddd5c4;border-radius:14px;padding:13px;background:#fff}.fz-admin-result{margin-top:12px}.fz-admin-found{background:#f7faf2;border:1px solid #dce8ce;border-radius:18px;padding:16px}.fz-admin-success{color:#1f8f45;font-weight:800}.fz-admin-error{color:#c0392b;font-weight:800}.fz-admin-muted{color:#777}.fz-product-form .fz-form-grid .full{grid-column:1/-1}@media(max-width:900px){.fz-admin-v2 .fz-admin-dashboard{grid-template-columns:1fr}.fz-admin-sidebar{position:relative;height:auto}.fz-admin-two-col,.fz-admin-stats{grid-template-columns:1fr}.fz-admin-topbar,.fz-admin-toolbar{flex-direction:column;align-items:flex-start}.fz-admin-main{padding:14px}}


/* ================= FLIPZIFY REVIEWS SYSTEM ================= */

.fz-review-section{
  margin-top:34px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:28px;
  background:linear-gradient(180deg,#fff,var(--olive-light));
  box-shadow:var(--shadow-soft);
}

.fz-review-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.fz-review-head h3{
  font-size:26px;
  color:var(--olive-dark);
  line-height:1.15;
  margin:6px 0;
}

.fz-review-head p{
  color:var(--muted);
  font-weight:700;
}

.fz-reviews-list{
  display:grid;
  gap:14px;
  margin:18px 0;
}

.fz-review-card{
  padding:18px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 25px rgba(31,45,18,.06);
}

.fz-review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.fz-review-top strong{
  color:var(--olive-dark);
  font-size:16px;
}

.verified-badge{
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background:var(--olive-soft);
  color:var(--olive-dark);
  font-size:11px;
  font-weight:950;
}

.fz-review-card p{
  color:var(--text);
  font-weight:650;
}

.fz-review-image{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:18px;
  margin-top:12px;
  border:1px solid var(--border);
}

.fz-empty-reviews{
  padding:22px;
  border:1px dashed var(--border);
  border-radius:22px;
  background:#fff;
  text-align:center;
}

.fz-empty-reviews h4{
  color:var(--olive-dark);
  font-size:20px;
}

.fz-empty-reviews p{
  color:var(--muted);
  font-weight:700;
}

.fz-review-form{
  margin-top:22px;
  padding:20px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
}

.fz-review-form h3{
  color:var(--olive-dark);
  margin-bottom:14px;
}

.fz-review-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-bottom:12px;
}

.fz-admin-row-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.fz-admin-row-actions button{
  border:0;
  border-radius:999px;
  padding:8px 10px;
  background:var(--olive);
  color:#fff;
  font-weight:900;
  font-size:12px;
}

.fz-admin-row-actions button:nth-child(2){
  background:var(--warning);
}

.fz-admin-row-actions button:nth-child(3){
  background:var(--danger);
}

@media(max-width:700px){
  .fz-review-head{
    flex-direction:column;
  }

  .fz-review-form-grid{
    grid-template-columns:1fr;
  }
}


/* ================= PREMIUM PRODUCT REVIEW UPGRADE ================= */

.product-description-text{
  white-space:pre-line;
  line-height:1.75;
  color:#26364a;
  font-size:15.5px;
}

.detail-description-box{
  padding:18px!important;
  margin-top:14px!important;
}

.premium-review-system{
  background:#fff!important;
  border:1px solid #dfe8d2!important;
  border-radius:28px!important;
  box-shadow:0 18px 45px rgba(31,45,18,.08)!important;
}

.premium-rating-summary{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:28px;
  align-items:center;
  padding:24px 0 30px;
  border-bottom:1px solid #d6dfcc;
}

.rating-score-box{
  text-align:left;
}

.rating-score{
  color:#079765;
  font-size:56px;
  line-height:1;
  font-weight:950;
  letter-spacing:-2px;
}

.rating-score span{
  font-size:26px;
}

.rating-score-box p{
  margin-top:8px;
  color:#8c8fa9;
  font-weight:900;
  line-height:1.45;
}

.rating-bars{
  display:grid;
  gap:16px;
}

.rating-bar-row{
  display:grid;
  grid-template-columns:95px 1fr 54px;
  gap:14px;
  align-items:center;
  font-size:13px;
  font-weight:900;
  color:#16200f;
}

.rating-track{
  height:7px;
  background:#e8e8f0;
  border-radius:999px;
  overflow:hidden;
}

.rating-track i{
  display:block;
  height:100%;
  border-radius:999px;
}

.rating-track .green{background:#0ba85d;}
.rating-track .yellow{background:#f7b94b;}
.rating-track .orange{background:#f2873b;}
.rating-track .red{background:#f5363f;}

.rating-bar-row strong{
  color:#8c8fa9;
  font-size:13px;
}

.premium-review-feed{
  display:grid;
}

.premium-product-review-card{
  padding:22px 0;
  border-bottom:1px solid #d6dfcc;
}

.premium-product-review-card:last-child{
  border-bottom:0;
}

.review-user-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:13px;
}

.review-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eef4ff;
  color:#556b2f;
  font-weight:950;
}

.review-user-row strong{
  color:#4c4e67;
  font-size:17px;
}

.review-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:7px;
  color:#8c8fa9;
  font-size:13px;
  font-weight:850;
}

.rating-pill{
  display:inline-flex;
  align-items:center;
  gap:4px;
  background:#079765;
  color:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-weight:950;
}

.premium-product-review-card p{
  font-size:17px;
  line-height:1.55;
  color:#171c2f;
  font-weight:650;
  margin-bottom:12px;
}

.review-image-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.review-image-row img{
  width:92px;
  height:92px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid var(--border);
  cursor:pointer;
}

.hidden-extra-review{
  display:none!important;
}

.review-view-all-wrap{
  text-align:center;
  margin-top:18px;
}

.premium-write-review{
  margin-top:26px!important;
  background:linear-gradient(180deg,#fff,#fbfff4)!important;
}

.review-submit-message{
  margin-top:10px;
  color:#0a8f4d;
  font-weight:900;
}

@media(max-width:700px){
  .premium-rating-summary{
    grid-template-columns:1fr;
    gap:16px;
  }

  .rating-bar-row{
    grid-template-columns:82px 1fr 42px;
    gap:9px;
  }

  .rating-score{
    font-size:48px;
  }

  .review-image-row img{
    width:76px;
    height:76px;
  }
}

/* ================= PREMIUM REVIEW POPUP + STEP FORM UPDATE ================= */
.review-trust-panel{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:22px 0 8px;
}

.review-trust-panel div{
  background:linear-gradient(135deg,#f8fbf1,#ffffff);
  border:1px solid #dfe8d2;
  border-radius:20px;
  padding:16px;
  min-height:92px;
}

.review-trust-panel strong{
  display:block;
  color:#18240f;
  font-weight:950;
  margin-bottom:6px;
}

.review-trust-panel span{
  display:block;
  color:#5d654d;
  font-size:13px;
  font-weight:750;
  line-height:1.45;
}

.all-reviews-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(18,22,15,.62);
  backdrop-filter:blur(8px);
  display:none;
  align-items:stretch;
  justify-content:flex-end;
}

.all-reviews-modal.show{
  display:flex;
}

.all-reviews-sheet{
  width:min(980px,100%);
  height:100vh;
  background:#fff;
  box-shadow:-24px 0 60px rgba(0,0,0,.22);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  animation:reviewSheetIn .25s ease;
}

@keyframes reviewSheetIn{
  from{transform:translateX(30px);opacity:.4;}
  to{transform:translateX(0);opacity:1;}
}

.all-reviews-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 26px;
  border-bottom:1px solid #d8dfcf;
  background:linear-gradient(135deg,#fff,#f8fbef);
}

.all-reviews-header h3{
  margin:6px 0 0;
  color:#18240f;
  font-size:20px;
  line-height:1.35;
  max-width:760px;
}

.all-reviews-close{
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#f2f4ee;
  color:#222;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.all-reviews-body{
  overflow:auto;
  padding:24px 28px 40px;
}

.all-reviews-body .premium-rating-summary{
  margin-bottom:12px;
}

.review-helpful-line{
  margin-top:12px;
  color:#5c5e73;
  font-weight:850;
}

.premium-product-review-card p{
  white-space:pre-line;
}

.review-form-title-row p,
.review-help-text{
  margin-top:6px;
  color:#606a50;
  font-weight:750;
}

.review-step-card{
  display:none;
  background:#fff;
  border:1px solid #dde8cf;
  border-radius:22px;
  padding:18px;
  margin-top:16px;
}

.review-step-card.active{
  display:block;
}

.review-step-label{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#edf5df;
  color:#45621f;
  font-size:12px;
  font-weight:950;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.review-step-card h4{
  margin:0 0 14px;
  font-size:20px;
  color:#16200f;
}

.review-rating-fields{
  display:grid;
  gap:14px;
  margin:16px 0;
}

.review-rating-fields label{
  display:grid;
  grid-template-columns:150px 1fr 44px;
  align-items:center;
  gap:12px;
  color:#1b2810;
  font-weight:900;
}

.review-rating-fields input[type='range']{
  width:100%;
  accent-color:#079765;
}

.review-rating-fields span{
  background:#079765;
  color:#fff;
  border-radius:999px;
  padding:5px 8px;
  font-size:12px;
  font-weight:950;
  text-align:center;
}

.review-step-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.premium-rating-empty-layout{
  display:grid;
  grid-template-columns:110px 1fr;
  align-items:center;
  gap:18px;
  background:linear-gradient(135deg,#fbfff4,#fff);
  border:1px solid #dfe8d2;
  border-radius:24px;
  padding:24px;
}

.review-empty-score{
  font-size:42px;
  color:#079765;
  font-weight:950;
}

.review-empty-score span{
  font-size:20px;
}

@media(max-width:760px){
  .review-trust-panel{grid-template-columns:1fr;}
  .all-reviews-sheet{width:100%;}
  .all-reviews-header{padding:18px;}
  .all-reviews-body{padding:18px;}
  .review-rating-fields label{grid-template-columns:1fr;gap:6px;}
  .premium-rating-empty-layout{grid-template-columns:1fr;}
}
.review-image-row video{
  width:150px;
  height:92px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid var(--border);
  background:#000;
}

/* ================= REVIEW CARD ALIGNMENT + HELPFUL FIX ================= */
.premium-product-review-card{
  padding:22px 0;
}

.review-user-row{
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
}

.review-avatar{
  width:44px;
  height:44px;
  min-width:44px;
  font-size:18px;
  margin-top:2px;
}

.review-user-info{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.review-user-row strong{
  display:block;
  color:#31354b;
  font-size:17px;
  line-height:1.2;
  font-weight:750;
  margin:0;
}

.review-meta{
  margin-top:0;
  gap:8px;
  font-size:12px;
  font-weight:650;
}

.rating-pill{
  padding:5px 10px;
  font-size:13px;
  line-height:1;
  font-weight:800;
}

.review-date{
  color:#8b8fa7;
}

.premium-product-review-card .review-comment,
.premium-product-review-card p.review-comment{
  margin:12px 0 14px;
  color:#111827;
  font-family:"Times New Roman", Times, serif;
  font-size:18px;
  line-height:1.55;
  font-weight:400!important;
  white-space:pre-line;
}

.review-criteria-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 14px;
}

.review-criteria-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid #dbe6ce;
  background:linear-gradient(135deg,#f6faef,#ffffff);
  color:#2e3b23;
  padding:8px 13px;
  border-radius:999px;
  box-shadow:0 4px 12px rgba(45,70,25,.06);
  font-size:13px;
  line-height:1;
}

.review-criteria-chip em{
  font-style:normal;
  font-weight:650;
  color:#59684a;
}

.review-criteria-chip b{
  font-weight:750;
  color:#18240f;
}

.review-helpful-btn{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #1f2937;
  background:#ffffff;
  color:#2d3343;
  border-radius:999px;
  padding:8px 13px;
  font-size:15px;
  font-weight:400;
  cursor:pointer;
  transition:.2s ease;
}

.review-helpful-btn .helpful-thumb{
  filter:grayscale(1);
}

.review-helpful-btn:hover{
  background:#f7f9f2;
  transform:translateY(-1px);
}

.review-helpful-btn.active{
  background:#ecf7df;
  border-color:#6f8f38;
  color:#36561e;
}

.review-helpful-btn.active .helpful-thumb{
  filter:none;
}

.review-helpful-btn:disabled{
  cursor:default;
  opacity:1;
}

/* Old helpful line fallback */
.review-helpful-line{
  font-weight:400!important;
}

.review-rating-fields label{
  grid-template-columns:150px 1fr 54px;
}

.review-criteria-label{
  background:transparent!important;
  color:#1b2810!important;
  border-radius:0!important;
  padding:0!important;
  font-size:14px!important;
  font-weight:800!important;
  text-align:left!important;
}

.review-range-value{
  background:#079765!important;
  color:#fff!important;
  border-radius:999px!important;
  padding:5px 8px!important;
  font-size:12px!important;
  font-weight:800!important;
  text-align:center!important;
}

@media(max-width:700px){
  .review-rating-fields label{
    grid-template-columns:1fr;
    gap:8px;
  }

  .review-range-value{
    width:max-content;
  }

  .premium-product-review-card .review-comment{
    font-size:17px;
  }
}


/* ================= FINAL MARKETPLACE REVIEW LAYOUT FIX ================= */
/* This block intentionally overrides older review styles. */

.premium-product-review-card{
  padding:22px 0 24px!important;
  border-bottom:1px solid #d8ddcf!important;
  background:transparent!important;
}

.review-user-row{
  display:flex!important;
  align-items:flex-start!important;
  gap:12px!important;
  margin:0 0 12px!important;
}

.review-avatar{
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  border-radius:50%!important;
  background:#eef3ff!important;
  color:#4f6930!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:18px!important;
  font-weight:700!important;
  line-height:1!important;
  margin:2px 0 0!important;
}

.review-user-info{
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  gap:6px!important;
  min-width:0!important;
}

.review-user-row strong{
  margin:0!important;
  padding:0!important;
  color:#4c526d!important;
  font-size:17px!important;
  line-height:1.2!important;
  font-weight:700!important;
  letter-spacing:.1px!important;
}

.review-meta{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:8px!important;
  margin:0!important;
  padding:0!important;
  width:auto!important;
}

.rating-pill{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:28px!important;
  padding:5px 10px!important;
  border-radius:999px!important;
  background:#079765!important;
  color:#fff!important;
  font-size:14px!important;
  line-height:1!important;
  font-weight:800!important;
  width:auto!important;
  max-width:max-content!important;
}

.review-date{
  color:#8a8fa8!important;
  font-size:12px!important;
  line-height:1.2!important;
  font-weight:700!important;
}

.review-date::before{
  content:"•";
  margin-right:8px;
  color:#b7bad0;
}

.verified-badge{
  display:inline-flex!important;
  align-items:center!important;
  padding:4px 9px!important;
  border-radius:999px!important;
  background:#eef8e6!important;
  color:#4f6d2d!important;
  font-size:11px!important;
  font-weight:800!important;
}

.premium-product-review-card .review-comment,
.premium-product-review-card p.review-comment{
  margin:12px 0 14px!important;
  color:#151827!important;
  font-family:Arial, Helvetica, sans-serif!important;
  font-size:17px!important;
  line-height:1.55!important;
  font-weight:400!important;
  white-space:pre-line!important;
}

.review-criteria-row{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:10px!important;
  margin:12px 0 14px!important;
}

.review-criteria-chip{
  display:inline-flex!important;
  align-items:center!important;
  gap:7px!important;
  border:1px solid #dbe6ce!important;
  background:#fbfdf7!important;
  color:#2e3b23!important;
  padding:8px 14px!important;
  border-radius:999px!important;
  box-shadow:none!important;
  font-family:Arial, Helvetica, sans-serif!important;
  font-size:14px!important;
  line-height:1!important;
}

.review-criteria-chip em{
  font-style:normal!important;
  font-weight:600!important;
  color:#53673f!important;
}

.review-criteria-chip b{
  font-weight:700!important;
  color:#111827!important;
}

.review-image-row{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:12px!important;
  margin:14px 0 8px!important;
}

.review-image-row img,
.review-image-row video{
  width:92px!important;
  height:92px!important;
  object-fit:cover!important;
  border-radius:10px!important;
  border:1px solid #dfe4d6!important;
  background:#f4f6ef!important;
}

.review-helpful-btn{
  margin:12px 0 0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  color:#5f6275!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  font-family:Arial, Helvetica, sans-serif!important;
  font-size:17px!important;
  font-weight:400!important;
  line-height:1.2!important;
  cursor:pointer!important;
  box-shadow:none!important;
}

.review-helpful-btn .helpful-thumb{
  width:22px!important;
  height:22px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#5f6275!important;
  filter:grayscale(1)!important;
  transform:none!important;
}

.review-helpful-btn:hover{
  background:transparent!important;
  transform:none!important;
  color:#3f4558!important;
}

.review-helpful-btn.active{
  background:transparent!important;
  border:0!important;
  color:#079765!important;
}

.review-helpful-btn.active .helpful-thumb{
  filter:none!important;
}

.review-helpful-btn:disabled{
  opacity:1!important;
  cursor:default!important;
}

/* Same clean style inside View All Reviews popup */
.all-reviews-body .premium-product-review-card{
  padding-left:0!important;
  padding-right:0!important;
}

@media(max-width:700px){
  .review-user-row{
    gap:10px!important;
  }

  .review-avatar{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    font-size:16px!important;
  }

  .review-user-row strong{
    font-size:16px!important;
  }

  .premium-product-review-card .review-comment,
  .premium-product-review-card p.review-comment{
    font-size:16px!important;
  }

  .review-image-row img,
  .review-image-row video{
    width:76px!important;
    height:76px!important;
  }
}

/* FINAL REVIEW FIX */
.fz-review-meta{
display:flex;
align-items:center;
gap:8px;
margin-bottom:10px;
}
.fz-review-rating{
padding:4px 12px;
font-size:15px !important;
font-weight:700;
border-radius:999px;
line-height:1;
}
.fz-review-date{
font-size:12px !important;
font-weight:600;
color:#8d8fa1;
}
.fz-review-helpful{
display:inline-flex;
align-items:center;
gap:8px;
font-size:15px;
font-weight:500 !important;
color:#5f6475;
cursor:pointer;
user-select:none;
transition:.25s ease;
}
.fz-review-helpful.active{
color:#0ea15d;
}
.fz-review-helpful i,
.fz-review-helpful svg{
font-size:18px;
}


/* ================= FINAL REVIEW CLEAN FIX ================= */
/* Removes helpful option and makes review cards compact + premium */
.premium-product-review-card{
  padding:18px 0 !important;
  border-bottom:1px solid #d8dfcf !important;
}

.review-user-row{
  display:flex !important;
  align-items:flex-start !important;
  gap:12px !important;
  margin-bottom:12px !important;
}

.review-avatar{
  width:36px !important;
  height:36px !important;
  min-width:36px !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  background:#eef4ff !important;
  color:#556b2f !important;
  font-size:18px !important;
  font-weight:800 !important;
  margin-top:2px !important;
}

.review-user-info{
  display:flex !important;
  flex-direction:column !important;
  gap:5px !important;
}

.review-user-row strong{
  color:#4c4e67 !important;
  font-size:17px !important;
  line-height:1.2 !important;
  font-weight:700 !important;
}

.review-meta{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:7px !important;
  margin-top:0 !important;
  color:#8b8fa8 !important;
  font-size:12px !important;
  font-weight:600 !important;
}

.rating-pill{
  display:inline-flex !important;
  align-items:center !important;
  gap:3px !important;
  background:#079765 !important;
  color:#fff !important;
  padding:3px 8px !important;
  border-radius:999px !important;
  font-size:13px !important;
  line-height:1.1 !important;
  font-weight:700 !important;
}

.review-date{
  color:#8b8fa8 !important;
  font-size:12px !important;
  font-weight:600 !important;
}

.verified-badge{
  font-size:11px !important;
  padding:3px 8px !important;
  border-radius:999px !important;
  background:#edf6dd !important;
  color:#4d6b22 !important;
  font-weight:700 !important;
}

.review-comment{
  color:#131827 !important;
  font-family:"Times New Roman", Times, serif !important;
  font-size:17px !important;
  line-height:1.45 !important;
  font-weight:400 !important;
  margin:8px 0 14px 0 !important;
}

.review-criteria-row{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  margin:10px 0 0 !important;
}

.review-criteria-chip{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  border:1px solid #dce8ce !important;
  background:linear-gradient(180deg,#ffffff,#fbfff6) !important;
  color:#203017 !important;
  border-radius:999px !important;
  padding:7px 15px !important;
  font-size:14px !important;
  line-height:1 !important;
  box-shadow:0 5px 15px rgba(65,90,30,.06) !important;
}

.review-criteria-chip em{
  font-style:normal !important;
  font-weight:600 !important;
  color:#59684a !important;
}

.review-criteria-chip b{
  font-family:Arial, sans-serif !important;
  font-weight:600 !important;
  color:#050b19 !important;
}

.review-image-row{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:wrap !important;
  margin-top:12px !important;
}

.review-image-row img,
.review-image-row video{
  width:88px !important;
  height:88px !important;
  object-fit:cover !important;
  border-radius:10px !important;
  border:1px solid #dfe5d7 !important;
}

.review-helpful-btn{
  display:none !important;
}

.all-reviews-body .premium-review-feed{
  display:block !important;
}

.all-reviews-body .premium-product-review-card{
  padding:20px 0 !important;
}

@media (max-width:640px){
  .review-comment{
    font-size:16px !important;
  }
  .review-criteria-row{
    gap:8px !important;
  }
  .review-criteria-chip{
    padding:7px 12px !important;
    font-size:13px !important;
  }
}


/* ================= IPAD / TABLET COMPACT EXPERIENCE FIX ================= */
@media (min-width: 768px) and (max-width: 1180px) {
  .container{width:min(94%, 1040px) !important;}

  .products-hero,
  .checkout-hero,
  .tracking-hero,
  .return-hero{
    padding:42px 0 28px !important;
  }

  .products-hero-grid,
  .checkout-hero-grid,
  .tracking-hero-grid,
  .return-hero-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .hero-product-showcase,
  .tracking-visual,
  .return-hero-card{
    display:none !important;
  }

  .premium-filter-bar{
    position:sticky;
    top:0;
    z-index:20;
    grid-template-columns:1.2fr .9fr .9fr !important;
    gap:10px !important;
    padding:12px !important;
  }

  .category-pills{
    overflow-x:auto !important;
    white-space:nowrap !important;
    flex-wrap:nowrap !important;
    justify-content:flex-start !important;
    padding:8px 16px !important;
    scrollbar-width:none;
  }
  .category-pills::-webkit-scrollbar{display:none;}
  .category-pills button{flex:0 0 auto !important;}

  .product-layout,
  .premium-checkout-layout,
  .return-main-layout,
  .premium-tracking-wrap{
    grid-template-columns:1fr !important;
    gap:20px !important;
  }

  .product-sidebar,
  .checkout-price-box,
  .return-policy-grid,
  .tracking-support-box{
    position:static !important;
  }

  .product-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:16px !important;
  }

  .product-card h3{font-size:15px !important; line-height:1.35 !important;}
  .product-card p{font-size:13px !important; line-height:1.45 !important;}
  .product-image{min-height:180px !important;}

  .checkout-trust-section,
  .return-trust,
  .tracking-trust-grid{
    grid-template-columns:repeat(3, 1fr) !important;
    gap:12px !important;
  }

  .checkout-mini-card,
  .return-process-card,
  .trust-card{
    padding:16px !important;
  }
}
