/* =========================================================
   SHUBH MASALA — Design tokens
   Palette drawn from the spices themselves: chili maroon,
   turmeric, saffron gold, roasted-cardamom dark, cream.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&amp;family=Manrope:wght@400;500;600;700;800&amp;display=swap');

:root {
  --maroon: #C41E24;
  --maroon-dark: #8C0F16;
  --saffron: #E8A621;
  --saffron-lt: #F6C858;
  --turmeric: #D98A1D;
  --espresso: #2A0D0D;
  --espresso-2: #3A1210;
  --cream: #FFFDF6;
  --cream-dim: #FBF1DC;
  --ink: #2A1006;
  --muted: #7A5A46;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-lite: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.24);
  --glass-shadow: 0 8px 32px rgba(28, 18, 11, 0.12);

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* FIX: prevent horizontal scroll caused by fixed off-canvas mobile nav */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--saffron);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--espresso);
}

h2.section-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 10px 0 14px;
}

p.section-lead {
  max-width: 620px;
  color: #5b4638;
  font-size: 1.02rem;
  line-height: 1.7;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========== glass utility =========== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-lite {
  background: var(--glass-bg-lite);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(122, 31, 43, 0.10);
}

/* floating spice-steam blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -24px) scale(1.08);
  }

  66% {
    transform: translate(-24px, 20px) scale(.96);
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--turmeric));
  color: var(--espresso);
  box-shadow: 0 10px 26px rgba(201, 124, 29, .35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 124, 29, .45);
}

.btn-outline {
  background: var(--glass-bg-lite);
  border: 1px solid rgba(122, 31, 43, .25);
  color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

.btn-ghost-light {
  background: rgb(223 34 43) !important;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  transform: translateY(-3px);
}

/* =========== header =========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-bottom: 3px solid var(--saffron);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
  transition: padding .4s var(--ease), box-shadow .4s;
  background: rgb(38 50 90);
  backdrop-filter: blur(16px) saturate(160%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.scrolled {
  padding: 9px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--saffron-lt);
}

.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--maroon), var(--saffron), var(--turmeric), var(--maroon));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .18);
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: .92rem;
  position: relative;
  padding: 4px 0;
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* =========== marquee strip =========== */
.marquee-strip {
  background: var(--cream-dim);
  border-top: 1px solid var(--border, #EFE6D2);
  border-bottom: 1px solid #EFE6D2;
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollx 34s linear infinite;
}

.marquee-track span {
  color: var(--maroon);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  opacity: .85;
}

@keyframes scrollx {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========== sections =========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--espresso);
  color: var(--cream);
}

.section-dark h2.section-title,
.section-dark h3 {
  color: var(--cream);
}

.section-dark p.section-lead {
  color: rgba(255, 248, 236, .72);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* category tiles */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  padding: 30px 22px;
  text-align: center;
  transition: all .4s var(--ease), box-shadow .4s;
  box-shadow: -6px 9px 20px #0000004a;
}

.category-card:hover {
  scale: 1.2;
  transform: translateY(0) !important;
  z-index: 1000;
}

.category-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(122, 36, 48, 0.07);
  border: 1px solid rgba(122, 36, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: transform .4s var(--ease), background .4s;
}

.category-card:hover .icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(122, 36, 48, 0.12);
}

.category-card h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.category-card p {
  font-size: .85rem;
  color: var(--muted);
}

/* product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card {
  overflow: hidden;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(28, 18, 11, .12);
}

.product-thumb {
  aspect-ratio: 2/1;
  background: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .6s var(--ease);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  color: var(--maroon);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  border: 1px solid rgba(122, 36, 48, .15);
}

.product-body {
  padding: 20px;
}

.product-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-body p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 10px;
  min-height: 38px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 14px;
}

.product-price small {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
}

.product-body .btn {
  padding: 9px 20px;
  font-size: .78rem;
}

/* about / split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media .frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #f2ddb0, #d99a4e);
}

.split-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.split-media .float-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 20px 24px;
  width: 180px;
}

.split-media .float-badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  display: block;
}

.split-media .float-badge span {
  font-size: .78rem;
  color: #6b5747;
}

.checklist {
  margin: 24px 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .96rem;
  color: #4a382b;
}

.checklist li .tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
}

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  padding: 30px;
  color: var(--cream);
}

.testi-card .stars {
  color: var(--saffron-lt);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 248, 236, .85);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testi-person strong {
  display: block;
  font-size: .92rem;
}

.testi-person span {
  font-size: .76rem;
  color: rgba(255, 248, 236, .6);
}

/* blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  overflow: hidden;
  transition: transform .4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #efd6a3, #c97c1d);
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  font-size: .74rem;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-body h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .88rem;
  color: #6b5747;
  margin-bottom: 14px;
}

.blog-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: radial-gradient(120% 160% at 50% 0%, #3a2013 0%, var(--espresso) 60%, #150d08 100%);
  text-align: center;
  color: var(--cream);
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band p {
  color: rgba(255, 252, 246, .72);
  margin: 14px auto 30px;
  max-width: 560px;
}

/* =========== banner slider (admin-managed, image only) =========== */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--cream-dim);
  border-bottom: 3px solid var(--saffron);
}

