:root {
    /* OneEuro Store Color Palette */
    --brand-red: #FF3A52;
    --brand-red-hover: #ff5a6e;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-gray: rgba(255, 255, 255, 0.6);

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --container-width: 1920px;
    --header-height: 85px;
    --announcement-height: 0px;
}

/* Base Reset & Background */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 58, 82, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding-top: calc(var(--header-height) + var(--announcement-height));
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Text Decor */
body::before {
    content: "1EURO STORE";
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 20vw;
    font-weight: 900;
    color: white;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.container-custom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Announcement Bar - Seasonal Fire Frame Effect */
@keyframes fire-wave-scroll {
    0% { background-position: 0px 100%, 0px 100%, 0px 100%; }
    100% { background-position: -1000px 100%, -600px 100%, -1400px 100%; }
}

@keyframes fire-pulse-base {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 58, 82, 0.3), inset 0 -4px 15px rgba(255, 127, 0, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(255, 58, 82, 0.7), inset 0 -4px 25px rgba(255, 127, 0, 0.5); }
}
@keyframes fire-pulse-spring {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3), inset 0 -4px 15px rgba(255, 20, 147, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(255, 105, 180, 0.7), inset 0 -4px 25px rgba(255, 20, 147, 0.5); }
}
@keyframes fire-pulse-monsoon {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3), inset 0 -4px 15px rgba(0, 100, 255, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(0, 200, 255, 0.7), inset 0 -4px 25px rgba(0, 100, 255, 0.5); }
}
@keyframes fire-pulse-autumn {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3), inset 0 -4px 15px rgba(255, 100, 0, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(255, 200, 0, 0.7), inset 0 -4px 25px rgba(255, 100, 0, 0.5); }
}
@keyframes fire-pulse-pre-winter {
    0%, 100% { box-shadow: 0 4px 15px rgba(150, 0, 255, 0.3), inset 0 -4px 15px rgba(100, 0, 255, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(150, 0, 255, 0.7), inset 0 -4px 25px rgba(100, 0, 255, 0.5); }
}
@keyframes fire-pulse-winter {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3), inset 0 -4px 15px rgba(0, 150, 255, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(0, 255, 255, 0.7), inset 0 -4px 25px rgba(0, 150, 255, 0.5); }
}

.announcement-bar {
    height: var(--announcement-height);
    background-color: var(--bg-dark); /* Match store background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, border-color 1s ease;
    overflow: hidden;
    /* Default Base Fire */
    animation: fire-pulse-base 2s infinite alternate;
    border-bottom: 2px solid rgba(255, 58, 82, 0.5);
}

/* Seasonal Announcement Bar Borders & Glows */
body.season-spring .announcement-bar { border-bottom-color: rgba(255, 105, 180, 0.5); animation-name: fire-pulse-spring; }
body.season-summer .announcement-bar { border-bottom-color: rgba(255, 58, 82, 0.5); animation-name: fire-pulse-base; }
body.season-monsoon .announcement-bar { border-bottom-color: rgba(0, 200, 255, 0.5); animation-name: fire-pulse-monsoon; }
body.season-autumn .announcement-bar { border-bottom-color: rgba(255, 200, 0, 0.5); animation-name: fire-pulse-autumn; }
body.season-pre-winter .announcement-bar { border-bottom-color: rgba(150, 0, 255, 0.5); animation-name: fire-pulse-pre-winter; }
body.season-winter .announcement-bar { border-bottom-color: rgba(0, 255, 255, 0.5); animation-name: fire-pulse-winter; }

/* Burning Fire Background */
.announcement-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120%;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,120 C250,20 250,220 500,120 C750,20 750,220 1000,120 L1000,200 L0,200 Z' fill='rgba(255,200,0,0.5)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 C200,180 300,-20 500,80 C700,180 800,-20 1000,80 L1000,200 L0,200 Z' fill='rgba(255,127,0,0.6)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C300,-60 200,140 500,40 C800,-60 700,140 1000,40 L1000,200 L0,200 Z' fill='rgba(255,58,82,0.8)'/%3E%3C/svg%3E");
    background-size: 1000px 100%, 600px 100%, 1400px 100%;
    background-repeat: repeat-x, repeat-x, repeat-x;
    animation: fire-wave-scroll 2.5s linear infinite;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
    
    /* Dynamic Seasonal Color Hue Shift */
    filter: blur(3px) contrast(1.2) hue-rotate(0deg); /* Default */
    transition: filter 1.5s ease; /* Smooth transition when season changes */
    
    mask-image: linear-gradient(to bottom, transparent 15%, black 65%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 15%, black 65%);
}

