@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;700;800&display=swap');

/* =====================================================
   SHREE GLOBAL - PREVIEW 1 MODERN PREMIUM
   Well structured static HTML/CSS/JS project
   Pages remain in root to avoid /pages route issues
===================================================== */

:root {
  --bg: #071016;
  --bg-2: #0c1820;
  --panel: #111e27;
  --panel-soft: rgba(255, 255, 255, 0.075);
  --white: #ffffff;
  --muted: #aebac4;
  --muted-2: #74818d;
  --red: #ef342f;
  --red-dark: #b91f1b;
  --gold: #d6a850;
  --cream: #f8f4ec;
  --line: rgba(255,255,255,.12);
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6, .brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

main {
  padding-top: 150px;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), 90%);
  margin: auto;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: #f4f7f6;
  color: #121a20;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 44px;
}

.section-title h2 {
  max-width: 650px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -2px;
}

.section-title p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.75;
}

.section-light .section-title p {
  color: #5d6870;
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 42px rgba(239,52,47,.34);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.btn-dark {
  background: #121a20;
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 34px 0;
  border-radius: 0;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  border: 1px solid rgba(255,255,255,.2);
}

.brand-text {
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-size: 16px;
  letter-spacing: .4px;
}

.brand-text span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: #dfe6eb;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 22px;
}

.hero {
  min-height: calc(100vh - 82px);
  background: #071016;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(239,52,47,.05) 55%, rgba(239,52,47,.02) 68%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 55px;
  position: relative;
  z-index: 1;
  padding: 58px 0;
}

.hero-content h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-content p {
  max-width: 630px;
  color: #d0d7dd;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  align-self: end;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.snapshot {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.snapshot strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

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

.trust-strip {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.trust-card {
  background: rgba(255,255,255,.94);
  color: #121a20;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.trust-item {
  padding: 28px 22px;
  border-right: 1px solid rgba(18,26,32,.12);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(239,52,47,.08);
  font-size: 24px;
}

.trust-item h3 {
  margin-bottom: 6px;
}

.trust-item p {
  color: #5c666e;
  font-size: 14px;
  line-height: 1.55;
}

.grid-3,
.grid-4,
.product-grid,
.partner-grid,
.footer-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(239,52,47,.5);
}

.card-light {
  background: #fff;
  border: 1px solid rgba(18,26,32,.1);
  box-shadow: 0 18px 44px rgba(18,26,32,.08);
}

.card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.72;
}

.card-light p,
.card-light li {
  color: #5c666e;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  font-size: 27px;
  margin-bottom: 22px;
}

.product-card {
  background: #fff;
  color: #121a20;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(18,26,32,.08);
  border: 1px solid rgba(18,26,32,.1);
  transition: .25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18,26,32,.16);
}

.product-image {
  height: 255px;
  position: relative;
  overflow: hidden;
  background: #e9ecef;
}

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

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

.product-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.product-body p {
  color: #5c666e;
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-btn {
  color: var(--red);
  background: none;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.page-hero {
  padding: 92px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239,52,47,.24), transparent 30%),
    linear-gradient(120deg, rgba(7,16,22,.98), rgba(12,24,32,.92)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -2.2px;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 760px;
  color: #ced6dc;
  font-size: 18px;
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.dark-box {
  background:
    radial-gradient(circle at 80% 20%, rgba(239,52,47,.22), transparent 30%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 42px;
}

.dark-box h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1;
  margin-bottom: 18px;
}

.dark-box p {
  color: var(--muted);
  line-height: 1.75;
}

.step span {
  color: var(--red);
  font-size: 30px;
  font-weight: 950;
  display: inline-flex;
  margin-bottom: 16px;
}

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

.partner-card {
  min-height: 118px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(18,26,32,.1);
}

.partner-card img {
  max-height: 72px;
  object-fit: contain;
}

.contact-grid {
  grid-template-columns: .85fr 1.15fr;
}

.contact-info {
  background:
    radial-gradient(circle at 90% 10%, rgba(239,52,47,.25), transparent 35%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.75;
}

.form {
  background: #fff;
  color: #121a20;
  border-radius: var(--radius-xl);
  padding: 38px;
  display: grid;
  gap: 18px;
  box-shadow: 0 18px 44px rgba(18,26,32,.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #303941;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18,26,32,.16);
  border-radius: 14px;
  padding: 14px 15px;
  outline: 0;
  color: #121a20;
  background: #f7f8f9;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  background: #050b10;
  border-top: 1px solid var(--line);
  padding: 58px 0 26px;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3,1fr);
  margin-bottom: 34px;
}

.footer h3 {
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: var(--muted);
  display: block;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2,7,11,.78);
  backdrop-filter: blur(12px);
}

.modal-overlay.show {
  display: flex;
}

.product-modal {
  width: min(1600px, 95vw);
  max-height: 95vh;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  color: #121a20;
  box-shadow: 0 34px 100px rgba(0,0,0,.55);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #eef1f3;
  color: #121a20;
  font-size: 24px;
  cursor: pointer;
}

.modal-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  max-height: 95vh;
  overflow-y: auto;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 28px;
  background: #f6f7f8;
}

.thumb-list {
  display: grid;
  gap: 12px;
  align-content: start;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}

.thumb {
  width: 78px;
  height: 78px;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  padding: 0;
}

.thumb.active {
  border-color: var(--red);
}

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

.main-product-image {
  background: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  min-height: 760px;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 46px 42px 34px;
}

.rating {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 14px;
}

.modal-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.modal-description {
  color: #5c666e;
  line-height: 1.72;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18,26,32,.12);
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 22px;
}

