.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    background-color: var(--bg-white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    height: 100%;
    gap: 40px;
}

/* --- Text Styling --- */
.category-pill {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 18px 35px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-text {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #E2E8F0;
}

/* --- Visual Styling --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-stage {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: var(--soft-bg);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    /* Dramatic rounded cut-out look */
    border-bottom-left-radius: 150px;
}

.image-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-slide.active img {
    transform: scale(1.1);
}

.floating-price-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.discount-badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    width: fit-content;
}

.price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* --- Slider Navigation --- */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 6%;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.nav-arrow {
    background: none;
    border: 1px solid #E2E8F0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100px;
    height: 2px;
    background: #E2E8F0;
    position: relative;
}

.progress-bar .fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary);
    width: 33%;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }

    .hero-description,
    .hero-actions,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .image-stage {
        height: 400px;
        border-radius: 40px;
        margin-bottom: 100px;
    }

    .slider-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* --- Mobile Responsive Fix --- */
@media (max-width: 1024px) {
    .premium-hero-slider {
        height: auto;
        min-height: 100vh;
        display: block;
        align-items: flex-start;
        /* Start content from top */
    }

    .hero-slide {
        position: relative;
        display: none;
        /* Controlled by JS */
        width: 100%;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        display: flex;
        flex-direction: column;
        /* Stacks items vertically */
    }

    /* 1. Content on TOP */
    .hero-text {
        order: 1;
        padding: 0 20px;
    }

    /* 2. Image on BOTTOM */
    .hero-visual {
        order: 2;
        width: 100%;
        margin-bottom: 60px;
        /* Space for the navigation buttons below image */
    }

    .image-stage {
        height: 320px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border-bottom-left-radius: 120px !important;
        border-top-right-radius: 40px !important;
        /* Adjusted for mobile scale */
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 20px;
    }

    /* 3. Slider Progress & Buttons Fix */
    .slider-nav {
        position: relative;
        /* Moves into the natural flow of the page */
        bottom: 0;
        right: 0;
        width: 100%;
        justify-content: center;
        padding: 20px 0;
        background: var(--bg-white);
        margin-top: 20px;
        order: 3;
        /* Ensures it sits at the very bottom of the content */
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .progress-container {
        gap: 10px;
    }

    .progress-bar {
        width: 60px;
        /* Slightly shorter for mobile screens */
    }
}


/* Categories section */

.orbit-categories {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 6%;
    position: relative;
}

.orbit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.orbit-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.orbit-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-top: 5px;
}

.orbit-title span { color: var(--primary); }

/* --- Navigation Buttons --- */
.orbit-controls { display: flex; gap: 10px; }

