/*
 Theme Name:   Divi Child - eufy RoboVac
 Theme URI:    https://sabir.mtekcorporations.com
 Description:  Divi Child Theme for eufy RoboVac Experience
 Author:       Your Name
 Author URI:   https://mtekcorporations.com
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  divi-child
*/
/* Import parent theme styles */
@import url("../Divi/style.css");

.eufy-cart-btn { position: relative; padding: 8px; background: transparent; border: none; cursor: pointer; color: #374151; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-cart-btn:hover { color: #2563EB; }
.eufy-cart-btn svg { width: 24px; height: 24px; }
.eufy-cart-badge { position: absolute; top: 0; right: 0; display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 6px; font-size: 0.75rem; font-weight: 700; line-height: 1; color: white; background-color: #EF4444; border-radius: 9999px; transform: translate(25%, -25%); }
@media (max-width: 767px) { .eufy-cart-btn { display: none; } }



/* ==========================================================================
   eufy RoboVac - Custom CSS for Divi Theme
   React to Divi Migration - Combined Stylesheet
   ========================================================================== */

/**
 * eufy RoboVac - Custom CSS for Divi Theme
 * React to Divi Migration - Combined Stylesheet
 * 
 * Add this file to: Divi Theme Options > General > Custom CSS
 * 
 * Requirements: 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7
 * 
 * Contents:
 * 1. Style Tokens (CSS Custom Properties)
 * 2. Animations & Transitions
 * 3. Header Styles
 * 4. Hero Section Styles
 * 5. Product Showcase Styles
 * 6. Features Section Styles
 * 7. Reviews Section Styles
 * 8. Footer Styles
 * 9. Video Modal Styles
 * 10. Responsive Design
 */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

::selection {
  background-color: #DBEAFE;
  color: #1E40AF;
}

/* ==========================================================================
   BUTTON STYLES
   Requirement 9.3: Define button styles with rounded-full borders and hover shadows
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 9999px;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #3B82F6;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
  background-color: #1D4ED8;
  box-shadow: 0 10px 15px -3px rgb(59 130 246 / 0.3);
}

.btn-secondary {
  background-color: #111827;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn-secondary:hover {
  background-color: #1F2937;
  box-shadow: 0 10px 15px -3px rgb(107 114 128 / 0.3);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ==========================================================================
   CARD STYLES
   Requirement 9.4: Define card styles with rounded-2xl/3xl borders and subtle shadows
   ========================================================================== */

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid #F3F4F6;
}

.card-lg { border-radius: 1.5rem; }
.card-feature { border-radius: 2.5rem; padding: 2.5rem; }
.card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* ==========================================================================
   GRADIENT TEXT
   Requirement 9.5: Define gradient text effect for hero headline
   ========================================================================== */

.text-gradient {
  background: linear-gradient(to right, #2563EB, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-6 { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.mix-blend-multiply { mix-blend-mode: multiply; }


/* ==========================================================================
   2. ANIMATIONS & TRANSITIONS
   Requirement 9.6: Define keyframe animations
   ========================================================================== */

/* Fade Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Slide Animations */
@keyframes slideInFromTop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInFromBottom { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Zoom Animations */
@keyframes zoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes zoomOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.95); } }

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* Pulse Animation */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Spin Animation */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Product Image Transitions */
@keyframes productImageOut { from { opacity: 1; transform: scale(1) rotate(0deg); } to { opacity: 0; transform: scale(0.95) rotate(12deg); } }
@keyframes productImageIn { from { opacity: 0; transform: scale(0.95) rotate(-12deg); } to { opacity: 1; transform: scale(1) rotate(0deg); } }

/* Animation Utility Classes */
.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in-down { animation: fadeInDown 0.3s ease-out forwards; }
.animate-slide-in-from-top { animation: slideInFromTop 0.2s ease-out forwards; }
.animate-zoom-in { animation: zoomIn 0.2s ease-out forwards; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Transition Utilities */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }

.duration-100 { transition-duration: 100ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Hover Effects */
.hover-lift { transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover-scale { transition: transform 0.3s ease-out; }
.hover-scale:hover { transform: scale(1.05); }

/* Header Scroll Transition - Requirement 9.7 */
.header-transition {
  transition: background-color 0.3s ease-out, padding 0.3s ease-out, box-shadow 0.3s ease-out, backdrop-filter 0.3s ease-out;
}

.header-transparent { background-color: transparent; padding-top: 1.5rem; padding-bottom: 1.5rem; }
.header-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Mobile Menu Animation */
.mobile-menu-enter { animation: slideInFromTop 0.2s ease-out forwards; }
.mobile-menu-exit { animation: fadeOut 0.15s ease-in forwards; }

/* Modal Animations */
.modal-backdrop-enter { animation: fadeIn 0.3s ease-out forwards; }
.modal-backdrop-exit { animation: fadeOut 0.2s ease-in forwards; }
.modal-content-enter { animation: zoomIn 0.2s ease-out forwards; }
.modal-content-exit { animation: zoomOut 0.15s ease-in forwards; }

/* Dropdown Animation */
.dropdown-enter { animation: fadeIn 0.1s ease-out, zoomIn 0.1s ease-out; animation-fill-mode: forwards; }

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Reduced Motion Support */
@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;
  }
  .animate-bounce, .animate-pulse, .animate-spin { animation: none !important; }
}


/* ==========================================================================
   3. HEADER STYLES
   Requirements: 1.1, 1.2, 1.3, 1.5, 1.6, 1.7
   ========================================================================== */

.eufy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.eufy-header.header-transparent { background-color: transparent; padding-top: 24px; padding-bottom: 24px; }
.eufy-header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
}

@supports not (backdrop-filter: blur(12px)) {
  .eufy-header.header-scrolled { background-color: rgba(255, 255, 255, 0.95); }
}

