/*
 * PrintConnect - High Fidelity Clone Stylesheet (No Animations)
 * Author: Elite UI/UX Designer & Frontend Developer
 */

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

:root {
  --primary: #0066cc;
  --primary-hover: #0052a3;
  --primary-light: #eef5fc;
  --secondary: #1d1d1f;
  --bg-main: #ffffff;
  --bg-alternate: #f5f5f7;
  --bg-blue-accent: #f0f7ff;
  --border-color: #e5e5e5;
  --white: #ffffff;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 25px rgba(0, 102, 204, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 102, 204, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --transition-smooth: all 0.2s ease-out;
  --transition-fast: all 0.15s ease;

  /* Spacing Scale (8px system) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--secondary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

.section-padding {
  padding: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-lg) 0;
  }
}

/* Header & Nav */
/* Header & Nav - Floating Pill Layout */
.navbar-custom {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border-radius: 60px;
  margin: 10px auto;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  width: 95%;
  max-width: 1440px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.navbar-custom.scrolled {
  margin-top: 5px;
  height: 60px;
  box-shadow: 0 10px 35px rgba(0, 102, 204, 0.08);
}

.navbar-brand img {
  height: 56px !important; /* Large, readable logo height */
  transition: all 0.3s ease;
}

.navbar-custom.scrolled .navbar-brand img {
  height: 46px !important;
}

/* Header Search Box */
.header-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 250px;
  margin-left: var(--space-sm);
  margin-right: var(--space-sm);
}

.header-search-box .search-input {
  width: 100%;
  padding: 8px 45px 8px 20px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--secondary);
  background-color: #f8fafc;
  height: 40px;
  outline: none;
  transition: all 0.3s ease;
}

.header-search-box .search-input:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.header-search-box .btn-search {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #007f7c; /* Teal Accent from mockup */
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
}

.header-search-box .btn-search:hover {
  background: #006663;
  color: var(--white);
}

/* Header Right Actions */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.action-icon-btn {
  color: #475569;
  font-size: 18px;
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-icon-btn:hover {
  color: var(--primary);
}

.action-icon-btn .badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0ea5e9; /* Light blue count badge */
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
}

.nav-link-custom {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #334155 !important;
  margin: 0 5px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.nav-link-custom:hover {
  color: var(--primary) !important;
  opacity: 1;
}

.navbar-phone-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-call-nav {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 6px 16px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-call-nav:hover {
  background: var(--primary-hover);
}

/* Hero Section */
.hero-container {
  padding: 110px 0 var(--space-lg) 0;
  background-image: linear-gradient(rgba(240, 247, 255, 0.7) 0%, rgba(255, 255, 255, 0.8) 100%), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 16px;
  max-width: 540px;
}

.hero-features-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-feature-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 200px;
  max-width: 260px;
}

.hero-feature-item i {
  font-size: 18px;
  color: var(--primary);
}

.hero-feature-text h4 {
  font-size: 13px;
  margin-bottom: 1px;
  font-weight: 700;
}

.hero-feature-text p {
  font-size: 11px;
  margin-bottom: 0;
  opacity: 0.7;
}

.btn-hero-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 30px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 18px;
  padding: 14px 36px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-cta:hover {
  background: var(--primary-hover);
}

.hero-badge-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 15px;
}

.hero-img-display {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-podium {
  position: absolute;
  bottom: -30px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-slideshow-container {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-printer-asset {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 2;
}

.hero-printer-asset.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-printer-asset {
    width: 320px;
    height: 240px;
  }
}

.hero-brand-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 160px;
  width: 100%;
}

.hero-brand-card {
  width: 120px;
  height: 75px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 12px;
  transition: var(--transition-fast);
}

.hero-brand-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Brand Card Active Glow Animations */
.hero-brand-sidebar .hero-brand-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-brand-sidebar .hero-brand-card:nth-child(1).glow {
  border-color: #0096d6 !important;
  box-shadow: 0 0 20px rgba(0, 150, 214, 0.6) !important;
  transform: scale(1.06);
}

.hero-brand-sidebar .hero-brand-card:nth-child(2).glow {
  border-color: #cc0000 !important;
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.6) !important;
  transform: scale(1.06);
}

