@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* B2B Premium Corporate Color Palette matching custom Logo */
  --bg-main: #060b16;            /* Very dark navy */
  --bg-card: rgba(16, 26, 48, 0.5); /* Semi-transparent navy */
  --bg-card-hover: rgba(22, 38, 70, 0.7);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(197, 168, 128, 0.35); /* Logo gold */
  
  --text-primary: #f8fafc;        /* High-contrast white */
  --text-secondary: #cbd5e1;      /* Slate silver */
  --text-muted: #64748b;
  
  --accent-gold: #c5a880;         /* Logo metallic gold */
  --accent-gold-hover: #b5956a;
  --accent-gold-glow: rgba(197, 168, 128, 0.2);
  --accent-blue: #1d4ed8;
  
  --success: #10b981;
  --error: #ef4444;
  --info: #3b82f6;

  /* Glassmorphism Styling System */
  --glass-bg: rgba(8, 15, 30, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.45);
  --glass-backdrop: blur(15px) saturate(180%);

  /* Typography */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Bases */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Premium Layout Wrappers */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

.gold-btn {
  background: linear-gradient(135deg, var(--accent-gold), #e5cda8);
  color: #060b16;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.gold-btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.gold-btn-outline:hover {
  background: rgba(197, 168, 128, 0.1);
  color: #fff;
  border-color: #fff;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  font-size: 2.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ==========================================================================
   Header Styling (Arranged for big logo.png)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  height: 65px;             /* Made logo big as requested */
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;        /* White background inside container so logo details are clear */
  padding: 3px;
}

.logo-text-details {
  display: flex;
  flex-direction: column;
}

.logo-text-details h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo-text-details span {
  font-size: 0.72rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Quote B2B cart basket styles */
.cart-badge-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-secondary);
}

.cart-badge-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gold);
  color: #060b16;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #060b16;
}

/* ==========================================================================
   Hero Section with animated floating cards
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 11, 22, 0.95) 0%, rgba(6, 11, 22, 0.7) 50%, rgba(6, 11, 22, 0.95) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}
.hero-content h1 {
  font-size: 3.3rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-btn-row {
  display: flex;
  gap: 16px;
}

/* Floating Glass Product Cards styling */
.hero-visuals {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 20px;
  text-align: center;
  animation: float-slow 6s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  margin-bottom: 12px;
}

.floating-card h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.fc-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.fc-2 {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.fc-3 {
  bottom: 5%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   About Section & B2B statistics
   ========================================================================== */
.about-section {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.hl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hl-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stats-card-b2b {
  padding: 30px 20px;
  text-align: center;
}

.stats-card-b2b h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-card-b2b p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Product Catalog Browser
   ========================================================================== */
.catalog-section {
  padding: 100px 0;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.cat-card-b2b {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
}

.cat-card-b2b:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.cat-img-box {
  height: 200px;
  background: rgba(255,255,255,0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
}

.cat-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.cat-info-box {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-info-box h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.cat-info-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ==========================================================================
   Product Detail Page & Hover Zoom Magnifier
   ========================================================================== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

/* Custom Zoom Lens Styling */
.zoom-container {
  position: relative;
  width: 100%;
  height: 450px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.zoom-image {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.1s ease;
}

.zoom-container:hover .zoom-image {
  transform: scale(1.6); /* Basic hover scale magnifier */
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumb-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
}

.thumb-btn img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Spec Table */
.spec-table-b2b {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.spec-table-b2b tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.spec-table-b2b td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.spec-table-b2b td.label {
  color: var(--text-secondary);
  font-weight: 500;
  width: 40%;
}

.spec-table-b2b td.value {
  color: #fff;
  font-weight: 600;
}

.detail-btn-row {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   B2B Enquiry Checkout Page (Cart list checkout sidebar)
   ========================================================================== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.checkout-form-panel {
  padding: 40px;
}

.checkout-sidebar-panel {
  padding: 30px;
}

.cart-items-list-checkout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.cart-item-card-checkout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-card-checkout img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: 6px;
}

.cart-item-card-checkout-info {
  flex-grow: 1;
}

.cart-item-card-checkout-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.cart-item-card-checkout-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-remove-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.cart-item-remove-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Gallery Masonry layout
   ========================================================================== */
.masonry-grid-b2b {
  columns: 3 320px;
  column-gap: 24px;
  margin-top: 40px;
}

.masonry-item-b2b {
  break-inside: avoid;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s;
}

.masonry-item-b2b:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
}

.masonry-img-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.masonry-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-caption {
  padding: 16px 20px;
}

.masonry-caption h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.masonry-caption span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* ==========================================================================
   Why Choose Us (Icon Cards)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  padding: 30px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

/* ==========================================================================
   Manufacturing Process Flow Timeline
   ========================================================================== */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 60px 0;
  flex-wrap: wrap;
  gap: 30px;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--bg-main);
  padding: 0 10px;
  flex: 1;
  min-width: 120px;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-weight: 700;
  color: var(--accent-gold);
  transition: all 0.3s;
}

.timeline-step:hover .step-circle {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.1);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.25);
}

.timeline-step h4 {
  font-size: 0.95rem;
  color: #fff;
}

/* ==========================================================================
   FAQ Accordion component
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-b2b {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-header-b2b {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-header-b2b:hover {
  background: rgba(255,255,255,0.01);
}

.faq-icon-arrow {
  color: var(--accent-gold);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-answer-b2b {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item-b2b.open .faq-answer-b2b {
  max-height: 500px; /* Big enough threshold */
  padding: 0 24px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-item-b2b.open .faq-icon-arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industries-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(6, 11, 22, 0) 0%, rgba(16, 26, 48, 0.25) 50%, rgba(6, 11, 22, 0) 100%);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.ind-card {
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
}

.ind-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.03);
}

