:root {
  --text: #000 !important;
  --muted: rgba(246, 246, 246, 0.6);
  --accent: #D2824B;
  --font-system: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;

  --left-ratio: 7;
  --right-ratio: 6;
  --section-gap: 40px;
  --card-max-vh: 36vh;

  --radius-lg: 18px;
  --radius-sm: 12px;
  --transition: 320ms cubic-bezier(.2, .9, .3, 1);

  --visible-desktop: 4;
  --visible-tablet: 3;
  --visible-mobile: 1;
  --card-gap: 18px;  
  --slider-speed: 0.85;

  --bg: #fff;
  --transition2: cubic-bezier(.2, .9, .3, 1);
  --colorGold: #D2824B;

  --grid-gap: 12px;
  --page-padding-x: 3rem;
  --page-padding-y: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-system);
  background: var(--bg) !important;
  background-color: #F9F5EC !important;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
    /* Scroll allowed */
  overflow-y: scroll;

  /* Scrollbar hide for different browsers */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE, old Edge */
}
/* Chrome, Safari, Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
.flex.justify-center.space-x-4.mb-8 {
  text-align: center !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 80;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.nav {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
}

.brand {
  font-weight: 700;
}

.hero {
position: relative;
width: 100%;
height: 90vh; /* full screen */
overflow: hidden;
}


.video-container {
position: relative;
width: 100%;
height: 100%;
}


/* Base video styling */
.video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}


/* Show desktop video by default */
.desktop-video { display: block; }
.mobile-video { display: none; }


/* Mobile view: swap videos */
@media (max-width: 768px) {
.desktop-video { display: none; }
.mobile-video { display: block; }
}



/* REVIEWS (WHITE THEME) */
.reviews-section {
    max-width: 1140px;
    margin: 40px auto 72px;
    padding: 24px 26px 26px;
    border-radius: 20px;
    background: #ffffff; /* WHITE */
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
}

.reviews-shell-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.reviews-shell-heading h2 {
    margin: 0;
    font-size: 22px;
    color: #222;
}

.reviews-shell-tag {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
}

.reviews-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.review-summary-card,
.review-breakdown-card {
    padding: 14px 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa; /* LIGHT CARD */
}

.review-score-main {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.review-score-value {
    font-size: 32px;
    font-weight: 800;
    color: #222;
}

.review-score-stars {
    color: #f5a623;
    font-size: 18px;
}

.review-score-meta {
    font-size: 13px;
    color: #666;
}

.review-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.review-pill {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #666;
}

.review-break-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 5px;
}

.review-break-row-label {
    width: 46px;
    color: #666;
}

.review-break-bar-wrap {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: #e5e5e5;
    overflow: hidden;
}

.review-break-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #d2824b, #f2b36f);
}

.review-break-row-count {
    width: 30px;
    text-align: right;
    color: #666;
}

.review-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 6px 0 14px;
    font-size: 13px;
    color: #333;
}

.sort-select-shell {
    position: relative;
    display: inline-block;
    width: 180px;
}

.sort-select-shell select {
    width: 100%;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #ffffff;
    color: #222;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
    appearance: none;
}

.sort-select-shell::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #888;
    pointer-events: none;
}

.review-list {
    margin-bottom: 22px;
}

.review-item {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    padding: 10px 12px 12px;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.review-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.review-item-stars {
    color: #f5a623;
    font-size: 13px;
}

.review-item-text {
    font-size: 14px;
    color: #333;
    margin: 4px 0 4px;
}

.review-item-date {
    font-size: 11px;
    color: #888;
}

.review-empty {
    color: #777;
    font-size: 14px;
}

.review-form {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    margin-top: 6px;
}

.review-form h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #222;
}

