/* ============================================
   ENTERPRISE HERO SECTION
   Inti Wasi Global - E-commerce International
   ============================================ */

/* ============================================
   HERO ENTERPRISE BASE
   ============================================ */

.hero-enterprise {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
}

/* ============================================
   VIDEO BACKGROUND LAYER
   ============================================ */

.hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    /* CRITICAL FIX: Ensure video layer doesn't block interactions.
       Even though it's at z-index: 0 (below content), pointer-events: none
       ensures no interference with text selection or button clicks. */
    pointer-events: none;
}

.hero-video-layer video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.15;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(248, 244, 240, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 1;
    /* CRITICAL FIX: Allow text selection and interaction through the overlay.
       Without this, the overlay blocks all mouse events including text selection,
       even though content has higher z-index (z-index: 2). pointer-events: none
       makes the overlay purely visual. */
    pointer-events: none;
}

/* ============================================
   SWIPER SLIDER CUSTOMIZATION
   ============================================ */

.hero-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 200px);
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: var(--spacing-3xl) 0;
    padding-bottom: 200px; /* Space for absolute trust bar */
}

/* Custom navigation buttons */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(217, 118, 66, 0.1);
    transition: all var(--transition-base);
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-700);
}

.hero-slider .swiper-button-prev:hover::after,
.hero-slider .swiper-button-next:hover::after {
    color: var(--color-white);
}

/* Custom pagination */
.hero-slider .swiper-pagination {
    bottom: 170px;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-400);
    opacity: 1;
    transition: all var(--transition-base);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

/* Progress bar (optional) */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    background: var(--color-primary);
    width: 0;
    transition: width 0.3s linear;
}

/* ============================================
   SLIDE CONTENT GRID
   ============================================ */

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-text-enterprise {
    max-width: 640px;
}

/* ============================================
   PREMIUM BADGES
   ============================================ */

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(217, 118, 66, 0.1) 0%, rgba(217, 118, 66, 0.05) 100%);
    border: 1px solid rgba(217, 118, 66, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 118, 66, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(217, 118, 66, 0);
    }
}

/* ============================================
   TITLE ANIMATIONS
   ============================================ */

.hero-title-xl {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-xl);
    font-family: var(--font-serif);
}

.gradient-text-animated {
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-terracotta) 50%,
        var(--color-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

/* FIX: Enable text selection on gradient text.
   The -webkit-text-fill-color: transparent makes text invisible, so text selection
   doesn't render properly (cursor flickers, text can't be highlighted).
   Override fill color and add visible background when text is selected.
   IMPORTANT: This only affects SELECTED text. The main fix is pointer-events: none
   on hero-video-overlay which was blocking all mouse interactions. */
.gradient-text-animated::selection {
    -webkit-text-fill-color: var(--color-white) !important;
    background: var(--color-primary);
    color: var(--color-white);
}

.gradient-text-animated::-moz-selection {
    -webkit-text-fill-color: var(--color-white) !important;
    background: var(--color-primary);
    color: var(--color-white);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    max-width: 600px;
}

/* FIX: Ensure all hero text is selectable (no user-select restrictions) */
.hero-text-enterprise,
.hero-title-xl,
.hero-subtitle {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */

.countdown-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(255, 87, 51, 0.1) 0%, rgba(217, 118, 66, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(255, 87, 51, 0.3);
    margin-bottom: var(--spacing-xl);
}

.countdown-inline > span {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.countdown-timer {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    gap: var(--spacing-xs);
}

.time-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-mono);
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.time-label {
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
    text-transform: uppercase;
    margin-top: var(--spacing-xs);
}

.countdown-separator {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* ============================================
   CTA GROUP ENHANCED
   ============================================ */

.hero-cta-group {
    display: flex;
    gap: calc(var(--spacing-lg) + 4px); /* FIX: Increased gap by 4px to reduce edge sensitivity and flicker */
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    align-items: flex-start; /* FIX: Changed from center to flex-start to prevent layout shift when button transforms */
}

/* FIX: Ensure each button in the group has its own rendering context to prevent flickering.
   CRITICAL: Do NOT set a base transform here as it conflicts with hover transform.
   The hover state in buttons-enterprise.css uses translate3d(0, -3px, 0), and setting
   a base transform here causes the button to "jump" between transforms, creating flicker. */
.hero-cta-group .btn-enterprise {
    will-change: transform; /* Hint to browser to optimize transform animations */
    backface-visibility: hidden; /* Prevent flickering during transforms */
    -webkit-backface-visibility: hidden;
    /* REMOVED: transform: translateZ(0) - conflicts with hover transform and causes flicker */
}

/* ============================================
   BUTTONS - MOVED TO buttons-enterprise.css
   ============================================ */
/* .btn-enterprise-xl, .btn-badge-enterprise moved to buttons-enterprise.css */

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-2px);
    }
}