.ind-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.ind-card h3 {
  font-size: 1.1rem;
  color: #fff;
}

/* ==========================================================================
   B2B Quote Direct Request Form
   ========================================================================== */
.quote-request-card {
  padding: 40px;
}

.quote-request-card h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* ==========================================================================
   Mobile menu & General Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-btn-row {
    justify-content: center;
  }
  .hero-visuals {
    display: none; /* Hide floating cards on tablet/mobile to keep space clean */
  }
  .about-grid, .checkout-grid, .detail-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Resizing Typography & Spacing */
  .section-title {
    font-size: 2.1rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  .about-section, .catalog-section, .why-section, .testimonials-section, .faq-section {
    padding: 60px 0;
  }

  /* Responsive Header Navigation */
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .nav-links {
    gap: 16px;
    overflow-x: auto;
    max-width: 100%;
    padding: 4px 10px;
    white-space: nowrap;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    scrollbar-width: none; /* Firefox */
  }
  .nav-links::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  /* Stats Grid */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats-card-b2b {
    padding: 24px 16px;
  }

  /* Lists & Timelines */
  .products-grid, .cats-grid, .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .highlight-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Vertical Timeline for mobile devices */
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 40px 0;
    padding-left: 20px;
  }
  .timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: 100%;
  }
  .step-circle {
    margin: 0;
    min-width: 50px;
    height: 50px;
  }

  /* Contact and Checkout Form Boxes */
  .contact-container, .checkout-grid, .detail-grid {
    padding: 40px 0;
    gap: 30px;
  }
  .contact-info-panel, .contact-form-card, .checkout-form-panel, .checkout-sidebar-panel {
    padding: 24px 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .zoom-container {
    height: 300px;
  }
  .gallery-thumbs {
    justify-content: center;
  }
  .thumb-btn {
    width: 65px;
    height: 65px;
  }
}

/* ==========================================================================
   B2B Product Listing Grid & Cards Styling
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.product-image-container {
  position: relative;
  height: 250px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
}

.product-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 11, 22, 0.85);
  border: 1px solid var(--accent-gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1rem;
}

/* ==========================================================================
   B2B Corporate Footer Styling
   ========================================================================== */
.site-footer {
  background: #03060c;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  background: #020306;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.social-links a:hover {
  background: var(--accent-gold);
  color: #060b16;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   B2B Checkout & General Contact Form Fields styling
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, 
.form-group textarea, 
.form-group select {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s;
  width: 100%;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.03);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

.form-alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--success);
  color: #34d399;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--error);
  color: #f87171;
}

/* ==========================================================================
   Interactive Floating Widgets & Parallax Banners
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: rgba(6, 11, 22, 0.95);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.parallax-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 22, 0.85);
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* ==========================================================================
   Admin Panel Layout & Dashboard Styles
   ========================================================================== */
.admin-root-auth {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-main);
}