.review-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.review-form-group {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.review-form-group label {
    font-size: 13px;
    color: #666;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    color: #222;
}

.review-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-review-submit {
    margin-top: 4px;
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #d2824b, #f2b36f);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(210, 130, 75, 0.25);
}

.review-messages {
    margin-bottom: 8px;
}

.review-alert {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 6px;
}

.review-alert.success {
    background: #e9f7ec;
    color: #1e7a29;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.review-alert.error {
    background: #fdecea;
    color: #d93025;
    border: 1px solid rgba(217, 48, 37, 0.3);
}


  
/* Light dim overlay */
.overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.25); /* light dim layer */
}
/* Prevent hero from hiding under fixed navbar */


/* CATEGORIES */
.categories {
  margin: 0;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
}

.category {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: all 400ms cubic-bezier(.2, .9, .3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  --color: transparent;
  min-height: 400px;
}

.category .media {
  position: absolute;
  
}

.category .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(.2, .9, .3, 1);
}

.cat-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cat-actions .badge {
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.cat-actions .btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.category:hover {
  background: : #F9F5EC;
  border-radius: 48% / 42%;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.category:hover .media img {
  transform: scale(0.96);
  filter: saturate(0.98) contrast(0.95);
}

.category:hover .cat-actions .badge,
.category:hover .cat-actions .btn {
  border-color: rgba(255, 255, 255, 0.95);
  
}

.category::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

/* --- MOBILE VIEW (Modern, Glass, Clean, No Horizontal Scroll) --- */
@media (max-width: 540px) {

  .categories {
    padding: 20px 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 14px;
    width: 100%;
    overflow: hidden;      /* prevent page scrolling horizontally */
  }

  .category {
    width: 100%;
    min-height: 170px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;

    /* Glass + soft shadows */
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.22);
  }

  /* IMAGE */
  .category .media {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .category .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* fills the card, no stretched look */
    opacity: 0.85;
    transition: opacity .3s ease, transform .3s ease;
  }

  .category:hover .media img {
    transform: scale(1.04);
    opacity: 1;
  }

  /* TEXT */
  .cat-actions {
    position: relative;
    z-index: 5;
    margin-bottom: 6px;
  }

  .cat-actions .btn {
    padding: 5px 12px;

    /* Mini Glass Button */
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 8px;
    font-size: 0.50rem;  /* smaller text */
    font-weight: 400;
    color: #fff;         /* white text */
    text-transform: uppercase;
  }

  /* SECTION TITLE */
  .coll {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: #000;        /* white text */
    font-family: 'Playfair display';
    margin-bottom: 16px;
  }

  /* Prevent horizontal scroll on entire page */
  body, html {
    overflow-x: hidden !important;
  }
}


/* FLEX BANNER SECTION */
.flex-section {
  display: flex;
  gap: var(--grid-gap);
  padding: var(--page-padding-y) var(--page-padding-x);
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
}

.col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--grid-gap);
  margin-left: -20px;
}

/* Common wrappers */
.inner,
.basic1,
.basic2 .inbas {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Images */
.inner img,
.basic1 img,
.inbas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* Left column proportions */
.first .inner1 {
  flex: 2;
}

.first .inner2 {
  flex: 1;
}

/* Right column parent */
.col.second {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  flex: 1;
  min-width: 0;
}

/* Top block on right (inner3) */
.col.second .inner3 {
  flex: 1 1 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

/* Bottom part on right: basic (left big + right two small) */
.col.second .basic {
  display: flex;
  flex-direction: row;
  gap: var(--grid-gap);
  flex: 1 1 0;
  min-height: 0;
}

/* Left inside basic (tall image) */
.basic1 {
  flex: 1 1 0;
  min-width: 0;
}

/* Right inside basic (two stacked) */
.basic2 {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  min-width: 0;
}

/* The two stacked boxes */
.basic2 .inbas {
  flex: 1 1 0;
  min-height: 0;
}

/* Hover micro-scale */
.basic1 img:hover,
.basic2 .inbas img:hover,
.inner img:hover {
  transform: scale(1.03);
}

/* Tablet & small laptops */
@media (max-width: 980px) {
  .flex-section {
    flex-direction: column;
    padding: 1rem;
  }

  .col {
    gap: var(--grid-gap);
  }

  .col.second .basic {
    flex-direction: column;
  }

  .basic2 {
    flex-direction: row;
  }
}

/* Mobile phones */
@media (max-width: 520px) {
  .flex-section {
    display: none !important;
  }
}

/* ===== PRODUCT HERO SECTION ===== */
.product-section {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 32px 32px;
  box-sizing: border-box;
  gap: 16px;
  
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  margin-inline: auto;
}

/* LEFT IMAGE / HERO */
.product-left {
  flex: 0 0 58%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #fff;
  min-height: 420px;
}

.product-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 900ms var(--transition), filter 900ms var(--transition);
  will-change: transform;
}

.product-left:hover img {
  transform: scale(1.04);
}

/* gradient for text readability */
.product-left::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(*/
  /*  180deg,*/
  /*  rgba(0, 0, 0, 0) 20%,*/
  /*  rgba(0, 0, 0, 0.7) 100%*/
  /*);*/
  pointer-events: none;
}

/* OVERLAY PANEL */
.left-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  pointer-events: none;
}

