/* Eco-farm Poultry Hub - Main Stylesheet */
:root {
    --primary: #15803D;
    --primary-dark: #166534;
    --primary-light: #DCFCE7;
    --secondary: #EA580C;
    --secondary-dark: #C2410C;
    --secondary-light: #FFEDD5;
    --accent: #F97316;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.3);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Base */
html { scroll-behavior: smooth; height: 100%; }
body { font-family: var(--font-primary); color: var(--gray-800); overflow-x: hidden; min-height: 100%; display: flex; flex-direction: column; }
.site-wrapper { display: flex; flex-direction: column; flex: 1 0 auto; }
.footer { margin-top: auto; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
::selection { background: var(--primary); color: var(--white); }

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.glass-dark {
    background: rgba(17,24,39,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Cards */
.card-premium {
    background: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.card-premium .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-premium:hover .card-img-top {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220,38,38,0.3);
    color: var(--white);
}
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22,163,74,0.3);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* Navbar */
.navbar-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 0;
}
.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}
.navbar-main .navbar-brand img { height: 45px; width: auto; }
.navbar-main .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 1.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 80%; }
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary); }
.navbar-main.scrolled {
    box-shadow: var(--shadow);
}
.navbar-main .dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar-main .dropdown-item {
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}
.navbar-main .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.cart-icon:hover {
    background: var(--primary);
    color: var(--white);
}
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
/* Cart Page */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-name:hover { color: var(--primary); }
.cart-item-price { font-size: 0.85rem; color: var(--gray-500); margin-top: 2px; }
.cart-item-qty { flex-shrink: 0; }
.cart-item-total {
    font-weight: 700;
    color: var(--primary);
    min-width: 100px;
    text-align: right;
    flex-shrink: 0;
}
.cart-item-remove {
    flex-shrink: 0;
    border: none;
    background: none;
    color: var(--gray-400);
    padding: 0.25rem;
    font-size: 1.1rem;
}
.cart-item-remove:hover { color: #DC2626; background: none; }

/* Cart Toast Notice */
.cart-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}
.cart-notice.show { transform: translateX(0); }
.cart-notice a { color: var(--white); font-weight: 700; text-decoration: underline; margin-left: 0.5rem; }

/* Hero Section — Executive */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity, transform;
}
.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
    animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(145deg, rgba(0,0,0,0.7) 0%, rgba(0,20,10,0.5) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Floating gradient orbs for depth */
.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    z-index: 1;
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    top: auto;
    right: auto;
    animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Executive dark glass panel */
.hero-panel {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.5rem;
    padding: 3rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251,191,36,0.3), transparent);
}

.hero-accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #F97316);
    border-radius: 2px;
    margin-bottom: 1.25rem;
    animation: accentPulse 3s ease-in-out infinite;
}
@keyframes accentPulse {
    0%, 100% { opacity: 1; width: 50px; }
    50% { opacity: 0.7; width: 70px; }
}

.hero-panel .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.2);
    color: #FBBF24;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}

/* Slide text animation */
.hero-slides-text {
    position: relative;
}
.hero-slide-text {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-slide-text.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Executive buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.35s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.hero-btn-primary {
    background: linear-gradient(135deg, #059669, #10B981);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(5,150,105,0.3);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5,150,105,0.4);
    color: var(--white);
}
.hero-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-2px);
}

/* Slider controls — minimal */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    z-index: 5;
    font-size: 0.95rem;
}
.hero-control:hover {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}
.hero-prev  { left: 1.5rem; }
.hero-next  { right: 1.5rem; }

/* Dots — refined */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}
.hero-dot.active {
    background: #FBBF24;
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(251,191,36,0.3);
}
.hero-dot:hover {
    background: rgba(255,255,255,0.5);
}

