/* ==========================================
   PAGES 2026 - Modern Design System
   La Miellerie Belfortaine
   Unified design language for all pages
   ========================================== */

/* ==========================================
   CSS Variables
   ========================================== */
:root {
  --page-gold: #D4A017;
  --page-gold-light: #F5E6B3;
  --page-gold-dark: #8B6914;
  --page-brown: #5C3D2E;
  --page-cream: #FFF8E7;
  --page-dark: #0a0a0a;
  --page-darker: #050505;
  --page-card-bg: rgba(26, 26, 26, 0.95);
  --page-glass: rgba(255, 255, 255, 0.05);
  --page-glass-border: rgba(255, 255, 255, 0.1);
  --page-radius: 20px;
  --page-radius-sm: 12px;
  --page-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --page-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   Hero Section 2026
   ========================================== */
.hero-2026 {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-2026-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
}

.hero-2026:hover .hero-2026-bg {
  transform: scale(1.05);
}

.hero-2026-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(92, 61, 46, 0.6) 50%,
    rgba(212, 160, 23, 0.3) 100%
  );
}

.hero-2026-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-2026-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--page-gold-20, rgba(212, 160, 23, 0.2));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--page-gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-2026-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-2026-title i {
  color: var(--page-gold);
  margin-right: 0.5rem;
}

.hero-2026-subtitle {
  font-size: 1.25rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   Section Headers 2026
   ========================================== */
.section-header-2026 {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title-2026 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.section-subtitle-2026 {
  font-size: 1.1rem;
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   Glass Cards 2026
   ========================================== */
.glass-card-2026 {
  background: var(--page-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  transition: var(--page-transition);
}

.glass-card-2026:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
  transform: translateY(-5px);
  box-shadow: var(--page-shadow);
}

/* ==========================================
   Feature Cards 2026
   ========================================== */
.feature-card-2026 {
  background: var(--page-card-bg);
  border-radius: var(--page-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--page-transition);
  border: 1px solid transparent;
  height: 100%;
}

.feature-card-2026:hover {
  border-color: var(--page-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 160, 23, 0.15);
}

.feature-icon-2026 {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  transition: var(--page-transition);
}

.feature-card-2026:hover .feature-icon-2026 {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.feature-title-2026 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-desc-2026 {
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   Contact Info Cards 2026
   ========================================== */
.contact-card-2026 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--page-glass);
  border-radius: var(--page-radius-sm);
  border: 1px solid var(--page-glass-border);
  transition: var(--page-transition);
}

.contact-card-2026:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
}

.contact-icon-2026 {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.contact-label-2026 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-value-2026 {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-value-2026 a {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value-2026 a:hover {
  color: var(--page-gold);
}

/* ==========================================
   Form 2026 Styles
   ========================================== */
.form-2026 .form-control,
.form-2026 .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--page-radius-sm);
  color: white;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: var(--page-transition);
}

.form-2026 .form-control:focus,
.form-2026 .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--page-gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
  color: white;
}

.form-2026 .form-control::placeholder {
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

.form-2026 .form-label {
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-2026 .form-select option {
  background: var(--page-dark);
  color: white;
}

.form-2026 textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================
   Buttons 2026
   ========================================== */
.btn-2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--page-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--page-transition);
  text-decoration: none;
}

.btn-2026-primary {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  color: white;
}

.btn-2026-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 160, 23, 0.4);
  color: white;
}

.btn-2026-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-2026-outline:hover {
  border-color: var(--page-gold);
  background: var(--page-gold-10, rgba(212, 160, 23, 0.1));
  color: var(--page-gold);
}

.btn-2026-glass {
  background: var(--page-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--page-glass-border);
  color: white;
}

.btn-2026-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--page-gold);
  color: var(--page-gold);
}

/* ==========================================
   FAQ Accordion 2026
   ========================================== */
.accordion-2026 .accordion-item {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--page-transition);
}

.accordion-2026 .accordion-item:hover {
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
}

.accordion-2026 .accordion-button {
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-2026 .accordion-button:not(.collapsed) {
  background: var(--page-gold-10, rgba(212, 160, 23, 0.1));
  color: var(--page-gold);
}

.accordion-2026 .accordion-button::after {
  filter: brightness(0) invert(1);
  transition: var(--page-transition);
}

.accordion-2026 .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(72%) sepia(47%) saturate(668%) hue-rotate(4deg) brightness(96%) contrast(89%);
}

.accordion-2026 .accordion-button i {
  color: var(--page-gold);
  margin-right: 1rem;
  font-size: 1.1rem;
}

.accordion-2026 .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.7;
}

.accordion-2026 .accordion-body ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.accordion-2026 .accordion-body li {
  margin-bottom: 0.5rem;
}

.accordion-2026 .accordion-body strong {
  color: var(--page-gold);
}

/* ==========================================
   Location Cards 2026
   ========================================== */
.location-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 1.75rem;
  height: 100%;
  transition: var(--page-transition);
}