.left-overlay .panel {
  pointer-events: auto;
  padding: 16px 18px;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  
  color: #000;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.left-overlay .eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}

.left-overlay .title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.left-overlay .subtitle {
  margin: 0 0 12px;
  font-size: 13px;
  
  line-height: 1.5;
}

.left-overlay .cta {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border :2px solid black;
  color: #111;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  
  transition: transform 180ms ease;
}

.left-overlay .cta:hover {
  transform: translateY(-2px);
  
}

/* RIGHT COLUMN – three cards */
.product-right {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* CARD */
.product-card {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  
  transition: 0.25s;
  min-height: 0;
}

.product-card:hover {
  transform: translateY(-3px);
  
}

/* CARD IMAGE */
.product-card .thumb {
  flex: 0 0 35%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.05);
}

/* CARD CONTENT */
.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* meta row / pills */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.pill {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1px solid transparent;
}

.pill-accent {
  background: #023027;
  color: #fff;
}

.pill-soft {
  background: #023027;
  color: #fff;
  
}

.product-card .title {
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
}

.product-card .title a {
  color: inherit;
  text-decoration: none;
}

.product-card .title a:hover {
  text-decoration: underline;
}

.product-card .desc {
  color: #000;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding-left: 16px;
  margin: 8px 0 0;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.4;
}

.feature-list li {
  position: relative;
  margin-bottom: 3px;
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: -10px;
}

/* CARD FOOTER */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.price {
  background: #023027;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn-cart {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  background: #023027;
  
 
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cart:hover {
  transform: translateY(-2px);
  
}

.actions {
  display: flex;
  gap: 8px;
}

/* TABLETS & SMALL LAPTOPS */
@media (max-width: 1200px) {
  .product-section {
    padding: 24px 20px;
    gap: 16px;
  }

  .product-left {
    min-height: 380px;
  }
}

@media (max-width: 1024px) {
  .product-section {
    flex-direction: column;
    min-height: auto;
    padding: 24px 16px 28px;
  }

  .product-left {
    width: 100%;
    min-height: 380px;
  }

  .product-right {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .product-card {
    min-height: 190px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
    min-height: auto;
    gap: 16px;
    padding: 20px 14px 24px;
  }

  .product-left {
    min-height: 320px;
  }

  .left-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .left-overlay .panel {
    padding: 14px 14px;
  }

  .left-overlay .title {
    font-size: 18px;
  }

  .left-overlay .subtitle {
    font-size: 12px;
  }

  .product-right {
    flex-direction: column;
    gap: 14px;
  }

  .product-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 14px;
  }

  .product-card .thumb {
    width: 100%;
    flex: 0 0 auto;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .product-card .card-body {
    gap: 10px;
  }

  .card-footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .btn-cart {
    flex: 1;
    text-align: center;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .product-section {
    padding: 16px 10px 20px;
  }

  .product-left {
    min-height: 209px;
  }
  .left-overlay .panel{
      display: none !important;
  }
   
  .product-card {
    padding: 12px;
  }

  .product-card .thumb {
    aspect-ratio: 1 / 1;
  }

  .product-card .title {
    font-size: 0.95rem;
  }

  .product-card .desc {
    -webkit-line-clamp: unset;
  }

  .btn-cart {
    font-size: 0.75rem;
    padding: 10px 30px;
  }
}

/* PRODUCT TABS / SLIDER SECTION */
:root{
  --green: #023027;
  --forest: #01241F;
  --gold: #EACF9D;
  --gold-strong: #DAAF55;
  --cream: #F9F5EC;
  --muted: rgba(249,245,236,0.7);

  --gap: 20px;          /* space between cards */
  --card-radius: 14px;
  --shadow-1: 0 6px 18px rgba(2,32,39,0.06);
  --shadow-2: 0 18px 40px rgba(2,32,39,0.10);
}

/* SECTION */
.products-tabs {
  text-align: center;
  color: var(--forest);
  background: transparent;
  margin-bottom: 8px;
}

.products-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* TABS */
.tabs-wrap {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab {
  background: var(--muted);
  color: var(--forest);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.tab:hover { transform: translateY(-2px); }

.tab.active,
.tab[aria-selected="true"] {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(2,48,39,0.12);
  transform: translateY(-3px);
  border-color: rgba(218,175,85,0.9);
}

/* SLIDER WRAPPER */
.slider-viewport {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 22px;
  border-radius: 18px;
  background: var(--cream);
  box-sizing: border-box;
  position: relative;
  outline: none;
}

/* TRACK (flex row, will be duplicated for looping) */
.slider-track {
  display: flex;
  gap: var(--gap);
  align-items: stretch;
  will-change: transform, scroll-position;
  /* hide scrollbar */
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}
.slider-track::-webkit-scrollbar { display: none; }

/* CARD — aim for exactly 4 cards per view on desktop */
:root {
  --green: #023027;
  --forest: #01241F;
  --gold: #EACF9D;
  --gold-strong: #DAAF55;
  --cream: #F9F5EC;
  --gap: 20px;
  --card-radius: 16px;
  --shadow-1: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-2: 0 14px 32px rgba(0,0,0,0.12);
}

/* ------------------------ */
/* PRODUCT CARD (fixed height, clean) */
/* ------------------------ */
.product-card-inline {
  flex: 0 0 calc((100% - (var(--gap) * 3)) / 4);
  max-width: calc((100% - (var(--gap) * 3)) / 4);

  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px;

  height: 450px;                /* ✨ FIXED HEIGHT */
  display: flex;
  flex-direction: column;

  box-shadow: var(--shadow-1);
  transition: all .28s ease;
  position: relative;
}

.product-card-inline:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(218,175,85,0.25);
}

/* ------------------------ */
/* IMAGE (full width, perfect fit) */
/* ------------------------ */
.p-image {
  width: 100%;
  height: 330px;               /* ✨ FIXED IMAGE HEIGHT */
  border-radius: 14px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
}

.p-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* ✨ FULL IMAGE COVER */
  display: block;
  transition: transform .35s ease;
}

.product-card-inline:hover .p-image img {
  transform: scale(1.05);
}

/* ------------------------ */
/* TITLE */
/* ------------------------ */
.p-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest);
  margin-top: 10px;
  text-align: left;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------------------------ */
/* DESCRIPTION — 3 LINE CLAMP */
/* ------------------------ */
.p-desc {
  margin-top: 4px;
  font-size: .9rem;
  color: #555;
  line-height: 1.35;
  text-align: left;

  display: -webkit-box;
  -webkit-line-clamp: 3;        /* ✨ ONLY 3 CLEAN LINES */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ------------------------ */
/* BOTTOM SECTION */
/* ------------------------ */
.p-bottom {
  margin-top: auto;             /* ✨ pushes bottom to bottom */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PRICE BADGE */
.p-price {
  font-weight: 900;
  font-size: .95rem;
  color: var(--forest);
  padding: 8px 12px;
  border-radius: 12px;

  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 4px 14px rgba(218,175,85,0.18);
}

/* BUY BUTTON */
.p-buy {
  background: var(--green);
  color: #fff;

  padding: 10px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .05em;

  box-shadow: 0 6px 18px rgba(2,48,39,0.12);
  transition: all .2s ease;
}

.p-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(2,48,39,0.18);
}

/* ------------------------ */
/* RESPONSIVE — 3 → 2 → 1 */
/* ------------------------ */
@media (max-width: 1200px) {
  .product-card-inline {
    flex: 0 0 calc((100% - var(--gap) * 2) / 3);
    max-width: calc((100% - var(--gap) * 2) / 3);
  }
}

@media (max-width: 900px) {
  .product-card-inline {
    flex: 0 0 calc((100% - var(--gap)) / 2);
    max-width: calc((100% - var(--gap)) / 2);
    height: 400px;
  }
  .p-image { height: 180px; }
}

/* -------------------------------------- */
/* MOBILE VIEW — FULL OPTIMIZATION        */
/* -------------------------------------- */
@media (max-width: 480px) {

  /* ---------- Section Title ---------- */
  .products-title {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
  }

  /* ---------- TABS (mobile horizontal scroll) ---------- */
  .tabs-wrap {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 6px 0;
    scrollbar-width: none;
  }
  .tabs-wrap::-webkit-scrollbar { display: none; }

  .tab {
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    background: #eee;
  }

  .tab.active,
  .tab[aria-selected="true"] {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  /* ---------- SLIDER WRAPPER ---------- */
  .slider-viewport {
    padding: 14px;
    border-radius: 12px;
    background: var(--cream);
  }

  /* ---------- FORCE 2 CARDS PER ROW ---------- */
  .product-card-inline {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);

    height: 270px;
    padding: 10px;

    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  /* ---------- IMAGE ---------- */
  .p-image {
    height: 130px;
    border-radius: 10px;
  }
  .p-image img {
    transform: scale(1);
  }

  .product-card-inline:hover .p-image img {
    transform: scale(1.03);
  }

  /* ---------- TITLES & TEXT ---------- */
  .p-title {
    font-size: 0.78rem;
    margin-top: 6px;
    white-space: normal;
    line-height: 1.2;
    
  }

  .p-desc {
    display: none; /* Hide long text for clean mobile layout */
  }

  /* ---------- BOTTOM AREA ---------- */
  .p-bottom {
    margin-top: auto;
  }

  .p-price {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .p-buy {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
    .p-title {
        font-size: 0.70rem;
    
        white-space: normal;
        font-weight: 600;
        line-height: 1.33;
    }
}



/* accessibility focus */
.slider-viewport:focus { box-shadow: 0 0 0 4px rgba(2,48,39,0.06); outline: none; }
/* MAIN BANNER (not used in current HTML but kept intact) */
.mainbanner {
  width: 100%;
  height: 80vh;
  background-image: url(./assets/dog.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* BEST SELLER SECTION */
.best-seller-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.5rem) 1rem;
  color: var(--text);
}

.best-seller-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.best-seller-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.best-seller-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

.best-seller-subtitle {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Grid */
.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Card */
.best-seller-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0.9rem;
  
  border: 1px solid #A08543;
  
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.best-seller-card:hover {
  transform: translateY(-6px);
  
  border-color: rgba(210, 130, 75, 0.6);
}

/* Badge */
.best-seller-badge {
  position: absolute;
  top: 22px;
  left: 25px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent), #f3b27a);
  color: #050609;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 470px;
}

/* Media (image + overlay) */
.best-seller-media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.best-seller-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.best-seller-card:hover .best-seller-media img {
  transform: scale(1.06);
}

.best-seller-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.best-seller-card:hover .best-seller-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Body */
.best-seller-body {
  padding: 0.9rem 0.3rem 0.1rem;
}

/* Name */
.best-seller-name {
  font-size: 0.98rem;
  margin: 0.4rem 0 0.6rem;
  text-align: left;
  min-height: 2.4em;
}

.best-seller-name a {
  color: var(--text);
  text-decoration: none;
}

.best-seller-name a:hover {
  color: var(--accent);
}

/* Price + rating row */
.best-seller-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Price */
.best-seller-price {
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
  white-space: nowrap;
}

.old-price {
  text-decoration: line-through;
  
  margin-right: 0.35rem;
  font-size: 0.85rem;
}

.current-price {
  font-weight: 600;
  color: #000;
}

/* Rating (structure kept for future use) */
.best-seller-rating {
  font-size: 0.8rem;
  color: #f1c750;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.best-seller-rating .rating-count {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Colors */
.best-seller-colors {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.color-option {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  outline: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 1px rgba(5, 6, 9, 0.9);
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .best-seller-section {
    padding-inline: 1.2rem;
  }
  .best-seller-card {
    padding: 0.8rem;
  }
}

/* ============================
      MOBILE VIEW IMPROVEMENTS
   ============================ */
@media (max-width: 570px) {

  /* Section spacing */
  .best-seller-section {
    padding: 1.5rem 1rem;
  }

  /* Header */
  .best-seller-title {
    font-size: 1.25rem !important;
    letter-spacing: 0.08em;
  }

  .best-seller-subtitle {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  /* GRID: 2 cards per row */
  .best-seller-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.9rem !important;
  }

  /* Cards cleanup */
  .best-seller-card {
    padding: 0.55rem !important;
    border-radius: 12px;
    /* softer shadow */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
    transition: none; /* smoother on mobile */
  }

  .best-seller-card:hover {
    transform: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  }

  /* Images smaller & aligned */
  .best-seller-media img {
    aspect-ratio: 4/5;
    border-radius: 10px;
    transform: scale(1.01);
  }

  /* Hide overlay hover effect on mobile (not needed) */
  .best-seller-overlay {
    display: none !important;
  }

  /* Badge */
  .best-seller-badge {
    font-size: 0.55rem;
    padding: 0.18rem 0.5rem;
    top: 12px;
    left: 12px;
  }

  /* Product name */
  .best-seller-name {
    font-size: 0.78rem !important;
    margin: 0.25rem 0 0.45rem;
    min-height: 2.1em;
  }

  /* Price row */
  .best-seller-meta {
    margin-bottom: 0.25rem;
    gap: 0.3rem;
  }

  .best-seller-price {
    font-size: 0.8rem !important;
  }

  .old-price {
    font-size: 0.7rem !important;
  }

  .current-price {
    font-size: 0.88rem !important;
  }

  /* Hide rating on mobile */
  .best-seller-rating {
    display: none !important;
  }

  /* Color circles smaller */
  .color-option {
    width: 14px;
    height: 14px;
  }

}


/* BACKGROUND VIDEO SECTION */
.bg-video-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* VIDEO */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center;
  z-index: 0;
  animation: vid-pan 18s ease-in-out infinite alternate;
}

@keyframes vid-pan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}

/* Overlay */
.video-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background: var(
    --overlay-gradient,
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25)
    )
  );
  pointer-events: none;
}

.overlay-inner {
  pointer-events: auto;
  text-align: center;
  color: #fff;
  max-width: 920px;
}

.overlay-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transform: none;
  opacity: 1;
  transition: transform 0.7s var(--transition-ease, ease),
    opacity 0.7s var(--transition-ease, ease);
}

.overlay-sub {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  transform: none;
  opacity: 1;
  transition: transform 0.75s var(--transition-ease, ease) 0.05s,
    opacity 0.75s var(--transition-ease, ease) 0.05s;
}

.overlay-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transform: none;
  opacity: 1;
  transition: transform 0.75s var(--transition-ease, ease) 0.1s,
    opacity 0.75s var(--transition-ease, ease) 0.1s,
    box-shadow 0.2s;
}

.overlay-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    animation: none;
    transform: none;
  }

  .overlay-title,
  .overlay-sub,
  .overlay-cta {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile for video section */
@media (max-width: 640px) {
  .bg-video-section {
    height: 52vh;
    min-height: 300px;
  }

  .video-overlay {
    padding: 1.2rem;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.55)
    );
  }

  .overlay-cta {
    padding: 0.55rem 0.9rem;
  }
}