/* Scroll indicator */
/* Hero featured products panel */
.hero-featured {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
    color: var(--white);
}
.hero-featured-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-featured-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-featured-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.85rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}
.hero-featured-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    text-decoration: none;
    color: var(--white);
}
.hero-featured-thumb {
    width: 44px;
    height: 44px;
    border-radius: 0.6rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-700);
}
.hero-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-featured-info {
    flex: 1;
    min-width: 0;
}
.hero-featured-name {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1px;
}
.hero-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
}
.hero-featured-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.hero-featured-arrow {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.hero-featured-item:hover .hero-featured-arrow {
    color: rgba(255,255,255,0.6);
    transform: translateX(3px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll i {
    font-size: 0.7rem;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(6px); opacity: 0.6; }
}

/* Hero responsive */
@media (max-width: 991.98px) {
    .hero-heading { font-size: 2.8rem; }
    .hero-panel { padding: 2.5rem; max-width: 600px; }
    .hero-control { width: 38px; height: 38px; font-size: 0.85rem; }
    .hero-prev { left: 1rem; }
    .hero-next { right: 1rem; }
    .hero-scroll { display: none; }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: 80vh; }
    .hero-heading { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-panel { padding: 2rem 1.5rem; max-width: 100%; border-radius: 1.25rem; }
    .hero-panel .hero-badge { font-size: 0.7rem; padding: 0.25rem 1rem; }
    .hero-control { width: 34px; height: 34px; font-size: 0.8rem; }
    .hero-prev { left: 0.75rem; }
    .hero-next { right: 0.75rem; }
    .hero-dots { bottom: 1.5rem; gap: 0.4rem; }
    .hero-dot { width: 6px; height: 6px; }
    .hero-dot.active { width: 20px; }
    .hero-orb, .hero-orb-2 { display: none; }
}
@media (max-width: 575.98px) {
    .hero-section { min-height: 70vh; }
    .hero-heading { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .hero-panel { padding: 1.5rem 1.25rem; border-radius: 1rem; }
    .hero-panel .hero-badge { font-size: 0.65rem; margin-bottom: 0.75rem; }
    .hero-btn { font-size: 0.8rem; padding: 0.6rem 1.25rem; }
    .hero-control { display: none; }
    .hero-dots { bottom: 1rem; }
    .hero-accent-line { width: 35px; height: 2px; }
}

/* Sections */
.section-padding { padding: 6rem 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* Why Choose Us */
.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.why-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}
.why-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: rotateY(180deg);
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 5rem 0;
}
.stats-section .stat-item { text-align: center; }
.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stats-section .stat-label {
    font-size: 1.125rem;
    opacity: 0.85;
}

/* Utility classes */
.icon-empty { font-size: 4rem; color: var(--gray-300); margin-bottom: 1rem; }
.icon-feature { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.icon-empty-lg { font-size: 5rem; margin-bottom: 1rem; }
.section-divider-left { margin-left: 0; }
.rounded-4 { border-radius: var(--radius-xl) !important; }
.counter-badge { transform: translate(20%,20%); min-width: 140px; }
.counter-number { font-size: 2rem; }
.section-title-serif { font-family: 'Playfair Display', serif; }

/* Farm-to-Factory Process */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}
.process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary);
}
.process-step .step-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.process-step .step-content:hover { box-shadow: var(--shadow-lg); }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-icon {
    color: var(--primary-light);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-card .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    overflow: hidden;
}
.testimonial-card .author-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Partners */
.partner-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #14532D 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
}
@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 5rem 0 0;
}
.footer h5 {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer a { color: var(--gray-400); }
.footer a:hover { color: var(--primary); }
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}
.footer .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.footer .newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
}
.footer .newsletter-input::placeholder { color: var(--gray-500); }

