/** Shopify CDN: Minification failed

Line 2718:0 Unexpected "}"

**/
/**
 * Eagle Reborn ENTERPRISE Theme
 * Version: 5.0 - Complete Enterprise Redesign
 * Color Scheme: Eagle Reborn Blue + Orange Energy CTAs
 */

/* =============================================
   CSS VARIABLES - Enterprise Color Scheme
   ============================================= */
:root {
  /* Eagle Reborn Brand Colors - VIBRANT GRADIENTS */
  --primary-blue: #00B4D8;
  --primary-blue-dark: #0096C7;
  --primary-blue-darker: #0077B6;
  --primary-blue-light: rgba(0, 180, 216, 0.1);
  
  /* Gradient CTAs (matching logo) */
  --cta-gradient-start: #00B4D8;
  --cta-gradient-end: #0077B6;
  --cta-blue-hover: #0096C7;
  
  /* Darker Header/Footer */
  --header-dark: #1A1A1A;
  --header-darker: #0D0D0D;
  --footer-dark: #2C2C2C;
  
  /* Status Colors */
  --success-green: #27AE60;
  --warning-amber: #F39C12;
  --error-red: #E53935;
  
  /* Neutrals */
  --text-dark: #2C3E50;
  --text-medium: #5A6C7D;
  --text-light: #95A5A6;
  --border-color: #E1E8ED;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
  
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  
  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Skip to content - hidden but accessible for screen readers */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999999;
  background: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
}

.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =============================================
   CONTAINER & LAYOUT
   ============================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

/* =============================================
   PROFESSIONAL HEADER - Clean & Modern
   ============================================= */
.site-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Main Header */
.header-main {
  padding: 1rem 0 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.header-main-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: calc(-1 * var(--container-padding) - 0.9rem);
  /* Width controlled by theme settings inline style */
}

.site-logo a {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.site-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  vertical-align: middle;
  display: block;
}

.site-logo .logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.site-logo a:hover .logo-text {
  color: var(--primary-blue);
}

.drawer-logo .logo-text {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* Placeholder text for when no logo is uploaded in Image mode */
.logo-text-placeholder {
  opacity: 0.5;
  font-style: italic;
  font-size: var(--font-size-base) !important;
  font-weight: 500 !important;
}

/* Centered Search Bar */
.header-search-centered {
  flex: 1;
  max-width: 600px;
  position: relative;
  margin: 0 auto;
}

.search-input-main {
  width: 100%;
  padding: 0.875rem 3.5rem 0.875rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  outline: none;
  transition: all var(--transition-fast);
  background: var(--bg-light);
}

.search-input-main:focus {
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.search-button-main {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.625rem 1rem;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button-main:hover {
  background: var(--primary-blue-dark);
}

/* Predictive Search Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-dark);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.highlighted {
  background-color: var(--bg-light);
}

.search-result-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--bg-light);
}

.search-result-details {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-price {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
}

.search-result-availability {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  margin-left: 0.5rem;
}

.search-loading {
  padding: 2rem;
  text-align: center;
  color: var(--text-medium);
}

.search-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-medium);
}

.search-view-all {
  padding: 0.875rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary-blue);
  border-top: 2px solid var(--border-color);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.search-view-all:hover {
  background-color: var(--primary-blue-light);
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.utility-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
}

.utility-link:hover {
  color: var(--primary-blue);
  background: var(--bg-light);
}

.utility-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.utility-label {
  font-size: 0.7rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.utility-value {
  font-weight: 600;
  color: var(--text-dark);
}

.utility-link-simple {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.utility-link-simple:hover {
  color: var(--primary-blue);
  background: var(--bg-light);
}

.utility-link-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
  position: relative;
}

.utility-link-cart:hover {
  color: var(--primary-blue);
  background: var(--bg-light);
}

.cart-count-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-blue);
  color: white;
  font-size: 0.65rem;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* Navigation Bar */
.header-nav {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 0;
}

.nav-all-items {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-all-items:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.main-nav a {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a:hover {
  color: var(--primary-blue);
}

.main-nav a.nav-featured {
  color: var(--primary-blue);
  font-weight: 600;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.nav-featured::after {
  transform: scaleX(1);
}

/* =============================================
   MENU DRAWER (Side Navigation)
   ============================================= */
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.menu-drawer.active {
  visibility: visible;
  opacity: 1;
}

.menu-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.menu-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 360px;
  max-width: 85vw;
  background: white;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.menu-drawer.active .menu-drawer-content {
  transform: translateX(0);
}

/* Drawer Header */
.menu-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: white;
  flex-shrink: 0;
}

.drawer-logo {
  max-width: 140px;
}

.drawer-logo img {
  max-height: 40px;
  width: auto;
}

.menu-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-medium);
}

.menu-drawer-close:hover {
  background: var(--text-dark);
  color: white;
}

/* Drawer Body */
.menu-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

/* Featured Banner in Drawer */
.drawer-featured-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  height: 120px;
  background: linear-gradient(135deg, #E91E63, #F44336);
}

.drawer-featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.9), rgba(0, 119, 182, 0.85));
  color: white;
}

