/* Hero Slider - Glassmorphism & Ultra Modern Design */

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slide Background with Enhanced Parallax Effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-out;
    filter: brightness(0.7) contrast(1.1);
}

.swiper-slide-active .slide-bg {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
        filter: brightness(0.7) contrast(1.1);
    }
    to {
        transform: scale(1.15);
        filter: brightness(0.8) contrast(1.15);
    }
}

/* Premium Glassmorphism Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(15, 15, 30, 0.85) 0%,
            rgba(26, 26, 46, 0.75) 30%,
            rgba(22, 33, 62, 0.65) 60%,
            rgba(15, 15, 30, 0.85) 100%
        );
    backdrop-filter: blur(3px) saturate(180%);
    -webkit-backdrop-filter: blur(3px) saturate(180%);
    z-index: 1;
}

/* Glassmorphism Content Container */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(255, 107, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .slide-content {
    animation: glassFloat 1s ease-out forwards;
}

@keyframes glassFloat {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium Animated Title */
.slide-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px);
    animation: titleSlideUp 1s ease-out 0.3s forwards;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.slide-title .highlight {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8500 50%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.6));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.6));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 133, 0, 0.9));
    }
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Description Text */
.slide-description {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism CTA Button - Ultra Premium */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8500 50%, #FF6B00 100%);
    background-size: 200% 200%;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(255, 107, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 107, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slide-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.slide-cta:hover::before {
    left: 100%;
}

.slide-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-cta:hover::after {
    opacity: 1;
}

.slide-cta:hover {
    transform: translateY(-8px) scale(1.05);
    background-position: 100% 50%;
    box-shadow: 
        0 16px 48px rgba(255, 107, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 107, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.slide-cta svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.slide-cta:hover svg {
    transform: translateX(8px) scale(1.2);
}

/* Premium Glassmorphism Badge */
.product-badge {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 3;
    opacity: 1;
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 107, 0, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 50px rgba(255, 107, 0, 0.5);
    }
}

/* Enhanced Floating Elements with Glassmorphism */
.floating-element {
    position: absolute;
    z-index: 2;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-element-1 {
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 133, 0, 0.1));
    border-radius: 50%;
    animation-delay: 0s;
    box-shadow: 
        0 8px 32px rgba(255, 107, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.floating-element-2 {
    top: 55%;
    right: 12%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 107, 0, 0.08));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2.5s;
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(255, 107, 0, 0.1);
}

.floating-element-3 {
    bottom: 18%;
    left: 18%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 107, 0, 0.1));
    border-radius: 20px;
    animation-delay: 5s;
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 107, 0, 0.15);
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Premium Glassmorphism Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white !important;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slider-wrapper:hover .swiper-button-next,
.hero-slider-wrapper:hover .swiper-button-prev {
    opacity: 0.8;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1 !important;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.95), rgba(255, 133, 0, 0.95));
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
    box-shadow: 
        0 12px 40px rgba(255, 107, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 107, 0, 0.4);
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 800;
}

/* Premium Glassmorphism Pagination */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet-active {
    width: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8500 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 20px rgba(255, 107, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Ultra Premium Glassmorphism Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: white;
    cursor: pointer;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        0 0 60px rgba(255, 107, 0, 0.15);
    animation: bounce 3s infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: fit-content;
    max-width: max-content;
}

/* Animated gradient background */
.scroll-indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.4), rgba(255, 133, 0, 0.2), rgba(255, 255, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.scroll-indicator:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 133, 0, 0.2));
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateX(-50%) translateY(-8px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(255, 107, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 80px rgba(255, 107, 0, 0.3);
}

.scroll-indicator:hover::before {
    opacity: 1;
}

.scroll-indicator:hover::after {
    width: 200px;
    height: 200px;
}

.scroll-indicator:active {
    transform: translateX(-50%) translateY(-4px) scale(1.02);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-18px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator span {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-indicator:hover span {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    animation: arrowDown 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.scroll-indicator:hover svg {
    animation: arrowDownFast 1s ease-in-out infinite;
    filter: drop-shadow(0 0 16px rgba(255, 107, 0, 0.8));
}

@keyframes arrowDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(14px);
        opacity: 0.6;
    }
}

@keyframes arrowDownFast {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(18px) scale(1.1);
        opacity: 0.7;
    }
}
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.6;
    }
}

