/*
Theme Name: Radiant Agrovet
Author: Radiant Agrovet
Description: Premium Animal Health & Nutrition - E-commerce Website
Version: 2.0
*/

/*------------------------------------*\
    Table of Contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:
1. CSS VARIABLES & DARK MODE
2. BASE & TYPOGRAPHY
3. TOP BAR
4. NAVBAR & MEGA MENU
5. HERO SECTION
6. CATEGORY GRID
7. FEATURED PRODUCTS
8. ABOUT SECTION
9. NEWS SECTION
10. FOOTER
11. UTILITIES & COMPONENTS
12. RESPONSIVE BREAKPOINTS
13. DARK MODE OVERRIDES
14. ANIMATIONS

/*--------------------------------------------------------------*/

/*======================================
1. CSS VARIABLES & DARK MODE
======================================*/

:root {
  /* Brand Colors */
  --primary-color: #f7941d;
  --primary-dark: #e6830a;
  --primary-light: #ffa94d;
  --primary-rgb: 247, 148, 29;
  --secondary-color: #1e3d2f;
  --secondary-dark: #152b22;
  --secondary-light: #2a5a42;
  --secondary-rgb: 30, 61, 47;

  /* Neutral Colors */
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-bg: #1a1a2e;
  --dark-surface: #16213e;
  --dark-card: #0f3460;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --border-color: #e2e8f0;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 8px 30px rgba(var(--primary-rgb), 0.25);
  --shadow-secondary: 0 8px 30px rgba(var(--secondary-rgb), 0.25);

  /* Borders & Radius */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-pill: 50rem;
  --radius-circle: 50%;

  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3.5rem 0;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.25rem;
  --font-size-5xl: 4rem;

  /* Navbar */
  --navbar-height: 80px;
  --topbar-height: 42px;

  /* Dark Mode Variables */
  --dark-mode-bg: #0d1117;
  --dark-mode-surface: #161b22;
  --dark-mode-card: #1c2333;
  --dark-mode-border: #30363d;
  --dark-mode-text: #e6edf3;
  --dark-mode-text-secondary: #8b949e;
  --dark-mode-hover: #21262d;
}

/*======================================
2. BASE & TYPOGRAPHY
======================================*/

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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dark Mode Body */
[data-theme="dark"] body {
  background-color: var(--dark-mode-bg);
  color: var(--dark-mode-text);
}

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

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

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

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

/* Section Titles */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 2px;
  background: var(--primary-color);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

[data-theme="dark"] .section-title {
  color: var(--dark-mode-text);
}

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

[data-theme="dark"] .section-subtitle {
  color: var(--dark-mode-text-secondary);
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn-primary-custom:hover {
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--secondary-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

[data-theme="dark"] .btn-secondary-custom {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary-custom:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary);
}

[data-theme="dark"] .btn-secondary-custom:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/*======================================
3. TOP BAR
======================================*/

.top-bar {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-sm);
  padding: 0.6rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
}

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

.top-bar .top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-bar .top-bar-left i {
  color: var(--primary-color);
  margin-right: 0.4rem;
  font-size: 0.8rem;
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar .social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
}

.top-bar .dark-mode-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  margin-left: 0.5rem;
}

.top-bar .dark-mode-toggle:hover {
  background: var(--primary-color);
  color: var(--white);
}

.top-bar .top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.25rem;
}

/*======================================
4. NAVBAR & MEGA MENU
======================================*/

.main-navbar {
  background: var(--white);
  padding: 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  height: var(--navbar-height);
  z-index: 1050;
}

[data-theme="dark"] .main-navbar {
  background: var(--dark-mode-surface);
  border-bottom-color: var(--dark-mode-border);
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  height: var(--navbar-height);
}

.main-navbar .navbar-brand img {
  height: 80px;
  width: auto;
}

.main-navbar .navbar-brand span {
  line-height: 1.1;
}

.main-navbar .navbar-brand .brand-highlight {
  color: var(--primary-color);
}

.navbar-main-nav .nav-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 1.15rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-fast);
}

[data-theme="dark"] .navbar-main-nav .nav-link {
  color: var(--dark-mode-text);
}

.navbar-main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-main-nav .nav-link:hover,
.navbar-main-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-main-nav .nav-link:hover::after,
.navbar-main-nav .nav-link.active::after {
  width: 70%;
}

/* Mega Dropdown */
.dropdown-mega {
  position: static;
}