/* DOG IMAGE SECTION */
.dogimage img {
  display: block;
}
@media (max-width: 480px) {
    .dogimage{
        display: none !important;
    }
}
/* ---------------------------------------------------
   HERBIX BRAND VARIABLES
--------------------------------------------------- */
:root {
  --primary-green: #023027;        /* Botanical Green */
  --herbal-gold: #EACF9D;          /* Herbal Gold */
  --golden-brown: #DAAF55;         /* Rich Golden Brown */
  --cream-white: #F9F5EC;          /* Cream background */
  --deep-forest: #01241F;          /* Deep Forest */
  --soft-earth: #C7A574;           /* Soft Earth Brown */

  --text-dark: #023027;            /* Herbal dark green text */
  --text-muted: #4f605d;           /* Soft muted natural */
  --border-gold: #EACF9D;          /* Gold border accent */

  --heading-font: "Playfair Display", serif;
  --body-font: "Montserrat", sans-serif;
}

/* ---------------------------------------------------
   SECTION WRAPPER
--------------------------------------------------- */
.newsletter-dark {
  background: var(--cream-white);
  color: var(--text-dark);
  padding: 60px 16px;
  font-family: var(--body-font);
}

/* Page max-width */
.nl-shell {
  
  margin: 0 auto;
  padding: 0 12px;
}