/* ============================================
   TRUST INDICATORS INLINE
   ============================================ */

.hero-trust-inline {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-trust-inline span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    font-weight: 500;
}

.hero-trust-inline span::before {
    content: 'âœ“';
    color: var(--color-success);
    font-weight: 700;
    font-size: var(--font-size-base);
}

/* ============================================
   PRODUCTS SHOWCASE GRID
   ============================================ */

.hero-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 480px;
    width: 100%;
}

.product-card-hero {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image-hero {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
}

.product-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.badge-hot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff5733 0%, #ff8c42 100%);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    animation: hotPulse 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-hot i {
    flex-shrink: 0;
}

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

.product-info-hero {
    padding: var(--spacing-xl);
}

.product-info-hero h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-900);
}

.price-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.price-old {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    text-decoration: line-through;
}

.price-current {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.rating-hero {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.stars {
    color: #FFB800;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.stars i {
    flex-shrink: 0;
}

/* .btn-add-to-cart-hero moved to buttons-enterprise.css */

/* ============================================
   HERO SEARCH BAR
   ============================================ */

.hero-search-container {
    margin-bottom: var(--spacing-2xl);
}

.search-box-large {
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-2xl);
    border: 2px solid rgba(217, 118, 66, 0.1);
    transition: all var(--transition-base);
    max-width: 600px;
}

.search-box-large:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(217, 118, 66, 0.1), var(--shadow-2xl);
}

.search-box-large i {
    width: 24px;
    height: 24px;
    color: var(--color-gray-400);
    margin-left: var(--spacing-md);
}

.search-box-large input {
    flex: 1;
    border: none;
    outline: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    color: var(--color-gray-900);
    background: transparent;
}

.search-box-large input::placeholder {
    color: var(--color-gray-400);
}

/* .btn-search moved to buttons-enterprise.css */