.location-card-2026:hover {
  border-color: var(--page-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.location-header-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.location-icon-2026 {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.location-name-2026 {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.location-detail-2026 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.9rem;
}

.location-detail-2026 i {
  color: var(--page-gold);
  margin-top: 0.2rem;
  width: 16px;
}

/* ==========================================
   Social Links 2026
   ========================================== */
.social-links-2026 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link-2026 {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: var(--page-transition);
  text-decoration: none;
}

.social-link-2026:hover {
  background: var(--page-gold);
  border-color: var(--page-gold);
  color: white;
  transform: translateY(-3px) rotate(5deg);
}

/* ==========================================
   Map 2026
   ========================================== */
.map-container-2026 {
  position: relative;
  border-radius: var(--page-radius);
  overflow: hidden;
  border: 1px solid var(--page-glass-border);
}

.map-container-2026 iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: filter 0.3s ease;
}

.map-container-2026:hover iframe {
  filter: grayscale(50%) invert(92%) contrast(90%);
}

/* ==========================================
   Page Backgrounds
   ========================================== */
.page-bg-dark {
  background: linear-gradient(180deg, var(--page-dark) 0%, var(--page-darker) 100%);
}

.page-bg-darker {
  background: var(--page-darker);
}

.page-section-2026 {
  padding: 5rem 0;
}

.page-section-2026.alt-bg {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================
   Product Cards 2026 (for index.php)
   ========================================== */
.product-grid-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card-2026 {
  background: var(--page-card-bg);
  border-radius: var(--page-radius);
  overflow: hidden;
  transition: var(--page-transition);
  border: 1px solid transparent;
}

.product-card-2026:hover {
  border-color: var(--page-gold);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-image-2026 {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.product-badges-2026 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-badge-2026 {
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge-2026.bio {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.product-badge-2026.promo {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.product-badge-2026.new {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  color: white;
}

.product-wishlist-2026 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  transition: var(--page-transition);
  cursor: pointer;
  border: none;
}

.product-wishlist-2026:hover,
.product-wishlist-2026.active {
  background: var(--page-gold);
  color: white;
}

.product-content-2026 {
  padding: 1.5rem;
}

.product-category-2026 {
  font-size: 0.8rem;
  color: var(--page-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name-2026 {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-name-2026 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name-2026 a:hover {
  color: var(--page-gold);
}

.product-price-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-price-old-2026 {
  font-size: 1rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  text-decoration: line-through;
}

.product-price-current-2026 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--page-gold);
}

.product-actions-2026 {
  display: flex;
  gap: 0.75rem;
}

.product-btn-2026 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--page-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--page-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.product-btn-2026.primary {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  color: white;
}

.product-btn-2026.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

.product-btn-2026.secondary {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  color: white;
}

.product-btn-2026.secondary:hover {
  border-color: var(--page-gold);
  color: var(--page-gold);
}

/* ==========================================
   Cart Page 2026
   ========================================== */
.cart-item-2026 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  margin-bottom: 1rem;
  transition: var(--page-transition);
}

.cart-item-2026:hover {
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
}

.cart-item-image-2026 {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: var(--page-radius-sm);
  overflow: hidden;
}

.cart-item-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info-2026 {
  flex: 1;
}

.cart-item-name-2026 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.cart-item-name-2026 a {
  color: inherit;
  text-decoration: none;
}

.cart-item-name-2026 a:hover {
  color: var(--page-gold);
}

.cart-item-category-2026 {
  font-size: 0.85rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.cart-item-price-2026 {
  color: var(--page-gold);
  font-weight: 600;
  margin-top: 0.5rem;
}

.cart-qty-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn-2026 {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--page-transition);
}

.cart-qty-btn-2026:hover {
  background: var(--page-gold);
  border-color: var(--page-gold);
}

.cart-qty-value-2026 {
  min-width: 40px;
  text-align: center;
  color: white;
  font-weight: 600;
}

.cart-item-total-2026 {
  min-width: 100px;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.cart-item-remove-2026 {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  cursor: pointer;
  transition: var(--page-transition);
  border-radius: 50%;
}

.cart-item-remove-2026:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.cart-summary-2026 {
  background: var(--page-card-bg);
  border-radius: var(--page-radius);
  padding: 2rem;
  border: 1px solid var(--page-glass-border);
}

.cart-summary-row-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--page-glass-border);
}

.cart-summary-row-2026:last-of-type {
  border-bottom: none;
}

.cart-summary-label-2026 {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
}

.cart-summary-value-2026 {
  color: white;
  font-weight: 600;
}

.cart-summary-total-2026 {
  font-size: 1.5rem;
  color: var(--page-gold);
  font-weight: 700;
}

/* ==========================================
   Breadcrumb 2026
   ========================================== */
.breadcrumb-2026 {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.breadcrumb-2026 .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-2026 .breadcrumb-item a {
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-2026 .breadcrumb-item a:hover {
  color: var(--page-gold);
}

.breadcrumb-2026 .breadcrumb-item.active {
  color: white;
}

.breadcrumb-2026 .breadcrumb-item + .breadcrumb-item::before {
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

/* ==========================================
   Benefits Bar 2026
   ========================================== */
.benefits-bar-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: var(--page-glass);
  border-radius: var(--page-radius);
  border: 1px solid var(--page-glass-border);
}

.benefit-item-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon-2026 {
  color: var(--page-gold);
  font-size: 1.25rem;
}

.benefit-text-2026 {
  font-size: 0.9rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
}

/* ==========================================
   Toast Notifications 2026
   ========================================== */
.toast-2026 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: var(--page-card-bg);
  border: 1px solid var(--page-gold);
  border-radius: var(--page-radius-sm);
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--page-shadow);
}

.toast-2026.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-2026 i {
  color: var(--page-gold);
  font-size: 1.25rem;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991px) {
  .cart-item-2026 {
    flex-wrap: wrap;
  }

  .cart-item-info-2026 {
    flex-basis: calc(100% - 116px);
  }

  .cart-qty-2026 {
    margin-left: auto;
  }

  .cart-item-total-2026 {
    flex-basis: 100%;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid var(--page-glass-border);
  }
}

@media (max-width: 767px) {
  .hero-2026-title {
    font-size: 2rem;
  }

  .section-title-2026 {
    font-size: 1.75rem;
  }

  .page-section-2026 {
    padding: 3rem 0;
  }

  .cart-item-2026 {
    padding: 1rem;
  }

  .cart-item-image-2026 {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}

/* ==========================================
   Additional Hero Styles 2026
   ========================================== */
.hero-2026-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-2026-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  font-size: 0.85rem;
  animation: bounce-2026 2s infinite;
}

@keyframes bounce-2026 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   Section 2026 Layout
   ========================================== */
.section-2026 {
  padding: 5rem 0;
  background: var(--page-dark);
}

.section-2026-alt {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================
   Accordion 2026 (for FAQ)
   ========================================== */
.accordion-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  overflow: hidden;
  transition: var(--page-transition);
}

.accordion-item-2026:hover {
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
}

.accordion-header-2026 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--page-transition);
}

.accordion-header-2026:hover {
  background: var(--page-gold-05, rgba(212, 160, 23, 0.05));
}

.accordion-header-2026[aria-expanded="true"],
.accordion-header-2026:not(.collapsed) {
  background: var(--page-gold-10, rgba(212, 160, 23, 0.1));
}

.accordion-icon-2026 {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  color: white;
  font-size: 1rem;
}

.accordion-title-2026 {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
}

.accordion-arrow-2026 {
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

.accordion-header-2026[aria-expanded="true"] .accordion-arrow-2026,
.accordion-header-2026:not(.collapsed) .accordion-arrow-2026 {
  transform: rotate(180deg);
  color: var(--page-gold);
}

.accordion-body-2026 {
  padding: 0 1.5rem 1.5rem 5rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.7;
}

.accordion-body-2026 ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.accordion-body-2026 li {
  margin-bottom: 0.5rem;
}

.accordion-body-2026 strong {
  color: var(--page-gold);
}

/* ==========================================
   Form 2026 Styles (Extended)
   ========================================== */
.form-group-2026 {
  margin-bottom: 0;
}

.form-label-2026 {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control-2026 {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--page-radius-sm);
  color: white;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: var(--page-transition);
}

.form-control-2026:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--page-gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}

.form-control-2026::placeholder {
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

select.form-control-2026 {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

select.form-control-2026 option {
  background: var(--page-dark);
  color: white;
}

textarea.form-control-2026 {
  min-height: 150px;
  resize: vertical;
}

.form-check-2026 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check-input-2026 {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: var(--page-transition);
}

.form-check-input-2026:checked {
  background: var(--page-gold);
  border-color: var(--page-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='4,12 10,18 20,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.form-check-label-2026 {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-check-label-2026 a {
  color: var(--page-gold);
  text-decoration: none;
}

.form-check-label-2026 a:hover {
  text-decoration: underline;
}

/* ==========================================
   Button 2026 Sizes
   ========================================== */
.btn-2026-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-2026-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
}

.btn-2026-disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
  cursor: not-allowed;
}

/* ==========================================
   Contact Cards 2026 (Extended)
   ========================================== */
.contact-cards-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card-icon-2026 {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.contact-card-content-2026 h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-card-content-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  margin: 0;
  line-height: 1.5;
}

.contact-card-content-2026 a {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-content-2026 a:hover {
  color: var(--page-gold);
}

/* ==========================================
   Social Links 2026 (Extended)
   ========================================== */
.social-links-grid-2026 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================
   Location Cards 2026 (Extended)
   ========================================== */
.location-card-icon-2026 {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.location-card-title-2026 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.location-card-info-2026 {
  margin-bottom: 1rem;
}

.location-card-info-2026 p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.location-card-info-2026 p i {
  color: var(--page-gold);
  width: 16px;
}

.location-card-badge-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--page-gold-20, rgba(212, 160, 23, 0.2));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--page-gold);
}

.location-card-badge-2026.badge-market {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* ==========================================
   Map Section 2026
   ========================================== */
.map-section-2026 {
  position: relative;
}

.map-container-2026 {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-container-2026 iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: filter 0.3s ease;
}

.map-container-2026:hover iframe {
  filter: grayscale(50%) invert(92%) contrast(90%);
}

.map-overlay-2026 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.map-overlay-content-2026 {
  background: var(--page-card-bg);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.map-overlay-content-2026 i {
  font-size: 2rem;
  color: var(--page-gold);
  margin-bottom: 1rem;
}

.map-overlay-content-2026 h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.map-overlay-content-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  margin-bottom: 1rem;
}

/* ==========================================
   Alert 2026
   ========================================== */
.alert-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--page-radius-sm);
  font-size: 0.95rem;
}

.alert-success-2026 {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

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

/* ==========================================
   Text Utilities 2026
   ========================================== */
.text-gold {
  color: var(--page-gold) !important;
}

.text-white {
  color: white !important;
}

/* ==========================================
   Product Card 2026 (Extended for pages)
   ========================================== */
.product-card-2026 {
  display: block;
  background: var(--page-card-bg);
  border-radius: var(--page-radius);
  overflow: hidden;
  transition: var(--page-transition);
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
}

.product-card-2026:hover {
  border-color: var(--page-gold);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-card-image-2026 {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge-2026 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge-2026.badge-new {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  color: white;
}

.product-badge-2026.badge-promo {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.product-badge-2026.badge-bio {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.product-card-content-2026 {
  padding: 1.25rem;
}

.product-category-2026 {
  display: block;
  font-size: 0.75rem;
  color: var(--page-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-title-2026 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-price-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-price-2026 .current-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--page-gold);
}

.product-price-2026 .old-price {
  font-size: 0.9rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  text-decoration: line-through;
}

.product-card-overlay-2026 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-2026:hover .product-card-overlay-2026 {
  opacity: 1;
}

/* ==========================================
   Breadcrumb 2026 (Extended)
   ========================================== */
.breadcrumb-2026 {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-list-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-list-2026 li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  font-size: 0.9rem;
}

.breadcrumb-list-2026 li:not(:last-child)::after {
  content: '/';
  color: var(--page-text-ghost, rgba(255, 255, 255, 0.3));
}

.breadcrumb-list-2026 li a {
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list-2026 li a:hover {
  color: var(--page-gold);
}

.breadcrumb-list-2026 li.active {
  color: white;
}

/* ==========================================
   Product Detail Page 2026
   ========================================== */
.product-detail-2026 {
  padding-top: 2rem;
}

.product-gallery-2026 {
  position: sticky;
  top: 2rem;
}

.main-image-2026 {
  position: relative;
  border-radius: var(--page-radius);
  overflow: hidden;
  background: var(--page-card-bg);
  margin-bottom: 1rem;
}

.main-image-2026 img {
  width: 100%;
  height: auto;
  display: block;
}

.main-image-2026 .lightbox-link {
  display: block;
  position: relative;
}

.zoom-icon-2026 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image-2026:hover .zoom-icon-2026 {
  opacity: 1;
}

.placeholder-image-2026 {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
}

.placeholder-image-2026 i {
  font-size: 5rem;
  color: white;
  opacity: 0.7;
}

.product-badges-2026 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.badge-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-2026.badge-bio {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.badge-2026.badge-promo {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.badge-2026.badge-new {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  color: white;
}

.thumbnails-2026 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.thumbnail-2026 {
  width: 80px;
  height: 80px;
  border-radius: var(--page-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: var(--page-transition);
}

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

.thumbnail-2026:hover,
.thumbnail-2026.active {
  border-color: var(--page-gold);
}

.product-info-2026 {
  padding-left: 1rem;
}

.product-category-link-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--page-gold-15, rgba(212, 160, 23, 0.15));
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--page-gold);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: var(--page-transition);
}

.product-category-link-2026:hover {
  background: var(--page-gold-25, rgba(212, 160, 23, 0.25));
  color: var(--page-gold);
}

.product-info-2026 .product-title-2026 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-price-box-2026 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-price-box-2026 .old-price {
  font-size: 1.25rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  text-decoration: line-through;
}

.product-price-box-2026 .current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--page-gold);
}

.product-price-box-2026 .discount-badge {
  padding: 0.35rem 0.85rem;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
}

.product-description-short-2026 {
  font-size: 1.1rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.stock-status-2026 {
  margin-bottom: 1.5rem;
}

.stock-status-2026 span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.stock-in {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.stock-low {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.stock-out {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.product-meta-2026 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--page-glass);
  border-radius: var(--page-radius-sm);
  border: 1px solid var(--page-glass-border);
}

.product-meta-2026 .meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.9rem;
}

.product-meta-2026 .meta-item i {
  color: var(--page-gold);
  width: 20px;
}

.add-to-cart-2026 {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quantity-selector-2026 {
  display: flex;
  align-items: center;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  overflow: hidden;
}

.quantity-selector-2026 .qty-btn {
  width: 45px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--page-transition);
}

.quantity-selector-2026 .qty-btn:hover {
  background: var(--page-gold-20, rgba(212, 160, 23, 0.2));
  color: var(--page-gold);
}

.quantity-selector-2026 input {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Hide native number input spinner arrows */
.quantity-selector-2026 input::-webkit-outer-spin-button,
.quantity-selector-2026 input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-selector-2026 input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-benefits-2026 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--page-glass-border);
}

.product-benefits-2026 .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-benefits-2026 .benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-gold-15, rgba(212, 160, 23, 0.15));
  border-radius: 50%;
  color: var(--page-gold);
  font-size: 0.95rem;
}

.product-benefits-2026 .benefit-item span {
  font-size: 0.85rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
}

.product-description-full-2026 {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ==========================================
   Product Description Section 2026
   Modern Glassmorphism Tabs Design
   ========================================== */

/* Section wrapper - Dark theme consistency */
.product-description-section-2026 {
  background: var(--desc-bg, #0a0a0a);
  position: relative;
  overflow: hidden;
}

.product-description-section-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--desc-accent, #D4A017), transparent);
  opacity: 0.3;
}

/* Main content card */
.product-description-card-2026 {
  background: var(--desc-card-bg, rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Product Tabs 2026 - Floating Pills Design */
.product-tabs-2026 {
  width: 100%;
}

/* Tabs Navigation - Floating glassmorphism bar */
.tabs-nav-2026 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border-bottom: 1px solid var(--desc-tab-border, rgba(255,255,255,0.08));
  position: relative;
}

/* Tab buttons - Modern pill design */
.tab-btn-2026 {
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: var(--desc-text, #888888);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
}

.tab-btn-2026::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--desc-tab-active, #D4A017), rgba(212, 160, 23, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tab-btn-2026 i,
.tab-btn-2026 span {
  position: relative;
  z-index: 1;
}

.tab-btn-2026:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--desc-tab-active, #D4A017);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}

.tab-btn-2026.active {
  color: var(--desc-card-bg, #0a0a0a);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(212, 160, 23, 0.4),
    0 0 40px rgba(212, 160, 23, 0.1);
}

.tab-btn-2026.active::before {
  opacity: 1;
}

.tab-btn-2026 i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.tab-btn-2026:hover i {
  transform: scale(1.1);
}

.tab-btn-2026.active i {
  color: var(--desc-card-bg, #0a0a0a);
}

/* Tabs content area */
.tabs-content-2026 {
  padding: 2.5rem;
  min-height: 250px;
}

/* Tab panes with smooth animations */
.tab-pane-2026 {
  display: none;
  animation: tabSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pane-2026.active {
  display: block;
}

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

/* Tab title with accent line */
.tab-title-2026 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--desc-title, #ffffff);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tab-title-2026::before {
  content: '';
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(180deg, var(--desc-accent, #D4A017), rgba(212, 160, 23, 0.3));
  border-radius: 2px;
}

/* Product description text */
.product-description-full-2026 {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--desc-text, #cccccc);
}

.product-description-full-2026 p {
  margin-bottom: 1.25rem;
}

/* ==========================================
   Product Specs 2026 - Modern Card Grid
   ========================================== */
.product-specs-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.spec-row-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-row-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--desc-accent, #D4A017), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spec-row-2026:hover {
  background: rgba(212, 160, 23, 0.05);
  border-color: rgba(212, 160, 23, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.spec-row-2026:hover::before {
  opacity: 1;
}

.spec-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--desc-text, #999999);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-label i {
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 8px;
  color: var(--desc-accent, #D4A017);
}

.spec-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--desc-title, #ffffff);
  padding-left: calc(32px + 0.75rem);
}

/* ==========================================
   Delivery Info 2026 - Modern Style
   ========================================== */
.delivery-info-2026 {
  color: var(--desc-text, #cccccc);
}

.delivery-info-2026 p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08) 0%, rgba(212, 160, 23, 0.02) 100%);
  border-left: 3px solid var(--desc-accent, #D4A017);
  border-radius: 0 12px 12px 0;
}

.delivery-list-2026 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-list-2026 li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.delivery-list-2026 li:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 160, 23, 0.2);
  transform: translateX(5px);
}

.delivery-list-2026 i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--desc-accent, #D4A017), rgba(212, 160, 23, 0.7));
  border-radius: 50%;
  font-size: 0.75rem;
  color: #0a0a0a;
  flex-shrink: 0;
}

/* ==========================================
   Responsive Tabs 2026
   ========================================== */
@media (max-width: 768px) {
  .tabs-nav-2026 {
    padding: 1rem;
    gap: 0.375rem;
    justify-content: center;
  }

  .tab-btn-2026 {
    padding: 0.625rem 1rem;
    font-size: 0.8rem;
  }

  .tab-btn-2026 span {
    display: none;
  }

  .tab-btn-2026 i {
    margin: 0;
  }

  .tabs-content-2026 {
    padding: 1.5rem;
  }

  .tab-title-2026 {
    font-size: 1.25rem;
  }

  .product-specs-2026 {
    grid-template-columns: 1fr;
  }

  .spec-value {
    font-size: 1.05rem;
  }
}

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

/* ==========================================
   Responsive for Product Detail
   ========================================== */
@media (max-width: 991px) {
  .product-gallery-2026 {
    position: static;
  }

  .product-info-2026 {
    padding-left: 0;
    padding-top: 2rem;
  }

  .product-info-2026 .product-title-2026 {
    font-size: 1.75rem;
  }

  .product-price-box-2026 .current-price {
    font-size: 2rem;
  }

  .product-meta-2026 {
    grid-template-columns: 1fr;
  }

  .product-benefits-2026 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .add-to-cart-2026 {
    flex-direction: column;
  }

  .quantity-selector-2026 {
    width: 100%;
    justify-content: center;
  }

  .thumbnails-2026 {
    justify-content: center;
  }

  .thumbnail-2026 {
    width: 60px;
    height: 60px;
  }
}

/* ==========================================
   CART PAGE 2026
   ========================================== */

/* Hero Small Variant */
.hero-2026-sm {
  min-height: 35vh;
}

/* Cart Empty State */
.cart-empty-2026 {
  text-align: center;
  padding: 5rem 2rem;
}

.cart-empty-icon-2026 {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-empty-icon-2026 i {
  font-size: 3rem;
  color: var(--page-text-ghost, rgba(255, 255, 255, 0.3));
}

.cart-empty-title-2026 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.cart-empty-text-2026 {
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Free Shipping Progress */
.free-shipping-progress-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.progress-info-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
}

.progress-info-2026 i {
  color: var(--page-gold);
  margin-right: 0.5rem;
}

.progress-info-2026 strong {
  color: var(--page-gold);
}

.progress-percent-2026 {
  color: var(--page-gold);
  font-weight: 600;
}

.progress-bar-2026 {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill-2026 {
  height: 100%;
  background: linear-gradient(90deg, var(--page-gold-dark), var(--page-gold));
  border-radius: 10px;
  transition: width 0.5s ease-out;
}

.free-shipping-success-2026 {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--page-radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #22c55e;
}

.free-shipping-success-2026 i {
  font-size: 1.25rem;
}

.free-shipping-success-2026 strong {
  color: #4ade80;
}

/* Cart Items List */
.cart-items-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-2026 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  transition: var(--page-transition);
}

.cart-item-2026:hover {
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
  transform: translateY(-2px);
}

/* Cart Item Image */
.cart-item-image-2026 {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: var(--page-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-item-2026:hover .cart-item-image-2026 img {
  transform: scale(1.05);
}

.cart-item-placeholder-2026 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-placeholder-2026 i {
  font-size: 2rem;
  color: white;
}

.cart-item-badge-2026 {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Cart Item Info */
.cart-item-info-2026 {
  flex: 1;
  min-width: 0;
}

.cart-item-category-2026 {
  display: block;
  font-size: 0.75rem;
  color: var(--page-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.cart-item-name-2026 {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.cart-item-name-2026:hover {
  color: var(--page-gold);
}

.cart-item-price-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-item-price-2026 .old-price {
  font-size: 0.875rem;
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
  text-decoration: line-through;
}

.cart-item-price-2026 .current-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--page-gold);
}

/* Cart Item Quantity */
.cart-item-quantity-2026 {
  flex-shrink: 0;
}

/* Cart Item Total */
.cart-item-total-2026 {
  text-align: right;
  min-width: 100px;
  flex-shrink: 0;
}

.cart-item-total-2026 .total-label {
  display: block;
  font-size: 0.75rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  margin-bottom: 0.25rem;
}

.cart-item-total-2026 .total-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

/* Cart Item Remove */
.cart-item-remove-2026 {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  color: #ef4444;
  cursor: pointer;
  transition: var(--page-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-remove-2026:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

/* Cart Actions */
.cart-actions-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--page-glass-border);
}

/* Danger Outline Button */
.btn-2026-danger-outline {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

.btn-2026-danger-outline:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ef4444;
}

/* Cart Summary */
.cart-summary-2026 {
  background: var(--page-card-bg);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.cart-summary-header-2026 {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(139, 105, 20, 0.1));
  border-bottom: 1px solid var(--page-glass-border);
}

.cart-summary-header-2026 h3 {
  margin: 0;
  font-size: 1.25rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-summary-header-2026 h3 i {
  color: var(--page-gold);
}

.cart-summary-body-2026 {
  padding: 1.5rem;
}

.summary-row-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.summary-row-2026 .label {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-row-2026 .label i {
  color: var(--page-gold);
  font-size: 0.875rem;
}

.summary-row-2026 .value {
  color: white;
  font-weight: 500;
}

.summary-row-2026 .value.free {
  color: #22c55e;
  font-weight: 600;
}

.summary-row-2026 .value.discount {
  color: #22c55e;
}

.summary-divider-2026 {
  height: 1px;
  background: var(--page-glass-border);
  margin: 0.5rem 0;
}

.summary-row-2026.total-row .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.summary-row-2026.total-row .value.total {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--page-gold);
}

/* Cart Coupon */
.cart-coupon-2026 {
  padding: 0 1.5rem 1.5rem;
}

.coupon-form-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coupon-input-group {
  display: flex;
  gap: 0.5rem;
}

.coupon-input-group .form-control-2026 {
  flex: 1;
}

.coupon-info-2026 {
  font-size: 0.8rem;
  min-height: 1.5rem;
}

.coupon-info-2026.success {
  color: #22c55e;
}

.coupon-info-2026.error {
  color: #ef4444;
}

/* Cart Summary Footer */
.cart-summary-footer-2026 {
  padding: 1.5rem;
  background: var(--page-glass);
  border-top: 1px solid var(--page-glass-border);
}

.secure-badge-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.secure-badge-2026 i {
  color: #22c55e;
}

/* Cart Benefits */
.cart-benefits-2026 {
  margin-top: 1.5rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.benefit-item-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.benefit-item-2026:not(:last-child) {
  border-bottom: 1px solid var(--page-glass-border);
}

.benefit-icon-2026 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(139, 105, 20, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-2026 i {
  color: var(--page-gold);
  font-size: 1rem;
}

.benefit-content-2026 {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.benefit-text {
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

/* Payment Methods */
.payment-methods-2026 {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.25rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  backdrop-filter: blur(10px);
}

.payment-label {
  display: block;
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  margin-bottom: 0.75rem;
}

.payment-icons-2026 {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.payment-icons-2026 i {
  font-size: 2rem;
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  transition: var(--page-transition);
}

.payment-icons-2026 i:hover {
  color: var(--page-gold);
  transform: translateY(-3px);
}

/* Cart Page Responsive */
@media (max-width: 991px) {
  .cart-item-2026 {
    flex-wrap: wrap;
  }

  .cart-item-info-2026 {
    flex: 1 1 calc(100% - 130px);
  }

  .cart-item-quantity-2026,
  .cart-item-total-2026 {
    flex: 1;
  }

  .cart-item-remove-2026 {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .cart-item-2026 {
    position: relative;
    padding-right: 4rem;
  }

  .cart-summary-2026 {
    position: static;
  }
}

@media (max-width: 767px) {
  .cart-item-image-2026 {
    width: 80px;
    height: 80px;
  }

  .cart-item-info-2026 {
    flex: 1 1 calc(100% - 110px);
  }

  .cart-item-name-2026 {
    font-size: 1rem;
  }

  .cart-item-total-2026 .total-value {
    font-size: 1.1rem;
  }

  .cart-actions-2026 {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-actions-2026 .btn-2026 {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .cart-item-2026 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    padding-top: 3rem;
  }

  .cart-item-image-2026 {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .cart-item-info-2026 {
    text-align: center;
  }

  .cart-item-price-2026 {
    justify-content: center;
  }

  .cart-item-quantity-2026 {
    margin-top: 1rem;
  }

  .cart-item-total-2026 {
    text-align: center;
    margin-top: 0.5rem;
  }

  .cart-item-remove-2026 {
    top: 0.75rem;
    right: 0.75rem;
  }

  .free-shipping-progress-2026,
  .free-shipping-success-2026 {
    padding: 1rem;
  }

  .progress-info-2026 {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .summary-row-2026.total-row .value.total {
    font-size: 1.5rem;
  }
}

/* ==========================================
   CHECKOUT PAGE 2026
   ========================================== */

/* Checkout Steps */
.checkout-steps-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  backdrop-filter: blur(10px);
}

.step-item-2026 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-icon-2026 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--page-glass);
  border: 2px solid var(--page-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--page-transition);
}

.step-icon-2026 i {
  font-size: 1.1rem;
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

.step-label-2026 {
  font-size: 0.85rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.step-item-2026.completed .step-icon-2026 {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-color: var(--page-gold);
}

.step-item-2026.completed .step-icon-2026 i {
  color: white;
}

.step-item-2026.completed .step-label-2026 {
  color: var(--page-gold);
}

.step-item-2026.active .step-icon-2026 {
  background: var(--page-glass);
  border-color: var(--page-gold);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.step-item-2026.active .step-icon-2026 i {
  color: var(--page-gold);
}

.step-item-2026.active .step-label-2026 {
  color: white;
  font-weight: 600;
}

.step-connector-2026 {
  width: 80px;
  height: 2px;
  background: var(--page-glass-border);
  margin: 0 1rem;
  margin-bottom: 1.5rem;
}

.step-connector-2026.completed {
  background: linear-gradient(90deg, var(--page-gold), var(--page-gold-dark));
}

/* Checkout Info Banner */
.checkout-info-banner-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--page-radius-sm);
  margin-bottom: 1.5rem;
  color: #60a5fa;
}

.checkout-info-banner-2026 i {
  font-size: 1.5rem;
}

.checkout-info-banner-2026 a {
  color: var(--page-gold);
  font-weight: 600;
  text-decoration: none;
}

.checkout-info-banner-2026 a:hover {
  text-decoration: underline;
}

/* Checkout Section */
.checkout-section-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-header-icon-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--page-glass-border);
}

.section-header-icon-2026 i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(139, 105, 20, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--page-gold);
  font-size: 1.1rem;
}

.section-header-icon-2026 h3 {
  margin: 0;
  font-size: 1.25rem;
  color: white;
}

/* Form Label */
.form-label-2026 {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
}

.form-label-2026 .required {
  color: var(--page-gold);
}

.form-hint-2026 {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

/* Custom Checkbox 2026 */
.form-check-2026 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--page-radius-sm);
  cursor: pointer;
}

.form-check-input-2026 {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  background: var(--page-glass);
  border: 2px solid var(--page-glass-border);
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  transition: var(--page-transition);
  flex-shrink: 0;
}

.form-check-input-2026:checked {
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  border-color: var(--page-gold);
}

.form-check-input-2026:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-check-label-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.form-check-label-2026 .check-title {
  font-weight: 600;
  color: white;
}

.form-check-label-2026 .check-description {
  font-size: 0.85rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.password-field-2026 {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--page-glass-border);
}

/* Payment Methods Grid */
.payment-methods-grid-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method-2026 {
  cursor: pointer;
}

.payment-method-2026 input {
  display: none;
}

.payment-method-2026 .payment-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--page-glass);
  border: 2px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  transition: var(--page-transition);
}

.payment-method-2026 input:checked + .payment-content {
  border-color: var(--page-gold);
  background: var(--page-gold-05, rgba(212, 160, 23, 0.05));
}

.payment-method-2026:hover .payment-content {
  border-color: var(--page-gold-50, rgba(212, 160, 23, 0.5));
}

.payment-method-2026 .payment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(139, 105, 20, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-method-2026 .payment-icon i {
  font-size: 1.25rem;
  color: var(--page-gold);
}

.payment-method-2026 .payment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.payment-method-2026 .payment-title {
  font-weight: 600;
  color: white;
}

.payment-method-2026 .payment-description {
  font-size: 0.85rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.payment-method-2026 .payment-logos {
  display: flex;
  gap: 0.5rem;
}

.payment-method-2026 .payment-logos i {
  font-size: 1.75rem;
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

.payment-notice-2026 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: var(--page-radius-sm);
  font-size: 0.9rem;
  color: #fbbf24;
}

.payment-notice-2026 i {
  margin-top: 0.1rem;
}

/* Order Summary 2026 */
.order-summary-2026 {
  background: var(--page-card-bg);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.order-summary-header-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(139, 105, 20, 0.1));
  border-bottom: 1px solid var(--page-glass-border);
}

.order-summary-header-2026 h3 {
  margin: 0;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-summary-header-2026 h3 i {
  color: var(--page-gold);
}

.order-summary-header-2026 .edit-link {
  font-size: 0.85rem;
  color: var(--page-gold);
  text-decoration: none;
}

.order-summary-header-2026 .edit-link:hover {
  text-decoration: underline;
}

/* Order Items */
.order-items-2026 {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.order-item-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.order-item-2026:not(:last-child) {
  border-bottom: 1px solid var(--page-glass-border);
}

.order-item-2026 .item-image {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: var(--page-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.order-item-2026 .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-2026 .item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--page-gold), var(--page-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item-2026 .item-placeholder i {
  color: white;
}

.order-item-2026 .item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--page-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.order-item-2026 .item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.order-item-2026 .item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-item-2026 .item-unit-price {
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.order-item-2026 .item-total {
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

/* Order Totals */
.order-totals-2026 {
  padding: 1.5rem;
  background: var(--page-glass);
  border-top: 1px solid var(--page-glass-border);
}

.order-totals-2026 .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
}

.order-totals-2026 .total-row i {
  color: var(--page-gold);
  margin-right: 0.5rem;
}

.order-totals-2026 .total-row .free {
  color: #22c55e;
  font-weight: 600;
}

.order-totals-2026 .total-divider {
  height: 1px;
  background: var(--page-glass-border);
  margin: 0.75rem 0;
}

.order-totals-2026 .total-row.final {
  padding-top: 0.75rem;
}

.order-totals-2026 .total-row.final span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.order-totals-2026 .total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--page-gold);
}

/* Order Submit */
.order-submit-2026 {
  padding: 1.5rem;
  border-top: 1px solid var(--page-glass-border);
}

.order-submit-2026 .cgv-notice {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  text-align: center;
}

.order-submit-2026 .cgv-notice a {
  color: var(--page-gold);
  text-decoration: none;
}

.order-submit-2026 .cgv-notice a:hover {
  text-decoration: underline;
}

/* Order Security */
.order-security-2026 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--page-glass-border);
}

.order-security-2026 .security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
}

.order-security-2026 .security-item i {
  color: #22c55e;
}

/* Alert 2026 */
.alert-2026 {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--page-radius-sm);
  margin-bottom: 2rem;
}

.alert-2026-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.alert-2026-danger i {
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.alert-2026 ul {
  padding-left: 1.25rem;
}

.alert-2026 ul li {
  margin-bottom: 0.25rem;
}

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

/* Checkout Responsive */
@media (max-width: 991px) {
  .order-summary-2026 {
    position: static;
  }

  .checkout-steps-2026 {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .step-connector-2026 {
    display: none;
  }
}

@media (max-width: 767px) {
  .checkout-section-2026 {
    padding: 1.5rem;
  }

  .section-header-icon-2026 {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .payment-method-2026 .payment-content {
    flex-wrap: wrap;
  }

  .payment-method-2026 .payment-logos {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .order-security-2026 {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 575px) {
  .step-item-2026 {
    flex: 1;
  }

  .step-icon-2026 {
    width: 40px;
    height: 40px;
  }

  .step-icon-2026 i {
    font-size: 0.9rem;
  }

  .step-label-2026 {
    font-size: 0.75rem;
  }

  .checkout-info-banner-2026 {
    flex-direction: column;
    text-align: center;
  }

  .order-totals-2026 .total-price {
    font-size: 1.25rem;
  }
}

/* ========================================
   NOTRE HISTOIRE PAGE 2026 STYLES
   ======================================== */

/* Hero Scroll Indicator */
.hero-2026-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  color: var(--page-gold);
  transform: translateY(3px);
}

.scroll-indicator i {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* Timeline 2026 */
.timeline-2026 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-2026::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--page-gold), var(--page-gold-dark));
  border-radius: 3px;
}

.timeline-item-2026 {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.timeline-item-2026:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 30px);
}

.timeline-item-2026:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
}

.timeline-marker-2026 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-year-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.timeline-content-2026 {
  flex: 1;
  padding: 1.5rem;
  position: relative;
}

.timeline-content-2026::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 20px;
  height: 2px;
  background: var(--page-gold);
}

.timeline-item-2026:nth-child(odd) .timeline-content-2026::before {
  right: -20px;
}

.timeline-item-2026:nth-child(even) .timeline-content-2026::before {
  left: -20px;
}

.timeline-icon-2026 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.timeline-icon-2026 i {
  font-size: 1.25rem;
  color: var(--page-gold);
}

.timeline-content-2026 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 0.75rem;
}

.timeline-content-2026 p {
  font-size: 0.95rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.75));
  line-height: 1.7;
  margin: 0;
}

/* Timeline Image */
.timeline-image-2026 {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.timeline-image-2026 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .timeline-image-2026 {
    margin: -1rem -1rem 0.75rem -1rem;
  }

  .timeline-image-2026 img {
    height: 120px;
  }
}

/* Timeline Card Colors */
.timeline-card-gold {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(139, 105, 20, 0.15) 100%);
  border-color: rgba(212, 160, 23, 0.4);
}
.timeline-card-honey {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(211, 84, 0, 0.15) 100%);
  border-color: rgba(243, 156, 18, 0.4);
}
.timeline-card-brown {
  background: linear-gradient(135deg, rgba(139, 90, 43, 0.25) 0%, rgba(78, 52, 30, 0.2) 100%);
  border-color: rgba(139, 90, 43, 0.4);
}
.timeline-card-green {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(46, 125, 50, 0.15) 100%);
  border-color: rgba(34, 139, 34, 0.4);
}
.timeline-card-blue {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.15) 100%);
  border-color: rgba(52, 152, 219, 0.4);
}

/* Timeline Marker Colors */
.timeline-marker-gold { background: linear-gradient(135deg, #D4A017 0%, #8B6914 100%); }
.timeline-marker-honey { background: linear-gradient(135deg, #F39C12 0%, #D35400 100%); }
.timeline-marker-brown { background: linear-gradient(135deg, #8B5A2B 0%, #4E341E 100%); }
.timeline-marker-green { background: linear-gradient(135deg, #228B22 0%, #2E7D32 100%); }
.timeline-marker-blue { background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%); }

/* Timeline Text Colors */
.timeline-text-white h3,
.timeline-text-white p { color: #fff; }
.timeline-text-white p { color: rgba(255, 255, 255, 0.8); }

.timeline-text-dark h3,
.timeline-text-dark p { color: #1a1a1a; }
.timeline-text-dark p { color: rgba(26, 26, 26, 0.75); }

.timeline-text-gold h3 { color: #D4A017; }
.timeline-text-gold p { color: rgba(212, 160, 23, 0.85); }

.timeline-text-cream h3 { color: #FFF8DC; }
.timeline-text-cream p { color: rgba(255, 248, 220, 0.85); }

/* Value Cards 2026 */
.value-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.value-card-2026:hover {
  transform: translateY(-8px);
  border-color: var(--page-gold-40, rgba(212, 160, 23, 0.4));
  box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
}

.value-icon-2026 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.value-card-2026:hover .value-icon-2026 {
  transform: scale(1.1);
  border-color: var(--page-gold);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.3) 0%, rgba(212, 160, 23, 0.1) 100%);
}

.value-icon-2026 i {
  font-size: 2rem;
  color: var(--page-gold);
}

.value-title-2026 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 1rem;
}

.value-text-2026 {
  font-size: 0.95rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.7;
  margin: 0;
}

.value-decoration-2026 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--page-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card-2026:hover .value-decoration-2026 {
  opacity: 1;
}

/* Mission Section 2026 */
.mission-image-2026 {
  position: relative;
  border-radius: var(--page-radius);
  overflow: hidden;
}

.mission-image-2026 .main-image {
  width: 100%;
  height: auto;
  border-radius: var(--page-radius);
  object-fit: cover;
}

.mission-badge-2026 {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  color: #000;
  padding: 1.5rem 2rem;
  border-radius: var(--page-radius-sm);
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.mission-badge-2026 .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.mission-badge-2026 .badge-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.mission-content-2026 {
  padding: 1rem 0;
}

.mission-title-2026 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin: 1rem 0 1.5rem;
}

.mission-text-2026 {
  font-size: 1rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mission-text-2026 strong {
  color: var(--page-gold);
}

.mission-quote-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-left: 4px solid var(--page-gold);
  border-radius: var(--page-radius-sm);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.mission-quote-2026 .quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 1.5rem;
  color: var(--page-gold);
  background: var(--page-dark);
  padding: 0 0.5rem;
}

.mission-quote-2026 blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--page-text-light, rgba(255, 255, 255, 0.9));
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.mission-quote-2026 cite {
  font-size: 0.9rem;
  color: var(--page-gold);
  font-style: normal;
}

/* Team Cards 2026 */
.team-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.team-card-2026:hover {
  transform: translateY(-8px);
  border-color: var(--page-gold-40, rgba(212, 160, 23, 0.4));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-image-2026 {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(139, 105, 20, 0.05) 100%);
}

.team-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card-2026:hover .team-image-2026 img {
  transform: scale(1.05);
}

.team-overlay-2026 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card-2026:hover .team-overlay-2026 {
  opacity: 1;
}

.team-social-2026 {
  display: flex;
  gap: 0.75rem;
}

.team-social-2026 .social-link {
  width: 40px;
  height: 40px;
  background: var(--page-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--page-text, #fff);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social-2026 .social-link:hover {
  background: var(--page-gold);
  border-color: var(--page-gold);
  color: #000;
  transform: translateY(-3px);
}

.team-content-2026 {
  padding: 1.5rem;
  text-align: center;
}

.team-role-2026 {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--page-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.team-name-2026 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 0.75rem;
}

.team-bio-2026 {
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.6;
  margin: 0;
}

/* Stats Grid 2026 */
.stats-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item-2026 {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item-2026:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--page-glass-border), transparent);
}

.stat-icon-2026 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon-2026 i {
  font-size: 1.5rem;
  color: var(--page-gold);
}

.stat-number-2026 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--page-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-2026 {
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-weight: 500;
}

/* CTA Section 2026 */
.cta-section-2026 {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(139, 105, 20, 0.1) 100%);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  padding: 5rem 0;
}

.cta-content-2026 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-2026 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 1rem;
}

.cta-text-2026 {
  font-size: 1.1rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  margin-bottom: 2rem;
}

.cta-actions-2026 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Notre Histoire Responsive */
@media (max-width: 991px) {
  .timeline-2026::before {
    left: 30px;
  }

  .timeline-item-2026:nth-child(odd),
  .timeline-item-2026:nth-child(even) {
    flex-direction: row;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-marker-2026 {
    left: 30px;
  }

  .timeline-year-2026 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 0.75rem;
    writing-mode: horizontal-tb;
  }

  .timeline-item-2026:nth-child(odd) .timeline-content-2026::before,
  .timeline-item-2026:nth-child(even) .timeline-content-2026::before {
    left: -20px;
    right: auto;
  }

  .stats-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item-2026:nth-child(2)::after {
    display: none;
  }

  .stat-item-2026:not(:last-child)::after {
    display: none;
  }

  .mission-badge-2026 {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 1rem;
  }

  .mission-title-2026 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .timeline-year-2026 {
    width: 50px;
    height: 50px;
    font-size: 0.7rem;
  }

  .timeline-content-2026 {
    padding: 1rem;
  }

  .timeline-content-2026 h3 {
    font-size: 1.1rem;
  }

  .timeline-content-2026 p {
    font-size: 0.9rem;
  }

  .value-card-2026 {
    padding: 1.5rem 1rem;
  }

  .value-icon-2026 {
    width: 60px;
    height: 60px;
  }

  .value-icon-2026 i {
    font-size: 1.5rem;
  }

  .team-image-2026 {
    height: 220px;
  }

  .cta-title-2026 {
    font-size: 1.75rem;
  }

  .cta-text-2026 {
    font-size: 1rem;
  }

  .cta-actions-2026 {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions-2026 .btn-2026 {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .timeline-2026::before {
    left: 20px;
  }

  .timeline-marker-2026 {
    left: 20px;
  }

  .timeline-item-2026:nth-child(odd),
  .timeline-item-2026:nth-child(even) {
    padding-left: 60px;
  }

  .timeline-year-2026 {
    width: 40px;
    height: 40px;
    font-size: 0.6rem;
  }

  .timeline-icon-2026 {
    width: 40px;
    height: 40px;
  }

  .timeline-icon-2026 i {
    font-size: 1rem;
  }

  .stats-grid-2026 {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .stat-number-2026 {
    font-size: 2rem;
  }

  .stat-label-2026 {
    font-size: 0.8rem;
  }

  .hero-2026-scroll {
    bottom: 1rem;
  }

  .scroll-indicator span {
    display: none;
  }
}

/* ========================================
   NOS RUCHERS PAGE 2026 STYLES
   ======================================== */

/* Rucher Intro Section */
.rucher-intro-image-2026 {
  position: relative;
  border-radius: var(--page-radius);
  overflow: visible;
}

.rucher-intro-image-2026 .main-image {
  width: 100%;
  height: auto;
  border-radius: var(--page-radius);
  object-fit: cover;
}

.floating-badge-2026 {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: var(--page-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.floating-badge-2026 i {
  font-size: 1.5rem;
}

.rucher-intro-content-2026 {
  padding: 1rem 0;
}

.intro-text-2026 {
  font-size: 1rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-text-2026 strong {
  color: var(--page-gold);
}

.intro-features-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.intro-features-2026 .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.9));
}

.intro-features-2026 .feature-item i {
  color: var(--page-gold);
  font-size: 1.1rem;
}

/* Rucher Cards 2026 */
.rucher-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rucher-card-2026:hover {
  transform: translateY(-8px);
  border-color: var(--page-gold-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rucher-card-2026.rucher-card-featured {
  border-color: rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, var(--page-glass) 100%);
}

.rucher-card-2026.rucher-card-featured:hover {
  border-color: rgba(76, 175, 80, 0.6);
}

.rucher-card-header-2026 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.rucher-icon-2026 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--page-gold-20, rgba(212, 160, 23, 0.2)) 0%, var(--page-gold-05, rgba(212, 160, 23, 0.05)) 100%);
  border: 1px solid var(--page-gold-30, rgba(212, 160, 23, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rucher-icon-2026 i {
  font-size: 1.5rem;
  color: var(--page-gold);
}

.rucher-altitude-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
}

.rucher-badge-bio {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: var(--page-text, #fff);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rucher-name-2026 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 0.75rem;
}

.rucher-description-2026 {
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rucher-features-2026 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rucher-features-2026 .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--page-gold-10, rgba(212, 160, 23, 0.1));
  border: 1px solid var(--page-gold-20, rgba(212, 160, 23, 0.2));
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--page-gold);
}

.rucher-features-2026 .feature-tag i {
  font-size: 0.7rem;
}

.rucher-honey-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--page-glass-border);
}

.rucher-honey-2026 .honey-label {
  font-size: 0.85rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.6));
}

.rucher-honey-2026 .honey-type {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--page-gold);
}

/* Service Cards 2026 */
.service-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card-2026:hover {
  transform: translateY(-8px);
  border-color: var(--page-gold-40, rgba(212, 160, 23, 0.4));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card-2026.service-card-featured {
  border-color: var(--page-gold);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, var(--page-glass) 100%);
}

.service-popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 0 8px 8px;
}

.service-icon-2026 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-2026 i {
  font-size: 1.75rem;
  color: var(--page-gold);
}

.service-title-2026 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--page-text, #fff);
  margin-bottom: 0.75rem;
}

.service-description-2026 {
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features-2026 {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.service-features-2026 li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--page-glass-border);
}

.service-features-2026 li:last-child {
  border-bottom: none;
}

.service-features-2026 li i {
  color: var(--page-gold);
  font-size: 0.85rem;
}

.service-price-2026 {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-price-2026 .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--page-gold);
}

.service-price-2026 .per {
  font-size: 0.9rem;
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
}

/* Contact Info Section */
.contact-info-2026 {
  padding: 1rem 0;
}

.contact-text-2026 {
  font-size: 1rem;
  color: var(--page-text-light, rgba(255, 255, 255, 0.8));
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.contact-methods-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  border-color: var(--page-gold-40, rgba(212, 160, 23, 0.4));
  transform: translateX(5px);
}

.contact-method-item .method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-item .method-icon i {
  font-size: 1.25rem;
  color: var(--page-gold);
}

.contact-method-item .method-content {
  display: flex;
  flex-direction: column;
}

.contact-method-item .method-label {
  font-size: 0.8rem;
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-method-item .method-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--page-text, #fff);
}

/* Contact Form Card */
.contact-form-card-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form-2026 .form-group-2026 {
  margin-bottom: 0;
}

.contact-form-2026 .form-label-2026 {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--page-text-light, rgba(255, 255, 255, 0.9));
  margin-bottom: 0.5rem;
}

.contact-form-2026 .form-control-2026 {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius-sm);
  color: var(--page-text, #fff);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-2026 .form-control-2026:focus {
  outline: none;
  border-color: var(--page-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.contact-form-2026 .form-control-2026::placeholder {
  color: var(--page-text-hint, rgba(255, 255, 255, 0.4));
}

.contact-form-2026 select.form-control-2026 {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4A017'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  padding-right: 3rem;
}

.contact-form-2026 select.form-control-2026 option {
  background: #1a1a1a;
  color: var(--page-text, #fff);
}

.contact-form-2026 textarea.form-control-2026 {
  resize: vertical;
  min-height: 120px;
}

/* Form Check 2026 */
.form-check-2026 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check-input-2026 {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--page-glass-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-check-input-2026:checked {
  background: var(--page-gold);
  border-color: var(--page-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.form-check-label-2026 {
  font-size: 0.9rem;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.5;
}

.form-check-label-2026 a {
  color: var(--page-gold);
  text-decoration: none;
}

.form-check-label-2026 a:hover {
  text-decoration: underline;
}

/* Nos Ruchers Responsive */
@media (max-width: 991px) {
  .floating-badge-2026 {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-flex;
    margin-top: 1rem;
  }

  .rucher-card-2026 {
    padding: 1.5rem;
  }

  .service-card-2026 {
    padding: 1.5rem;
  }

  .contact-form-card-2026 {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .rucher-icon-2026 {
    width: 50px;
    height: 50px;
  }

  .rucher-icon-2026 i {
    font-size: 1.25rem;
  }

  .rucher-name-2026 {
    font-size: 1.1rem;
  }

  .service-icon-2026 {
    width: 60px;
    height: 60px;
  }

  .service-icon-2026 i {
    font-size: 1.5rem;
  }

  .service-price-2026 .price {
    font-size: 1.75rem;
  }

  .contact-method-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-method-item .method-icon {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575px) {
  .rucher-card-2026 {
    padding: 1.25rem;
  }

  .rucher-features-2026 .feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .service-card-2026 {
    padding: 1.25rem;
  }

  .service-popular-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
  }

  .contact-form-card-2026 {
    padding: 1.25rem;
  }

  .contact-form-2026 .form-control-2026 {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   CGV PAGE 2026
   ========================================================================== */

/* CGV Navigation Section */
.cgv-nav-section-2026 {
  padding: 3rem 0;
}

.cgv-nav-2026 {
  padding: 2rem;
}

.cgv-nav-title-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cgv-nav-title-2026 i {
  font-size: 1.1rem;
}

.cgv-nav-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.cgv-nav-item-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  text-decoration: none;
  transition: all 0.3s ease;
}

.cgv-nav-item-2026:hover {
  background: var(--page-gold-10, rgba(212, 160, 23, 0.1));
  border-color: var(--page-gold);
  color: var(--page-text, #fff);
  transform: translateY(-2px);
}

.cgv-nav-item-2026 .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 50%;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cgv-nav-item-2026 .nav-text {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CGV Articles */
.cgv-article-2026 {
  background: var(--page-glass);
  border: 1px solid var(--page-glass-border);
  border-radius: var(--page-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
}

.cgv-article-2026:hover {
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cgv-article-2026:last-child {
  margin-bottom: 0;
}

.cgv-article-header-2026 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cgv-article-icon-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.cgv-article-icon-2026 i {
  font-size: 1.5rem;
  color: #000;
}

.cgv-article-title-group-2026 {
  flex: 1;
}

.cgv-article-number-2026 {
  display: inline-block;
  color: var(--page-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.cgv-article-title-2026 {
  color: var(--page-text, #fff);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.cgv-article-content-2026 {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.75));
  font-size: 1rem;
  line-height: 1.8;
}

.cgv-article-content-2026 p {
  margin-bottom: 1rem;
}

.cgv-article-content-2026 p.mb-0 {
  margin-bottom: 0;
}

/* CGV Highlight Box */
.cgv-highlight-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.cgv-highlight-2026 i {
  color: var(--page-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cgv-highlight-2026 span {
  color: var(--page-text, #fff);
  font-weight: 600;
  font-size: 1rem;
}

/* CGV List */
.cgv-list-2026 {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cgv-list-item-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  color: var(--page-text-light, rgba(255, 255, 255, 0.85));
}

.cgv-list-item-2026 i {
  color: var(--page-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cgv-list-item-2026 strong {
  color: var(--page-text, #fff);
}

/* CGV Link */
.cgv-link-2026 {
  color: var(--page-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cgv-link-2026:hover {
  color: var(--page-text, #fff);
  text-decoration: underline;
}

/* CGV Contact Section (Article 12) */
.cgv-article-contact-2026 {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, var(--page-glass) 100%);
  border-color: var(--page-gold-20, rgba(212, 160, 23, 0.2));
}

.cgv-contact-grid-2026 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cgv-contact-card-2026 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cgv-contact-card-2026:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--page-gold-30, rgba(212, 160, 23, 0.3));
  transform: translateY(-3px);
}

.cgv-contact-icon-2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.cgv-contact-icon-2026 i {
  font-size: 1.25rem;
  color: #000;
}

.cgv-contact-card-2026 h4 {
  color: var(--page-text, #fff);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cgv-contact-card-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cgv-contact-card-2026 p i {
  color: var(--page-gold);
  margin-right: 0.5rem;
  width: 16px;
}

/* CGV CTA Section */
.cgv-cta-section-2026 {
  padding-bottom: 5rem;
}

.cgv-cta-2026 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
}

.cgv-cta-content-2026 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cgv-cta-icon-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.cgv-cta-icon-2026 i {
  font-size: 1.75rem;
  color: #000;
}

.cgv-cta-text-2026 h3 {
  color: var(--page-text, #fff);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cgv-cta-text-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 1rem;
  margin: 0;
}

.cgv-cta-buttons-2026 {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* CGV Responsive */
@media (max-width: 991px) {
  .cgv-nav-grid-2026 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cgv-contact-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cgv-contact-grid-2026 .cgv-contact-card-2026:last-child {
    grid-column: span 2;
  }

  .cgv-cta-2026 {
    flex-direction: column;
    text-align: center;
  }

  .cgv-cta-content-2026 {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .cgv-nav-2026 {
    padding: 1.5rem;
  }

  .cgv-nav-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cgv-nav-item-2026 {
    padding: 0.6rem 0.75rem;
  }

  .cgv-nav-item-2026 .nav-text {
    font-size: 0.8rem;
  }

  .cgv-article-2026 {
    padding: 1.5rem;
  }

  .cgv-article-header-2026 {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .cgv-article-icon-2026 {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .cgv-article-icon-2026 i {
    font-size: 1.25rem;
  }

  .cgv-article-title-2026 {
    font-size: 1.25rem;
  }

  .cgv-article-content-2026 {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .cgv-contact-grid-2026 {
    grid-template-columns: 1fr;
  }

  .cgv-contact-grid-2026 .cgv-contact-card-2026:last-child {
    grid-column: span 1;
  }

  .cgv-cta-2026 {
    padding: 1.5rem;
  }

  .cgv-cta-icon-2026 {
    width: 56px;
    height: 56px;
  }

  .cgv-cta-icon-2026 i {
    font-size: 1.5rem;
  }

  .cgv-cta-text-2026 h3 {
    font-size: 1.25rem;
  }

  .cgv-cta-buttons-2026 {
    flex-direction: column;
    width: 100%;
  }

  .cgv-cta-buttons-2026 .btn-2026 {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .cgv-nav-grid-2026 {
    grid-template-columns: 1fr;
  }

  .cgv-nav-item-2026 .nav-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .cgv-article-2026 {
    padding: 1.25rem;
  }

  .cgv-highlight-2026 {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .cgv-list-item-2026 {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }

  .cgv-contact-card-2026 {
    padding: 1.25rem;
  }

  .cgv-contact-icon-2026 {
    width: 40px;
    height: 40px;
  }

  .cgv-contact-icon-2026 i {
    font-size: 1rem;
  }

  .cgv-contact-card-2026 h4 {
    font-size: 1rem;
  }

  .cgv-contact-card-2026 p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   CONFIRMATION PAGE 2026
   ========================================================================== */

/* Hero Success Animation */
.confirmation-hero-2026 {
  padding-top: 160px;
}

.confirmation-success-icon-2026 {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.confirmation-success-icon-2026 .success-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.confirmation-success-icon-2026 .success-circle i {
  font-size: 2.5rem;
  color: var(--page-text, #fff);
}

.confirmation-success-icon-2026 .success-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  animation: confirmationPulse 2s ease-out infinite;
}

@keyframes confirmationPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Confirmation Message */
.confirmation-message-section-2026 {
  padding: 3rem 0;
}

.confirmation-message-2026 {
  text-align: center;
  padding: 2.5rem;
}

.confirmation-message-2026 .message-icon-2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.confirmation-message-2026 .message-icon-2026 i {
  font-size: 1.75rem;
  color: #000;
}

.confirmation-message-2026 h2 {
  color: var(--page-text, #fff);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.confirmation-message-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.confirmation-message-2026 p strong {
  color: var(--page-gold);
}

/* Order Summary */
.order-summary-2026 {
  padding: 0;
  overflow: hidden;
}

.order-summary-header-2026 {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary-header-2026 h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-text, #fff);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.order-summary-header-2026 h3 i {
  color: var(--page-gold);
}

/* Order Info Grid */
.order-info-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-info-item-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.order-info-item-2026 .info-label {
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-info-item-2026 .info-value {
  color: var(--page-text, #fff);
  font-size: 1rem;
  font-weight: 600;
}

.order-info-item-2026 .info-total {
  color: var(--page-gold);
  font-size: 1.1rem;
}

/* Order Status Badges */
.order-status-badge-2026,
.payment-status-badge-2026 {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.order-status-badge-2026.status-pending,
.payment-status-badge-2026.status-pending {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.order-status-badge-2026.status-confirmed {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.order-status-badge-2026.status-processing {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.order-status-badge-2026.status-shipped,
.order-status-badge-2026.status-delivered,
.payment-status-badge-2026.status-paid {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.order-status-badge-2026.status-cancelled,
.payment-status-badge-2026.status-failed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.payment-status-badge-2026.status-refunded {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* Order Items Section */
.order-items-section-2026 {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-items-section-2026 h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-text, #fff);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.order-items-section-2026 h4 i {
  color: var(--page-gold);
}

.order-items-list-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.order-item-image-2026 {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.order-item-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-placeholder-2026 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item-placeholder-2026 i {
  font-size: 1.25rem;
  color: #000;
}

.order-item-info-2026 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-item-info-2026 .item-name {
  color: var(--page-text, #fff);
  font-weight: 500;
  font-size: 0.95rem;
}

.order-item-info-2026 .item-details {
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  font-size: 0.85rem;
}

.order-item-total-2026 {
  color: var(--page-text, #fff);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Order Totals */
.order-totals-2026 {
  padding: 1.5rem 2rem;
}

.total-row-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.total-row-2026 .label {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.95rem;
}

.total-row-2026 .value {
  color: var(--page-text, #fff);
  font-size: 0.95rem;
  font-weight: 500;
}

.total-row-2026 .value.free {
  color: #22c55e;
}

.total-row-2026 .value.discount {
  color: #22c55e;
}

.total-row-2026.total-final {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-row-2026.total-final .label {
  color: var(--page-text, #fff);
  font-size: 1.1rem;
  font-weight: 600;
}

.total-row-2026.total-final .value {
  color: var(--page-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Address Cards */
.order-address-card-2026 {
  padding: 1.5rem;
  height: 100%;
}

.address-card-header-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-icon-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.address-icon-2026 i {
  font-size: 1.1rem;
  color: #000;
}

.address-card-header-2026 h4 {
  color: var(--page-text, #fff);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.address-content-2026 p {
  color: var(--page-text-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.address-content-2026 p strong {
  color: var(--page-text, #fff);
}

/* Next Steps */
.next-steps-2026 {
  padding: 1.5rem 2rem;
}

.next-steps-header-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-icon-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--page-gold) 0%, var(--page-gold-dark) 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.steps-icon-2026 i {
  font-size: 1.1rem;
  color: #000;
}

.next-steps-header-2026 h4 {
  color: var(--page-text, #fff);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.steps-timeline-2026 {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-timeline-2026::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.step-item-2026 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.step-marker-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-item-2026.step-completed .step-marker-2026 {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-color: #22c55e;
  color: var(--page-text, #fff);
}

.step-item-2026.step-completed .step-marker-2026 i {
  font-size: 1rem;
}

.step-content-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-content-2026 .step-title {
  color: var(--page-text, #fff);
  font-weight: 500;
  font-size: 0.95rem;
}

.step-content-2026 .step-desc {
  color: var(--page-text-faint, rgba(255, 255, 255, 0.5));
  font-size: 0.85rem;
}

.step-item-2026.step-completed .step-content-2026 .step-title {
  color: #22c55e;
}

/* Confirmation Actions */
.confirmation-actions-2026 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem 0;
}

/* Confirmation Contact */
.confirmation-contact-2026 {
  text-align: center;
  padding: 2rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation-contact-2026 .contact-question {
  color: var(--page-text-subtle, rgba(255, 255, 255, 0.6));
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-methods-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-method-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--page-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method-2026:hover {
  color: var(--page-text, #fff);
}

.contact-method-2026 i {
  font-size: 0.9rem;
}

.contact-separator {
  color: var(--page-text-ghost, rgba(255, 255, 255, 0.3));
}

/* Confirmation Responsive */
@media (max-width: 991px) {
  .order-info-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .confirmation-hero-2026 {
    padding-top: 140px;
  }

  .confirmation-success-icon-2026 {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .confirmation-success-icon-2026 .success-circle {
    width: 60px;
    height: 60px;
  }

  .confirmation-success-icon-2026 .success-circle i {
    font-size: 2rem;
  }

  .confirmation-success-icon-2026 .success-ring {
    width: 80px;
    height: 80px;
  }

  .confirmation-message-2026 {
    padding: 1.5rem;
  }

  .confirmation-message-2026 .message-icon-2026 {
    width: 56px;
    height: 56px;
  }

  .confirmation-message-2026 h2 {
    font-size: 1.25rem;
  }

  .order-summary-header-2026 {
    padding: 1.25rem 1.5rem;
  }

  .order-info-grid-2026 {
    grid-template-columns: 1fr 1fr;
  }

  .order-info-item-2026 {
    padding: 1rem;
  }

  .order-items-section-2026 {
    padding: 1.25rem 1.5rem;
  }

  .order-item-2026 {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .order-item-image-2026 {
    width: 50px;
    height: 50px;
  }

  .order-item-total-2026 {
    width: 100%;
    text-align: right;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .order-totals-2026 {
    padding: 1.25rem 1.5rem;
  }

  .order-address-card-2026 {
    padding: 1.25rem;
  }

  .next-steps-2026 {
    padding: 1.25rem 1.5rem;
  }

  .confirmation-actions-2026 {
    flex-direction: column;
  }

  .confirmation-actions-2026 .btn-2026 {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .order-info-grid-2026 {
    grid-template-columns: 1fr;
  }

  .order-info-item-2026 {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .order-item-image-2026 {
    width: 45px;
    height: 45px;
  }

  .order-item-info-2026 .item-name {
    font-size: 0.9rem;
  }

  .step-item-2026 {
    padding: 0.6rem 0;
  }

  .step-marker-2026 {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .steps-timeline-2026::before {
    left: 17px;
  }

  .step-content-2026 .step-title {
    font-size: 0.9rem;
  }

  .step-content-2026 .step-desc {
    font-size: 0.8rem;
  }

  .contact-methods-2026 {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-separator {
    display: none;
  }
}

/* ==========================================
   CART SIDEBAR 2026 - Glassmorphism Design
   Fully configurable via admin panel
   ========================================== */

/* CSS Variables for Cart Sidebar (can be overridden by JS config) */
:root {
  /* Sidebar Container */
  --cart-sidebar-width: 420px;
  --cart-sidebar-bg: rgba(10, 10, 10, 0.95);
  --cart-sidebar-blur: 20px;
  --cart-sidebar-border: rgba(212, 160, 23, 0.2);

  /* Header */
  --cart-header-bg: rgba(26, 26, 26, 0.9);
  --cart-title-color: #ffffff;
  --cart-text-color: rgba(255, 255, 255, 0.7);

  /* Accents */
  --cart-accent-color: #D4A017;
  --cart-price-color: #D4A017;
  --cart-overlay-color: rgba(0, 0, 0, 0.6);

  /* Buttons */
  --cart-btn-primary-bg: linear-gradient(135deg, #D4A017, #8B6914);
  --cart-btn-primary-text: #ffffff;
  --cart-btn-secondary-bg: transparent;
  --cart-btn-secondary-text: #D4A017;
  --cart-btn-secondary-border: #D4A017;

  /* Progress Bar */
  --cart-progress-bg: rgba(255, 255, 255, 0.1);
  --cart-progress-fill: linear-gradient(90deg, #8B6914, #D4A017);

  /* Items */
  --cart-item-bg: rgba(255, 255, 255, 0.05);
  --cart-item-border: rgba(255, 255, 255, 0.1);
  --cart-item-hover-bg: rgba(255, 255, 255, 0.08);

  /* Promo Banner */
  --cart-promo-bg: rgba(212, 160, 23, 0.1);
  --cart-promo-text: #D4A017;
  --cart-promo-border: rgba(212, 160, 23, 0.3);

  /* Toast */
  --cart-toast-bg: rgba(26, 26, 26, 0.95);
  --cart-toast-success: #22c55e;
  --cart-toast-error: #ef4444;
}

/* ==========================================
   Overlay
   ========================================== */
.cart-sidebar-overlay-2026 {
  position: fixed;
  inset: 0;
  background: var(--cart-overlay-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998;
}

.cart-sidebar-overlay-2026.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   Main Sidebar Container
   ========================================== */
.cart-sidebar-2026 {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--cart-sidebar-width);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cart-sidebar-bg);
  backdrop-filter: blur(var(--cart-sidebar-blur));
  -webkit-backdrop-filter: blur(var(--cart-sidebar-blur));
  border-left: 1px solid var(--cart-sidebar-border);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

/* Left position variant */
.cart-sidebar-2026.position-left {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--cart-sidebar-border);
  transform: translateX(-100%);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-sidebar-2026.open {
  transform: translateX(0);
}

/* Background Image Support */
.cart-sidebar-2026::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cart-sidebar-bg-image, none);
  background-size: cover;
  background-position: var(--cart-sidebar-bg-position, center);
  opacity: var(--cart-sidebar-bg-opacity, 0.1);
  pointer-events: none;
  z-index: -1;
}

/* Animation Variants */
.cart-sidebar-2026.animation-slide {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar-2026.animation-fade {
  transform: translateX(0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-sidebar-2026.animation-fade.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar-2026.animation-scale {
  transform: translateX(0) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar-2026.animation-scale.open {
  transform: translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.cart-sidebar-2026.animation-slide-bounce {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================
   Header
   ========================================== */
.cart-sidebar-header-2026 {
  position: sticky;
  top: 0;
  background: var(--cart-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--cart-sidebar-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cart-sidebar-title-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cart-title-color);
  margin: 0;
}

.cart-sidebar-title-2026 i {
  color: var(--cart-accent-color);
  font-size: 1.1rem;
}

.cart-sidebar-count-2026 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.5rem;
  background: var(--cart-accent-color);
  color: #0a0a0a;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-sidebar-close-2026 {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--cart-text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-sidebar-close-2026:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: var(--cart-accent-color);
  transform: rotate(90deg);
}

/* ==========================================
   Promo Banner
   ========================================== */
.cart-promo-banner-2026 {
  background: var(--cart-promo-bg);
  border: 1px solid var(--cart-promo-border);
  border-left: none;
  border-right: none;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--cart-promo-text);
  font-size: 0.875rem;
  font-weight: 500;
  animation: promoPulse 2s ease-in-out infinite;
}

.cart-promo-banner-2026 i {
  font-size: 1rem;
  animation: promoIcon 1s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { background: var(--cart-promo-bg); }
  50% { background: rgba(212, 160, 23, 0.15); }
}

@keyframes promoIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ==========================================
   Free Shipping Progress Bar
   ========================================== */
.cart-free-shipping-2026 {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cart-sidebar-border);
  background: rgba(255, 255, 255, 0.02);
}

.cart-free-shipping-text-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--cart-text-color);
  font-size: 0.875rem;
}

.cart-free-shipping-text-2026 i {
  color: var(--cart-accent-color);
}

.cart-free-shipping-text-2026 strong {
  color: var(--cart-accent-color);
}

.cart-free-shipping-bar-2026 {
  height: 6px;
  background: var(--cart-progress-bg);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.cart-free-shipping-fill-2026 {
  height: 100%;
  background: var(--cart-progress-fill);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cart-free-shipping-fill-2026::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

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

.cart-free-shipping-reached-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 500;
}

.cart-free-shipping-reached-2026 i {
  font-size: 1rem;
}

/* ==========================================
   Content (Scrollable)
   ========================================== */
.cart-sidebar-content-2026 {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--cart-accent-color) transparent;
}

.cart-sidebar-content-2026::-webkit-scrollbar {
  width: 6px;
}

.cart-sidebar-content-2026::-webkit-scrollbar-track {
  background: transparent;
}

.cart-sidebar-content-2026::-webkit-scrollbar-thumb {
  background: var(--cart-accent-color);
  border-radius: 10px;
}

.cart-sidebar-content-2026::-webkit-scrollbar-thumb:hover {
  background: var(--page-gold-light, #F5E6B3);
}

/* ==========================================
   Cart Items
   ========================================== */
.cart-sidebar-items-2026 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-sidebar-item-2026 {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--cart-item-bg);
  border: 1px solid var(--cart-item-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cart-sidebar-item-2026:hover {
  background: var(--cart-item-hover-bg);
  border-color: var(--cart-accent-color);
  transform: translateX(-4px);
}

.cart-sidebar-item-image-2026 {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.cart-sidebar-item-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-sidebar-item-2026:hover .cart-sidebar-item-image-2026 img {
  transform: scale(1.1);
}

.cart-sidebar-item-placeholder-2026 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cart-accent-color), var(--page-gold-dark, #8B6914));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.cart-sidebar-item-info-2026 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.cart-sidebar-item-name-2026 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-sidebar-item-variant-2026 {
  font-size: 0.75rem;
  color: var(--cart-text-color);
  margin-bottom: 0.5rem;
}

.cart-sidebar-item-price-2026 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cart-price-color);
}

.cart-sidebar-item-actions-2026 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-sidebar-item-remove-2026 {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 50%;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-sidebar-item-remove-2026:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  transform: scale(1.1);
}

/* Quantity Controls */
.cart-sidebar-quantity-2026 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.25rem;
}

.cart-sidebar-qty-btn-2026 {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--cart-text-color);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cart-sidebar-qty-btn-2026:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cart-accent-color);
}

.cart-sidebar-qty-btn-2026:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-sidebar-qty-value-2026 {
  min-width: 30px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================
   Empty Cart
   ========================================== */
.cart-sidebar-empty-2026 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  height: 100%;
}

.cart-sidebar-empty-icon-2026 {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.cart-sidebar-empty-icon-2026 i {
  font-size: 2.5rem;
  color: var(--cart-text-color);
}

.cart-sidebar-empty-title-2026 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cart-sidebar-empty-text-2026 {
  font-size: 0.9rem;
  color: var(--cart-text-color);
  margin-bottom: 1.5rem;
}

.cart-sidebar-empty-btn-2026 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--cart-btn-primary-bg);
  color: var(--cart-btn-primary-text);
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cart-sidebar-empty-btn-2026:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

/* ==========================================
   Upsell Section
   ========================================== */
.cart-sidebar-upsell-2026 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cart-sidebar-border);
}

.cart-sidebar-upsell-title-2026 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-sidebar-upsell-title-2026 i {
  color: var(--cart-accent-color);
}

.cart-sidebar-upsell-grid-2026 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.cart-sidebar-upsell-item-2026 {
  background: var(--cart-item-bg);
  border: 1px solid var(--cart-item-border);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-sidebar-upsell-item-2026:hover {
  border-color: var(--cart-accent-color);
  background: var(--cart-item-hover-bg);
  transform: translateY(-2px);
}

.cart-sidebar-upsell-image-2026 {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 0.5rem;
}

.cart-sidebar-upsell-image-2026 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-sidebar-upsell-name-2026 {
  font-size: 0.75rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-sidebar-upsell-price-2026 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cart-accent-color);
}

/* ==========================================
   Recently Viewed
   ========================================== */
.cart-sidebar-recently-2026 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cart-sidebar-border);
}

.cart-sidebar-recently-title-2026 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cart-text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-sidebar-recently-title-2026 i {
  color: var(--cart-accent-color);
}

.cart-sidebar-recently-scroll-2026 {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.cart-sidebar-recently-scroll-2026::-webkit-scrollbar {
  display: none;
}

.cart-sidebar-recently-item-2026 {
  flex-shrink: 0;
  width: 70px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-sidebar-recently-item-2026:hover {
  transform: scale(1.05);
}

.cart-sidebar-recently-item-2026 img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.cart-sidebar-recently-item-2026:hover img {
  border-color: var(--cart-accent-color);
}

/* ==========================================
   Footer (Totals + Actions)
   ========================================== */
.cart-sidebar-footer-2026 {
  position: sticky;
  bottom: 0;
  background: var(--cart-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--cart-sidebar-border);
  padding: 1.5rem;
}

/* Wishlist Link */
.cart-sidebar-wishlist-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--cart-text-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart-sidebar-wishlist-2026:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cart-accent-color);
  border-color: var(--cart-accent-color);
}

.cart-sidebar-wishlist-2026 i {
  color: var(--cart-accent-color);
}

/* Totals */
.cart-sidebar-totals-2026 {
  margin-bottom: 1rem;
}

.cart-sidebar-total-row-2026 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.cart-sidebar-total-row-2026 .label {
  color: var(--cart-text-color);
}

.cart-sidebar-total-row-2026 .value {
  color: #ffffff;
  font-weight: 500;
}

.cart-sidebar-total-row-2026.discount .value {
  color: #22c55e;
}

.cart-sidebar-total-row-2026.shipping-free .value {
  color: #22c55e;
  font-weight: 600;
}

.cart-sidebar-total-row-2026.grand-total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--cart-sidebar-border);
}

.cart-sidebar-total-row-2026.grand-total .label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.cart-sidebar-total-row-2026.grand-total .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cart-price-color);
}

/* Action Buttons */
.cart-sidebar-actions-2026 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-sidebar-btn-primary-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--cart-btn-primary-bg);
  color: var(--cart-btn-primary-text);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cart-sidebar-btn-primary-2026:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.cart-sidebar-btn-secondary-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--cart-btn-secondary-bg);
  color: var(--cart-btn-secondary-text);
  border: 1px solid var(--cart-btn-secondary-border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cart-sidebar-btn-secondary-2026:hover {
  background: rgba(212, 160, 23, 0.1);
}

/* Quick Checkout */
.cart-sidebar-quick-checkout-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: transparent;
  border: none;
  color: var(--cart-text-color);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-sidebar-quick-checkout-2026:hover {
  color: var(--cart-accent-color);
}

.cart-sidebar-quick-checkout-2026 i {
  font-size: 1rem;
}

/* ==========================================
   Toast Notification
   ========================================== */
.cart-toast-2026 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--cart-toast-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-toast-2026.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast-2026.success {
  border-color: rgba(34, 197, 94, 0.3);
}

.cart-toast-2026.success .cart-toast-icon-2026 {
  color: var(--cart-toast-success);
}

.cart-toast-2026.error {
  border-color: rgba(239, 68, 68, 0.3);
}

.cart-toast-2026.error .cart-toast-icon-2026 {
  color: var(--cart-toast-error);
}

.cart-toast-icon-2026 {
  font-size: 1.25rem;
}

.cart-toast-content-2026 {
  flex: 1;
}

.cart-toast-title-2026 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.125rem;
}

.cart-toast-message-2026 {
  font-size: 0.8rem;
  color: var(--cart-text-color);
}

.cart-toast-close-2026 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--cart-text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-toast-close-2026:hover {
  color: #ffffff;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  .cart-sidebar-2026 {
    width: 100%;
    max-width: 100%;
  }

  .cart-sidebar-2026.position-left {
    width: 100%;
  }

  .cart-sidebar-header-2026 {
    padding: 1rem 1.25rem;
  }

  .cart-sidebar-content-2026 {
    padding: 1.25rem;
  }

  .cart-sidebar-footer-2026 {
    padding: 1.25rem;
  }

  .cart-sidebar-item-2026 {
    padding: 0.875rem;
  }

  .cart-sidebar-item-image-2026 {
    width: 60px;
    height: 60px;
  }

  .cart-sidebar-upsell-grid-2026 {
    grid-template-columns: 1fr 1fr;
  }

  .cart-toast-2026 {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .cart-sidebar-title-2026 {
    font-size: 1.1rem;
  }

  .cart-sidebar-item-name-2026 {
    font-size: 0.85rem;
  }

  .cart-sidebar-item-price-2026 {
    font-size: 0.9rem;
  }

  .cart-sidebar-btn-primary-2026 {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ==========================================
   Mini Cart Preview (Hover)
   ========================================== */
.cart-mini-preview-2026 {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--cart-sidebar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cart-sidebar-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.cart-mini-preview-2026.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-mini-preview-header-2026 {
  padding: 1rem;
  border-bottom: 1px solid var(--cart-sidebar-border);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.cart-mini-preview-items-2026 {
  max-height: 200px;
  overflow-y: auto;
  padding: 0.75rem;
}

.cart-mini-preview-item-2026 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cart-mini-preview-item-2026:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cart-mini-preview-item-2026 img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-mini-preview-item-info-2026 {
  flex: 1;
}

.cart-mini-preview-item-name-2026 {
  font-size: 0.8rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-mini-preview-item-price-2026 {
  font-size: 0.75rem;
  color: var(--cart-accent-color);
}

.cart-mini-preview-footer-2026 {
  padding: 1rem;
  border-top: 1px solid var(--cart-sidebar-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-mini-preview-total-2026 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cart-accent-color);
}

.cart-mini-preview-btn-2026 {
  padding: 0.5rem 1rem;
  background: var(--cart-btn-primary-bg);
  color: var(--cart-btn-primary-text);
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-mini-preview-btn-2026:hover {
  transform: scale(1.05);
}