.admin-sidebar {
  width: 280px;
  background: rgba(8, 15, 30, 0.96);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.sidebar-logo {
  height: 42px;
  width: auto;
  background: #fff;
  padding: 2px;
  border-radius: 4px;
}

.sidebar-header h3 {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
}

.sidebar-header p {
  font-size: 0.72rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.nav-item {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.02);
}

.homepage-link {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  border-radius: 0;
}

.sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.logout-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.logout-btn:hover {
  background: #error;
  background-color: #ef4444;
  color: #fff;
}

.admin-main-viewport {
  flex-grow: 1;
  margin-left: 280px;
  padding: 40px;
  background-color: var(--bg-main);
  min-height: 100vh;
}

.admin-content-card {
  padding: 40px;
  min-height: calc(100vh - 80px);
}

/* Dashboard Home Stats */
.admin-dashboard-overview h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.overview-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(16, 26, 48, 0.3);
  border: 1px solid var(--border-color);
}

.admin-stat-card.highlighted-stat {
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
}

.stat-icon {
  font-size: 2.2rem;
}

.stat-info h3 {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.dashboard-content-split {
  display: flex;
  gap: 30px;
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.box-header h2 {
  font-size: 1.25rem;
  color: #fff;
}

/* Admin Tables, Listings & Forms */
.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.admin-table td {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.table-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: 6px;
}

.table-desc-snippet {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.table-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #fff;
}

.table-actions {
  display: flex;
  gap: 12px;
}

.edit-btn, .delete-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.edit-btn {
  color: var(--accent-gold);
}

.edit-btn:hover {
  color: #fff;
  text-decoration: underline;
}

.delete-btn {
  color: #ef4444;
}

.delete-btn:hover {
  color: #ff8787;
  text-decoration: underline;
}

.table-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-style: italic;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

/* Guest Authentication root */
.admin-root-guest {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-main);
  padding: 20px;
}

.admin-login-container {
  width: 100%;
  max-width: 420px;
}

.login-card {
  padding: 40px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  height: 70px;
  width: auto;
  background: #fff;
  padding: 3px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.login-header h1 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.login-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

.login-footer a {
  color: var(--accent-gold);
}

.login-footer a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Admin Sub-panels Styling (Inbox & Testimonials & Categories Grid)
   ========================================================================== */
.inbox-container {
  margin-top: 20px;
}

.inbox-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.inbox-filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  transition: all 0.3s;
}

.inbox-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.inbox-filter-btn.active {
  background: var(--accent-gold);
  color: #060b16;
  border-color: var(--accent-gold);
  font-weight: 600;
}

.inbox-split-view {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: start;
}

.inbox-list-pane {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 700px;
  overflow-y: auto;
  padding: 20px;
}

.inbox-item-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.3s;
}

.inbox-item-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.inbox-item-card.selected {
  background: rgba(197, 168, 128, 0.06);
  border-color: var(--accent-gold);
}

.inbox-item-card.unread {
  border-left: 3px solid var(--accent-gold);
}

.inbox-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.inbox-sender-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.inbox-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.inbox-item-subject {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.inbox-snippet-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.inbox-card-badge-row {
  margin-top: 10px;
}

.status-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}

.status-badge.unread {
  background: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.status-badge.read {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.inbox-detail-pane {
  padding: 30px;
  min-height: 500px;
}

.inquiry-detail {
  display: flex;
  flex-direction: column;
}

.detail-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.detail-header h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.detail-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.detail-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-meta-list p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.detail-meta-list strong {
  color: #fff;
}

.link-text {
  color: var(--accent-gold);
}

.link-text:hover {
  text-decoration: underline;
}

.detail-message-body {
  margin-top: 24px;
}

.detail-message-body h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}

.detail-message-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  white-space: pre-line;
}

.detail-actions-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.delete-btn-large {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.delete-btn-large:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

.detail-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: var(--text-muted);
  text-align: center;
}

.detail-placeholder span {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.inbox-empty-note {
  text-align: center;
  padding: 40px 10px;
  color: var(--text-muted);
  font-style: italic;
}

/* Reviews management */
.testimonials-panel {
  margin-top: 20px;
}

.testimonials-grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.testimonial-card-admin {
  padding: 24px;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rating-stars {
  color: var(--accent-gold);
}

.delete-btn-small {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 0.85rem;
}

.delete-btn-small:hover {
  color: #ff8787;
  text-decoration: underline;
}

.testimonial-text-admin {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-footer-admin {
  font-size: 0.88rem;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}

.testimonial-footer-admin span {
  color: var(--text-muted);
}

.no-data {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

.form-buttons-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}