/* Seasonal Fire Color Adjustments via Hue-Rotate */
body.season-spring .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(310deg); } /* Pink Cherry Fire */
body.season-summer .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(0deg); }   /* Red/Orange Fire */
body.season-monsoon .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(210deg); } /* Deep Blue Water Fire */
body.season-autumn .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(40deg); }  /* Golden Yellow Fire */
body.season-pre-winter .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(270deg); } /* Purple/Violet Fire */
body.season-winter .announcement-bar::before { filter: blur(3px) contrast(1.2) hue-rotate(180deg); } /* Cyan Ice Frost Fire */

/* Store User Background Text Image overlay */
.announcement-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    z-index: 2; /* Safe above the fire */
    pointer-events: none;
}

.announcement-bar.scrolled {
    transform: translateY(-100%);
}

/* Header Config */
.site-header {
    width: 100%;
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    right: 0;
    margin: 0;
    z-index: 99999;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    height: var(--header-height);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    transform: translateY(calc(var(--announcement-height) * -1));
    background: rgba(10, 10, 10, 0.6); /* Slightly more opaque for better contrast when scrolled */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}


.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
.nav-pill-hover {
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    text-decoration: none;
}

.nav-pill-hover:hover,
.nav-pill-hover.active {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
}

.sub-header-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: var(--header-height);
    z-index: 9998;
}

/* Buttons */
.btn-solid-white {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.btn-solid-white:hover {
    background: rgba(255, 58, 82, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid var(--brand-red) !important;
    box-shadow: 0 0 15px rgba(255, 58, 82, 0.45), inset 0 0 10px rgba(255, 58, 82, 0.2) !important;
    text-shadow: 0 0 5px rgba(255, 58, 82, 0.6) !important;
    letter-spacing: 0.15em !important;
    transform: scale(0.98) !important; /* Slight cyber click/press-in feel */
}

.btn-solid-red {
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    border: none;
}

.btn-solid-red:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 58, 82, 0.4);
}

/* Product Grid - 3 Column Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card */
.store-product {
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 !important;
    gap: 0 !important;
}

.store-product:hover {
    transform: translateY(-4px);
    border-color: #333 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.store-product strong {
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.store-product:hover .card-hover-overlay {
    opacity: 1;
    pointer-events: all;
}

.card-content-static {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-desc-clamp * {
    font-size: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-weight: normal !important;
    line-height: inherit !important;
    display: inline !important;
}

.card-desc-clamp img,
.card-desc-clamp iframe,
.card-desc-clamp table,
.card-desc-clamp ul,
.card-desc-clamp li,
.card-desc-clamp br {
    display: none !important;
}

/* Badges */
.discount-badge-red {
    background: var(--brand-red);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
}

.framework-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Utils */
.text-brand {
    color: var(--brand-red);
}

.section-glow {
    position: relative;
}

.section-glow::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 58, 82, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Package Page Specific */
.package-grid-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .package-grid-layout {
        grid-template-columns: 1fr;
    }

    .package-sidebar {
        order: -1;
    }
}

.accordion-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.accordion-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-add-cart {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-cart:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 58, 82, 0.3);
}

.sidebar-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

/* Gallery */
.thumbnail-item {
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumbnail-item.active {
    border-color: var(--brand-red);
    opacity: 1;
}

/* Footer overrides */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

/* Swiper / YouTube Slider */
.youtube-slider-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
}