.banner-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.banner-slider .slide.active {
  position: relative;
  opacity: 1;
}

.banner-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-slider .dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.banner-slider .dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .7);
  transition: .3s;
}

.banner-slider .dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 6px;
}

/* site logo */
.logo-img {
  height: 75px;
  width: auto;
  display: block;
}

/* trusted-by partner strip */
.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.partner-logo {
  opacity: .6;
  filter: grayscale(100%);
  transition: opacity .35s, filter .35s, transform .35s;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.partner-logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 26px;
  align-items: flex-start;
}

.why-item .icon-wrap {
  flex-shrink: 0;
  margin: 0;
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* category tab browser */
.tab-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-nav button {
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .86rem;
  border: 1px solid rgba(122, 36, 48, .18);
  color: var(--maroon);
  background: transparent;
  transition: all .3s;
}

.tab-nav button.active {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn .5s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* forms */
.form-glass {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--maroon);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(122, 31, 43, .18);
  background: rgba(255, 255, 255, .7);
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(224, 165, 38, .18);
}

.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(58, 140, 90, .15);
  color: #2c7a4b;
  border: 1px solid rgba(58, 140, 90, .3);
}

.alert-error {
  background: rgba(200, 60, 60, .12);
  color: #a53535;
  border: 1px solid rgba(200, 60, 60, .3);
}

/* page header (inner pages) */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, #3a2013 0%, var(--espresso) 60%, #140c07 100%);
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-top: 12px;
}

.page-hero p {
  color: rgba(255, 248, 236, .72);
  max-width: 560px;
  margin: 14px auto 0;
}

.breadcrumb {
  font-size: .8rem;
  color: rgba(255, 248, 236, .55);
  margin-top: 16px;
}

.breadcrumb a {
  color: var(--saffron-lt);
}

/* filter pills */
.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 46px;
  justify-content: center;
}

.filter-pills a {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  border: 1px solid rgba(122, 31, 43, .2);
  color: var(--maroon);
  transition: all .3s;
}

.filter-pills a.active,
.filter-pills a:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

/* footer */
.site-footer {
  background: var(--espresso-2);
  color: rgba(255, 248, 236, .72);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid h5 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-grid p {
  font-size: .88rem;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: .88rem;
}

.footer-links a:hover {
  color: var(--saffron-lt);
}

.footer-grid .social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-grid .social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.footer-grid .social-row a:hover {
  background: var(--saffron);
  color: var(--espresso);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* misc components */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px;
  margin-top: -90px;
  position: relative;
  z-index: 4;
}

.stat-strip div {
  text-align: center;
  color: var(--cream);
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron-lt);
}

.stat-strip span {
  font-size: .78rem;
  color: rgba(255, 248, 236, .65);
}

/* ============ responsive ============ */
@media(max-width:1024px) {

  .category-grid,
  .product-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:860px) {
  .split {
    grid-template-columns: 1fr;
  }

  /* FIX: use transform instead of right:-100% to avoid layout-driven
     horizontal scroll on mobile browsers, and add its own scroll for
     tall menus (e.g. when the Products dropdown is expanded) */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--espresso);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 20px;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta .btn-outline {
    display: none;
  }
}