/* Responsive Design - Enhanced for Mobile */
@media (max-width: 768px) {
    .slide-content {
        padding: 40px 30px;
        border-radius: 24px;
        max-width: 90%;
    }

    .slide-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .slide-description {
        font-size: 1.05rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .slide-cta {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .product-badge {
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 12px;
        font-size: 0.6rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }

    .swiper-button-next {
        right: 15px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .floating-element {
        opacity: 0.2;
    }

    .floating-element-1 {
        width: 60px;
        height: 60px;
    }

    .floating-element-2 {
        width: 80px;
        height: 80px;
    }

    .floating-element-3 {
        width: 50px;
        height: 50px;
    }

    .scroll-indicator {
        bottom: 30px;
        padding: 10px 20px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .scroll-indicator svg {
        width: 24px;
        height: 24px;
    }
}

/* Ultra Premium Loading Animation */
.hero-slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slider-loading .spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-top-color: #FF6B00;
    border-right-color: #FF8500;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-slider-loading span {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 3D Glassmorphism Effect for Slides */
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==================== Additional Premium Effects ==================== */

/* Particle Effect Background */
.hero-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 133, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Ambient Light Effects */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    pointer-events: none;
}

.swiper-slide-active::after {
    opacity: 1;
}

/* Smooth Transitions Between Slides */
.swiper-slide {
    opacity: 0.5;
    transition: opacity 0.8s ease;
}

.swiper-slide-active {
    opacity: 1;
}

/* Enhanced Glass Reflection Effect */
.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
}

/* Animated Border Gradient */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 80px rgba(255, 107, 0, 0.15);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 100px rgba(255, 133, 0, 0.25);
    }
}

.swiper-slide-active .slide-content {
    animation: glassFloat 1s ease-out forwards, borderGlow 3s ease-in-out infinite;
}

/* Cursor Effect on Glass Elements */
.slide-content:hover {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 107, 0, 0.25);
}

/* Premium Focus States */
.slide-cta:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(255, 107, 0, 0.3),
        0 16px 48px rgba(255, 107, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* 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;
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    .hero-slider-wrapper {
        background: linear-gradient(135deg, #0a0a12 0%, #12121f 50%, #0e1525 100%);
    }
    
    .slide-content {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
    }
}

/* Performance Optimization */
.hero-slider-wrapper,
.swiper-slide,
.slide-bg,
.slide-overlay,
.slide-content {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
/* ========================================
   PRODUCT-FOCUSED HERO SLIDER STYLES
   ======================================== */

/* Split Layout for Product Display */
.slide-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    padding: 80px;
    text-align: right;
}

.slide-text-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slide-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: #FF6B00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.slide-title-large {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-align: right;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.slide-description-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
    max-width: 500px;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-2px);
}

.feature-item i {
    color: #FF6B00;
    font-size: 18px;
}

/* Price & CTA Bar */
.slide-bottom-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.slide-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: #FF6B00;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.slide-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    cursor: pointer;
    touch-action: manipulation;
}

/* Product Image Side */
.slide-product-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.product-main-image {
    position: relative;
    max-width: 500px;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: floatProduct 4s ease-in-out infinite;
    z-index: 2;
    
    /* Professional frame styling */
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 107, 0, 0.2);
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.swiper-slide-active .product-main-image {
    animation: floatProduct 4s ease-in-out infinite, zoomInProduct 0.8s ease-out;
}

@keyframes zoomInProduct {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Product Decorations */
.product-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    animation: rotateDecoration 20s linear infinite;
}

.product-decoration-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.product-decoration-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 5%;
    animation-delay: -7s;
}

.product-decoration-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 5%;
    animation-delay: -14s;
}

@keyframes rotateDecoration {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .slide-text-side {
        text-align: center;
    }
    
    .slide-category,
    .slide-description-large {
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .slide-bottom-bar {
        justify-content: center;
    }
    
    .slide-product-side {
        height: 400px;
    }
    
    .product-main-image {
        max-width: 350px;
        max-height: 350px;
    }
    
    .slide-title-large {
        font-size: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .slide-content-split {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .slide-title-large {
        font-size: 1.8rem;
        margin-top: 40px;
    }
    
    .slide-description-large {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 10px 0;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .product-features {
        gap: 8px;
        margin-top: 8px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .slide-product-side {
        height: 250px;
    }
    
    .product-main-image {
        max-width: 220px;
        max-height: 220px;
    }
    
    .slide-cta-large {
        padding: 12px 24px;
        font-size: 14px;
        z-index: 10;
        min-height: 44px;
        width: auto;
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .slide-content-split {
        padding: 10px 10px;
        gap: 15px;
    }
    
    .slide-title-large {
        font-size: 1.3rem;
        margin-top: 35px;
        line-height: 1.15;
    }
    
    .slide-description-large {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 6px 0;
    }
    
    .slide-category {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .price-currency {
        font-size: 0.8rem;
    }
    
    .product-features {
        gap: 5px;
        margin-top: 6px;
    }
    
    .feature-item {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .feature-item i {
        font-size: 8px;
    }
    
    .slide-bottom-bar {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }
    
    .product-main-image {
        max-width: 180px;
        max-height: 180px;
    }
    
    .slide-product-side {
        height: 200px;
    }
    
    .slide-cta-large {
        padding: 12px 20px;
        font-size: 13px;
        width: auto;
        max-width: 200px;
        justify-content: center;
        z-index: 10;
        min-height: 44px;
        display: inline-flex !important;
    }
    
    .slide-cta-large svg {
        width: 16px;
        height: 16px;
    }
}