.youtube-card-wide {
    flex: 0 0 31%;
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-card-wide:hover .yt-play-overlay {
    opacity: 1;
}

/* =========================================================
   SIDEBAR WIDGETS COMPACT STYLING (FEATURED PACKAGE FIX)
   ========================================================= */
.store-sidebar .widget,
.store-sidebar .widget-featured {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

/* Restrict the featured product card size and height in sidebar */
.store-sidebar .store-product {
    height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 8px !important; /* Premium rounded edges for sidebar cards */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}

/* Make image section compact */
.store-sidebar .store-product .card-image {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
}

/* Reduce padding and scale down typography in sidebar card */
.store-sidebar .store-product .card-content-static {
    padding: 1.1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.store-sidebar .store-product h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    height: 3.0rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Hide description snippet or make it extremely small to fit sidebar */
.store-sidebar .store-product .card-desc-clamp {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    max-height: 2.8em !important;
    margin-bottom: 0.5rem !important;
    opacity: 0.8 !important;
}

/* Adjust framework badges in sidebar */
.store-sidebar .store-product .framework-badge {
    font-size: 0.6rem !important;
    padding: 3px 8px !important;
    letter-spacing: 0.02em !important;
}

/* Space out layout */
.store-sidebar .store-product div[style*="flex-grow: 1"] {
    display: none !important; /* Remove spacer in sidebar */
}

/* Make pricing block compact */
.store-sidebar .store-product div[style*="margin-bottom: 1.5rem"] {
    margin-bottom: 0.75rem !important;
}

.store-sidebar .store-product span[style*="font-size: 1.8rem"] {
    font-size: 1.35rem !important; /* Smaller price tag */
}

/* Style the add to cart button to look sleeker and fit the sidebar card */
.store-sidebar .store-product .btn-solid-white {
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0.25rem !important;
}

/* =========================================================
   HOMEPAGE FEATURED COLLECTIONS MODULE MARQUEE SLIDER
   ========================================================= */
.featured-packages-slider-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    position: relative;
    padding: 0;
}

.featured-packages-slider-track {
    display: flex !important;
    align-items: flex-start !important; /* Top-align all cards — prevents vertical stretch jump */
    gap: 0 !important;
    width: max-content !important;
    padding: 8px 0;
    animation: marquee-scroll-reverse 45s linear infinite;
    /* GPU compositing — eliminates sub-pixel jump at loop seam */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes marquee-scroll-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Hide all other sidebar modules inside the homepage slider wrapper */
.featured-packages-slider-track .widget {
    display: none !important;
}

/* Only display Featured Package modules */
.featured-packages-slider-track .widget-featured,
.featured-packages-slider-track .widget-community-goal {
    display: block !important;
    width: 450px !important;
    flex-shrink: 0 !important;
    flex: none !important;
    height: auto !important;       /* Natural height — no empty space below button */
    margin-right: 32px !important;
}

.featured-packages-slider-track .widget-content {
    height: auto !important;
    display: block !important;
}

/* Hide widget title inside homepage section since it is under "Featured Collections" */
.featured-packages-slider-track .widget-featured .widget-title,
.featured-packages-slider-track .widget-community-goal .widget-title {
    display: none !important;
}


.featured-packages-slider-track .store-product {
    height: auto !important;       /* Height adjusts to content to eliminate empty space */
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important; /* Rounded corners */
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    width: 100% !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.featured-packages-slider-track .store-product:hover {
    /* NO translateY — vertical movement breaks straight-line marquee */
    border-color: rgba(255, 58, 82, 0.35) !important;
    box-shadow: 0 8px 32px rgba(255, 58, 82, 0.15) !important;
}

.featured-packages-slider-track .store-product .card-image {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    border-radius: 0 !important; /* Image flush with top rounded card corners */
}

.featured-packages-slider-track .store-product .card-content-static {
    padding: 1.25rem 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important; /* Stretch to fill card height */
    gap: 0 !important;
}

.featured-packages-slider-track .store-product h3 {
    font-size: 1.15rem !important; /* Slightly smaller font size to fit titles */
    margin-bottom: 0.6rem !important;
    font-weight: 800 !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    height: auto !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* HIDE DESCRIPTION - remove middle empty space */
.featured-packages-slider-track .store-product .card-desc-clamp {
    display: none !important;
}

/* Framework badges - tight spacing since desc is hidden */
.featured-packages-slider-track .store-product .framework-badge {
    font-size: 0.65rem !important;
    padding: 4px 12px !important;
}

/* Framework badge row - reduce margin since desc is gone */
.featured-packages-slider-track .store-product .card-content-static > div:has(.framework-badge) {
    margin-bottom: 0.75rem !important;
}

/* Ensure protection badges (escrow, open-source) are visible in slider */
.featured-packages-slider-track .store-product .protection-badge-container {
    display: flex !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 10 !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    max-width: 80% !important;
}


.featured-packages-slider-track .store-product div[style*="flex-grow: 1"] {
    display: none !important;
}
/* Price: normal size */
.featured-packages-slider-track .store-product span[style*="font-size: 1.8rem"] {
    font-size: 1.6rem !important;
}

/* Price row - compact margin */
.featured-packages-slider-track .store-product div[style*="margin-bottom: 1.5rem"] {
    margin-bottom: 0.75rem !important;
}

/* Hide original Add to Cart inside slider — replaced by Inspect button via JS */
.featured-packages-slider-track .store-product .btn-solid-white,
.featured-packages-slider-track .store-product a[href*="/checkout/packages/add/"] {
    display: none !important;
}

/* ── Inspect Button ─────────────────────────────────────────────────── */
.featured-packages-slider-track .slider-inspect-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    width: 100% !important;
    height: 46px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;
    border-radius: 0px !important;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
    margin-top: 0 !important;
}

.featured-packages-slider-track .slider-inspect-btn:hover {
    background: rgba(255, 58, 82, 0.12) !important;
    border-color: rgba(255, 58, 82, 0.5) !important;
    color: var(--brand-red) !important;
}

/* Animated Protection Badge (Escrow / Open Source) */
.protection-badge-animated {
    background: linear-gradient(135deg, rgba(255, 58, 82, 0.75), rgba(255, 159, 67, 0.75), rgba(84, 160, 255, 0.75)) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
    display: inline-block !important;
    animation: rainbow-rotate 3.5s infinite linear !important;
}

@keyframes rainbow-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}