/* Breadcrumbs */
.breadcrumb-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: 7rem 0 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 80%, rgba(220,38,38,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 90% 20%, rgba(234,88,12,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 50% 50%, rgba(22,163,74,0.05) 0%, transparent 70%);
    z-index: -1;
}
.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.15), transparent);
}
.breadcrumb-section .container { position: relative; z-index: 1; }
.breadcrumb-section h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.breadcrumb-section .breadcrumb { background: transparent; margin: 0; }
.breadcrumb-section .breadcrumb-item { font-size: 0.875rem; }
.breadcrumb-section .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.breadcrumb-section .breadcrumb-item a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-section .breadcrumb-item.active { color: rgba(255,255,255,0.85); font-weight: 500; }
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.2);
    content: "/";
    font-size: 0.75rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.video-item .gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
    pointer-events: none;
}
.gallery-item.video-item:hover .gallery-play-icon { transform: translate(-50%, -50%) scale(1.15); }
.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Team */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.team-card .team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    transition: all 0.4s ease;
}
.team-card:hover .team-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}
.team-card .team-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
}
.team-card .team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Certification badges */
.cert-badge {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}
.cert-badge:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-badge img { height: 80px; margin-bottom: 1rem; }

/* Blog */
.blog-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-card .blog-image {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image { transform: scale(1.05); }
.blog-card .card-body { padding: 1.5rem; }
.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.blog-card .blog-meta i { margin-right: 0.3rem; }
.blog-card .blog-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.sidebar-widget .widget-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37,211,102,0.5);
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9998;
    display: none;
}

/* Newsletter popup */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.newsletter-popup .popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}
.newsletter-popup .popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filter buttons */
.filter-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.3s ease;
    cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Product Detail */
.product-detail-gallery .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.product-detail-gallery .thumb-images img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.product-detail-gallery .thumb-images img:hover,
.product-detail-gallery .thumb-images img.active {
    border-color: var(--primary);
}

/* News Detail */
.blog-detail .featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.blog-detail .content { line-height: 1.8; }
.blog-detail .content p { margin-bottom: 1.5rem; }
.blog-detail .content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Recipe Card */
.recipe-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.recipe-card .recipe-image {
    height: 240px;
    object-fit: cover;
}
.recipe-card .recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.recipe-card .recipe-meta i { margin-right: 0.3rem; }

/* ===== Hamburger Animation ===== */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    position: relative;
    z-index: 1060;
    transition: all 0.3s ease;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    position: relative;
    transition: all 0.3s ease;
    display: block;
}
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    position: absolute;
    transition: all 0.3s ease;
}
.navbar-toggler .navbar-toggler-icon::before {
    top: -7px;
}
.navbar-toggler .navbar-toggler-icon::after {
    top: 7px;
}
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}
.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--primary);
}
.navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--primary);
}

/* ===== Mobile Offcanvas Menu ===== */
.offcanvas#mobileMenu {
    width: 300px;
    background: var(--white);
}
.offcanvas#mobileMenu .offcanvas-header {
    background: var(--white);
    padding: 1rem 1.25rem;
}
.offcanvas#mobileMenu .offcanvas-header .navbar-brand {
    display: flex;
    align-items: center;
}
.offcanvas#mobileMenu .offcanvas-header .navbar-brand img { height: 40px; width: auto; }
.offcanvas#mobileMenu .offcanvas-header .btn-close {
    font-size: 0.9rem;
}
.offcanvas#mobileMenu .offcanvas-body {
    background: var(--white);
}
.offcanvas#mobileMenu .navbar-nav {
    flex-direction: column;
    width: 100%;
}
.offcanvas#mobileMenu .nav-link {
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}
.offcanvas#mobileMenu .nav-link:hover,
.offcanvas#mobileMenu .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}
.offcanvas#mobileMenu .dropdown-menu {
    position: static !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: var(--gray-50);
}
.offcanvas#mobileMenu .dropdown-menu .dropdown-item {
    padding: 0.8rem 1.25rem 0.8rem 2.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}