.popular-searches {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.popular-searches > span {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    font-weight: 500;
}

.popular-searches a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
    text-decoration: none;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.popular-searches a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   TRUST BAR PREMIUM - ENTERPRISE EDITION
   ============================================ */

.trust-bar-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 244, 240, 0.98) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 2px solid rgba(217, 118, 66, 0.2);
    padding: var(--spacing-2xl) 0;
    z-index: 5;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.08),
        0 -2px 8px rgba(217, 118, 66, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-bar-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(217, 118, 66, 0.3) 50%,
        transparent 100%
    );
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 0 1 auto;
    width: calc(20% - var(--spacing-lg));
    min-width: 200px;
    max-width: 240px;
    height: 88px;
    padding: var(--spacing-lg);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    border-radius: var(--radius-xl);
    border: 1px solid rgba(217, 118, 66, 0.15);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(217, 118, 66, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(217, 118, 66, 0.03) 0%,
        transparent 50%,
        rgba(217, 118, 66, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item-premium:hover::before {
    opacity: 1;
}

.trust-item-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 118, 66, 0.3);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(217, 118, 66, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.trust-item-premium i {
    width: 48px;
    height: 48px;
    padding: 10px;
    background: linear-gradient(
        135deg,
        rgba(217, 118, 66, 0.1) 0%,
        rgba(217, 118, 66, 0.05) 100%
    );
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow:
        0 2px 8px rgba(217, 118, 66, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item-premium:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(
        135deg,
        rgba(217, 118, 66, 0.2) 0%,
        rgba(217, 118, 66, 0.1) 100%
    );
    box-shadow:
        0 4px 16px rgba(217, 118, 66, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.trust-item-text strong {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-item-text span {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-gray-600);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Staggered entrance animation */
.trust-item-premium {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.trust-item-premium:nth-child(1) { animation-delay: 0.1s; }
.trust-item-premium:nth-child(2) { animation-delay: 0.2s; }
.trust-item-premium:nth-child(3) { animation-delay: 0.3s; }
.trust-item-premium:nth-child(4) { animation-delay: 0.4s; }
.trust-item-premium:nth-child(5) { animation-delay: 0.5s; }

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

/* Shine effect on hover */
.trust-item-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.trust-item-premium:hover::after {
    left: 100%;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 1200px) {
    .hero-enterprise {
        overflow: visible;
    }

    .hero-content-grid {
        gap: var(--spacing-3xl);
    }

    .hero-title-xl {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
    }

    .hero-text-enterprise {
        max-width: 100%;
    }

    .hero-products-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 44px;
        height: 44px;
    }

    .countdown-inline {
        padding: var(--spacing-lg) var(--spacing-xl);
        gap: var(--spacing-md);
    }

    .search-box-large {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .hero-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box-large {
        max-width: 100%;
    }

    .hero-title-xl {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg) !important;
    }
}

@media (max-width: 768px) {
    .hero-enterprise {
        padding-top: 100px;
        padding-bottom: 0;
        min-height: auto;
        overflow: visible;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
    }

    .hero-slider .swiper-slide {
        min-height: auto;
        padding: var(--spacing-3xl) 0;
        padding-bottom: 550px; /* Space for absolute vertical trust bar */
    }

    .hero-title-xl {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-lg);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }

    .countdown-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }

    .countdown-timer {
        width: 100%;
        justify-content: space-between;
    }

    .time-unit {
        min-width: 60px;
    }

    .time-value {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-cta-group {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    /* Button responsive styles moved to buttons-enterprise.css */

    .hero-products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .trust-bar-premium {
        padding: var(--spacing-xl) 0;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .trust-item-premium {
        width: 100%;
        max-width: 100%;
        height: 80px;
        justify-content: flex-start;
        min-width: auto;
        padding: var(--spacing-md);
    }

    .trust-item-text strong,
    .trust-item-text span {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .trust-item-premium i {
        width: 44px;
        height: 44px;
        padding: 8px;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    .search-box-large {
        flex-wrap: wrap;
    }

    /* .btn-search responsive moved to buttons-enterprise.css */

    .badge-premium {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .hero-search-container {
        margin-bottom: var(--spacing-xl);
    }

    .search-box-large {
        max-width: 100%;
        padding: var(--spacing-xs);
    }

    .search-box-large input {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm);
    }

    /* .btn-search responsive moved to buttons-enterprise.css */

    .popular-searches {
        font-size: var(--font-size-xs);
    }

    .popular-searches a {
        font-size: var(--font-size-xs);
        padding: 4px 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md) !important;
        margin-bottom: var(--spacing-lg) !important;
    }

    .stat-number {
        font-size: var(--font-size-3xl) !important;
    }

    .stat-label {
        font-size: var(--font-size-xs) !important;
    }

    .product-info-hero {
        padding: var(--spacing-lg);
    }

    .product-info-hero h3 {
        font-size: var(--font-size-base);
    }

    .price-current {
        font-size: var(--font-size-xl);
    }

    .hero-trust-inline {
        gap: var(--spacing-sm);
    }

    .hero-trust-inline span {
        font-size: var(--font-size-xs);
    }

    .swiper-pagination {
        bottom: 480px;
    }
}

/* Extra small devices (320px - 480px) */
@media (max-width: 480px) {
    .hero-enterprise {
        padding-top: 80px;
        padding-bottom: 0;
        overflow: visible;
    }

    .hero-slider .swiper-slide {
        padding: var(--spacing-2xl) 0;
        padding-bottom: 460px; /* Space for absolute vertical trust bar */
    }

    .hero-title-xl {
        font-size: clamp(1.5rem, 10vw, 2rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    .badge-premium {
        font-size: 0.625rem;
        padding: 6px 10px;
        gap: 4px;
    }

    .badge-premium i {
        width: 12px;
        height: 12px;
    }

    .countdown-inline {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .countdown-inline > span {
        font-size: var(--font-size-xs);
    }

    .time-unit {
        min-width: 50px;
    }

    .time-value {
        font-size: clamp(1.25rem, 8vw, 1.75rem);
    }

    .time-label {
        font-size: 0.625rem;
    }

    .countdown-separator {
        font-size: var(--font-size-lg);
    }

    .hero-cta-group {
        gap: var(--spacing-sm);
    }

    /* Button responsive styles moved to buttons-enterprise.css */

    .search-box-large {
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-sm);
    }

    .search-box-large i {
        display: none;
    }

    .search-box-large input {
        padding: var(--spacing-sm);
        text-align: center;
    }

    /* .btn-search responsive moved to buttons-enterprise.css */

    .popular-searches {
        justify-content: center;
    }

    .trust-bar-premium {
        padding: var(--spacing-lg) 0;
    }

    .trust-bar-content {
        gap: var(--spacing-sm);
    }

    .trust-item-premium {
        width: 100%;
        max-width: 100%;
        height: 72px;
        min-width: auto;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .trust-item-text strong,
    .trust-item-text span {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .trust-item-premium i {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .trust-item-text {
        gap: 2px;
    }

    .trust-item-text strong {
        font-size: var(--font-size-xs);
    }

    .trust-item-text span {
        font-size: 0.625rem;
        line-height: 1.3;
    }

    .swiper-pagination {
        bottom: 420px;
    }
}