.info-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}

.spec-list,
.size-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.spec-list li,
.size-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
  color: #4e5962;
  font-size: 14px;
}

.spec-list strong,
.size-list strong {
  color: #121a20;
}

.moq-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff6e8;
  border: 1px solid #ead7b8;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 22px;
}

.moq-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 24px;
}

.moq-box span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}

.moq-box strong {
  font-size: 20px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px 5%;
    background: rgba(7, 16, 22, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .grid-3,
  .grid-4,
  .process-grid,
  .product-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .modal-layout {
    grid-template-columns: 1fr;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .thumb-list {
    grid-template-columns: repeat(4, 78px);
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .main-product-image {
    min-height: 420px;
  }
}

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

  .hero-content h1,
  .page-hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .snapshot-grid,
  .trust-card,
  .partner-grid,
  .modal-info-grid,
  .modal-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 12px;
  }

  .product-modal {
    border-radius: 20px;
  }

  .modal-content,
  .modal-gallery {
    padding: 22px;
  }

  .main-product-image {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}



/* Google Sheets form feedback */
.form-message {
  border-radius: 14px;
  padding: 14px 16px;
  line-height: 1.5;
  font-weight: 800;
}

.form-message.loading {
  background: #eef4ff;
  color: #244a8f;
  border: 1px solid #c9dcff;
}

.form-message.success {
  background: #eaf8ef;
  color: #1d6b38;
  border: 1px solid #bfe8cd;
}

.form-message.error {
  background: #fff0f0;
  color: #a32121;
  border: 1px solid #ffc7c7;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =====================================================
   SHREE GLOBAL - PREMIUM GLASSMORPHISM & UI UPGRADES
   ===================================================== */

/* Floating animation details */
@keyframes floatAnimation {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.15); }
}

@keyframes modalFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(25px); }
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Upgraded Hero with glowing spots */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow-1, .hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s infinite ease-in-out;
}

.hero-glow-1 {
  background: var(--red);
  top: -10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-glow-2 {
  background: var(--gold);
  bottom: -10%;
  right: 10%;
  animation-delay: 4s;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

/* Glassmorphic Cards & Panels */
.hero-panel {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(24px) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5) !important;
  animation: floatAnimation 6s infinite ease-in-out;
}

.snapshot {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s ease;
}

.snapshot:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(239, 52, 47, 0.3) !important;
  transform: translateY(-2px);
}

/* Search and Filter Container */
.search-filter-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 28px 12px 54px;
  color: var(--white);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(239, 52, 47, 0.2);
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--muted);
  pointer-events: none;
}

/* Category Filter Pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-pills span {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: all 0.25s ease;
  border-style: solid;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.pill.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(239, 52, 47, 0.3);
}

/* Dynamic Filter Animations */
.product-card {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.product-card.filtered-out {
  display: none !important;
}

/* Frosted Modal Overlay */
.modal-overlay {
  background: rgba(7, 16, 22, 0.6) !important;
  backdrop-filter: blur(25px);
  animation: modalFadeIn 0.35s forwards;
  transition: backdrop-filter 0.35s ease;
}

/* Custom modal entry */
.product-modal {
  animation: modalScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.6);
}

/* Micro-badge list inside modal */
.spec-list li, .size-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.03);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
}

.spec-list strong, .size-list strong {
  font-weight: 800;
}

.spec-list span, .size-list span {
  background: rgba(18, 26, 32, 0.08);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #121a20;
  font-weight: 700;
}

/* Main Image Transition Effect */
#modalMainImage {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#modalMainImage.image-transition {
  opacity: 0;
  transform: scale(0.97);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-filter-container {
    padding: 20px;
  }
}

/* Light Section Pill Visual Fixes */
.section-light .pill {
  background: rgba(18, 26, 32, 0.05);
  border-color: rgba(18, 26, 32, 0.12);
  color: #121a20;
}

.section-light .pill:hover {
  background: rgba(18, 26, 32, 0.1);
  border-color: rgba(18, 26, 32, 0.2);
}

.section-light .pill.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(239, 52, 47, 0.2);
}

.section-light .filter-pills span {
  color: #5c666e;
}

