cat > assets/css/banners.css << 'ENDCSS'
/* ==========================================================
   STORLY-STYLE BANNERS
   ========================================================== */

/* ============ HERO SLIDER V2 ============ */
.hero-slider-v2 { position: relative; overflow: hidden; }
.hero-carousel-v2 { position: relative; }

.hero-slide-v2 {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.carousel-item.active .hero-bg-img { transform: scale(1.08); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.65) 0%, rgba(15,23,42,0.15) 60%, transparent 100%);
}

.hero-slide-container { position: relative; z-index: 2; padding: 4rem 0; }
.hero-slide-inner { display: flex; flex-direction: column; gap: 1rem; }

.hero-badge-v2 {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-title-v2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: inherit;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-subtitle-v2 {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: inherit;
    opacity: 0.92;
    max-width: 520px;
    margin: 0;
}

.hero-actions-v2 { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 0.5rem; }

.hero-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #2563eb;
    color: #fff;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.hero-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.5);
    color: #fff;
}
.hero-btn-primary i { transition: transform 0.2s; }
.hero-btn-primary:hover i { transform: translateX(4px); }

.hero-btn-secondary {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: all 0.2s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0; gap: 8px;
    z-index: 3;
}
.hero-dots button {
    width: 32px; height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.4);
    border: none;
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer;
}
.hero-dots button.active { background: #fff; width: 48px; }

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #0f172a;
    border: none;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: all 0.25s;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-slider-v2:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.hero-arrow i { font-size: 1.25rem; }
.carousel-control-prev.hero-arrow { left: 24px; }
.carousel-control-next.hero-arrow { right: 24px; }

/* ============ WIDE BANNER ============ */
.wide-banner-v2 { padding: 2rem 0; }
.wide-banner-link { text-decoration: none; display: block; }
.wide-banner-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 260px;
    transition: transform 0.3s;
}
.wide-banner-link:hover .wide-banner-inner { transform: translateY(-3px); }

.wide-banner-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.wide-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.15) 70%, transparent 100%);
}
.wide-banner-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center;
    padding: 2.5rem 3rem; gap: 0.5rem;
    color: #fff;
}
.wide-badge {
    display: inline-block; width: fit-content;
    background: #f59e0b; color: #0f172a;
    font-size: 0.7rem; font-weight: 700;
    padding: 5px 12px; border-radius: 999px;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.wide-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin: 0; color: #fff; }
.wide-subtitle { font-size: 0.95rem; opacity: 0.92; margin: 0; max-width: 480px; }
.wide-cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 0.5rem;
    color: #fff; font-weight: 700; font-size: 0.9rem;
    border-bottom: 2px solid #f59e0b;
    padding-bottom: 3px; width: fit-content;
}
.wide-cta i { transition: transform 0.2s; }
.wide-banner-link:hover .wide-cta i { transform: translateX(4px); }

/* ============ INLINE BANNER (products_top / footer_strip) ============ */
.inline-banner-v2 { padding: 1.5rem 0; }
.inline-banner-link { text-decoration: none; display: block; }
.inline-banner-inner {
    position: relative; border-radius: 16px;
    overflow: hidden; min-height: 180px;
    transition: transform 0.3s;
}
.inline-banner-link:hover .inline-banner-inner { transform: translateY(-2px); }
.inline-banner-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.inline-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.2) 60%, transparent 100%);
}
.inline-banner-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center;
    padding: 2rem; gap: 0.35rem; color: #fff;
}
.inline-badge {
    display: inline-block; width: fit-content;
    background: #2563eb; color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.inline-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 800; margin: 0; }
.inline-subtitle { font-size: 0.9rem; opacity: 0.92; margin: 0; }
.inline-cta { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; font-size: 0.85rem; margin-top: 0.35rem; color: #fff; }
.inline-cta i { transition: transform 0.2s; }
.inline-banner-link:hover .inline-cta i { transform: translateX(4px); }

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 767.98px) {
    .hero-slide-v2 { min-height: 480px; }
    .hero-slide-container { padding: 3rem 0; }
    .hero-overlay { background: linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.75) 100%); }
    .hero-slide-inner { max-width: 100% !important; }
    .hero-title-v2 { font-size: 1.75rem; }
    .hero-subtitle-v2 { font-size: 0.9rem; }
    .hero-actions-v2 { flex-direction: column; width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; padding: 0.85rem 1.25rem; }
    .hero-arrow { display: none; }
    .hero-dots { bottom: 16px; }

    .wide-banner-inner { min-height: 200px; border-radius: 14px; }
    .wide-banner-img { height: 200px; }
    .wide-banner-content { padding: 1.5rem; }
    .wide-title { font-size: 1.3rem; }
    .wide-subtitle { font-size: 0.85rem; }

    .inline-banner-inner { min-height: 140px; border-radius: 12px; }
    .inline-banner-img { height: 140px; }
    .inline-banner-content { padding: 1.25rem; }
    .inline-title { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .hero-slide-v2 { min-height: 420px; }
    .hero-title-v2 { font-size: 1.4rem; }
    .hero-badge-v2 { font-size: 0.65rem; padding: 5px 10px; }
}
ENDCSS