/* ==========================================================================
   Rayashree Weaving Pvt. Ltd. - Master Stylesheet
   Corporate Emerald & Gold Industrial Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --primary-900: #032b27;
  --primary-800: #043933;
  --primary-700: #07524a;
  --primary-600: #0a6b61;
  --primary-500: #0d8a7d;
  --primary-400: #14b8a6;
  --primary-100: #ccfbf1;
  --primary-50:  #f0fdfa;

  /* Gold Accents */
  --gold-900: #573e10;
  --gold-700: #93681d;
  --gold-600: #b5832a;
  --gold-500: #c59d5f;
  --gold-400: #dfb774;
  --gold-300: #ebd39c;
  --gold-100: #fcf6e8;
  --gold-50:  #fefcf6;

  /* Neutral Spectrum */
  --dark-950: #090e11;
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --dark-600: #475569;
  --dark-400: #94a3b8;
  --dark-200: #e2e8f0;
  --dark-100: #f1f5f9;
  --dark-50:  #f8fafc;
  --white:    #ffffff;

  /* Functional */
  --success:  #10b981;
  --warning:  #f59e0b;
  --danger:   #ef4444;
  --info:     #3b82f6;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(223, 183, 116, 0.25);
  --shadow-emerald: 0 10px 25px -5px rgba(7, 82, 74, 0.2);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* ==========================================================================
   CSS Reset & Base Rules
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  color: var(--dark-800);
  background-color: var(--dark-50);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography & Utility Classes
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-500) !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #dfb774 0%, #ebd39c 50%, #c59d5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-emerald {
  color: var(--primary-600) !important;
}

.text-muted {
  color: var(--dark-600);
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-lg {
  padding: 7rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1px solid var(--gold-300);
  margin-bottom: 1rem;
}

.section-tag-emerald {
  background: var(--primary-100);
  color: var(--primary-700);
  border: 1px solid var(--primary-400);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--dark-600);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-bar {
  background: var(--primary-900);
  color: var(--dark-200);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(223, 183, 116, 0.15);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item i {
  color: var(--gold-400);
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-links a:hover {
  color: var(--gold-400);
}

.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  width: auto;
}

.brand-logo-pill {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(223, 183, 116, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.brand-logo-pill:hover {
  border-color: var(--gold-400);
  box-shadow: 0 4px 14px rgba(223, 183, 116, 0.25);
}

.brand-header-logo {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-800);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-500);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-700);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-900);
  padding: 0.5rem;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
  color: var(--white);
  box-shadow: var(--shadow-emerald);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -3px rgba(7, 82, 74, 0.35);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: var(--primary-900);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(181, 131, 42, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 131, 42, 0.45);
  color: var(--primary-900);
}

.btn-outline {
  border: 2px solid var(--primary-700);
  color: var(--primary-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-900);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, #02201d 0%, #053b36 50%, #0a4f48 100%);
  color: var(--white);
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(223, 183, 116, 0.15), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(20, 184, 166, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  background: rgba(223, 183, 116, 0.15);
  border: 1px solid rgba(223, 183, 116, 0.35);
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
  color: var(--gold-400);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(223, 183, 116, 0.15);
  border: 2px solid rgba(223, 183, 116, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(4, 57, 51, 0.92);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(223, 183, 116, 0.4);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-500);
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.floating-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 0.15rem;
}

.floating-text p {
  font-size: 0.825rem;
  color: var(--dark-200);
  margin: 0;
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.stats-bar {
  background: var(--white);
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--dark-200);
  padding: 2rem 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--dark-200);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-800);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-600);
}

/* ==========================================================================
   Product Showcase Grid & Cards
   ========================================================================== */

.products-section {
  background: var(--dark-50);
}

.product-thumb-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.product-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--white);
  color: var(--dark-700);
  border: 1px solid var(--dark-200);
  transition: all var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
  box-shadow: var(--shadow-emerald);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 380px));
  justify-content: center;
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-300);
}

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--dark-100);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold-500);
  color: var(--primary-900);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 0.925rem;
  color: var(--dark-600);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.product-specs-preview {
  background: var(--dark-50);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  font-size: 0.825rem;
}

.spec-preview-item {
  display: flex;
  flex-direction: column;
}

.spec-preview-label {
  color: var(--dark-400);
  font-weight: 600;
}

