/* ============================================================
   STYLE.CSS — Inversiones La Cuchilla De La Cordialidad S.A.S.
   ============================================================ */

/* CSS Custom Properties */
:root {
  --primary: #0d2137;
  --primary-dark: #091829;
  --primary-light: #1a3a5c;
  --accent: #f5b342;
  --accent-dark: #e09a20;
  --accent-light: #ffd080;
  --secondary: #2c3e50;
  --success: #25d366;
  --success-dark: #1da851;
  --text-light: #f8f9fa;
  --text-muted: #b0bec5;
  --text-dark: #1a1a2e;
  --text-gray: #7f8c8d;
  --bg-dark: #0d2137;
  --bg-light: #f4f6f9;
  --bg-card: #ffffff;
  --border-color: rgba(245, 179, 66, 0.2);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(245, 179, 66, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-primary: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

::selection {
  background: var(--accent);
  color: var(--primary);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-wa 2s infinite;
  z-index: -1;
}

@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent !important;
  padding: 12px 0;
  z-index: 1030;
}

#mainNav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(128, 128, 128, 0.8);
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 40% 100%);
  z-index: -1;
  transition: background 0.3s ease;
}

#mainNav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  clip-path: polygon(0% 0%, 45% 0%, 40% 100%, 0% 100%);
  z-index: -1;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#mainNav.nav-scrolled::before {
  background: rgba(13, 33, 55, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

#mainNav.nav-scrolled::after {
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

#mainNav .navbar-collapse {
  justify-content: flex-end;
}

#mainNav .brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 1px;
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--accent);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-warning {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.btn-warning:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 179, 66, 0.4);
}

.btn-outline-warning {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.btn-outline-warning:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0f2a45 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section.has-bg-img {
  background: transparent;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5b342' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

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

.hero-badge {
  display: inline-block;
  background: rgba(245, 179, 66, 0.15);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(245, 179, 66, 0.3);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(245, 179, 66, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #333333;
  max-width: 540px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,179,66,0.15) 0%, rgba(245,179,66,0.05) 40%, transparent 70%);
  border: 1px solid rgba(245,179,66,0.2);
  animation: pulse-circle 4s ease-in-out infinite;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero-icon {
  position: absolute;
  font-size: 5rem;
  color: var(--accent);
  animation: float-bolt 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(245,179,66,0.4));
}

@keyframes float-bolt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-icon-sm {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(245,179,66,0.1);
  border: 1px solid rgba(245,179,66,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  animation: float-icon 4s ease-in-out infinite;
  overflow: hidden;
}

.hero-icon-sm.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero-icon-sm.icon-2 { top: 15%; right: 15%; animation-delay: 1s; }
.hero-icon-sm.icon-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.hero-icon-sm.icon-4 { bottom: 15%; right: 10%; animation-delay: 0.5s; }

.hero-icon-sm img { width: 100%; height: 100%; object-fit: cover; }

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 179, 66, 0.12);
  color: var(--accent-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 179, 66, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--bg-light);
}

.about-image-wrapper {
  position: relative;
}

.about-image-main img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-feature i {
  font-size: 1.1rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--bg-light);
}

.services-section .section-badge {
  background: rgba(245, 179, 66, 0.15);
  border-color: rgba(245, 179, 66, 0.3);
}

.services-section .section-title {
  color: var(--primary);
}

.services-section .section-text {
  color: var(--text-gray);
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}
.service-card .service-icon {
  font-size: 2.5rem;
}
  transform: translateY(-4px);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-category-header i {
  font-size: 1.8rem;
  color: var(--accent);
}

.service-category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(255,255,255,0.05);
}

.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245,179,66,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.service-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.service-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   EQUIPMENT SECTION
   ============================================================ */
.equipment-section {
  background: var(--bg-light);
}

.equipment-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  height: 100%;
}

.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.equipment-icon {
  width: 70px;
  height: 70px;
  background: rgba(245,179,66,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.equipment-card:hover .equipment-icon {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
}

.equipment-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.equipment-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.equipment-benefits {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.equipment-benefits h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 800;
}

.benefit-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(245,179,66,0.1);
  border-color: var(--accent);
}

.benefit-item i {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.benefit-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  background: var(--primary);
}

.brands-section .section-badge {
  background: rgba(245, 179, 66, 0.15);
  border-color: rgba(245, 179, 66, 0.3);
}

.brands-section .section-title {
  color: var(--text-light);
}

.brands-section .section-text {
  color: var(--text-muted);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.brand-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.brand-item:hover {
  background: rgba(245,179,66,0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.brand-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  transition: var(--transition);
}

.brand-item:hover span {
  color: var(--accent);
}

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.success-section {
  background: var(--bg-light);
}

.story-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-body {
  padding: 20px;
}

.story-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.story-body p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 6px;
  line-height: 1.5;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.whyus-section {
  background: var(--primary);
}

.whyus-section .section-badge {
  background: rgba(245, 179, 66, 0.15);
  border-color: rgba(245, 179, 66, 0.3);
}

.whyus-section .section-title {
  color: var(--text-light);
}

.whyus-section .section-text {
  color: var(--text-muted);
}

.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whyus-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  color: var(--text-light);
  font-size: 0.95rem;
}

.whyus-item:hover {
  background: rgba(245,179,66,0.08);
  border-color: rgba(245,179,66,0.2);
}

.whyus-item strong {
  color: var(--accent);
  font-weight: 700;
}

.whyus-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,179,66,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.whyus-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--bg-light);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,179,66,0.3);
}