/* ---------------------------------------------------
   MAIN GRID LAYOUT
--------------------------------------------------- */
.nl-main {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Tablet → Single column */
@media (max-width: 900px) {
  .nl-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---------------------------------------------------
   TEXT & COPY
--------------------------------------------------- */
.nl-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--golden-brown);
}

.nl-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 5px 0 12px;
}

.nl-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* BULLETS */
.nl-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  color: var(--text-muted);
}

.nl-bullets li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 8px;
}

.nl-bullets li::before {
  content: "✧";
  position: absolute;
  left: 0;
  color: var(--golden-brown);
  font-size: 1.1rem;
}

/* ---------------------------------------------------
   SOCIAL ICONS
--------------------------------------------------- */
.nl-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nl-social .s {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--herbal-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
}

.nl-social .s:hover {
  background: var(--golden-brown);
  color: white;
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .nl-social {
    justify-content: center;
  }
}

/* ---------------------------------------------------
   FORM
--------------------------------------------------- */
.nl-form-dark {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs grid */
.nl-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .nl-inputs {
    grid-template-columns: 1fr;
  }
}

/* Input Fields */
.nl-inputs input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary-green);
  font-family: var(--body-font);
  background: white;
  color: var(--text-dark);
}

.nl-inputs input::placeholder {
  color: #7a8a88;
}

.nl-inputs input:focus {
  border-color: var(--golden-brown);
}

/* ---------------------------------------------------
   BUTTON
--------------------------------------------------- */
.nl-submit {
  background: var(--golden-brown);
  color: white;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.nl-submit:hover {
  background: var(--primary-green);
  color: var(--herbal-gold);
}

/* ---------------------------------------------------
   NOTE & FEEDBACK
--------------------------------------------------- */
.nl-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------
   CONTACT CARDS
--------------------------------------------------- */
.nl-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Responsive cards */
@media (max-width: 900px) {
  .nl-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .nl-cards {
    grid-template-columns: 1fr;
  }
}

/* Card styles */
.card {
  background: white;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--herbal-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.card h4 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.card .muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-link {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  color: var(--golden-brown);
}