.spec-preview-val {
  color: var(--primary-900);
  font-weight: 700;
}

.product-card-footer {
  margin-top: auto;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dark-100);
  width: 100% !important;
}

.product-card-footer .btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.72rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-customize-prod {
  background: linear-gradient(135deg, #dfb774 0%, #c4984f 100%) !important;
  color: #032b27 !important;
  border: 1px solid #d4af37 !important;
  box-shadow: 0 3px 8px rgba(223, 183, 116, 0.25) !important;
  transition: all 0.2s ease !important;
}

.btn-customize-prod:hover {
  background: linear-gradient(135deg, #ebd1a2 0%, #dfb774 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(223, 183, 116, 0.45) !important;
}

.btn-specs-prod {
  background: #ffffff !important;
  color: #1e293b !important;
  border: 1.5px solid #cbd5e1 !important;
  transition: all 0.2s ease !important;
}

.btn-specs-prod:hover {
  background: #032b27 !important;
  color: #ffffff !important;
  border-color: #032b27 !important;
}

.btn-whatsapp-prod {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #22c55e !important;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.25) !important;
  transition: all 0.2s ease !important;
}

.btn-whatsapp-prod:hover {
  background: #1eb954 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
}

/* ==========================================================================
   Executive Contact Card Banner (CEO Rayashree)
   ========================================================================== */

.executive-banner {
  background: linear-gradient(135deg, #032b27 0%, #07524a 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(223, 183, 116, 0.3);
  box-shadow: var(--shadow-xl);
}

.executive-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(223, 183, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.executive-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.executive-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(223, 183, 116, 0.4);
  border: 3px solid var(--white);
}

.profile-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.profile-info span {
  font-size: 0.95rem;
  color: var(--gold-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.executive-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.executive-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.executive-detail-item i {
  color: var(--gold-400);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.executive-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   Features / Why Choose Us
   ========================================================================== */

.feature-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-200);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-400);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--primary-100);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary-700);
  color: var(--white);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--dark-950);
  color: var(--dark-400);
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 2px solid var(--primary-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.7;
  margin: 1.25rem 0;
  color: var(--dark-400);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.925rem;
  color: var(--dark-400);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold-400);
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Floating Widgets & Actions (Enhanced WhatsApp & RFQ)
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 99999;
  text-decoration: none;
  transition: all var(--transition-normal);
  animation: waPulse 2.5s infinite ease-in-out;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waRing 2.5s infinite;
  pointer-events: none;
}

.floating-whatsapp .wa-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.95);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.floating-whatsapp .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.95);
}

.floating-whatsapp:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
  color: var(--white);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: 78px;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.75);
  }
}

@keyframes waRing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ==========================================================================
   Floating Back to Top Button
   ========================================================================== */

.floating-back-to-top {
  position: fixed;
  bottom: 102px;
  right: 34px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #032b27 0%, #07524a 100%);
  color: #ffffff;
  border: 1.5px solid #dfb774;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(3, 43, 39, 0.4);
  z-index: 99998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.floating-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-back-to-top:hover {
  background: linear-gradient(135deg, #dfb774 0%, #c4984f 100%);
  color: #032b27;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(223, 183, 116, 0.5);
}

.floating-back-to-top:active {
  transform: translateY(1px) scale(0.96);
}

.floating-back-to-top .top-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3, 43, 39, 0.96);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  border: 1px solid rgba(223, 183, 116, 0.4);
}

.floating-back-to-top .top-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(3, 43, 39, 0.96);
}

.floating-back-to-top:hover .top-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