.drawer-banner-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.drawer-banner-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: white;
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.drawer-banner-btn:hover {
  background: var(--text-dark);
  color: white;
  transform: translateX(4px);
}

/* Drawer Sections */
.drawer-section {
  margin-bottom: 2rem;
}

.drawer-section-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--font-size-sm);
}

.drawer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu-list li {
  margin-bottom: 0.5rem;
}

.drawer-menu-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.drawer-menu-list a:hover {
  color: var(--primary-blue);
  padding-left: 0.5rem;
}

/* Expandable Menu Items */
.drawer-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem !important;
  background: var(--bg-light);
  margin-bottom: 0.5rem;
  border-radius: var(--radius-md);
}

.drawer-menu-item:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding-left: 1rem !important;
}

.drawer-menu-item svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.drawer-menu-item:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.drawer-see-all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem !important;
  color: var(--primary-blue);
  font-weight: 600;
  background: var(--primary-blue-light);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.drawer-see-all:hover {
  background: var(--primary-blue);
  color: white;
  padding-left: 1rem !important;
}

.drawer-see-all svg {
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.drawer-see-all:hover svg {
  transform: translateY(2px);
}

/* Footer Section */
.drawer-section-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.drawer-section-footer .drawer-menu-item {
  background: white;
  border: 1px solid var(--border-color);
}

.drawer-section-footer .drawer-menu-item:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.drawer-section-footer .drawer-menu-item svg {
  margin-right: 0.75rem;
}

/* =============================================
   LOCATION SELECTOR MODAL
   ============================================= */
.location-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.location-modal-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease;
}

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

.location-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-modal-header h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.location-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-medium);
}

.location-modal-close:hover {
  background: var(--text-dark);
  color: white;
}

.location-modal-body {
  padding: 2rem;
}

.location-modal-desc {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-base);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.location-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
  position: relative;
}

.location-option svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  transition: all var(--transition-fast);
}

.location-option:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location-option:hover svg {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.location-flag {
  font-size: 2.5rem;
  line-height: 1;
}

.location-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

/* Back Button in Location Modal */
.location-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.location-back-btn:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.location-back-btn svg {
  flex-shrink: 0;
}

/* City List Styling */
.city-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.city-list::-webkit-scrollbar {
  width: 6px;
}

.city-list::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.city-list::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}

.city-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

.city-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
  text-align: left;
}

.city-option:hover {
  background: var(--primary-blue-light);
  border-color: var(--primary-blue);
  padding-left: 1.5rem;
}

.city-option svg {
  flex-shrink: 0;
  opacity: 0.3;
  transition: all var(--transition-fast);
}

.city-option:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.city-name {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-dark);
}

.location-screen {
  width: 100%;
}

/* Location Notification Toast */
.location-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--success-green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10001;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  font-weight: 500;
  font-size: var(--font-size-base);
}

.location-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.location-notification svg {
  flex-shrink: 0;
}

/* =============================================
   FLASH SALE BANNER
   ============================================= */