@media(max-width:640px) {

  .category-grid,
  .product-grid,
  .testi-grid,
  .blog-grid,
  .footer-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* hide desktop social row on mobile since nav-social already shows inside menu */
@media(max-width:860px) {
  .header-social {
    display: none;
  }
}

@media(min-width:861px) {
  .nav-social {
    display: none;
  }
}

.header-social {
  margin-right: 6px;
}

.social-row a {
  width: 32px;
  height: 32px;
  color: var(--cream);
}

/* hamburger -> cross animation */
.menu-toggle {
  position: relative;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.menu-toggle span {
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======================== FAQ ACCORDION ======================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.glass-lite {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: inherit;
}

.faq-question i {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #c62828;
  font-size: 13px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.78;
}

/* ======================== END FAQ ======================== */
/* ===== Social icons — colorful + properly scoped ===== */
.social-row {
  display: flex;
  gap: 10px;
}

/* Desktop: only header-social (outside) visible */
.header-social {
  margin: 0px !important;
}

.nav-social {
  display: none;
}

/* Mobile: only nav-social (inside menu) visible, header-social fully hidden */
@media(max-width:860px) {
  .header-social {
    display: none !important;
  }

  .nav-social {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    justify-content: center;
  }
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.social-row a:hover {
  transform: translateY(-3px) scale(1.06);
}

/* Brand colors */
.social-row a.fb {
  background: #1877F2;
  color: #fff;
}

.social-row a.fb:hover {
  box-shadow: 0 6px 16px rgba(24, 119, 242, .45);
}

.social-row a.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

.social-row a.ig:hover {
  box-shadow: 0 6px 16px rgba(214, 36, 159, .45);
}

.social-row a.yt {
  background: #FF0000;
  color: #fff;
}

.social-row a.yt:hover {
  box-shadow: 0 6px 16px rgba(255, 0, 0, .4);
}

/* ===== Hamburger -> Cross animation ===== */
.menu-toggle {
  position: relative;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  display: none;
  /* desktop pe hidden */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 11px;
  transition: .3s;
}

/* IMPORTANT: hover-only rules must be scoped to desktop.
   On mobile, :hover styles cause the classic "first tap only
   triggers hover, second tap fires click" bug on iOS/Android,
   which made the dropdown feel broken/unresponsive. */
@media(min-width:861px) {
  .nav-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s;
  z-index: 999;
}

@media(min-width:861px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333 !important;
  text-decoration: none;
  font-size: 15px;
  transition: .25s;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: var(--primary);
  padding-left: 24px;
}

/* Sirf mobile pe hamburger dikhega */
@media(max-width:860px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    justify-content: center;
  }
}

@media(max-width:860px) {

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    box-shadow: none;
    padding-left: 15px;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #fff !important;
    padding: 8px 0;
  }

  /* arrow rotate on tap (mobile has no hover) */
  .nav-dropdown.active .arrow {
    transform: rotate(180deg);
  }

}

.banner-slider {
  position: relative;
  overflow: hidden;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 20;
}

.slider-nav button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: .3s;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.slider-nav button:hover {
  background: #c62828;
  color: #fff;
  transform: scale(1.08);
}

@media(max-width:768px) {
  .slider-nav {
    padding: 0 10px;
  }

  .slider-nav button {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

h1,
h2 {
  font-size: 2.25rem !important;
}

/* Every .section-head across the page: stack + center instead of left-heading / right-lead */
.section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head p.section-lead,
.section-head>a {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.intro-hero {
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.intro-grid .intro-highlights {
  order: 1;
}

.intro-grid .intro-text {
  order: 2;
}

.intro-body {
  font-size: .96rem;
  line-height: 1.75;
  color: #6b5747;
  margin-top: 16px;
  max-width: 600px;
}

.intro-body-strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--maroon-dark);
  margin-top: 22px;
}

.intro-highlights {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.intro-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.intro-highlight .icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(122, 36, 48, .07);
  border: 1px solid rgba(122, 36, 48, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.intro-highlight h4 {
  font-size: .98rem;
  margin-bottom: 5px;
}

.intro-highlight p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

@media(max-width:1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid .intro-text {
    order: 1;
  }

  .intro-grid .intro-highlights {
    order: 2;
  }
}

.about-split-alt {
  grid-template-columns: .85fr 1.15fr;
}

.brand-frame {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-chip {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--glass-bg-lite);
  border: 1px solid rgba(122, 31, 43, .15);
  color: var(--maroon);
  font-size: .78rem;
  font-weight: 700;
}

@media(max-width:860px) {
  .about-split-alt {
    grid-template-columns: 1fr;
  }
}

.category-card {
  text-align: center;
  padding: 25px 20px;
  border-radius: 18px;
  transition: .35s;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-image {
  width: 95px;
  height: 95px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

.process-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 30px;
  font-weight: 800;
  color: rgba(198, 40, 40, .08);
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(198, 40, 40, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 19px;
  color: #c62828;
}

.process-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
}

.process-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  opacity: .75;
}

@media screen and (max-width:900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width:560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.qa-flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qa-flavor-card {
  padding: 34px 30px;
  border-radius: 18px;
}

.qa-flavor-card h3 {
  margin: 14px 0 16px;
  font-size: 20px;
}

.qa-flavor-card p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.75;
  opacity: .78;
}

.qa-flavor-card p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:800px) {
  .qa-flavor-grid {
    grid-template-columns: 1fr;
  }
}

/*================ CERTIFICATE SECTION ================*/

.cert-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cert-card {
  border: none;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  transition: .4s ease;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .18);
}

.cert-card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  transition: .4s;
}

.cert-card:hover img {
  transform: scale(1.04);
}

/*================ MAGIC POPUP ================*/

.cert-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
  z-index: 99999;
}

.cert-popup.active {
  opacity: 1;
  visibility: visible;
}

.cert-popup-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  transform: scale(.75);
  transition: .45s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .45);
}