.offcanvas#mobileMenu .dropdown-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.offcanvas#mobileMenu .dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
}
.offcanvas-backdrop {
    background: rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-padding { padding: 4rem 0; }
    .section-subtitle { font-size: 1rem; }
    .process-timeline::before { left: 30px; }
    .process-step { flex-direction: column !important; text-align: left !important; padding-left: 60px; }
    .process-step .step-number { left: 0; transform: none; }
    .process-step .step-content { width: 100%; }
    .product-image { height: 220px; }
    .blog-image { height: 200px; }
    .recipe-image { height: 200px; }
    .card-premium .card-img-top { height: 200px; }
}
@media (max-width: 767.98px) {
    .section-title { font-size: 1.8rem; }
    .stats-section .stat-number { font-size: 2.5rem; }
    .stats-section { padding: 3.5rem 0; }
    .cta-section { padding: 3.5rem 0; }
    .navbar-main .navbar-brand img { height: 35px; }
    .navbar-main .nav-link { padding: 0.75rem 1rem !important; }
    .gallery-item img { height: 200px; }
    .product-detail-gallery .main-image { height: 300px; }
    .product-image { height: 200px; }
    .blog-image { height: 180px; }
    .recipe-image { height: 180px; }
    .card-premium .card-img-top { height: 180px; }
    .why-card h5 { font-size: 1.05rem; }
    .blog-card .card-title { font-size: 1rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 1.5rem; left: 1.5rem; }
    .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 1.5rem; right: 1.5rem; }
}
@media (max-width: 575.98px) {
    .breadcrumb-section { padding: 6rem 0 2rem; }
    .breadcrumb-section h1 { font-size: 1.65rem; }
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }
    .product-image { height: 180px; }
    .blog-image { height: 160px; }
    .recipe-image { height: 160px; }
    .card-premium .card-img-top { height: 160px; }
    .gallery-item img { height: 160px; }
    .stats-section { padding: 3rem 0; }
    .cta-section { padding: 3rem 0; }
    .stats-section .stat-number { font-size: 2rem; }
    .why-card h5 { font-size: 1rem; }
    .team-card .team-name { font-size: 1rem; }
    .newsletter-popup .modal-content { padding: 2rem 1.5rem; }
    .product-detail-gallery .main-image { height: 250px; }
}
@media (max-width: 400px) {
    .section-title { font-size: 1.3rem; }
    .product-image, .blog-image, .recipe-image, .card-premium .card-img-top { height: 140px; }
}

.exec-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.section-products-executive {
    padding: 6rem 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
.section-products-executive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5,150,105,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.exec-filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
    cursor: pointer;
}
.exec-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.exec-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(21,128,61,0.25);
}

.exec-product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}
.exec-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.exec-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}
.exec-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exec-product-card:hover .exec-product-image img {
    transform: scale(1.08);
}

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

.exec-product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    color: var(--gray-800);
    padding: 0.2rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}
.exec-product-stock {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
}

.exec-product-body {
    padding: 1rem 1.25rem 1.25rem;
}
.exec-product-body h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.exec-product-body p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.5;
}
.exec-product-weight {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-bottom: 0.4rem;
}

@media (max-width: 1199.98px) {
    .exec-product-image { aspect-ratio: 5/4; }
}
@media (max-width: 991.98px) {
    .section-products-executive { padding: 4rem 0; }
    .exec-product-image { aspect-ratio: 4/3; }
}
@media (max-width: 767.98px) {
    .section-products-executive { padding: 3rem 0; }
    .exec-product-image { aspect-ratio: 5/4; }
    .exec-product-body { padding: 0.85rem 1rem 1rem; }
    .exec-product-body h5 { font-size: 0.9rem; }
}

/* Video Modal */
.video-modal .modal-dialog { max-width: 800px; }
.video-modal .modal-body { padding: 0; background: #000; border-radius: var(--radius-lg); }
.video-modal .modal-header { border: none; position: absolute; top: 0; right: 0; z-index: 10; }
.video-modal .modal-header .btn-close { background: rgba(255,255,255,0.8); border-radius: 50%; padding: 0.5rem; }
.video-modal .modal-content { background: transparent; border: none; }
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: var(--radius-lg); }

@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;
    }
}