/* ==========================================================================
   Responsive Overhaul for Tablets & Mobile (320px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .executive-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Force 2-col inline grids to 1-col on tablet/mobile */
  [style*="grid-template-columns: 1.1fr 0.9fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 0.8fr"],
  [style*="grid-template-columns: 1.3fr 0.7fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
/* Mobile Swipe Hint - Hidden on Desktop */
.mobile-swipe-hint {
  display: none;
}

@media (max-width: 768px) {
  /* Utility: hide on mobile */
  .hide-mobile {
    display: none !important;
  }

  :root {
    --header-height: 64px;
  }

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  .container {
    padding: 0 1.15rem;
  }

  /* Header & Mobile Navigation */
  .main-header {
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 10000;
  }

  .header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo img {
    height: 40px;
    max-width: 190px;
    object-fit: contain;
  }

  .brand-logo > a > div,
  .brand-logo div {
    padding: 0.3rem 0.6rem !important;
    max-width: 220px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.775rem;
    white-space: nowrap;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 1.25rem 3rem;
    gap: 0.65rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    padding: 0.95rem 1.15rem;
    border-radius: var(--radius-md);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link.active {
    background: var(--primary-900);
    color: var(--gold-300);
    border-color: var(--primary-900);
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary-900);
    font-size: 1.25rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-toggle:active {
    transform: scale(0.92);
  }

  /* Top Bar – compact on mobile: only phone & email, centered */
  .top-bar {
    background: var(--primary-900);
    color: var(--dark-200);
    font-size: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(223, 183, 116, 0.2);
  }

  .top-bar-inner {
    justify-content: center !important;
    gap: 0 !important;
  }

  .top-bar-info {
    justify-content: center !important;
    gap: 0.35rem 1rem !important;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
  }

  .top-bar-item {
    font-size: 0.78rem !important;
    white-space: nowrap;
    gap: 0.3rem;
  }

  .top-bar-item i {
    font-size: 0.78rem !important;
  }

  /* Hero Section Mobile Fixes */
  .hero {
    padding: 2.5rem 0 3rem !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem !important;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-image-wrapper img {
    height: 250px !important;
  }

  .hero-floating-card {
    position: static !important;
    margin-top: 1rem;
    width: 100%;
  }

  /* Stats Grid */
  .stats-bar {
    margin-top: -1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    padding: 0.85rem !important;
  }

  .stat-item {
    text-align: center;
    padding: 0.4rem !important;
  }

  .stat-item::after {
    display: none !important;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  .stat-label {
    font-size: 0.725rem !important;
  }

  /* Wrap Filter Bar for Touch Screens */
  .product-filter-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 0.25rem 0 !important;
    margin-bottom: 1.25rem !important;
    overflow-x: visible !important;
  }

  .filter-btn {
    white-space: nowrap !important;
    padding: 0.45rem 0.85rem !important;
    font-size: 0.82rem !important;
  }

  /* Hide Swipe Hint */
  .mobile-swipe-hint {
    display: none !important;
  }

  /* Full-Width Responsive Products Grid on Mobile (No cut-off cards) */
  .products-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    overflow-x: visible !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .products-grid::-webkit-scrollbar {
    display: none !important;
  }

  .products-grid .product-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .product-card-img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .product-card-body {
    padding: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  .product-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.25rem !important;
  }

  .product-tagline {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-specs-preview {
    margin-bottom: 0.75rem !important;
    padding: 0.5rem !important;
    gap: 0.5rem !important;
  }

  .spec-preview-item {
    font-size: 0.75rem !important;
  }

  .product-card-footer {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-top: auto !important;
    width: 100% !important;
    padding-top: 1rem !important;
  }

  .product-card-footer .btn {
    width: 100% !important;
    padding: 0.65rem 0.75rem !important;
    font-size: 0.825rem !important;
    text-align: center;
    justify-content: center;
  }

  /* Why Choose Us Features 2x2 Compact Grid on Mobile */
  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  .features-grid .feature-card {
    padding: 1rem !important;
  }

  .features-grid .feature-icon-wrapper {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .features-grid .feature-title {
    font-size: 0.875rem !important;
    margin-bottom: 0.3rem !important;
  }

  .features-grid .feature-desc {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }

  /* Testimonials Horizontal Swipe Track on Mobile */
  .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1rem !important;
    padding: 0.25rem 0.25rem 0.75rem !important;
    scrollbar-width: none !important;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testimonials-grid > div {
    flex: 0 0 290px !important;
    min-width: 290px !important;
    scroll-snap-align: start !important;
    padding: 1.25rem !important;
  }

  /* Specs Tables - Smooth Horizontal Scroll */
  .specs-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Subpage Inner Hero Headers */
  [style*="background: linear-gradient"][style*="padding: 3.5rem 0"] {
    padding: 2.25rem 0 !important;
  }

  h1[style*="font-size: 2.8rem"],
  h1[style*="font-size: 2.75rem"] {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  /* Executive & Feature Banners */
  .executive-banner {
    padding: 1.25rem 1rem !important;
  }

  .executive-content h2 {
    font-size: 1.35rem !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .footer-brand p {
    max-width: 100% !important;
  }

  /* Mobile App-Style Bottom Bar & Spacing */
  body {
    padding-bottom: 65px !important;
  }

  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(3, 43, 39, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(223, 183, 116, 0.3);
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  }

  .mobile-bar-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e2e8f0;
    font-size: 0.675rem;
    font-weight: 600;
    gap: 0.2rem;
    flex: 1;
    padding: 0.35rem 0;
    transition: all 0.2s;
  }

  .mobile-bar-action i {
    font-size: 1.15rem;
    color: var(--gold-400);
  }

  .mobile-bar-action.mobile-bar-whatsapp i {
    color: #25D366;
    font-size: 1.25rem;
  }

  .mobile-bar-action:active {
    transform: scale(0.95);
    color: var(--gold-300);
  }

  /* Enhanced Mobile Floating WhatsApp */
  .floating-whatsapp {
    bottom: 4.85rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.65rem !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
  }

  .floating-whatsapp .wa-tooltip {
    display: none !important;
  }

  .floating-back-to-top {
    bottom: 8.6rem !important;
    right: 1.15rem !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
  }

  .floating-back-to-top .top-tooltip {
    display: none !important;
  }

  .statutory-trust-box {
    padding: 1.25rem 1rem !important;
  }

  .statutory-trust-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .statutory-trust-header h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  .hero-trust-badges {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .hero-trust-badges .trust-item {
    width: 100% !important;
    font-size: 0.8rem !important;
    justify-content: flex-start !important;
  }

  .statutory-card {
    padding: 1rem !important;
    gap: 0.85rem !important;
  }

  .statutory-card-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
  }

  .statutory-card-val {
    font-size: 0.95rem !important;
  }

  .product-thumb-bar {
    grid-template-columns: 1fr 1fr !important;
  }

  .header-actions .btn {
    display: none !important;
  }

  .brand-logo img {
    height: 32px !important;
  }
}

/* ==========================================================================
   Language Switcher (English, Kannada, Hindi)
   ========================================================================== */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(223, 183, 116, 0.35);
  border-radius: 9999px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  color: var(--dark-200);
  border: none;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: var(--gold-500);
  color: var(--primary-900);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-lang-switcher {
  background: var(--dark-100);
  border: 1px solid var(--dark-300);
}

.nav-lang-switcher .lang-btn {
  color: var(--dark-700);
}

.nav-lang-switcher .lang-btn:hover {
  color: var(--primary-900);
  background: var(--dark-200);
}

.nav-lang-switcher .lang-btn.active {
  background: var(--primary-900);
  color: var(--gold-400);
}

/* ==========================================================================
   Interactive Packaging Customizer & Configurator Section
   ========================================================================== */

.customizer-section {
  background: linear-gradient(135deg, #021a17 0%, #042e29 50%, #032420 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.customizer-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 183, 116, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.customizer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .customizer-grid {
    grid-template-columns: 1fr;
  }
}

.configurator-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(223, 183, 116, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.config-step {
  margin-bottom: 2rem;
}

.config-step:last-child {
  margin-bottom: 0;
}

.config-step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.config-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #032b27;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.config-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.config-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.config-pill:hover {
  border-color: var(--gold-400);
  background: rgba(223, 183, 116, 0.12);
  transform: translateY(-2px);
}

.config-pill.active {
  background: rgba(223, 183, 116, 0.22);
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(223, 183, 116, 0.3);
}

.config-pill .pill-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.config-pill .pill-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-300);
  margin-top: 0.25rem;
}

.custom-inputs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .custom-inputs-row {
    grid-template-columns: 1fr;
  }
}

.custom-input-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
}

.custom-input-box label {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-weight: 700;
}

.custom-input-box input,
.custom-input-box select {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
}

.custom-input-box select option {
  background: #032b27;
  color: #ffffff;
}

/* Customizer Live Summary Box */
.customizer-summary-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, #043831 0%, #032621 100%);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(223, 183, 116, 0.2);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--gold-400);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.summary-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.summary-spec-label {
  color: #94a3b8;
  font-weight: 600;
}

.summary-spec-val {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-customizer-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  background: #25d366;
  color: #ffffff !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.btn-customizer-submit:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-customizer-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(223, 183, 116, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-customizer-secondary:hover {
  background: rgba(223, 183, 116, 0.15);
  border-color: var(--gold-400);
}

