/* =============================================
   SimetriLink Home - Premium Glass Design
   Apple-inspired glassmorphism + glow effects
   ============================================= */

/* =============================================
   HOME HERO CONTAINER
   ============================================= */
.home-hero {
    position: relative;
    z-index: 1;
    padding: 14px 0 2px;
    margin-bottom: 0;
    background: transparent;
}

/* =============================================
   LOGO BLOCK - Normal (not sticky)
   ============================================= */
.logo-block {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 16px 0 0;
    margin-bottom: 0;
    background: transparent;
}

.logo-block-inner {
    text-align: center;
    padding: 24px 20px 20px;
    width: 100%;
    border-radius: 20px;
    background: 
        radial-gradient(
            ellipse at center,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.95) 40%,
            rgba(var(--sl-accent-soft-rgb, 255,229,224), 0.5) 100%
        );
    border: 3px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.08),
        0 4px 16px rgba(255,255,255,0.8),
        0 0 0 1px rgba(255,255,255,0.9) inset,
        0 0 50px rgba(var(--sl-accent-rgb, 59,130,246), 0.2),
        0 0 100px rgba(var(--sl-accent-rgb, 59,130,246), 0.1);
    transition: all 0.3s ease;
}

.logo-img-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 10px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.06),
        0 12px 28px rgba(15,23,42,0.08),
        0 0 20px rgba(var(--sl-accent-rgb, 59,130,246), 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img-wrap:hover {
    transform: scale(1.02);
    box-shadow: 
        0 6px 16px rgba(0,0,0,0.08),
        0 16px 36px rgba(15,23,42,0.12),
        0 0 30px rgba(var(--sl-accent-rgb, 59,130,246), 0.2);
}

.logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--sl-text-main, #111827);
    line-height: 1.2;
    letter-spacing: -0.01em;
    padding: 8px 20px;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.2);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 0 15px rgba(var(--sl-accent-rgb, 59,130,246), 0.08);
    white-space: nowrap;
}

.brand-slogan {
    font-size: 13px;
    color: var(--sl-text-main, #111827);
    padding: 5px 14px;
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.1);
    border: 1px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.15);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 500;
    /* Uzun sloganlar için wrap */
    white-space: normal;
    word-wrap: break-word;
    max-width: 280px;
    text-align: center;
    line-height: 1.4;
}

/* Slogan için boşken gizle */
.brand-slogan:empty {
    display: none;
}

/* =============================================
   LOGO BLOCK - Cover Image Desteği
   ============================================= */
.logo-block.has-cover .logo-block-inner {
    /* Cover image inline style ile ekleniyor */
    background-blend-mode: overlay;
}

/* =============================================
   LANGUAGE SWITCH - Pill style with theme color
   ============================================= */
.home-hero .lang-switch {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content !important;
    margin: 12px auto 16px !important;
    padding: 5px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.6) !important;
    border: 1.5px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.2) !important;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06),
        0 0 20px rgba(var(--sl-accent-rgb, 59,130,246), 0.08),
        inset 0 1px 0 rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

.home-hero .lang-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 54px !important;
    height: 34px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    color: var(--sl-accent, #3b82f6) !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.home-hero .lang-pill:hover {
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.08) !important;
}

.home-hero .lang-pill.is-active {
    background: var(--sl-accent, #3b82f6) !important;
    color: #fff !important;
    box-shadow: 
        0 2px 8px rgba(var(--sl-accent-rgb, 59,130,246), 0.3),
        0 4px 12px rgba(var(--sl-accent-rgb, 59,130,246), 0.2) !important;
}

.home-hero .lang-sep {
    width: 8px !important;
    text-align: center !important;
    color: rgba(0,0,0,0.2) !important;
    font-weight: 400 !important;
}

/* =============================================
   HERO CTA STACK - Glass card with image + button
   ============================================= */
.hero-cta-stack {
    margin-top: 0;
    margin-bottom: 4px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.75);
    border: 3px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.06),
        0 12px 40px rgba(15,23,42,0.1),
        0 0 30px rgba(var(--sl-accent-rgb, 59,130,246), 0.2),
        0 0 60px rgba(var(--sl-accent-rgb, 59,130,246), 0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.hero-cta-stack:hover {
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.6);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.08),
        0 16px 48px rgba(15,23,42,0.12),
        0 0 40px rgba(var(--sl-accent-rgb, 59,130,246), 0.25),
        0 0 80px rgba(var(--sl-accent-rgb, 59,130,246), 0.15);
    transform: translateY(-2px);
}