.hero-brand-sidebar .hero-brand-card:nth-child(3).glow {
  border-color: #000066 !important;
  box-shadow: 0 0 20px rgba(0, 0, 102, 0.5) !important;
  transform: scale(1.06);
}

.hero-brand-sidebar .hero-brand-card:nth-child(4).glow {
  border-color: #002f92 !important;
  box-shadow: 0 0 20px rgba(0, 47, 146, 0.5) !important;
  transform: scale(1.06);
}

.hero-brand-card svg, .hero-brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hero sub features row */
.sub-features-row {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.sub-feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.sub-feature-card:hover {
  box-shadow: var(--shadow-medium);
}

.sub-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.sub-feature-info h3 {
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: 700;
}

.sub-feature-info p {
  font-size: 12px;
  margin-bottom: 0;
  opacity: 0.7;
}

/* Popular Printers */
.popular-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 8px;
}

.popular-subtitle {
  font-size: 16px;
  color: var(--secondary);
  opacity: 0.75;
  text-align: center;
  margin-bottom: var(--space-md);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 102, 204, 0.12);
}

.product-img-wrapper {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.product-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 12px;
}

.btn-buy-product {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  transition: var(--transition-fast);
  border: none;
}

.btn-buy-product:hover {
  background: var(--primary-hover);
}

/* Support Guide Banner - Floating Pill Shape matching Menu Card */
.support-guide-section {
  background: linear-gradient(135deg, #e0f0ff 0%, #f9fbfd 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border-radius: 60px;
  margin: var(--space-lg) auto;
  padding: var(--space-lg) var(--space-md);
  width: 95%;
  max-width: 1440px;
}

@media (max-width: 991px) {
  .support-guide-section {
    border-radius: 30px;
    margin: var(--space-sm) auto;
    padding: var(--space-md) var(--space-sm);
  }
}

.support-guide-circle-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.support-guide-img-bg {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  z-index: 1;
}

.support-guide-tag {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.support-guide-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.support-guide-desc {
  font-size: 15px;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.support-guide-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
}

.support-guide-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.support-guide-list-item i {
  color: var(--primary);
  font-size: 18px;
}

/* Services */
.services-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: var(--space-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-item-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.service-item-card:hover {
  border-color: rgba(0, 102, 204, 0.1);
}

.service-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-item-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-item-card p {
  font-size: 13px;
  color: var(--secondary);
  opacity: 0.75;
  margin-bottom: 0;
  line-height: 1.5;
}

/* FAQ Section */
.faq-accordion-wrapper {
  margin-top: var(--space-sm);
}

.faq-card {
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color) !important;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: var(--white);
}

.faq-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 102, 204, 0.12) !important;
}