.dropdown-mega .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  border: none;
  border-top: 3px solid var(--primary-color);
  border-radius: 0;
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  animation: megaMenuFade 0.25s ease;
}

[data-theme="dark"] .dropdown-mega .dropdown-menu {
  background: var(--dark-mode-surface);
  border-top-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.mega-menu-header {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

[data-theme="dark"] .mega-menu-header {
  color: var(--dark-mode-text);
}

.mega-segment {
  margin-bottom: 0.75rem;
}

.mega-segment-title {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-theme="dark"] .mega-segment-title {
  color: var(--primary-color);
}

.mega-segment-title i {
  color: var(--primary-color);
  font-size: 1rem;
}

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

.mega-sub-links li {
  margin-bottom: 0.35rem;
}

.mega-sub-links a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}

[data-theme="dark"] .mega-sub-links a {
  color: var(--dark-mode-text-secondary);
}

.mega-sub-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.mega-sub-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.mega-sub-links a:hover::before {
  width: 8px;
}

.mega-menu-promo {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mega-menu-promo h5 {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mega-menu-promo p {
  font-size: var(--font-size-sm);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.mega-menu-promo .btn-sm-custom {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
}

.mega-menu-promo .btn-sm-custom:hover {
  background: var(--white);
  color: var(--secondary-color);
}

/* Mobile Nav Dark Mode Toggle */
.mobile-dark-toggle {
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

[data-theme="dark"] .mobile-dark-toggle {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--dark-mode-text);
  border-color: var(--dark-mode-border);
}

/*======================================
5. HERO SECTION
======================================*/

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  min-height: 600px;
  display: flex;
  align-items: center;
}

[data-theme="dark"] .hero-section {
  background: var(--dark-mode-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
}

.hero-content {
  padding: 4rem 0 4rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

[data-theme="dark"] .hero-badge {
  background: rgba(var(--primary-rgb), 0.12);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .hero-title {
  color: var(--dark-mode-text);
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-description {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

[data-theme="dark"] .hero-description {
  color: var(--dark-mode-text-secondary);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .hero-stat-number {
  color: var(--primary-color);
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 2rem;
  min-height: 600px;
}

.hero-visual-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.08));
  z-index: 0;
}

[data-theme="dark"] .hero-visual-bg {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.12));
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(145deg, var(--secondary-color), var(--secondary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image-placeholder i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero-image-placeholder span {
  font-size: var(--font-size-sm);
  font-weight: 500;
  opacity: 0.7;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatBounce 3s ease-in-out infinite;
}

[data-theme="dark"] .hero-floating-card {
  background: var(--dark-mode-card);
}

.hero-floating-card.card-top {
  top: 15%;
  right: 0;
  animation-delay: 0s;
}

.hero-floating-card.card-bottom {
  bottom: 15%;
  left: 0;
  animation-delay: 1.5s;
}

.hero-floating-card .floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-floating-card .floating-text {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero-floating-card .floating-text small {
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

[data-theme="dark"] .hero-floating-card .floating-text {
  color: var(--dark-mode-text);
}

[data-theme="dark"] .hero-floating-card .floating-text small {
  color: var(--dark-mode-text-secondary);
}

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

/*======================================
6. CATEGORY GRID
======================================*/

.category-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

[data-theme="dark"] .category-section {
  background: var(--dark-mode-bg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 3rem 2rem;
  transition: var(--transition-slow);
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--white);
  height: 100%;
}

[data-theme="dark"] .category-card {
  background: var(--dark-mode-card);
  border-color: var(--dark-mode-border);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-card-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.08), rgba(var(--secondary-rgb), 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  font-size: 2.25rem;
  color: var(--secondary-color);
}

[data-theme="dark"] .category-card-icon {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
}

.category-card:hover .category-card-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.category-card h4 {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .category-card h4 {
  color: var(--dark-mode-text);
}

.category-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

[data-theme="dark"] .category-card p {
  color: var(--dark-mode-text-secondary);
}

.category-card .category-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.category-card:hover .category-link {
  gap: 0.65rem;
}

.category-card .category-link i {
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

/*======================================
7. FEATURED PRODUCTS
======================================*/

.featured-section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

[data-theme="dark"] .featured-section {
  background: var(--dark-mode-surface);
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f7941d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

[data-theme="dark"] .featured-section::before {
  display: none;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

[data-theme="dark"] .product-card {
  background: var(--dark-mode-card);
  border-color: var(--dark-mode-border);
}

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

/* Featured Badge */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-badge i {
  font-size: 0.65rem;
}

.product-card-img {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, var(--light-bg), var(--light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[data-theme="dark"] .product-card-img {
  background: linear-gradient(135deg, var(--dark-mode-bg), var(--dark-mode-hover));
}

.product-card-img i {
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.2;
  transition: var(--transition);
}

[data-theme="dark"] .product-card-img i {
  color: var(--dark-mode-text-secondary);
  opacity: 0.15;
}

.product-card:hover .product-card-img i {
  opacity: 0.35;
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card-overlay .btn-view {
  background: var(--white);
  color: var(--secondary-color);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
}

.product-card-overlay .btn-view:hover {
  background: var(--primary-color);
  color: var(--white);
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

[data-theme="dark"] .product-card-title {
  color: var(--dark-mode-text);
}

.product-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

[data-theme="dark"] .product-card-desc {
  color: var(--dark-mode-text-secondary);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .product-card-footer {
  border-top-color: var(--dark-mode-border);
}

.product-price {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--secondary-color);
}

[data-theme="dark"] .product-price {
  color: var(--primary-color);
}

.product-price small {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 400;
}

.product-card-footer .btn-cart {
  background: var(--secondary-color);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card-footer .btn-cart:hover {
  background: var(--primary-color);
  transform: translateY(-1px);
}

.product-card-footer .btn-cart i {
  font-size: 0.75rem;
}

/*======================================
8. ABOUT SECTION
======================================*/

.about-section {
  padding: var(--section-padding);
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.05);
  pointer-events: none;
}

.about-section .section-label {
  color: var(--primary-color);
}

.about-section .section-label::before {
  background: var(--primary-color);
}

.about-section .section-title {
  color: var(--white);
}

.about-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.about-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-md);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(var(--primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature-item:hover .about-feature-icon {
  background: var(--primary-color);
  color: var(--white);
}

.about-feature-text h6 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.about-feature-text p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-visual-placeholder {
  width: 100%;
  max-width: 480px;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-visual-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.about-visual-placeholder span {
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.about-counter {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-counter.counter-1 {
  bottom: 10%;
  left: -5%;
}

.about-counter.counter-2 {
  top: 10%;
  right: -5%;
}

.about-counter-number {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.about-counter-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/*======================================
9. NEWS SECTION
======================================*/

.news-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

[data-theme="dark"] .news-section {
  background: var(--dark-mode-bg);
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .news-card {
  background: var(--dark-mode-card);
  border-color: var(--dark-mode-border);
}

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

.news-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card-img i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.news-card-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.news-card-date span {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 800;
}

.news-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-tag {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

[data-theme="dark"] .news-card-title {
  color: var(--dark-mode-text);
}

.news-card-excerpt {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

[data-theme="dark"] .news-card-excerpt {
  color: var(--dark-mode-text-secondary);
}

.news-card-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.news-card-link:hover {
  gap: 0.65rem;
}

.news-card-link i {
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

/*======================================
10. FOOTER
======================================*/

.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-light), var(--primary-color));
}

.footer-main {
  padding: 4rem 0 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand .brand-highlight {
  color: var(--primary-color);
}

.footer-brand img {
  height: 48px;
  width: auto;
}

.footer-desc {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--primary-color);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  width: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-newsletter {
  margin-top: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-form button {
  padding: 0.7rem 1.25rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-text {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-text a {
  color: var(--primary-color);
}

/*======================================
11. UTILITIES & COMPONENTS
======================================*/

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-primary);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Backdrop overlay for mobile */
.navbar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

/*======================================
12. RESPONSIVE BREAKPOINTS
======================================*/

/* Large screens and below */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-image-placeholder {
    width: 320px;
    height: 380px;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }
}

/* Medium screens / Tablets */
@media (max-width: 991.98px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  .top-bar .top-bar-left {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding: 3rem 0 2rem;
    order: 1;
  }

  .hero-visual {
    order: 0;
    min-height: 350px;
    padding: 2rem;
  }

  .hero-image-placeholder {
    width: 280px;
    height: 320px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-floating-card {
    display: none;
  }

  .about-visual {
    margin-top: 2.5rem;
  }

  .about-counter {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .mega-menu-promo {
    margin-top: 1.5rem;
    height: auto;
  }
}

/* Small screens / Phones */
@media (max-width: 767.98px) {
  :root {
    --section-padding: 3rem 0;
    --navbar-height: 68px;
  }

  .top-bar {
    display: none;
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: var(--font-size-xl);
  }

  .hero-image-placeholder {
    width: 240px;
    height: 280px;
  }

  .category-card {
    padding: 2rem 1.5rem;
  }

  .category-card-icon {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }

  .section-title {
    font-size: var(--font-size-xl);
  }

  .product-card-img {
    height: 200px;
  }

  .about-visual-placeholder {
    height: 300px;
  }

  .footer-main {
    padding: 3rem 0 2rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-newsletter-form input {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
  }

  .footer-newsletter-form button {
    border-radius: var(--radius-sm);
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: var(--font-size-xs);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary-custom,
  .hero-cta .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/*======================================
13. DARK MODE SPECIFIC OVERRIDES
======================================*/

/* Dark mode form controls */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
  background-color: var(--dark-mode-card);
  border-color: var(--dark-mode-border);
  color: var(--dark-mode-text);
}

[data-theme="dark"] .form-control::placeholder {
  color: var(--dark-mode-text-secondary);
}

[data-theme="dark"] .form-control:focus {
  background-color: var(--dark-mode-card);
  border-color: var(--primary-color);
  color: var(--dark-mode-text);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
}

/* Dark mode offcanvas */
[data-theme="dark"] .offcanvas {
  background-color: var(--dark-mode-surface);
  color: var(--dark-mode-text);
}

[data-theme="dark"] .offcanvas .btn-close {
  filter: invert(1);
}

/* Dark mode dropdowns */
[data-theme="dark"] .dropdown-menu {
  background-color: var(--dark-mode-surface);
  border-color: var(--dark-mode-border);
}

[data-theme="dark"] .dropdown-item {
  color: var(--dark-mode-text);
}

[data-theme="dark"] .dropdown-item:hover {
  background-color: var(--dark-mode-hover);
}

/*======================================
14. ANIMATIONS
======================================*/

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll-triggered animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/*======================================
15. PRODUCT DETAIL PAGE
======================================*/

.product-detail-main-img {
  cursor: zoom-in;
  transition: var(--transition);
}

[data-theme="dark"] .product-detail-main-img {
  background: var(--dark-mode-bg);
}

.product-detail-thumb {
  transition: var(--transition);
}

.product-detail-thumb:hover {
  opacity: 1 !important;
  border-color: var(--primary-color) !important;
}

.product-detail-thumb.active {
  opacity: 1 !important;
  border-color: var(--primary-color) !important;
}

@media (max-width: 767.98px) {
  .product-detail-main-img {
    height: 300px;
  }
}

/*======================================
16. CART SIDEBAR
======================================*/

#cartSidebar {
  z-index: 1050;
}

#cartSidebar .offcanvas-header {
  background: var(--white);
}

[data-theme="dark"] #cartSidebar .offcanvas-header {
  background: var(--dark-mode-surface);
}

#cartSidebar .offcanvas-body {
  background: var(--white);
}

[data-theme="dark"] #cartSidebar .offcanvas-body {
  background: var(--dark-mode-surface);
}

#cartSidebar button[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

/*======================================
16. CUSTOMER AUTH & DASHBOARD
======================================*/

.about-hero-section {
  position: relative;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--light-bg), transparent);
}

[data-theme="dark"] .about-hero-section::after {
  background: linear-gradient(to top, var(--dark-mode-bg), transparent);
}

/* Customer stat cards hover */
.reveal[style*="padding:1.5rem"] {
  transition: var(--transition);
}

.reveal[style*="padding:1.5rem"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/*======================================
17. CHECKOUT PAGE
======================================*/

/* Sticky order summary on checkout */
@media (min-width: 992px) {
  .checkout-summary-sticky {
    position: sticky;
    top: 100px;
  }
}

/*======================================
18. ORDER SUCCESS PAGE
======================================*/

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/*======================================
19. RESPONSIVE OVERRIDES FOR NEW PAGES
======================================*/

@media (max-width: 991.98px) {
  .about-hero-section h1 {
    font-size: var(--font-size-2xl) !important;
  }

  .about-hero-section .col-lg-4 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .about-hero-section {
    padding: 2.5rem 0 !important;
  }

  .about-hero-section h1 {
    font-size: var(--font-size-xl) !important;
  }
}