.orbit-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.orbit-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- The Scroll Area --- */
.orbit-wrapper {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    padding: 15px 5px;
    scroll-behavior: smooth; /* Essential for JS scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.orbit-wrapper::-webkit-scrollbar { display: none; }

.orbit-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    scroll-snap-align: start;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orbit-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: 0.4s;
}

.orbit-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

/* --- Hover State --- */
.orbit-item:hover .orbit-icon-wrapper {
    background: white;
    color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.orbit-item:hover .orbit-ring {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .orbit-categories { margin: 30px auto; }
    .orbit-wrapper { gap: 25px; }
    .orbit-icon-wrapper { width: 65px; height: 65px; font-size: 1.5rem; }
    .hide-mobile { display: none; }
    .orbit-title { font-size: 1.4rem; }
}


/* Trending Products */

.trending-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 6%;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.trending-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.trending-title { font-size: 2.2rem; font-weight: 800; color: var(--text); }
.trending-title span { color: var(--primary); }

/* --- Slider Controls --- */
.slider-controls {
    display: flex;
    gap: 12px;
}

.act-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid #E2E8F0;
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* --- Desktop Slider Layout --- */
.trending-grid {
    display: flex; /* Makes it a horizontal slider on desktop */
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 30px; /* Room for hover shadows */
}

.trending-grid::-webkit-scrollbar { display: none; }

.trending-card {
    flex: 0 0 290px; /* Fixed width for slider cards */
    background: var(--bg);
    border-radius: 28px;
    padding: 12px;
    border: 1px solid #F1F5F9;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* DECREASED HEIGHT: Perfect Square Image */
.product-visual {
    position: relative;
    aspect-ratio: 1 / 1; /* Changed from 4/5 to 1/1 to reduce desktop height */
    width: 100%;
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
}

.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }

/* Tags & Buttons */
.wishlist-btn { position: absolute; top: 15px; right: 15px; width: 42px; height: 42px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(8px); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--text); cursor: pointer; z-index: 5; transition: 0.3s; }
.wishlist-btn:hover { background: #fff; color: var(--notify); transform: scale(1.1); }
.discount-tag { position: absolute; bottom: 15px; left: 15px; background: var(--text); color: white; padding: 5px 12px; border-radius: 10px; font-size: 0.75rem; font-weight: 800; }

/* Details */
.product-details { padding: 18px 10px 8px; }
.details-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 15px; }
.product-title { font-size: 1.1rem; font-weight: 800; color: var(--text); max-width: 100%; }
.product-rating { display: flex; align-items: center; gap: 4px; background: var(--surface); padding: 4px 8px; border-radius: 8px; font-size: 0.8rem; font-weight: 800; flex-shrink: 0; }
.product-rating i { color: #F59E0B; }
.details-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.price-stack { display: flex; flex-direction: column; }
.current-price { font-size: 1.4rem; font-weight: 900; color: var(--text); }
.old-price { font-size: 0.9rem; color: #94A3B8; text-decoration: line-through; font-weight: 600; }

.cart-action-btn { width: 50px; height: 50px; background: var(--text); color: white; border: none; border-radius: 16px; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }

/* Desktop Hover */
@media (hover: hover) {
    .trending-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1); border-color: var(--secondary); }
    .trending-card:hover img { transform: scale(1.1); }
    .cart-action-btn:hover { background: var(--primary); transform: rotate(-10deg) scale(1.1); }
}

/* --- Centered Button --- */
.explore-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-explore-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    color: var(--text);
    border: 2px solid #E2E8F0;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-explore-center:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

/* =========================================
   MOBILE MASTER RESPONSIVENESS (UNCHANGED)
========================================= */
@media (max-width: 768px) {
    .trending-section { margin: 40px auto; padding: 0 4%; }
    .trending-header { margin-bottom: 25px; }
    .trending-title { font-size: 1.6rem; }
    
    .hide-mobile { display: none; } /* Hide arrows on mobile */

    /* Reverts back to your perfect 2-column grid */
    .trending-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .trending-card { flex: unset; width: 96%; padding: 8px 4px; border-radius: 20px; }
    .product-visual { border-radius: 16px; }

    .wishlist-btn { width: 32px; height: 32px; top: 10px; right: 10px; font-size: 1rem; }
    .discount-tag { padding: 4px 8px; bottom: 10px; left: 10px; font-size: 0.65rem; }
    .product-details { padding: 12px 4px 4px; }
    .details-top { flex-direction: column; gap: 8px; margin-bottom: 8px; }
    .product-title { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
    .product-rating { font-size: 0.7rem; padding: 2px 6px; }
    .details-bottom { margin-top: 15px; }
    .current-price { font-size: 1.1rem; }
    .old-price { font-size: 0.75rem; }
    .cart-action-btn { width: 38px; height: 38px; border-radius: 12px; font-size: 1.1rem; }

    .btn-explore-center { padding: 14px 30px; font-size: 0.95rem; width: 100%; justify-content: center; }
}

/* Discount Section */


.premium-flash-wrap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

:root {
    --primary: #6366F1;
    --dark: #0F172A;
    --glass: rgba(255, 255, 255, 0.8);
}

.omni-header-container {
    position: relative;
    max-width: 1400px;
    margin: 40px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.omni-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: 0;
}

/* --- THE ADAPTIVE ENGINE --- */
.omni-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Two columns on Desktop */
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Typography that scales perfectly from Mobile to Desktop */
.omni-main-title {
    font-size: clamp(2.5rem, 5vw, 5rem); 
    font-weight: 950;
    line-height: 0.95;
    color: var(--dark);
    letter-spacing: -2px;
    margin: 20px 0;
}

.omni-main-title span {
    background: linear-gradient(90deg, #6366F1, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Status Pill Styling */
.omni-status-row { display: flex; align-items: center; gap: 15px; }
.omni-live-pill {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.omni-pulse {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: p-pulse 1.5s infinite;
}

@keyframes p-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- THE TIMER MODULE --- */
.omni-timer-module {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 40px;
    border-radius: 35px;
    backdrop-filter: blur(10px);
}

.omni-timer-grid { display: flex; justify-content: space-between; align-items: center; }
.ot-segment { text-align: center; }
.ot-segment span { font-size: clamp(2rem, 3vw, 3rem); font-weight: 900; color: var(--dark); display: block; }
.ot-segment small { font-size: 0.65rem; font-weight: 800; color: #94A3B8; letter-spacing: 1.5px; }
.ot-sep { font-size: 1.5rem; font-weight: 900; color: var(--primary); padding-bottom: 20px; }
.ot-glow { color: var(--primary) !important; }

/* Progress Styling */
.omni-progress-wrap { margin-top: 30px; }
.omni-progress-bar { width: 100%; height: 6px; background: #E2E8F0; border-radius: 10px; overflow: hidden; }
.omni-progress-fill { width: 65%; height: 100%; background: var(--primary); border-radius: 10px; }
.omni-progress-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.75rem; font-weight: 700; color: #64748B; }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .omni-header-container {  padding: 40px 30px; border-radius: 30px; }
    .omni-content-wrapper { 
        grid-template-columns: 1fr; /* Switch to 1 column on Tablet/Mobile */
        text-align: left; 
    }
    .d-only { display: none; } /* Removes desktop line breaks */
    .omni-timer-module { padding: 25px; }
}

@media (max-width: 600px) {
    .omni-header-container { padding: 30px 20px; border-radius: 25px; }
    .omni-main-title { font-size: 3.2rem; }
    .ot-segment span { font-size: 2.2rem; }
}
/* --- GRID & CARDS --- */
.slanted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.slanted-card {
    position: relative;
    height: 480px;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.s-visual {
    position: relative;
    height: 60%;
    width: 100%;
    background: #F8FAFC;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    transition: 0.5s ease;
}

.s-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }

.s-content { padding: 30px; flex-grow: 1; display: flex; justify-content: space-between; align-items: flex-end; }
.s-details h3 { font-size: 1.6rem; font-weight: 900; color: var(--text); margin: 5px 0 10px; }
.s-price { font-size: 1.4rem; font-weight: 900; color: var(--text); }
.s-price s { font-size: 0.9rem; color: #94A3B8; margin-left: 8px; }

.s-btn {
    width: 65px; height: 65px; border-radius: 50%; border: none;
    background: var(--text); color: white; font-size: 1.8rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.4s; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hover State */
.slanted-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 30px 60px rgba(15,23,42,0.1); }
.slanted-card:hover .s-visual { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
.slanted-card:hover .s-btn { background: var(--primary); transform: rotate(-45deg); }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 1024px) {
    .flash-cinematic-header { flex-direction: column; align-items: flex-start; }
    .f-main-heading { font-size: 2.8rem; }
    .f-timer-container { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
    .f-main-heading { font-size: 2.2rem; }
    .slanted-card { height: 420px; }
}


/* Quick Picks */

.rec-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

/* Header Styling */
.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.rec-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6366F1;
    background: rgba(99, 102, 241, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
}

.rec-main-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #0F172A;
    margin-top: 10px;
}

.rec-main-title span { font-weight: 400; color: #64748B; }

.rec-link {
    color: #0F172A;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.rec-link:hover { color: #6366F1; }

/* Grid Engine */
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* The Legendary Card */
.rec-card {
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
}

.rec-image-area {
    position: relative;
    height: 350px;
    background: #F8FAFC;
    overflow: hidden;
}

.rec-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Actions Overlay */
.rec-hover-actions {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.rec-card:hover .rec-hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.rec-card:hover .rec-image-area img { transform: scale(1.1); }

/* Buttons inside card */
.rec-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0F172A;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.rec-add-cart {
    background: #0F172A;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.rec-add-cart:hover { background: #6366F1; }
.rec-icon-btn:hover { background: #6366F1; color: #ffffff; }

/* Info Area */
.rec-info { padding: 25px; }
.rec-brand { font-size: 0.65rem; font-weight: 800; color: #94A3B8; letter-spacing: 1.5px; }
.rec-info h3 { font-size: 1.2rem; font-weight: 800; color: #0F172A; margin: 5px 0 15px; }

.rec-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.rec-price { font-size: 1.3rem; font-weight: 900; color: #0F172A; }
.rec-rating { display: flex; align-items: center; gap: 5px; font-weight: 800; font-size: 0.9rem; }
.rec-rating i { color: #F59E0B; }

/* Tags */
.rec-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 2;
}
.gold { background: #FEF3C7; color: #92400E; }
.indigo { background: #E0E7FF; color: #4338CA; }

/* --- MOBILE LEGENDARY FIX --- */
@media (max-width: 768px) {
    .rec-section { padding: 0 20px; }
    .rec-grid { grid-template-columns: 1fr; }
    .rec-image-area { height: 400px; }
    
    /* On mobile, keep actions visible slightly or simplify */
    .rec-hover-actions {
        opacity: 1;
        background: transparent;
        backdrop-filter: none;
        transform: none;
        top: auto;
        bottom: 20px;
        justify-content: center;
    }
    .rec-add-cart { width: 60%; }
}

/* Action Strip */

:root {
    --primary: #6366F1;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --glass-border: rgba(226, 232, 240, 0.8);
}

.omni-nav-suite {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 40px;
}


/* --- ACTION TRUST STRIP --- */
.action-trust-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.strip-icon {
    width: 55px;
    height: 55px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.8rem;
    transition: 0.4s;
}

.strip-item:hover .strip-icon {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-5px) rotate(5deg);
}

.strip-text {
    display: flex;
    flex-direction: column;
}

.strip-text strong {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strip-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.strip-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
    margin: 0 20px;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 1024px) {
    .action-trust-strip {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .strip-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .strip-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 10%;
    }
    
    .breadcrumb-list {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .omni-nav-suite { padding: 0 20px; }
    .strip-item { padding-left: 0; }
    .strip-text strong { font-size: 0.9rem; }
}


/* Footer */

:root {
    --f-bg: #0F172A;
    --f-text: #94A3B8;
    --f-white: #FFFFFF;
    --f-primary: #6366F1;
}

.omni-footer {
    background: var(--f-bg);
    padding: 100px 0 30px;
    margin-top: 100px;
    border-radius: 60px 60px 0 0; /* Premium rounded top */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
}

/* Brand Section */
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.logo-dot { width: 12px; height: 12px; background: var(--f-primary); border-radius: 50%; }
.footer-logo h2 { color: var(--f-white); font-weight: 900; letter-spacing: -1px; font-size: 1.8rem; }
.footer-logo h2 span { color: var(--f-primary); }
.brand-desc { color: var(--f-text); line-height: 1.8; font-size: 0.95rem; margin-bottom: 30px; }

/* Social Buttons */
.social-stack { display: flex; gap: 15px; }
.social-btn {
    width: 45px; height: 45px; background: rgba(255,255,255,0.05);
    color: var(--f-white); display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 1.3rem; transition: 0.4s; text-decoration: none;
}
.social-btn:hover { background: var(--f-primary); transform: translateY(-5px); }

/* Link Styling */
.footer-zone h3 { color: var(--f-white); font-size: 1.1rem; font-weight: 800; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-zone ul { list-style: none; }
.footer-zone ul li { margin-bottom: 15px; }
.footer-zone ul li a { color: var(--f-text); text-decoration: none; font-weight: 600; transition: 0.3s; font-size: 0.9rem; }
.footer-zone ul li a:hover { color: var(--f-primary); padding-left: 8px; }

/* Newsletter Card */
.news-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
}
.news-card p { color: var(--f-text); font-size: 0.85rem; margin: 10px 0 20px; }
.news-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}
.news-form input {
    background: transparent; border: none; padding: 10px; color: white; width: 100%; outline: none;
}
.news-form button {
    background: var(--f-primary); color: white; border: none; width: 65px; height: 45px; 
    border-radius: 12px; cursor: pointer; transition: 0.3s;
}
.news-form button:hover { transform: scale(1.05); background: #4F46E5; }

/* Footer Bottom Strip */
.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 40px;
}
.bottom-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
}
.payment-methods { display: flex; gap: 20px; font-size: 1.5rem; color: #334155; }

/* --- MOBILE LEGENDARY ADAPTATION --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .newsletter-zone { grid-column: span 2; }
}

@media (max-width: 600px) {
    .omni-footer { padding-top: 60px; border-radius: 40px 40px 0 0; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-stack { justify-content: center; }
    .newsletter-zone { grid-column: span 1; }
    .bottom-wrap { flex-direction: column; gap: 20px; }
}