.faq-header-btn {
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-header-btn::after {
  display: none;
}

.faq-arrow-icon {
  font-size: 13px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-header-btn:not(.collapsed) .faq-arrow-icon {
  transform: rotate(180deg);
}

.faq-body-text {
  font-size: 14px;
  color: var(--secondary);
  opacity: 0.8;
  padding: 0 var(--space-sm) var(--space-xs) var(--space-sm);
  background: var(--white);
}

/* Footer Bottom Badges */
.footer-badges-banner {
  background: var(--bg-alternate);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 60px;
  margin: var(--space-lg) auto;
  padding: var(--space-sm) var(--space-md);
  width: 95%;
  max-width: 1440px;
}

@media (max-width: 991px) {
  .footer-badges-banner {
    border-radius: 30px;
    margin: var(--space-sm) auto;
    padding: var(--space-sm) var(--space-sm);
  }
}

.footer-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.footer-badge-item i {
  color: var(--primary);
  font-size: 18px;
}

/* Light Footer */
.footer-light {
  background: var(--white);
  color: #4a5568;
  padding: var(--space-xl) 0 var(--space-sm) 0;
  border-top: 1px solid var(--border-color);
}

.footer-light h4 {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer-light-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-light-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.footer-light-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-light-links a {
  color: #4a5568;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-light-links a:hover {
  color: var(--primary);
}

.footer-light-contact {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-light-contact i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-light-contact a {
  color: #4a5568;
}

.footer-light-contact a:hover {
  color: var(--primary);
}

.footer-light-disclaimer {
  font-size: 10px;
  color: #718096;
  line-height: 1.5;
  text-align: justify;
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-light-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  color: #718096;
}

.footer-light-bottom-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.footer-light-bottom-links a {
  color: #718096;
}

.footer-light-bottom-links a:hover {
  color: var(--primary);
}

/* Floating Action Buttons */
.floating-phone-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #7866ff;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(120, 102, 255, 0.35);
  z-index: 1000;
  border: none;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-phone-btn:hover {
  background-color: #6250e5;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .floating-phone-btn {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Modals */
.policy-modal-dialog {
  max-width: 750px;
}

.policy-modal-body {
  padding: 30px;
  font-size: 14px;
  color: var(--secondary);
  max-height: 55vh;
  overflow-y: auto;
}

.policy-modal-body h4 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-modal-body p {
  opacity: 0.8;
  margin-bottom: 12px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFIC STYLES
   ========================================================================== */

.prod-detail-gallery {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod-main-img-container {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.prod-main-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.prod-thumb-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.prod-thumb-card {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px;
  cursor: pointer;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-thumb-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

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

.prod-meta-box {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.stock-tag {
  background: rgba(52, 199, 89, 0.08);
  color: #28a745;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.prod-detail-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.bundle-builder-card {
  background: var(--bg-blue-accent);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
}

.bundle-item-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.bundle-item-row:last-child {
  margin-bottom: 0;
}

.bundle-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.prod-tab-navigation {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.prod-tab-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--secondary);
  padding: 12px 20px;
  display: inline-block;
  border-bottom: 3px solid transparent;
  opacity: 0.75;
}

.prod-tab-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  opacity: 1;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
}

.specs-table td:first-child {
  font-weight: 600;
  width: 250px;
  background: var(--bg-alternate);
}

/* ==========================================================================
   CHECKOUT PAGE SPECIFIC STYLES
   ========================================================================== */

.checkout-header {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  background: var(--white);
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.checkout-step-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-label-custom {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  background: var(--white);
  transition: var(--transition-fast);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.order-summary-box {
  background: var(--bg-alternate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row.total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: 12px;
  color: var(--secondary);
}

.coupon-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* Responsive Overrides for Floating Pill Header */
@media (max-width: 991px) {
  .navbar-custom {
    border-radius: 24px;
    margin: 5px auto;
    height: 64px;
    padding: 0 16px;
    width: 95%;
  }

  .navbar-brand img {
    height: 48px !important;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 40px !important;
  }

  .header-search-box {
    width: 100%;
    margin: 6px 0;
  }

  .header-right-actions {
    margin-top: 6px;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 6px;
    gap: var(--space-xs);
  }

  /* Global mobile spacing overrides (additional 20% reduction) */
  .hero-container {
    padding: 90px 0 var(--space-sm) 0 !important;
  }

  .section-padding {
    padding: var(--space-md) 0 !important; /* 24px instead of 32px */
  }

  .row.gy-5 {
    --bs-gutter-y: 1.75rem !important;
  }

  .mb-4 {
    margin-bottom: var(--space-xs) !important; /* 8px instead of 16px */
  }
}

/* How It Works Section - Floating Pill Shape matching Menu Card */
#process {
  background: var(--bg-alternate); /* clean alternate light grey background */
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 60px;
  margin: var(--space-lg) auto;
  padding: var(--space-lg) var(--space-md);
  width: 95%;
  max-width: 1440px;
}

@media (max-width: 991px) {
  #process {
    border-radius: 30px;
    margin: var(--space-sm) auto;
    padding: var(--space-md) var(--space-sm);
  }
}