/* =====================================================
   SHREE GLOBAL - PREMIUM UI OPTIONS IMPLEMENTATION
   ===================================================== */

/* 1. Preloader Screen (Home Page index.html) */
.preloader {
  position: fixed;
  inset: 0;
  background: #071016;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  animation: logoPulse 2s infinite ease-in-out;
  border-radius: 50%;
  background: #ffffff;
  padding: 10px;
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 999px;
  animation: loadProgress 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.95); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)); }
}

@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* 2. Floating Glass Navbar (Home Page index.html) */
.navbar.floating-active {
  top: 20px;
  width: min(1360px, 94%);
  background: rgba(7, 16, 22, 0.75);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  padding: 14px 30px;
}

.navbar.floating-active .brand-logo {
  height: 38px;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.navbar.floating-active::after {
  opacity: 1;
}

/* 3. Cursor Glow Track Cards (Products Page products.html) */
.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    300px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(239, 52, 47, 0.09),
    transparent 80%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-card:hover .glow-overlay {
  opacity: 1;
}

/* 4. Spring Reveal Scroll Easing (Products Page products.html) */
.reveal-spring {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-spring.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 5. Infinite Seamless Logo Marquee (Collections Page collections.html) */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #071016, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #071016, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeSlide 25s linear infinite;
}

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

.marquee-item {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marquee-item:hover img {
  transform: scale(1.05);
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   SHREE GLOBAL - UNIVERSAL GLOWS & CUSTOM SCROLLBAR
   ===================================================== */

/* 1. Custom Webkit Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #071016;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red) 0%, #d4af37 100%);
  border-radius: 99px;
  border: 2px solid #071016;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff5555 0%, #ffd700 100%);
}

/* 2. Universal Ambient Background Glows */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(239, 52, 47, 0.05) 0%, rgba(239, 52, 47, 0) 70%);
  z-index: -2;
  pointer-events: none;
  animation: pulseGlow 15s infinite ease-in-out;
}

body::after {
  content: "";
  position: fixed;
  bottom: -20%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: -2;
  pointer-events: none;
  animation: pulseGlow 18s infinite ease-in-out;
}

/* =====================================================
   SHREE GLOBAL - PREMIUM GLASSMORPHISM & FORM TRACES
   ===================================================== */

/* Premium Glass Card Overrides */
.product-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Light Section Cards adjust */
.section-light .product-card {
  background: rgba(18, 26, 32, 0.02) !important;
  border: 1px solid rgba(18, 26, 32, 0.08) !important;
  box-shadow: 0 30px 60px rgba(18, 26, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.section-light .product-card:hover {
  border-color: rgba(18, 26, 32, 0.16) !important;
  box-shadow: 0 40px 80px rgba(18, 26, 32, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Glass Trust Cards and Panels */
.trust-card, .card, .form-panel {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Fix contrast for Glass Trust Card Text & Dividers */
.trust-card {
  color: var(--white) !important;
}

.trust-card h3 {
  color: var(--white) !important;
}

.trust-card p {
  color: var(--muted) !important;
}

.trust-card .trust-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.trust-card .trust-item:last-child {
  border-right: 0 !important;
}

/* Light Section Trust Cards adjust */
.section-light .card {
  background: rgba(18, 26, 32, 0.02) !important;
  border: 1px solid rgba(18, 26, 32, 0.08) !important;
  box-shadow: 0 20px 40px rgba(18, 26, 32, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Glowing Form Inputs on Focus */
input, textarea, select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}

input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 15px rgba(239, 52, 47, 0.25), inset 0 1px 2px rgba(0,0,0,0.1) !important;
  background-color: rgba(255, 255, 255, 0.04) !important;
}

.section-light input:focus, .section-light textarea:focus, .section-light select:focus {
  background-color: #ffffff !important;
  box-shadow: 0 0 15px rgba(239, 52, 47, 0.15) !important;
}

/* =====================================================
   SHREE GLOBAL - HERO VIDEO BACKGROUND
   ===================================================== */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.48) contrast(1.1);
  will-change: transform;
  transform: translateZ(0);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, #071016 35%, rgba(7, 16, 22, 0.4) 60%, rgba(7, 16, 22, 0.7) 100%),
    linear-gradient(0deg, #071016 0%, transparent 20%);
}

/* =====================================================
   SHREE GLOBAL - SYSTEM ENHANCEMENTS
   ===================================================== */
html {
  scroll-behavior: smooth;
}

/* 1. Page Fade-In and Spring Slide Transition */
main {
  animation: pageFadeIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. B2B FAQ Accordion Styles */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-list {
  max-width: 860px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 30px;
  color: #aebac4;
  font-size: 14px;
  line-height: 1.7;
}

/* Active Accordion States */
.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.faq-item.active .faq-answer {
  padding: 0 30px 24px 30px;
  max-height: 250px; /* comfortable threshold */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