/* =============================================
   HERO MEDIA - 16:9, clickable
   ============================================= */
.hero-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.1) 100%
    );
    pointer-events: none;
}

.hero-media:hover {
    filter: brightness(1.02);
}

.hero-media:active {
    filter: brightness(0.98);
    transform: scale(0.995);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* =============================================
   CTA BUTTON - Icon left, text right, HORIZONTAL
   ============================================= */
.home-hero .cta-btn {
    width: 100% !important;
    border: none !important;
    background: linear-gradient(135deg, var(--sl-accent, #3b82f6) 0%, color-mix(in srgb, var(--sl-accent, #3b82f6) 80%, #000) 100%) !important;
    color: #fff !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    border-radius: 0 0 17px 17px !important;
    transition: all 0.2s ease !important;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(var(--sl-accent-rgb, 59,130,246), 0);
    }
}

.home-hero .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 100%
    );
    pointer-events: none;
}

.home-hero .cta-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    animation: none;
}

.home-hero .cta-btn:active {
    filter: brightness(0.95);
    transform: translateY(0);
}

.home-hero .cta-ico {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    flex: 0 0 52px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.25) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.home-hero .cta-ico svg {
    width: 26px;
    height: 26px;
    opacity: 1;
}

.home-hero .cta-text {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.home-hero .cta-title {
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-align: left !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.home-hero .cta-sub {
    font-size: 13px !important;
    opacity: 0.95 !important;
    margin-top: 4px !important;
    line-height: 1.3 !important;
    text-align: left !important;
    font-weight: 500;
}

/* =============================================
   SECTION TITLES - Premium pill/badge style
   ============================================= */
.section-title-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 10px !important;
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sl-text-main, #111827);
    background: rgba(255,255,255,0.85);
    border: 2px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.25);
    border-radius: 999px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 4px 16px rgba(15,23,42,0.06),
        0 0 20px rgba(var(--sl-accent-rgb, 59,130,246), 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.2s ease;
}

.section-title:hover {
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.06),
        0 8px 24px rgba(15,23,42,0.08),
        0 0 30px rgba(var(--sl-accent-rgb, 59,130,246), 0.12);
}

/* Decorative accent dots */
.section-title::before,
.section-title::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sl-accent, #3b82f6);
    opacity: 0.7;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(var(--sl-accent-rgb, 59,130,246), 0.5);
}

/* =============================================
   FEATURED PRODUCTS (Şefin Tavsiyesi) - Glass cards
   ============================================= */
.featured-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.featured-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.3);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06),
        0 0 20px rgba(var(--sl-accent-rgb, 59,130,246), 0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
}

.featured-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.95);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.5);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.06),
        0 12px 32px rgba(15,23,42,0.1),
        0 0 30px rgba(var(--sl-accent-rgb, 59,130,246), 0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.featured-card:active {
    transform: translateY(-1px);
}

.featured-card-img {
    width: 120px;
    min-width: 120px;
    height: 100%;
    min-height: 95px;
    overflow: hidden;
    position: relative;
}

.featured-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.08);
}

.featured-card-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.featured-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--sl-text-main, #111827);
    line-height: 1.3;
}

.featured-card-price {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--sl-accent, #3b82f6) 0%, color-mix(in srgb, var(--sl-accent, #3b82f6) 80%, #000) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(var(--sl-accent-rgb, 59,130,246), 0.3);
}