.eufy-header .et_pb_row {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.eufy-logo-container { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.eufy-logo-text { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.05em; color: #2563EB; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-logo-tagline { margin-left: 8px; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.025em; color: #1F2937; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
@media (max-width: 639px) { .eufy-logo-tagline { display: none; } }

/* Desktop Navigation */
.eufy-desktop-nav { display: flex; align-items: center; gap: 32px; }
.eufy-desktop-nav a { font-size: 0.875rem; font-weight: 500; color: #1F2937; text-decoration: none; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-desktop-nav a:hover { color: #3B82F6; }
@media (max-width: 767px) { .eufy-desktop-nav { display: none; } }

/* Header Actions */
.eufy-header-actions { display: flex; align-items: center; gap: 16px; }



/* Mobile Menu Button */
.eufy-mobile-menu-btn { display: none; padding: 8px; background: transparent; border: none; cursor: pointer; color: #374151; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-mobile-menu-btn:hover { color: #2563EB; }
.eufy-mobile-menu-btn svg { width: 24px; height: 24px; }
@media (max-width: 767px) { .eufy-mobile-menu-btn { display: block; } }
.eufy-mobile-menu-btn .close-icon { display: none; }
.eufy-mobile-menu-btn.is-active .menu-icon { display: none; }
.eufy-mobile-menu-btn.is-active .close-icon { display: block; }

/* Mobile Menu Dropdown */
.eufy-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: white; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); animation: slideInFromTop 0.3s ease-out; }
.eufy-mobile-menu.is-open { display: block; }
.eufy-mobile-nav-links { padding: 8px 16px 24px; }
.eufy-mobile-nav-links a { display: block; padding: 8px 12px; font-size: 1rem; font-weight: 500; color: #374151; text-decoration: none; border-radius: 6px; transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-mobile-nav-links a:hover { color: #2563EB; background-color: #F9FAFB; }
@media (min-width: 768px) { .eufy-mobile-menu { display: none !important; } }

/* Header Responsive */
@media (max-width: 767px) {
  .eufy-header .et_pb_row { padding-left: 16px; padding-right: 16px; }
  .eufy-header.header-transparent { padding-top: 16px; padding-bottom: 16px; }
  .eufy-header.header-scrolled { padding-top: 12px; padding-bottom: 12px; }
  .eufy-logo-text { font-size: 1.5rem; }
  .eufy-mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .eufy-desktop-nav, .eufy-cart-btn { display: none !important; }
}

/* Accessibility */
.eufy-cart-btn:focus, .eufy-mobile-menu-btn:focus { outline: 2px solid #3B82F6; outline-offset: 2px; }
.eufy-desktop-nav a:focus, .eufy-mobile-nav-links a:focus { outline: 2px solid #3B82F6; outline-offset: 2px; border-radius: 4px; }


/* ==========================================================================
   4. HERO SECTION STYLES
   Requirements: 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10
   ========================================================================== */

.eufy-hero-section {
  position: relative;
  min-height: 100vh;
  min-height: max(100vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #F9FAFB;
}

/* Decorative Skewed Background */
.eufy-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
  background-color: rgba(239, 246, 255, 0.5);
  transform: skewX(12deg) translateX(8rem);
  transform-origin: top;
  z-index: 0;
  pointer-events: none;
}

.eufy-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3rem;
  align-items: center;
}

.eufy-hero-text { display: flex; flex-direction: column; gap: 0; }

/* Badge */
.eufy-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #DBEAFE;
  color: #1E40AF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  width: fit-content;
}

/* Headline */
.eufy-hero-headline {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 2rem;
}

/* Description */
.eufy-hero-description {
  font-size: 1.25rem;
  color: #4B5563;
  max-width: 32rem;
  line-height: 1.625;
  margin-top: 2rem;
}

/* CTA Button */
.eufy-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #2563EB;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: fit-content;
  margin-top: 2rem;
}

.eufy-hero-cta:hover { background-color: #1D4ED8; box-shadow: 0 10px 15px -3px rgb(59 130 246 / 0.3); }
.eufy-hero-cta:focus { outline: none; box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #3B82F6; }

/* Trust Indicators */
.eufy-trust-indicators { display: flex; align-items: center; gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
.eufy-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: #6B7280; }
.eufy-trust-item::before { content: ''; display: block; width: 0.5rem; height: 0.5rem; border-radius: 9999px; background-color: #22C55E; }

/* Image Container */
.eufy-hero-image-container { position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; }
.eufy-hero-circle-bg { position: absolute; width: clamp(400px, 50vw, 600px); height: clamp(400px, 50vw, 600px); background-color: #FFFFFF; border-radius: 9999px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); z-index: 0; }
.eufy-hero-product-wrapper { position: relative; z-index: 10; width: clamp(300px, 40vw, 450px); transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-hero-product-wrapper:hover { transform: scale(1.05); }
.eufy-hero-product-image-container { position: relative; border-radius: 9999px; background-color: #FFFFFF; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); border: 8px solid #FFFFFF; overflow: hidden; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.eufy-hero-product-image { width: 90%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }

/* Floating Badge */
.eufy-hero-floating-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background-color: #FFFFFF; padding: 1rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); display: flex; flex-direction: column; align-items: center; z-index: 20; }
.eufy-badge-value { font-size: 1.875rem; font-weight: 700; color: #2563EB; line-height: 1; }
.eufy-badge-label { font-size: 0.75rem; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 0.25rem; }

/* Scroll Indicator */
.eufy-scroll-indicator-wrapper { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; }
.eufy-scroll-indicator { color: #9CA3AF; cursor: pointer; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-scroll-indicator:hover { color: #4B5563; }
.eufy-scroll-indicator svg { width: 1.5rem; height: 1.5rem; }

/* Hero Responsive */
@media (max-width: 980px) {
  .eufy-hero-content { grid-template-columns: 100%; gap: 3rem; text-align: center; }
  .eufy-hero-text { align-items: center; order: 1; }
  .eufy-hero-image-container { order: 0; min-height: 400px; }
  .eufy-hero-description { max-width: 100%; }
  .eufy-trust-indicators { justify-content: center; }
  .eufy-hero-circle-bg { width: clamp(300px, 60vw, 450px); height: clamp(300px, 60vw, 450px); }
  .eufy-hero-product-wrapper { width: clamp(250px, 50vw, 350px); }
}

@media (max-width: 767px) {
  .eufy-hero-section { min-height: max(100vh, 700px); padding: 6rem 0 4rem; }
  .eufy-hero-section::before { width: 100%; transform: skewX(0deg) translateX(0); opacity: 0.3; }
  .eufy-hero-content { padding: 0 1rem; gap: 2rem; }
  .eufy-hero-headline { font-size: clamp(2.5rem, 10vw, 3rem); margin-top: 1.5rem; }
  .eufy-hero-description { font-size: 1.125rem; margin-top: 1.5rem; }
  .eufy-hero-cta { width: 100%; justify-content: center; }
  .eufy-trust-indicators { flex-direction: column; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; }
  .eufy-hero-image-container { min-height: 300px; }
  .eufy-hero-circle-bg { width: clamp(250px, 70vw, 350px); height: clamp(250px, 70vw, 350px); }
  .eufy-hero-product-wrapper { width: clamp(200px, 60vw, 280px); }
  .eufy-hero-floating-badge { bottom: -1rem; right: -0.5rem; padding: 0.75rem; }
  .eufy-badge-value { font-size: 1.5rem; }
  .eufy-scroll-indicator-wrapper { bottom: 1rem; }
}


/* ==========================================================================
   5. PRODUCT SHOWCASE STYLES
   Requirements: 3.1-3.12
   ========================================================================== */

.eufy-products-section { padding: 6rem 0; background-color: #FFFFFF; }
.eufy-products-section .eufy-section-label { font-size: 1rem; font-weight: 700; color: #2563EB; text-transform: uppercase; letter-spacing: 0.025em; }
.eufy-products-section .eufy-section-title { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 800; color: #111827; margin-top: 0.5rem; }

/* Product Image Display */
.eufy-product-image-wrapper { position: sticky; top: 6rem; }
.eufy-product-image-container { position: relative; aspect-ratio: 1 / 1; background-color: #F9FAFB; border-radius: 3rem; overflow: hidden; box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); display: flex; align-items: center; justify-content: center; }
.eufy-product-image-inner { position: relative; width: 85%; height: 85%; transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1) rotate(0deg); opacity: 1; }
.eufy-product-image-inner.animating { opacity: 0; transform: scale(0.95) rotate(12deg); }
.eufy-product-image { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25)); mix-blend-mode: multiply; }

/* Floating Spec Badges */
.eufy-product-specs-container { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; display: flex; justify-content: space-between; pointer-events: none; z-index: 10; }
.eufy-spec-badge { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); padding: 1rem; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); display: flex; align-items: center; gap: 0.75rem; pointer-events: auto; border: 1px solid rgba(255, 255, 255, 0.5); transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-spec-badge:hover { transform: scale(1.05); }
.eufy-spec-icon { padding: 0.5rem; border-radius: 0.5rem; }
.eufy-spec-icon-blue { background-color: #DBEAFE; color: #2563EB; }
.eufy-spec-label { font-size: 0.75rem; color: #6B7280; font-weight: 600; margin: 0; }
.eufy-spec-value { font-size: 0.875rem; font-weight: 700; color: #111827; margin: 0; }

/* Product Configurator */
.eufy-configurator-wrapper { padding-top: 1rem; }
.eufy-product-badge { display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px; background-color: #FFEDD5; color: #C2410C; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 1rem; }
.eufy-product-badge:empty, .eufy-product-badge[data-hidden="true"] { display: none; }
.eufy-product-name { font-size: 2.25rem; font-weight: 700; color: #111827; margin: 0 0 0.5rem 0; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-product-description { font-size: 1.25rem; color: #6B7280; line-height: 1.625; margin: 0 0 1.5rem 0; }
.eufy-price-container { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2.5rem; }
.eufy-current-price { font-size: 2.25rem; font-weight: 700; color: #111827; }
.eufy-old-price { font-size: 1.25rem; color: #9CA3AF; text-decoration: line-through; }
.eufy-old-price:empty { display: none; }
.eufy-configurator-box { background-color: #F9FAFB; border: 1px solid #F3F4F6; border-radius: 1.5rem; padding: 1.5rem; }
.eufy-configurator-divider { height: 1px; background-color: #E5E7EB; margin: 1.5rem 0; }
.eufy-selector-label { display: block; font-size: 0.75rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.eufy-color-name { color: #111827; text-transform: none; }

/* Model Dropdown */
.eufy-model-selector { position: relative; z-index: 20; }
.eufy-dropdown-wrapper { position: relative; }
.eufy-dropdown-trigger { width: 100%; background-color: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 0.75rem; padding: 1rem; text-align: left; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); font-weight: 700; color: #111827; }
.eufy-dropdown-trigger:hover { border-color: #60A5FA; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.eufy-dropdown-trigger:focus { outline: none; border-color: #3B82F6; box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3); }
.eufy-dropdown-chevron { color: #9CA3AF; transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-dropdown-trigger[aria-expanded="true"] .eufy-dropdown-chevron { transform: rotate(180deg); }
.eufy-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background-color: #FFFFFF; border: 1px solid #F3F4F6; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); overflow: hidden; display: none; animation: dropdownFadeIn 100ms cubic-bezier(0, 0, 0.2, 1); }
.eufy-dropdown-menu.open { display: block; }
@keyframes dropdownFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.eufy-dropdown-option { width: 100%; padding: 0.75rem 1rem; text-align: left; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: none; border: none; font-size: 0.875rem; font-weight: 500; color: #374151; transition: background-color 100ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-dropdown-option:hover { background-color: #F9FAFB; }
.eufy-dropdown-option.selected { background-color: rgba(59, 130, 246, 0.05); color: #1D4ED8; font-weight: 700; }
.eufy-dropdown-option .check-icon { color: #2563EB; }

/* Color Swatches */
.eufy-color-swatches { display: flex; gap: 1rem; }
.eufy-color-swatch { position: relative; padding: 2px; border-radius: 9999px; cursor: pointer; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); border: none; background: none; outline: none; }
.eufy-color-swatch:focus { outline: none; }
.eufy-color-swatch::before { content: ''; position: absolute; inset: 0; border-radius: 9999px; border: 1px solid #E5E7EB; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-color-swatch:hover::before { border-color: #60A5FA; }
.eufy-color-swatch.selected::before { border: 2px solid #2563EB; box-shadow: 0 0 0 2px #FFFFFF; }
.eufy-swatch-inner { width: 48px; height: 48px; border-radius: 9999px; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-color-swatch:hover .eufy-swatch-inner { transform: scale(1.05); }

/* Feature Cards */
.eufy-feature-cards { display: grid; grid-template-columns: 50% 50%; gap: 1rem; padding: 0.5rem 0; }
.eufy-feature-card { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border-radius: 1rem; background-color: #FFFFFF; border: 1px solid #F3F4F6; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-feature-card:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); border-color: #E5E7EB; }
.eufy-feature-icon { display: flex; align-items: center; justify-content: center; padding: 0.5rem; border-radius: 0.5rem; flex-shrink: 0; }
.eufy-feature-text { flex: 1; min-width: 0; }
.eufy-feature-title { font-size: 0.875rem; font-weight: 700; color: #111827; margin: 0 0 0.125rem 0; }
.eufy-feature-desc { font-size: 0.75rem; color: #6B7280; margin: 0; }

/* CTA Section */
.eufy-cta-section { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.eufy-add-to-cart-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 1.5rem; height: 56px; background-color: #2563EB; color: #FFFFFF; border: none; border-radius: 0.75rem; font-size: 1.125rem; font-weight: 700; cursor: pointer; transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2); }
.eufy-add-to-cart-btn:hover { background-color: #1D4ED8; box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3); transform: translateY(-1px); }
.eufy-add-to-cart-btn:active { transform: translateY(0); }
.eufy-add-to-cart-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4); }
.eufy-cart-arrow { transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-add-to-cart-btn:hover .eufy-cart-arrow { transform: translateX(4px); }
.eufy-shipping-text { font-size: 0.75rem; color: #9CA3AF; text-align: center; margin: 0; }

@media (max-width: 767px) {
  .eufy-feature-cards { grid-template-columns: 100%; }
  .eufy-add-to-cart-btn { font-size: 1rem; height: 52px; }
}


/* ==========================================================================
   6. FEATURES SECTION STYLES
   Requirements: 4.1, 4.2, 4.7, 4.8
   ========================================================================== */

.features-section { background-color: #F9FAFB; padding: 6rem 0; overflow: hidden; }
.features-section .section-header { text-align: center; margin-bottom: 5rem; }
.features-section .section-label { color: #2563EB; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.875rem; margin-bottom: 0.75rem; }
.features-section .section-headline { font-size: 3rem; font-weight: 800; color: #111827; letter-spacing: -0.025em; line-height: 1.1; margin-top: 0.75rem; }
.features-section .section-description { font-size: 1.25rem; color: #4B5563; max-width: 42rem; margin: 1rem auto 0; line-height: 1.5; }

@media (max-width: 768px) { .features-section .section-headline { font-size: 2.25rem; } }
@media (max-width: 480px) { .features-section .section-headline { font-size: 1.875rem; } }

/* Bento Grid Layout */
.features-bento-grid { display: grid; grid-template-columns: 33.333% 33.333% 33.333%; grid-auto-rows: minmax(300px, auto); gap: 1.5rem; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (max-width: 980px) { .features-bento-grid { grid-template-columns: 50% 50%; } }
@media (max-width: 768px) { .features-bento-grid { grid-template-columns: 100%; } }

/* Feature Card Base */
.feature-card { background-color: #FFFFFF; border-radius: 2.5rem; padding: 2.5rem; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); border: 1px solid #F3F4F6; position: relative; overflow: hidden; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.feature-card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); border-color: #BFDBFE; transform: translateY(-4px); }
.feature-card-small { padding: 2rem; }

/* Slim Card (2 columns) */
.feature-card-slim { grid-column: span 2; }
@media (max-width: 768px) { .feature-card-slim { grid-column: span 1; } }
.feature-card-slim .card-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

/* BoostIQ Card (2 rows) */
.feature-card-boostiq { grid-row: span 2; background-color: #111827; border-color: #1F2937; color: #FFFFFF; }
.feature-card-boostiq:hover { border-color: #374151; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3); }
@media (max-width: 980px) { .feature-card-boostiq { grid-row: span 1; } }
.feature-card-boostiq .card-title { color: #FFFFFF; }
.feature-card-boostiq .card-description { color: #9CA3AF; font-size: 0.875rem; line-height: 1.625; margin-bottom: 2rem; }

/* Premium Card (3 columns) */
.feature-card-premium { grid-column: span 3; background: linear-gradient(to bottom right, #EFF6FF, #FFFFFF); border-color: #DBEAFE; display: flex; flex-direction: row; align-items: center; gap: 3rem; }
@media (max-width: 980px) { .feature-card-premium { grid-column: span 2; } }
@media (max-width: 768px) { .feature-card-premium { grid-column: span 1; flex-direction: column; } }
.feature-card-premium .premium-content { flex: 1; }
.feature-card-premium .premium-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; background-color: #DBEAFE; border-radius: 9999px; color: #1D4ED8; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-card-premium .premium-title { font-size: 1.875rem; font-weight: 700; color: #111827; margin-top: 1.5rem; }
.feature-card-premium .premium-features { list-style: none; padding: 0; margin-top: 1.5rem; }
.feature-card-premium .premium-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.feature-card-premium .feature-icon-circle { width: 1.5rem; height: 1.5rem; border-radius: 9999px; background-color: #FFFFFF; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); display: flex; align-items: center; justify-content: center; color: #3B82F6; flex-shrink: 0; margin-top: 2px; }
.feature-card-premium .feature-icon-circle svg { width: 0.75rem; height: 0.75rem; }
.feature-card-premium .premium-features span { color: #374151; line-height: 1.5; }
.feature-card-premium .premium-features strong { color: #111827; }
.feature-card-premium .premium-visual { flex: 1; position: relative; height: 16rem; width: 100%; background-color: #FFFFFF; border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); border: 4px solid #FFFFFF; overflow: hidden; display: flex; align-items: center; justify-content: center; }

/* Icon Styles */
.feature-icon { width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.feature-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-icon-blue { background-color: #EFF6FF; }
.feature-icon-blue svg { color: #2563EB; }
.feature-icon-blue-dark { background-color: rgba(59, 130, 246, 0.2); }
.feature-icon-blue-dark svg { color: #60A5FA; }
.feature-icon-green { background-color: #DCFCE7; }
.feature-icon-green svg { color: #16A34A; }
.feature-icon-purple { background-color: #FAF5FF; }
.feature-icon-purple svg { color: #9333EA; }

/* Card Text Styles */
.card-title { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.card-title-small { font-size: 1.125rem; }
.card-description { color: #6B7280; line-height: 1.5; }
.card-description-small { font-size: 0.875rem; }
.card-description-wide { max-width: 28rem; }

/* Height Comparison Visual */
.height-comparison { display: flex; align-items: flex-end; gap: 1rem; margin-top: 2rem; }
.height-comparison .comparison-item { flex: 1; }
.height-comparison .comparison-label { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.height-comparison .standard-label { color: #9CA3AF; }
.height-comparison .eufy-label { color: #2563EB; }
.height-comparison .standard-bar { height: 4rem; background-color: #F3F4F6; border-radius: 0.5rem; border: 2px dashed #E5E7EB; }
.height-comparison .eufy-bar { height: 2.5rem; background-color: #2563EB; border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgb(191 219 254 / 1); display: flex; align-items: center; justify-content: center; }
.height-comparison .eufy-bar span { color: #FFFFFF; font-size: 0.75rem; font-weight: 700; }

/* Boost Visual */
.boost-visual { position: relative; height: 12rem; width: 100%; background-color: #1F2937; border-radius: 1rem; overflow: hidden; border: 1px solid #374151; }
.boost-visual .floor-types { position: absolute; inset: 0; display: flex; }
.boost-visual .floor-hard { width: 50%; height: 100%; background-color: #2a2a2a; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem; }
.boost-visual .floor-carpet { width: 50%; height: 100%; background-color: #333; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem; position: relative; }
.boost-visual .floor-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #6B7280; position: relative; z-index: 10; }
.boost-visual .turbo-badge { position: absolute; top: 1rem; right: 1rem; background-color: #2563EB; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.75rem; font-weight: 700; color: #FFFFFF; }


/* ==========================================================================
   7. REVIEWS SECTION STYLES
   Requirements: 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7
   ========================================================================== */

.eufy-reviews-section { background-color: #FFFFFF; padding: 96px 0; border-top: 1px solid #F3F4F6; }
.eufy-reviews-section .et_pb_row { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* Header Styles */
.eufy-reviews-headline { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: #111827; text-align: center; margin-bottom: 16px; }

/* Star Rating Display */
.eufy-reviews-rating-display { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 16px; }
.eufy-stars { display: flex; gap: 2px; }
.eufy-star { color: #FACC15; }
.eufy-star.filled { color: #FACC15; }
.eufy-star.empty { color: #E5E7EB; }
.eufy-rating-text { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 1rem; font-weight: 500; color: #4B5563; }

/* Review Cards Grid */
.eufy-reviews-grid { display: grid; grid-template-columns: 33.333% 33.333% 33.333%; gap: 32px; margin-top: 64px; }
@media (max-width: 980px) { .eufy-reviews-grid { grid-template-columns: 50% 50%; gap: 24px; } }
@media (max-width: 767px) { .eufy-reviews-grid { grid-template-columns: 100%; gap: 24px; } }

/* Review Card */
.eufy-review-card { background-color: #F9FAFB; border-radius: 1rem; padding: 32px; position: relative; transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.eufy-review-card:hover { transform: translateY(-4px); }

/* Quote Icon */
.eufy-quote-icon { position: absolute; top: 32px; right: 32px; width: 40px; height: 40px; color: #DBEAFE; }

/* Star Rating in Card */
.eufy-review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.eufy-review-stars .eufy-star { width: 16px; height: 16px; }
.eufy-review-stars .eufy-star.filled { color: #FACC15; }
.eufy-review-stars .eufy-star.empty { color: #E5E7EB; }

/* Review Title */
.eufy-review-title { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 8px; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Review Content */
.eufy-review-content { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 0.875rem; color: #4B5563; line-height: 1.625; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }

/* Author Section */
.eufy-review-author { margin-top: auto; padding-top: 24px; border-top: 1px solid #E5E7EB; }
.eufy-author-name { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 0.875rem; font-weight: 600; color: #111827; margin: 0; }
.eufy-review-date { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; color: #9CA3AF; margin: 4px 0 0 0; }

/* CTA Link */
.eufy-reviews-cta-link { display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-size: 1rem; font-weight: 600; color: #2563EB; text-decoration: none; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); margin-top: 48px; }
.eufy-reviews-cta-link:hover { color: #1D4ED8; text-decoration: underline; }
.eufy-reviews-cta-link .eufy-arrow-icon { width: 16px; height: 16px; margin-left: 4px; }

/* Reviews Responsive */
@media (max-width: 980px) {
  .eufy-reviews-section { padding: 64px 0; }
  .eufy-review-card { padding: 24px; }
  .eufy-quote-icon { top: 24px; right: 24px; width: 32px; height: 32px; }
}

@media (max-width: 767px) {
  .eufy-reviews-section { padding: 48px 0; }
  .eufy-reviews-headline { font-size: 1.5rem; }
  .eufy-review-card { padding: 20px; }
  .eufy-quote-icon { top: 20px; right: 20px; width: 28px; height: 28px; }
  .eufy-reviews-cta-link { margin-top: 32px; }
}


/* ==========================================================================
   8. FOOTER STYLES
   Requirements: 6.1, 6.2, 6.3, 6.4, 6.5, 6.6
   ========================================================================== */

.eufy-footer {
  background-color: #111827;
  color: #FFFFFF;
  padding: 3rem 0;
}

.eufy-footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Footer Grid Layout - Requirement 6.6 */
.eufy-footer-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}

@media (min-width: 768px) {
  .eufy-footer-grid {
    grid-template-columns: 50% 25% 25%;
  }
}

@media (min-width: 980px) {
  .eufy-footer-grid {
    grid-template-columns: 40% 20% 20% 20%;
  }
}

/* Footer Logo & Tagline - Requirement 6.2 */
.eufy-footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .eufy-footer-brand {
    grid-column: span 1;
  }
}

.eufy-footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.eufy-footer-tagline {
  color: #9CA3AF;
  font-size: 1rem;
  line-height: 1.625;
  max-width: 20rem;
}

/* Footer Link Columns - Requirements 6.3, 6.4 */
.eufy-footer-column {
  display: flex;
  flex-direction: column;
}

.eufy-footer-column-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.eufy-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eufy-footer-link {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 1rem;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.eufy-footer-link:hover {
  color: #FFFFFF;
}

/* Copyright Section - Requirement 6.5 */
.eufy-footer-copyright-wrapper {
  border-top: 1px solid #1F2937;
  margin-top: 3rem;
  padding-top: 2rem;
}

.eufy-footer-copyright {
  text-align: center;
  color: #6B7280;
  font-size: 0.875rem;
}

/* Responsive Stacking - Requirement 6.6 */
@media (max-width: 767px) {
  .eufy-footer-grid {
    grid-template-columns: 100%;
    text-align: center;
  }
  
  .eufy-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .eufy-footer-tagline {
    max-width: 100%;
  }
  
  .eufy-footer-column {
    align-items: center;
  }
  
  .eufy-footer-links {
    align-items: center;
  }
}

/* Divi Module Overrides */
.et_pb_section.eufy-footer-section {
  padding: 3rem 0 !important;
  background-color: #111827 !important;
}

.et_pb_row.eufy-footer-row {
  padding: 0 !important;
  max-width: 80rem !important;
}

.et_pb_text.eufy-footer-text {
  padding-bottom: 0 !important;
}

.et_pb_text.eufy-footer-text h4 {
  color: #FFFFFF !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.et_pb_text.eufy-footer-text p {
  color: #9CA3AF !important;
  margin-bottom: 0 !important;
}

.et_pb_text.eufy-footer-text a {
  color: #9CA3AF !important;
  text-decoration: none !important;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.et_pb_text.eufy-footer-text a:hover {
  color: #FFFFFF !important;
}

.et_pb_text.eufy-footer-copyright-text {
  text-align: center !important;
}

.et_pb_text.eufy-footer-copyright-text p {
  color: #6B7280 !important;
  font-size: 0.875rem !important;
}

.et_pb_divider.eufy-footer-divider {
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
}

.et_pb_divider.eufy-footer-divider:before {
  border-top-color: #1F2937 !important;
}


/* ==========================================================================
   9. VIDEO MODAL STYLES
   Requirements: 7.2, 7.3
   ========================================================================== */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

@media (min-width: 640px) {
  .video-modal {
    padding: 1.5rem;
  }
}

/* Backdrop Overlay */
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.is-open .video-modal-overlay {
  opacity: 1;
}

@supports not (backdrop-filter: blur(4px)) {
  .video-modal-overlay {
    background-color: rgba(0, 0, 0, 0.9);
  }
}

/* Modal Container */
.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 64rem;
  background-color: #000000;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-modal.is-open .video-modal-container {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.video-modal-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.video-modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Video Wrapper (16:9 Aspect Ratio) */
.video-modal-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-modal-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Screen Reader Only (Accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Body Scroll Lock */
body.video-modal-open {
  overflow: hidden;
}


/* ==========================================================================
   10. RESPONSIVE DESIGN
   Requirements: 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7
   ========================================================================== */

/* Global Responsive Utilities */
.et_pb_row,
.eufy-container {
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 980px) {
  .et_pb_row,
  .eufy-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .et_pb_row,
  .eufy-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Section Responsive Padding */
.et_pb_section {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 980px) {
  .et_pb_section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .et_pb_section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Header Responsive - Requirement 8.2 */
@media (min-width: 981px) {
  .eufy-header .eufy-desktop-nav { display: flex; }
  .eufy-header .eufy-mobile-menu-btn { display: none; }
  .eufy-header .eufy-cart-btn { display: flex; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .eufy-header .eufy-desktop-nav { display: none; }
  .eufy-header .eufy-mobile-menu-btn { display: flex; }
  .eufy-header .eufy-cart-btn { display: flex; }
  .eufy-header .et_pb_row { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 767px) {
  .eufy-header .eufy-desktop-nav { display: none !important; }
  .eufy-header .eufy-mobile-menu-btn { display: flex !important; }
  .eufy-header .eufy-cart-btn { display: none; }
  .eufy-header.header-transparent { padding-top: 16px; padding-bottom: 16px; }
  .eufy-header.header-scrolled { padding-top: 12px; padding-bottom: 12px; }
}

/* Hero Section Responsive - Requirement 8.3 */
@media (min-width: 981px) {
  .eufy-hero-content { display: grid; grid-template-columns: 50% 50%; gap: 48px; align-items: center; }
  .eufy-hero-text { text-align: left; align-items: flex-start; }
  .eufy-hero-image-container { min-height: 600px; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .eufy-hero-section { min-height: max(100vh, 800px); padding-top: 100px; }
  .eufy-hero-content { display: flex; flex-direction: column; gap: 48px; text-align: center; }
  .eufy-hero-text { order: 1; align-items: center; }
  .eufy-hero-image-container { order: 0; min-height: 400px; }
  .eufy-hero-headline { font-size: clamp(2.5rem, 6vw, 3.5rem); }
  .eufy-hero-description { max-width: 100%; }
  .eufy-trust-indicators { justify-content: center; }
  .eufy-hero-circle-bg { width: clamp(300px, 50vw, 400px); height: clamp(300px, 50vw, 400px); }
  .eufy-hero-product-wrapper { width: clamp(250px, 40vw, 320px); }
}

@media (max-width: 767px) {
  .eufy-hero-section { min-height: max(100vh, 700px); padding: 80px 0 48px; }
  .eufy-hero-section::before { width: 100%; transform: skewX(0deg) translateX(0); opacity: 0.3; }
  .eufy-hero-content { display: flex; flex-direction: column; gap: 32px; padding: 0 16px; text-align: center; }
  .eufy-hero-text { order: 1; align-items: center; }
  .eufy-hero-image-container { order: 0; min-height: 280px; }
  .eufy-hero-headline { font-size: clamp(2rem, 8vw, 2.5rem); margin-top: 16px; }
  .eufy-hero-description { font-size: 1.125rem; margin-top: 16px; }
  .eufy-hero-cta { width: 100%; justify-content: center; }
  .eufy-trust-indicators { flex-direction: column; gap: 12px; margin-top: 24px; padding-top: 20px; }
  .eufy-hero-circle-bg { width: clamp(220px, 60vw, 300px); height: clamp(220px, 60vw, 300px); }
  .eufy-hero-product-wrapper { width: clamp(180px, 50vw, 240px); }
  .eufy-hero-floating-badge { bottom: -8px; right: -4px; padding: 8px; }
  .eufy-badge-value { font-size: 1.25rem; }
  .eufy-scroll-indicator-wrapper { bottom: 16px; }
}

/* Product Showcase Responsive - Requirement 8.4 */
@media (min-width: 981px) {
  .eufy-products-layout { display: grid; grid-template-columns: 50% 50%; gap: 64px; align-items: start; }
  .eufy-product-image-wrapper { position: sticky; top: 120px; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .eufy-products-section { padding: 64px 0; }
  .eufy-products-layout { display: flex; flex-direction: column; gap: 48px; }
  .eufy-product-image-wrapper { position: relative; top: 0; max-width: 500px; margin: 0 auto; }
  .eufy-configurator-wrapper { max-width: 600px; margin: 0 auto; }
  .eufy-product-specs-container { bottom: 16px; left: 16px; right: 16px; }
}

@media (max-width: 767px) {
  .eufy-products-section { padding: 48px 0; }
  .eufy-products-layout { display: flex; flex-direction: column; gap: 32px; }
  .eufy-product-image-wrapper { position: relative; top: 0; width: 100%; }
  .eufy-product-image-container { border-radius: 24px; }
  .eufy-product-specs-container { bottom: 12px; left: 12px; right: 12px; flex-direction: column; gap: 8px; }
  .eufy-spec-badge { padding: 12px; }
  .eufy-configurator-wrapper { padding-top: 0; }
  .eufy-product-name { font-size: 1.5rem; }
  .eufy-product-description { font-size: 1rem; }
  .eufy-price-container { margin-bottom: 24px; }
  .eufy-current-price { font-size: 1.5rem; }
  .eufy-old-price { font-size: 1rem; }
  .eufy-feature-cards { grid-template-columns: 100%; }
  .eufy-add-to-cart-btn { font-size: 1rem; height: 52px; }
}

/* Features Section Responsive - Requirement 8.5 */
@media (min-width: 981px) {
  .features-bento-grid { display: grid; grid-template-columns: 33.333% 33.333% 33.333%; grid-auto-rows: minmax(300px, auto); gap: 24px; }
  .feature-card-slim { grid-column: span 2; }
  .feature-card-boostiq { grid-row: span 2; }
  .feature-card-premium { grid-column: span 3; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .features-section { padding: 64px 0; }
  .features-bento-grid { display: grid; grid-template-columns: 50% 50%; grid-auto-rows: minmax(280px, auto); gap: 20px; }
  .feature-card-slim { grid-column: span 2; }
  .feature-card-boostiq { grid-row: span 1; }
  .feature-card-premium { grid-column: span 2; flex-direction: column; }
  .feature-card { padding: 32px; }
  .features-section .section-headline { font-size: 2.25rem; }
}

@media (max-width: 767px) {
  .features-section { padding: 48px 0; }
  .features-bento-grid { display: flex; flex-direction: column; gap: 16px; }
  .feature-card-slim, .feature-card-boostiq, .feature-card-premium { grid-column: span 1; grid-row: span 1; }
  .feature-card { padding: 24px; border-radius: 24px; }
  .feature-card-premium { flex-direction: column; gap: 24px; }
  .feature-card-premium .premium-visual { height: 200px; }
  .features-section .section-headline { font-size: 1.875rem; }
  .features-section .section-description { font-size: 1rem; }
  .card-title { font-size: 1.25rem; }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .height-comparison { margin-top: 24px; }
  .boost-visual { height: 160px; }
}

/* Reviews Section Responsive - Requirement 8.6 */
@media (min-width: 981px) {
  .eufy-reviews-grid { display: grid; grid-template-columns: 33.333% 33.333% 33.333%; gap: 32px; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .eufy-reviews-section { padding: 64px 0; }
  .eufy-reviews-grid { display: grid; grid-template-columns: 50% 50%; gap: 24px; }
  .eufy-reviews-headline { font-size: 1.75rem; }
  .eufy-review-card { padding: 24px; }
  .eufy-quote-icon { width: 32px; height: 32px; top: 24px; right: 24px; }
}

@media (max-width: 767px) {
  .eufy-reviews-section { padding: 48px 0; }
  .eufy-reviews-grid { display: flex; flex-direction: column; gap: 20px; }
  .eufy-reviews-headline { font-size: 1.5rem; }
  .eufy-review-card { padding: 20px; }
  .eufy-quote-icon { width: 28px; height: 28px; top: 20px; right: 20px; }
  .eufy-review-title { font-size: 0.875rem; }
  .eufy-review-content { font-size: 0.75rem; -webkit-line-clamp: 4; }
  .eufy-reviews-cta-link { margin-top: 32px; font-size: 0.875rem; }
}

/* Footer Responsive - Requirement 8.7 */
@media (min-width: 981px) {
  .eufy-footer-grid { display: grid; grid-template-columns: 40% 20% 20% 20%; gap: 48px; }
  .eufy-footer-brand { text-align: left; }
  .eufy-footer-column { text-align: left; }
}

@media (min-width: 768px) and (max-width: 980px) {
  .eufy-footer { padding: 48px 0; }
  .eufy-footer-grid { display: grid; grid-template-columns: 50% 25% 25%; gap: 32px; }
  .eufy-footer-brand { grid-column: span 3; text-align: center; margin-bottom: 16px; }
  .eufy-footer-tagline { max-width: 100%; margin: 0 auto; }
  .eufy-footer-column { text-align: center; }
  .eufy-footer-links { align-items: center; }
}

@media (max-width: 767px) {
  .eufy-footer { padding: 40px 0; }
  .eufy-footer-grid { display: flex; flex-direction: column; gap: 32px; text-align: center; }
  .eufy-footer-brand { display: flex; flex-direction: column; align-items: center; }
  .eufy-footer-logo { font-size: 1.25rem; }
  .eufy-footer-tagline { max-width: 100%; font-size: 0.875rem; }
  .eufy-footer-column { align-items: center; }
  .eufy-footer-column-title { font-size: 1rem; margin-bottom: 12px; }
  .eufy-footer-links { align-items: center; }
  .eufy-footer-link { font-size: 0.875rem; }
  .eufy-footer-copyright-wrapper { margin-top: 32px; padding-top: 24px; }
  .eufy-footer-copyright { font-size: 0.75rem; }
}

/* Video Modal Responsive */
@media (max-width: 767px) {
  .eufy-video-modal-container { width: 95%; max-width: none; margin: 16px; }
  .eufy-video-modal-close { top: -40px; right: 0; }
}

/* Typography Responsive Scaling */
@media (max-width: 980px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Divi Builder Responsive Overrides */
@media (max-width: 980px) {
  .et_pb_column { margin-bottom: 24px; }
  .et_pb_column:last-child { margin-bottom: 0; }
}

@media (max-width: 767px) {
  .et_pb_column { margin-bottom: 16px; }
  .et_pb_column_1_2, .et_pb_column_1_3, .et_pb_column_1_4, .et_pb_column_2_3, .et_pb_column_3_4 { width: 100% !important; }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .eufy-header, .eufy-mobile-menu, .eufy-scroll-indicator-wrapper, .eufy-video-modal { display: none !important; }
  .eufy-hero-section, .eufy-products-section, .features-section, .eufy-reviews-section, .eufy-footer { padding: 24px 0; }
  .eufy-hero-content, .eufy-products-layout, .features-bento-grid, .eufy-reviews-grid, .eufy-footer-grid { display: block; }
}


/* ==========================================================================
   11. ADDITIONAL UTILITY CLASSES
   ========================================================================== */

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Gap Utilities */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Width & Height Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.max-w-full { max-width: 100%; }
.max-w-screen-xl { max-width: 1280px; }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* Z-Index Utilities */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Text Utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

/* Color Utilities */
.text-white { color: #FFFFFF; }
.text-black { color: #000000; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1F2937; }
.text-gray-900 { color: #111827; }
.text-blue-500 { color: #3B82F6; }
.text-blue-600 { color: #2563EB; }
.text-blue-700 { color: #1D4ED8; }
.text-green-500 { color: #22C55E; }
.text-red-500 { color: #EF4444; }
.text-yellow-400 { color: #FACC15; }

.bg-white { background-color: #FFFFFF; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-200 { background-color: #E5E7EB; }
.bg-gray-800 { background-color: #1F2937; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-blue-500 { background-color: #3B82F6; }
.bg-blue-600 { background-color: #2563EB; }
.bg-transparent { background-color: transparent; }

/* Border Utilities */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-gray-100 { border-color: #F3F4F6; }
.border-gray-200 { border-color: #E5E7EB; }
.border-gray-300 { border-color: #D1D5DB; }
.border-blue-500 { border-color: #3B82F6; }
.border-transparent { border-color: transparent; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-none { box-shadow: none; }

/* Display Utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Opacity Utilities */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* Selection */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }

/* Word Break */
.break-words { word-wrap: break-word; overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* Truncate Text */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }


/* ==========================================================================
   12. DIVI SPECIFIC OVERRIDES
   ========================================================================== */

/* Reset Divi default styles for custom sections */
.et_pb_section.eufy-section {
  padding: 0 !important;
}

.et_pb_row.eufy-row {
  padding: 0 !important;
  width: 100% !important;
  max-width: 1280px !important;
}

.et_pb_column.eufy-column {
  padding: 0 !important;
}

/* Remove Divi default margins */
.et_pb_module.eufy-module {
  margin-bottom: 0 !important;
}

/* Override Divi text module styles */
.et_pb_text.eufy-text p {
  padding-bottom: 0 !important;
}

.et_pb_text.eufy-text h1,
.et_pb_text.eufy-text h2,
.et_pb_text.eufy-text h3,
.et_pb_text.eufy-text h4,
.et_pb_text.eufy-text h5,
.et_pb_text.eufy-text h6 {
  padding-bottom: 0 !important;
}

/* Override Divi button styles */
.et_pb_button.eufy-button {
  border-radius: 9999px !important;
  padding: 1rem 2rem !important;
  font-weight: 500 !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.et_pb_button.eufy-button:hover {
  transform: translateY(-2px) !important;
}

/* Override Divi image module */
.et_pb_image.eufy-image {
  margin-bottom: 0 !important;
}

.et_pb_image.eufy-image img {
  width: 100% !important;
  height: auto !important;
}

/* Override Divi blurb module for feature cards */
.et_pb_blurb.eufy-blurb {
  margin-bottom: 0 !important;
}

.et_pb_blurb.eufy-blurb .et_pb_blurb_content {
  max-width: none !important;
}

/* Override Divi divider */
.et_pb_divider.eufy-divider {
  margin: 0 !important;
}

.et_pb_divider.eufy-divider:before {
  top: 0 !important;
}

/* Ensure proper font inheritance */
.et_pb_section.eufy-section,
.et_pb_section.eufy-section * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Fix Divi visual builder conflicts */
.et-fb-post-content .eufy-header {
  position: relative !important;
}

.et-fb-post-content .video-modal {
  display: none !important;
}