.flash-sale-banner {
  background: linear-gradient(90deg, var(--cta-blue), #FF8C42);
  color: white;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
}

.flash-sale-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.flash-sale-text {
  font-size: var(--font-size-lg);
}

.promo-code-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
}

.promo-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: var(--font-size-lg);
}

.copy-code-btn {
  padding: 0.5rem 1rem;
  background: white;
  color: var(--cta-blue);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
}

.copy-code-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* =============================================
   TRUST BAR (Below Header)
   ============================================= */
.trust-bar {
  background: var(--bg-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .trust-items {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
}

.trust-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.trust-text p {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
}

/* =============================================
   HERO SECTION - Enterprise Style
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23ffffff" fill-opacity="0.03" width="200" height="200"/><path stroke="%23ffffff" stroke-opacity="0.1" stroke-width="1" d="M0,100 L200,100 M100,0 L100,200"/></svg>');
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: var(--font-size-xl);
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature svg {
  flex-shrink: 0;
}

/* Shop Our Range Widget */
.shop-range-widget {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.shop-range-widget h3 {
  color: var(--text-dark);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.widget-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  background: white;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.widget-select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.widget-search-btn {
  width: 100%;
  padding: 1rem;
  background: var(--cta-blue);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: all var(--transition-fast);
}

.widget-search-btn:hover {
  background: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   CATEGORY GRID - Circular Icons
   ============================================= */
.category-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-medium);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.category-card {
  text-align: center;
  transition: transform var(--transition-base);
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-icon-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.category-card:hover .category-icon-wrapper {
  background: var(--primary-blue-light);
  box-shadow: var(--shadow-lg);
}

.category-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 3px dashed var(--primary-blue);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.category-card:hover .category-icon-wrapper::before {
  opacity: 0.3;
}

.category-icon {
  width: 80px;
  height: 80px;
}

.category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cta-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.category-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

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

/* =============================================
   PROMOTIONAL CARDS SECTION
   ============================================= */
.promo-cards-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.promo-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.promo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.promo-card:hover .promo-card-bg {
  transform: scale(1.1);
}

.promo-badge {
  position: relative;
  width: 200px;
  height: 200px;
  background: var(--error-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.promo-badge-text {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.promo-badge-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1;
}

.promo-card:nth-child(1) {
  background: linear-gradient(135deg, #E0E0E0, #F5F5F5);
}

.promo-card:nth-child(2) {
  background: linear-gradient(135deg, var(--primary-blue-light), #B2EBF2);
}

.promo-card:nth-child(3) {
  background: linear-gradient(135deg, #1A237E, #283593);
}

/* =============================================
   PRODUCT CARDS - Enterprise Style
   ============================================= */
.products-section {
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.product-image-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-light);
  display: block;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  background: white;
}

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

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

.product-badge {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.badge-new {
  background: var(--success-green);
  color: white;
}

.badge-sale {
  background: var(--error-red);
  color: white;
}

.badge-certified {
  background: var(--primary-blue);
  color: white;
}

.badge-limited {
  background: var(--warning-amber);
  color: white;
}

.product-info {
  padding: 1.5rem;
}

.product-brand {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: var(--warning-amber);
}

.rating-count {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--font-size-sm);
  color: var(--success-green);
}

.product-stock.low-stock {
  color: var(--warning-amber);
}

.stock-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.stock-indicator.stock-in {
  background: var(--success-green);
}

.stock-indicator.stock-backorder {
  background: var(--warning-amber);
}

.stock-indicator.stock-out {
  background: var(--error-red);
}

.stock-dot {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

.product-condition {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.product-condition svg {
  flex-shrink: 0;
}

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

.price-current {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-dark);
}

.price-original {
  font-size: var(--font-size-base);
  color: var(--text-light);
  text-decoration: line-through;
}

.price-was {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  text-decoration: line-through;
}

.price-save {
  font-size: var(--font-size-sm);
  color: var(--error-red);
  font-weight: 600;
}

/* =============================================
   BUTTONS - Orange CTAs
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

/* BUTTONS - Vibrant Gradient Style */
.btn-primary {
  background: linear-gradient(135deg, #00B4D8, #0077B6);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0096C7, #005A8D);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-blue);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1.125rem 2rem;
  font-size: var(--font-size-lg);
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  cursor: pointer;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* =============================================
   FOOTER - Enterprise Dark
   ============================================= */
.site-footer {
  background: var(--footer-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: var(--font-size-sm);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .header-utilities {
    gap: 1rem;
  }

  .utility-link,
  .utility-link-simple {
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
  }

  .utility-link svg,
  .utility-link-simple svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1024px) {
  .header-main-wrapper {
    gap: 1.5rem;
  }

  .header-search-centered {
    max-width: 450px;
  }

  .site-logo {
    max-width: 180px;
  }

  .header-utilities {
    gap: 0.75rem;
  }

  .utility-text {
    display: none;
  }

  .nav-wrapper {
    gap: 1rem;
  }

  .main-nav {
    gap: 1.25rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .shop-range-widget {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 1rem 0;
  }

  .header-main-wrapper {
    gap: 1rem;
  }

  .header-search-centered {
    max-width: none;
    flex: 1;
  }

  .search-input-main {
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: var(--font-size-sm);
  }

  .header-utilities {
    gap: 0.5rem;
  }

  .utility-link-simple span {
    display: none;
  }

  .utility-link-cart span:not(.cart-count-badge) {
    display: none;
  }

  .main-nav {
    overflow-x: auto;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    white-space: nowrap;
  }

  /* Location Modal Mobile */
  .location-modal-content {
    max-height: 95vh;
    margin: 0 0.5rem;
  }

  .location-modal-header {
    padding: 1rem 1.5rem;
  }

  .location-modal-header h3 {
    font-size: var(--font-size-lg);
  }

  .location-modal-body {
    padding: 1.5rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .location-option {
    padding: 1rem 0.75rem;
  }

  .location-flag {
    font-size: 2rem;
  }

  .location-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .hero-text h1 {
    font-size: var(--font-size-3xl);
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .category-icon-wrapper {
    width: 120px;
    height: 120px;
  }

  .promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 90px;
  }
}

/* =============================================
   ALL PREMIUM FEATURES CSS (from v3)
   ============================================= */

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 20px rgba(0,0,0,0.2);
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--header-dark);
  color: white;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.countdown-label {
  font-size: var(--font-size-xs);
  color: var(--text-medium);
  text-transform: uppercase;
}

/* Stock Warning */
.stock-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #FFF3CD;
  border: 1px solid #FFECB5;
  border-radius: var(--radius-md);
  color: #856404;
  font-weight: 600;
}

/* Promo Popup */
.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10002;
}

.promo-popup-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  padding: 3rem 2rem;
  position: relative;
}

.promo-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Quick View Modal */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.quick-view-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 998;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.product-tab {
  padding: 1rem 2rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.product-tab.active {
  border-bottom-color: var(--primary-blue);
  color: var(--primary-blue);
}

.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10003;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Recently Viewed */
#recentlyViewedProducts {
  padding: 3rem 0;
  background: var(--bg-light);
}

/* Mobile Adjustments for Premium Features */
@media (max-width: 768px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
  
  .whatsapp-float {
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .back-to-top {
    bottom: 170px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.cart-drawer.active {
  animation: slideInRight 0.3s ease;
}

/* =============================================
   SMOOTH SCROLL & ANIMATIONS
   ============================================= */

/* Smooth scrolling for entire page */
html {
  scroll-behavior: smooth;
}

/* Smooth fade-in on scroll */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax effect for hero section */
.hero-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}

/* Smooth hover transitions */
.product-card,
.category-card,
.promo-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth button hover */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
  transform: scale(0.98);
}

/* Smooth scale on image hover */
.product-image-wrapper img,
.category-icon-wrapper {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth opacity transitions */
a, button, input, select {
  transition: all 0.3s ease;
}

/* Easing for modals */
.cart-drawer,
.promo-popup,
.quick-view-modal,
.lightbox,
.cookie-consent-banner {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger animation for category grid */
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   VIBRANT COLOR UPDATES
   ============================================= */

/* Flash sale banner - vibrant gradient */
.flash-sale-banner {
  background: linear-gradient(90deg, #00B4D8, #0077B6);
}

/* Search button - vibrant */
.search-button {
  background: linear-gradient(135deg, #00B4D8, #0077B6);
}

.search-button:hover {
  background: linear-gradient(135deg, #0096C7, #005A8D);
}

/* Widget search button - vibrant */
.widget-search-btn {
  background: linear-gradient(135deg, #00B4D8, #0077B6);
}

.widget-search-btn:hover {
  background: linear-gradient(135deg, #0096C7, #005A8D);
}

/* Hero section - brighter gradient */
.hero-section {
  background: linear-gradient(135deg, #00B4D8, #0096C7);
}

/* Header top bar - vibrant */
.header-top {
  background: linear-gradient(90deg, #00B4D8, #0096C7);
}

/* Trust icons - vibrant background */
.trust-icon {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 150, 199, 0.15));
}

/* Category hover - vibrant */
.category-card:hover .category-icon-wrapper {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 150, 199, 0.2));
}

/* Copy code button */
.copy-code-btn {
  background: white;
  color: #0077B6;
  font-weight: 700;
}

.copy-code-btn:hover {
  background: #00B4D8;
  color: white;
}

/* =============================================
   HOW IT WORKS SECTION - FIXED DESIGN
   ============================================= */

.how-it-works {
  background: #F8F9FA;
  padding: 5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.step {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00B4D8, #0077B6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.step h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: var(--font-size-base);
}

/* Category Cards - Enhanced */
.category-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
}

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

.category-name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--text-dark);
}

.category-desc {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.category-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.1));
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.view-all-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 3rem;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
}

.view-all-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step {
    padding: 2rem 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
/* ========================================
   MOBILE-ONLY FIXES
   Desktop stays unchanged
   ======================================== */

/* ===== FIX 1: Full-Width Search Bar on Mobile ===== */
@media (max-width: 768px) {
  /* Make search bar full width and always visible */
  .header-search-centered {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.75rem 0 !important;
    order: 3; /* Move below logo */
  }

  .search-input-main {
    width: 100% !important;
    padding: 0.75rem 3rem 0.75rem 1rem !important;
    font-size: 14px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
  }

  .search-button-main {
    position: absolute !important;
    right: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Adjust header layout for mobile */
  .header-main-wrapper {
    flex-wrap: wrap !important;
    gap: 0 !important;
  }

  .site-logo {
    order: 1;
    width: auto !important;
    max-width: 150px !important;
  }

  .header-utilities {
    order: 2;
    margin-left: auto !important;
  }
}

  /* Hide trust bar on ALL pages on mobile */
  @media (max-width: 768px) {
    .trust-bar {
      display: none !important;
    }
  }


  /* Make trust items stack vertically on homepage if shown */
  body.template-index .trust-items {
    flex-direction: column;
    gap: 0.75rem;
  }

  body.template-index .trust-item {
    padding: 0.5rem;
  }

  body.template-index .trust-text h4 {
    font-size: 14px;
  }

  body.template-index .trust-text p {
    font-size: 12px;
  }
}

/* ===== FIX 3: Fix Horizontal Overflow ===== */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden !important;
  }

  .container {
    overflow-x: hidden !important;
  }

  /* Ensure header doesn't overflow */
  .site-header {
    overflow-x: hidden !important;
  }

  .header-main {
    overflow-x: hidden !important;
  }

  /* Fix navigation overflow */
  .site-navigation {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Ensure no element exceeds viewport */
  * {
    max-width: 100vw;
  }

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

/* ===== FIX 4: Collection Page Products Visible Immediately ===== */
@media (max-width: 768px) {
  /* Reduce collection header padding on mobile */
  .collection-page > div:first-child {
    padding: 2rem 0 1.5rem 0 !important;
  }

  /* Make collection title smaller to save space */
  .collection-page h1 {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
  }

  .collection-page p {
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Bring products higher on page */
  .collection-products {
    margin-top: 0 !important;
  }
}

/* ===== BONUS FIX: Improve Mobile Navigation ===== */
@media (max-width: 768px) {
  /* Make mobile navigation scrollable without showing scrollbar */
  .site-navigation {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .site-navigation::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  /* Add subtle fade at edges to indicate scrollability */
  .site-navigation {
    position: relative;
  }

  .site-navigation::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
  }
}

/* ===== Mobile Utility Adjustments ===== */
@media (max-width: 768px) {
  /* Simplify header utilities on mobile */
  .utility-link,
  .utility-link-simple {
    font-size: 12px !important;
    padding: 0.4rem 0.6rem !important;
  }

  .utility-link svg,
  .utility-link-simple svg {
    width: 16px !important;
    height: 16px !important;
  }

  .utility-text {
    display: none; /* Hide "Deliver to Australia" text on very small screens */
  }

  .utility-value {
    display: inline-block !important;
    font-size: 11px !important;
  }
}

/* ===== Predictive Search Mobile Optimization ===== */
@media (max-width: 768px) {
  .search-results-dropdown {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    max-height: 60vh !important;
  }

  .search-result-item {
    padding: 0.75rem !important;
  }

  .search-result-image {
    width: 50px !important;
    height: 50px !important;
  }

  .search-result-title {
    font-size: 13px !important;
  }

  .search-result-price {
    font-size: 14px !important;
  }
}
  /* ========================================
     MOBILE HOMEPAGE - COMPRESS HERO SECTION
     Desktop unchanged
     ======================================== */

  @media (max-width: 768px) {
    /* Compress Hero Section on Mobile */
    body.template-index .hero-section {
      padding: 1.5rem 0 !important;
      min-height: auto !important;
      height: auto !important;
    }

    body.template-index .hero-section h1 {
      font-size: 1.5rem !important;
      margin-bottom: 0.5rem !important;
      line-height: 1.3 !important;
    }

    body.template-index .hero-section p {
      font-size: 0.875rem !important;
      margin-bottom: 1rem !important;
    }

    body.template-index .hero-section .hero-buttons {
      flex-direction: column !important;
      gap: 0.5rem !important;
    }

    body.template-index .hero-section .btn {
      padding: 0.65rem 1.25rem !important;
      font-size: 0.875rem !important;
    }

    /* Hide "Why Refurbished?" Section on Mobile Homepage */
    body.template-index .hero-section + div {
      display: none !important;
    }

    /* OR if you want to keep it but make it smaller: */
    /*
    body.template-index .hero-section + div {
      padding: 1rem 0 !important;
    }

    body.template-index .hero-section + div h2 {
      font-size: 1.25rem !important;
      margin-bottom: 0.75rem !important;
    }

    body.template-index .hero-section + div p,
    body.template-index .hero-section + div div {
      font-size: 0.75rem !important;
    }
    */

    /* Bring Category Section Higher */
    body.template-index .category-section {
      padding-top: 1rem !important;
      margin-top: 0 !important;
    }

    body.template-index .category-section .section-header h2 {
      font-size: 1.5rem !important;
      margin-bottom: 0.5rem !important;
    }

    body.template-index .category-section .section-header p {
      font-size: 0.875rem !important;
      margin-bottom: 1rem !important;
    }

    /* Compress Dropdown Selectors */
    body.template-index select {
      padding: 0.625rem !important;
      font-size: 0.875rem !important;
      margin-bottom: 0.75rem !important;
    }

    /* Featured Categories - Show Sooner */
    body.template-index .category-grid {
      gap: 1rem !important;
    }

    body.template-index .category-card {
      padding: 1rem !important;
    }
  }
  /* ========================================
     MOBILE HOMEPAGE - HIDE "WHY REFURBISHED?" SECTION
     Desktop stays unchanged
     ======================================== */

  @media (max-width: 768px) {
    /* Hide the trust/features section on mobile homepage only */
    body.template-index .hero-section + div,
    body.template-index section:has(.checkmark-list) {
      display: none !important;
    }
  }
  /* Hide mobile bottom navigation */
  .mobile-bottom-nav {
    display: none !important;
  }