.cert-popup.active .cert-popup-box {
  transform: scale(1);
}

.cert-popup-box img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.cert-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #c62828;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: .3s;
  z-index: 5;
}

.cert-close:hover {
  transform: rotate(90deg) scale(1.08);
  background: #000;
}

/*================ RESPONSIVE ================*/

@media(max-width:1200px) {

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:991px) {

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cert-card img {
    height: 340px;
  }

}

@media(max-width:576px) {

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-card img {
    height: 280px;
  }

  .cert-popup {
    padding: 15px;
  }

  .cert-popup-box {
    padding: 12px;
  }

  .cert-close {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

}

.sm-slider-wrap {
  position: relative;
}

.sm-viewport {
  overflow: hidden;
  padding: 6px 2px 14px;
}

.sm-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform .5s ease;
}

.sm-track.sm-no-transition {
  transition: none !important;
}

.sm-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
}

@media(min-width:576px) {
  .sm-slide {
    flex-basis: calc((100% - 22px)/2);
  }
}

@media(min-width:768px) {
  .sm-slide {
    flex-basis: calc((100% - 44px)/3);
  }
}

@media(min-width:1200px) {
  .sm-slide {
    flex-basis: calc((100% - 88px)/5);
  }
}

.sm-card {
  cursor: pointer;
  padding: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.sm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .12);
}

.sm-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.sm-thumb img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  opacity: .9;
  display: block;
}

.sm-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198, 40, 40, .92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform .3s ease, background .3s ease;
}

.sm-card:hover .sm-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #c62828;
}

.sm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: .3s;
  z-index: 10;
}

.sm-nav.sm-prev {
  left: 0;
}

.sm-nav.sm-next {
  right: 0;
}

.sm-nav:hover {
  background: #c62828;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

@media(max-width:768px) {
  .sm-slider-wrap {
    padding: 0 44px;
  }

  .sm-thumb img {
    height: 170px;
  }

  .sm-nav {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* Video lightbox */
.sm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px;
}

.sm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sm-modal {
  position: relative;
  width: 100%;
  max-width: 860px;
  transform: scale(.85);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.sm-modal-overlay.active .sm-modal {
  transform: scale(1);
}

.sm-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.sm-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sm-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: .25s;
}

.sm-modal-close:hover {
  background: #c62828;
  transform: rotate(90deg);
}

.prefer-band {
  padding: 0;
}

.prefer-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 44px;
  border-radius: 22px;
  background: linear-gradient(155deg, #c62828, #8e1c1c);
  color: #fff;
}

.prefer-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #fff;
}

.prefer-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  opacity: .92;
}

.prefer-card p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:600px) {
  .prefer-card {
    padding: 34px 24px;
  }
}

.glass iframe {
  width: 100%;
}

/* ===== Footer social icons — same colorful style ===== */
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.footer-social a.fb {
  background: #1877F2;
  color: #fff;
}

.footer-social a.fb:hover {
  box-shadow: 0 6px 16px rgba(24, 119, 242, .45);
  transform: translateY(-3px) scale(1.06);
}

.footer-social a.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

.footer-social a.ig:hover {
  box-shadow: 0 6px 16px rgba(214, 36, 159, .45);
  transform: translateY(-3px) scale(1.06);
}

.footer-social a.yt {
  background: #FF0000;
  color: #fff;
}

.footer-social a.yt:hover {
  box-shadow: 0 6px 16px rgba(255, 0, 0, .4);
  transform: translateY(-3px) scale(1.06);
}

/* ===== Floating Call + WhatsApp buttons ===== */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1500;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.call-btn {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
}

.call-btn:hover {
  box-shadow: 0 12px 26px rgba(140, 15, 22, .45);
}

.whatsapp-btn {
  background: #25D366;
  animation: pulseWA 2.4s ease-in-out infinite;
}

.whatsapp-btn:hover {
  box-shadow: 0 12px 26px rgba(37, 211, 102, .45);
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media(max-width:640px) {
  .floating-contact {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}
/* ======================== INDUSTRIES WE SERVE ======================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.industry-tag:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.industry-tag i {
  font-size: 1.1rem;
  color: var(--maroon);
  flex-shrink: 0;
}

.industry-tag span {
  display: block;
}

@media(max-width:768px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .industry-tag {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* ======================== END INDUSTRIES ======================== */
.wholesale-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}
.wholesale-tag{
    padding:11px 22px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(198,40,40,.18);
    color:#c62828;
    font-weight:700;
    font-size:14px;
    box-shadow:0 6px 16px rgba(0,0,0,.05);
}