.featured-card-desc {
    font-size: 13px;
    color: var(--sl-text-muted, #6b7280);
    line-height: 1.4;
    margin-top: 4px;
}

/* =============================================
   LINKS BLOCK - Premium glass list
   ============================================= */
.links-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.link-item {
    text-decoration: none;
    color: var(--sl-text-main, #111827);
    background: rgba(255,255,255,0.65);
    border-radius: 16px;
    border: 2px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.35);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* İkon kutusu */
.link-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.link-icon-box i {
    font-size: 16px;
    color: var(--sl-accent, #3b82f6);
    transition: all 0.25s ease;
}

/* İçerik */
.link-content {
    flex: 1;
    min-width: 0;
}

/* Ok ikonu */
.link-arrow {
    font-size: 18px;
    color: var(--sl-accent, #3b82f6);
    opacity: 0.5;
    font-weight: 300;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.link-item:hover {
    transform: translateY(-2px);
    background: rgba(var(--sl-accent-soft-rgb, 255,229,224), 0.5);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.5);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.06),
        0 16px 40px rgba(15,23,42,0.1),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

/* =============================================
   LINKS-WIFI DIVIDER - Ayırıcı
   WiFi bloğunu bağlantılardan ayıran şık çizgi
   ============================================= */
.links-wifi-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 16px;
    padding: 0 8px;
}

.links-wifi-divider::before,
.links-wifi-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--sl-accent-rgb, 59,130,246), 0.3) 50%,
        transparent 100%
    );
}

.links-wifi-divider-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sl-accent, #3b82f6);
    font-size: 13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Dark mode uyumu */
.theme-mode-dark .links-wifi-divider::before,
.theme-mode-dark .links-wifi-divider::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--sl-accent-rgb, 59,130,246), 0.25) 50%,
        transparent 100%
    );
}

.theme-mode-dark .links-wifi-divider-icon {
    background: rgba(30,30,30,0.6);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.3);
}


/* =============================================
   WIFI BLOCK - Clickable password copy
   ============================================= */
.wifi-block {
    margin-top: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.65);
    border: 2px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-user-select: text;
    user-select: text;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06),
        0 0 20px rgba(var(--sl-accent-rgb, 59,130,246), 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.wifi-block:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.5);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.06),
        0 16px 40px rgba(15,23,42,0.1),
        0 0 30px rgba(var(--sl-accent-rgb, 59,130,246), 0.12),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.wifi-block.is-copied {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 4px 16px rgba(34, 197, 94, 0.15),
        0 0 30px rgba(34, 197, 94, 0.1);
}

.wifi-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.wifi-block:hover .wifi-icon-box {
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.18);
}

.wifi-icon-box i {
    font-size: 16px;
    color: var(--sl-accent, #3b82f6);
}

.wifi-content {
    flex: 1;
    min-width: 0;
}

.wifi-label {
    font-size: 11px;
    color: var(--sl-text-muted, #6b7280);
    margin-bottom: 2px;
    font-weight: 500;
}

.wifi-password {
    font-size: 16px;
    font-weight: 700;
    color: var(--sl-text-main, #111827);
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    letter-spacing: 0.03em;
}

.wifi-copy {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--sl-accent, #3b82f6) 0%, color-mix(in srgb, var(--sl-accent, #3b82f6) 80%, #000) 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(var(--sl-accent-rgb, 59,130,246), 0.3);
}

.wifi-block:hover .wifi-copy {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
}

.wifi-block.is-copied .wifi-copy {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}
}

.link-item:hover .link-icon-box {
    background: rgba(var(--sl-accent-rgb, 59,130,246), 0.15);
    transform: scale(1.05);
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.link-item:active {
    transform: translateY(0);
}

.link-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--sl-text-main, #111827);
    line-height: 1.3;
}

.link-meta {
    font-size: 13px;
    color: var(--sl-text-muted, #6b7280);
    margin-top: 2px;
}

/* =============================================
   CAMPAIGNS - Poster cards with overlay
   ============================================= */
.campaigns-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.campaign-card {
    text-decoration: none;
    color: inherit;
    transform-origin: top;
    transition: all 0.3s ease;
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
}

.campaign-card.is-hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    margin-top: -14px;
    pointer-events: none;
    overflow: hidden;
}

.campaign-card.is-revealed {
    animation: slFadeUp 0.45s ease;
}

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

.campaign-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.25);
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.1),
        0 20px 48px rgba(15,23,42,0.12);
    transition: all 0.3s ease;
}