.product-image {
  height: 200px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  height: 140px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.electrico {
  background: rgba(245,179,66,0.9);
  color: var(--primary);
}

.product-badge.suspension {
  background: rgba(52, 152, 219, 0.9);
  color: #fff;
}

.product-body {
  padding: 18px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.product-btn {
  width: 100%;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.product-btn.added {
  background: var(--success);
  color: #fff;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--primary);
}

.gallery-section .section-badge {
  background: rgba(245, 179, 66, 0.15);
  border-color: rgba(245, 179, 66, 0.3);
}

.gallery-section .section-title {
  color: var(--text-light);
}

.gallery-section .section-text {
  color: var(--text-muted);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--bg-light);
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--primary);
}

.faq-section .section-badge {
  background: rgba(245, 179, 66, 0.15);
  border-color: rgba(245, 179, 66, 0.3);
}

.faq-section .section-title {
  color: var(--text-light);
}

.faq-section .section-text {
  color: var(--text-muted);
}

.accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 22px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(245,179,66,0.05);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f5b342' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0 22px 18px;
  line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg-light);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,179,66,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent);
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,179,66,0.15);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  line-height: 0;
}

.map-container iframe {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--primary-dark);
  color: var(--text-muted);
  padding: 60px 0 0;
}

.footer-logo {
  filter: brightness(1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 30px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.site-credit {
  opacity: 0.65;
  font-size: 0.85rem;
}

.site-credit a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.site-credit a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ============================================================
   MODAL CUSTOM
   ============================================================ */
.modal-content {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 18px 24px;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
}

/* ============================================================
   CART / ORDER BADGE
   ============================================================ */
.order-count {
  position: relative;
  display: inline-block;
}

.order-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9990;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 9991;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
  animation: slideCartIn 0.3s ease-out;
}

@keyframes slideCartIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
}

.cart-sidebar-header h5 {
  margin: 0;
  font-weight: 700;
}

.cart-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.cart-close-btn:hover { opacity: 1; }

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e9ecef;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0;
}

.cart-item-price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-qty-group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover { background: #e9ecef; }

.cart-qty-value {
  width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  line-height: 32px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 0.85rem;
}

.cart-item-remove:hover { background: #fce4ec; }

.cart-item-subtotal {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: right;
  margin-top: 4px;
}

.cart-sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  background: #fff;
}

.cart-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
}

.cart-total-bar strong {
  font-size: 1.3rem;
  color: var(--primary);
}

/* Floating cart button */
.cart-float-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,33,55,0.3);
  z-index: 998;
  transition: all 0.3s ease;
}

.cart-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(13,33,55,0.4);
}

.cart-float-btn.has-items {
  display: flex;
}

.cart-float-btn.empty-cart {
  display: flex;
  opacity: 0.5;
  transform: scale(0.85);
  pointer-events: none;
}

.cart-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(13,33,55,0.4);
}

.cart-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Navbar cart button */
.cart-nav-btn {
  position: relative;
}

.cart-badge-nav {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkout modal */
.checkout-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.checkout-modal-header {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 24px;
}

.checkout-modal-body {
  padding: 24px;
}

.checkout-modal-body .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.checkout-modal-body .form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-modal-body .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,179,66,0.15);
}

.checkout-modal-body .form-control.is-invalid {
  border-color: #dc3545;
}

.checkout-modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 16px 24px;
}

/* Delivery toggle buttons */
.chk-delivery-btn {
  flex: 1;
  border: 2px solid #dee2e6;
  background: #fff;
  color: #6c757d;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.chk-delivery-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.chk-delivery-btn:hover:not(.active) {
  border-color: var(--accent);
  color: var(--primary);
}

/* Payment method grid */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
}

.payment-option.active {
  border-color: var(--primary);
  background: rgba(13,33,55,0.05);
  color: var(--primary);
}

.payment-option:hover:not(.active) {
  border-color: var(--accent);
}

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

/* ============================================================
   A11Y / RESPECT REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