.campaign-card:hover .campaign-poster {
    transform: translateY(-4px);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.4);
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.12),
        0 28px 56px rgba(15,23,42,0.15);
}

.campaign-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.campaign-card:hover .campaign-poster img {
    transform: scale(1.03);
}

.campaign-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.5) 75%,
        rgba(0,0,0,0.7) 100%
    );
}

.campaign-poster-text {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 600;
}

.campaign-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.campaign-subtitle {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.campaigns-more-btn {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--sl-text-main, #111827);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.03),
        0 6px 20px rgba(15,23,42,0.05);
}

.campaigns-more-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.05),
        0 10px 28px rgba(15,23,42,0.08);
}

.campaigns-more-btn:active {
    transform: translateY(0);
}

/* =============================================
   BRANDING - Subtle footer
   ============================================= */
.sl-branding {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 8px;
}

.sl-branding-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.03),
        0 4px 16px rgba(15,23,42,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.2s ease;
}

.sl-branding-pill:hover {
    background: rgba(255,255,255,0.8);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06);
}

.sl-branding-logo {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.sl-branding-text {
    color: var(--sl-text-muted, #6b7280);
    font-size: 12px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slCategoryFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle entrance animation for cards */
.featured-card,
.link-item,
.campaign-card {
    animation: slCardEntrance 0.4s ease backwards;
}

.featured-card:nth-child(1) { animation-delay: 0.05s; }
.featured-card:nth-child(2) { animation-delay: 0.1s; }
.featured-card:nth-child(3) { animation-delay: 0.15s; }

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.15s; }
.link-item:nth-child(3) { animation-delay: 0.2s; }
.link-item:nth-child(4) { animation-delay: 0.25s; }

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

/* =============================================
   CATEGORY LIST (for menu categories if used)
   ============================================= */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    animation: slCategoryFadeIn 0.35s ease-out;
}

.category-banner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    height: auto;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.25s ease;
    border: 2.5px solid rgba(var(--sl-accent-rgb, 59,130,246), 0.35);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.08),
        0 12px 32px rgba(15,23,42,0.1),
        0 0 25px rgba(var(--sl-accent-rgb, 59,130,246), 0.1);
}

.category-banner:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--sl-accent-rgb, 59,130,246), 0.5);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.1),
        0 20px 48px rgba(15,23,42,0.15),
        0 0 35px rgba(var(--sl-accent-rgb, 59,130,246), 0.15);
}

.category-banner:active {
    transform: translateY(-2px);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.category-banner:hover img {
    transform: scale(1.05);
}

.category-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
}

.category-banner-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 2;
    white-space: nowrap;
}

/* =============================================
   CHEF SECTION (alternative layout)
   ============================================= */
.chef-section {
    margin: 28px 0;
}

.chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.chef-card {
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(15,23,42,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.chef-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.06),
        0 12px 32px rgba(15,23,42,0.1);
}

.chef-img-wrap {
    height: 120px;
    overflow: hidden;
}

.chef-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chef-card:hover .chef-img-wrap img {
    transform: scale(1.05);
}

.chef-body {
    padding: 10px 12px 12px;
}

.chef-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sl-text-main, #111827);
}

.chef-desc {
    font-size: 12px;
    color: var(--sl-text-muted, #6b7280);
    margin-top: 3px;
    line-height: 1.4;
}

.chef-price {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--sl-accent, #3b82f6);
}