.elementor-9301 .elementor-element.elementor-element-13fd85c{--display:flex;}/* Start custom CSS *//* ========================================
   HERO CONTENT WITH TITLE (Black Friday)
   ======================================== */
.bf-hero-content {
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.bf-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--bf-text-main);
    margin: 0 0 1rem 0;
}

.bf-publication-date {
    color: var(--bf-text-sec);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bf-hero-content {
        padding: 1.5rem 1rem 2rem;
    }
    
    .bf-hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .bf-hero-content {
        padding: 1rem 0.75rem 1.5rem;
    }
}
/* ==========================================================================
   THEME: ELEGANT & PURE (Black Friday 2025)
   Style: Glassmorphism, Minimalist, High-Typography
   ========================================================================== */

:root {
    /* --- 1. Palette --- */
    --bf-bg: #ffffff;
    --bf-bg-soft: #fafafa;
    --bf-text-main: #111111;
    --bf-text-sec: #666666;
    --bf-text-light: #888888;
    
    /* --- 2. Accents --- */
    --bf-accent: #000000; /* Pure Black for primary actions */
    --bf-accent-hover: #333333;
    --bf-highlight: #0071e3; /* Premium Tech Blue for links/highlights */
    --bf-success: #34c759;
    
    /* --- 3. Glassmorphism & Depth --- */
    --bf-glass: rgba(255, 255, 255, 0.8);
    --bf-glass-border: 1px solid rgba(0, 0, 0, 0.08);
    --bf-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --bf-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --bf-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --bf-radius-sm: 8px;
    --bf-radius-md: 16px;
    --bf-radius-lg: 24px;

    /* --- 4. Typography --- */
    --bf-font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --bf-font-mono: "SF Mono", "Monaco", "Consolas", monospace;
}

/* Base Reset */
.bf-container * { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--bf-font-sans); color: var(--bf-text-main); background: var(--bf-bg); line-height: 1.5; }

/* ============================================
   HERO SECTION (Pure & Elegant)
   ============================================ */
   /* ============================================
   DISCLOSURE (Added to Hero)
   ============================================ */
.bf-header-disclosure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem; /* Small, discreet text */
    color: var(--bf-text-light);
    margin-top: -2.5rem; /* Pull closer to subtitle */
    margin-bottom: 3rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.bf-header-disclosure:hover {
    opacity: 1;
    color: var(--bf-text-sec);
}

.bf-header-disclosure svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.bf-hero-section {
    position: relative;
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    background: radial-gradient(circle at 50% 0%, #f5f5f7 0%, #ffffff 70%);
    overflow: hidden;
}

.bf-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: var(--bf-glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--bf-text-sec);
    font-weight: 500;
    box-shadow: var(--bf-shadow-sm);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bf-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--bf-text-main);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bf-text-gradient {
    background: linear-gradient(135deg, #111 30%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bf-hero-subtitle {
    font-size: 1.2rem;
    color: var(--bf-text-sec);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-weight: 400;
}

.bf-hero-image-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
}

.bf-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--bf-radius-md);
    box-shadow: var(--bf-shadow-lg);
    border: var(--bf-glass-border);
    transform: rotateX(1deg);
    transition: transform 0.6s ease;
}

.bf-hero-img:hover { transform: rotateX(0deg) scale(1.005); }

.bf-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   STICKY NAVIGATION (Glassmorphism)
   ============================================ */
.bf-nav-wrapper {
    position: sticky;
    top: 20px;
    z-index: 100;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.bf-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--bf-glass-border);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    gap: 4px;
    box-shadow: var(--bf-shadow-md);
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar */
    max-width: 100%;
}

.bf-nav::-webkit-scrollbar { display: none; }

.bf-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--bf-text-sec);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.bf-nav-link:hover { background: rgba(0,0,0,0.05); color: var(--bf-text-main); }
.bf-nav-link.active { background: var(--bf-accent); color: white; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.bf-section { margin-bottom: 6rem; scroll-margin-top: 120px; }
.bf-section-header { margin-bottom: 2rem; }
.bf-section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.bf-section-desc { color: var(--bf-text-sec); font-size: 1.1rem; }

/* ============================================
   DEAL CARD (Hybrid Layout)
   ============================================ */
.bf-deals-list { display: flex; flex-direction: column; gap: 2rem; }

.bf-deal {
    display: flex;
    flex-direction: column; /* Mobile First */
    background: var(--bf-bg);
    border: var(--bf-glass-border);
    border-radius: var(--bf-radius-md);
    overflow: hidden;
    box-shadow: var(--bf-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bf-deal:hover { transform: translateY(-2px); box-shadow: var(--bf-shadow-md); }

/* Featured Styling */
.bf-deal--featured { border: 2px solid var(--bf-accent); }

@media (min-width: 900px) {
    .bf-deal { flex-direction: row; align-items: stretch; }
    .bf-deal-content { flex: 1; padding: 2.5rem; }
    .bf-deal-sidebar { 
        width: 340px; 
        background: var(--bf-bg-soft); 
        border-left: var(--bf-glass-border);
        padding: 2.5rem; 
        display: flex; 
        flex-direction: column; 
        justify-content: center;
        flex-shrink: 0;
    }
}

/* Content Area */
.bf-deal-content { padding: 1.5rem; }
.bf-deal-header { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }

.bf-deal-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: var(--bf-glass-border);
    overflow: hidden;
    flex-shrink: 0;
    background: white;
}
.bf-deal-logo img { width: 100%; height: 100%; object-fit: cover; }

.bf-deal-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 4px 0; line-height: 1.2; }

.bf-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}
.bf-tag.featured { background: #fff2cc; color: #997a00; }

.bf-description { font-size: 1rem; color: var(--bf-text-sec); margin-bottom: 1.5rem; line-height: 1.6; }

.bf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--bf-text-main);
}

.bf-features li svg { color: var(--bf-success); width: 16px; height: 16px; flex-shrink: 0; }

/* Sidebar Area */
.bf-deal-sidebar { padding: 1.5rem; background: var(--bf-bg-soft); border-top: var(--bf-glass-border); }

.bf-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #e6ffed;
    color: var(--bf-success);
    font-weight: 700;
    padding: 8px;
    border-radius: var(--bf-radius-sm);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border: 1px solid #b7ebc5;
}

/* The Premium Coupon Ticket */
.bf-code-ticket {
    background: white;
    border: 1px dashed #ccc;
    border-radius: var(--bf-radius-sm);
    padding: 12px;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.bf-code-ticket:hover { border-color: var(--bf-accent); background: #fffdf5; }
.bf-code-ticket.copied { border-color: var(--bf-success); background: #f0fdf4; }

.bf-code-label { font-size: 0.7rem; text-transform: uppercase; color: #999; letter-spacing: 0.05em; display: block; margin-bottom: 4px; }
.bf-code-value { font-family: var(--bf-font-mono); font-size: 1.1rem; font-weight: 700; color: var(--bf-text-main); display: block; }
.bf-code-hint { font-size: 0.7rem; color: var(--bf-highlight); font-weight: 600; margin-top: 4px; display: block; }

/* CTA Button */
.bf-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: var(--bf-accent);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: var(--bf-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}
.bf-btn:hover { background: var(--bf-accent-hover); transform: translateY(-1px); }

.bf-review-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--bf-text-light);
    text-decoration: underline; 
}
.bf-review-link:hover { color: var(--bf-text-main); }

/* ============================================
   FAQ SECTION
   ============================================ */
.bf-faq { max-width: 800px; margin: 0 auto; }
.bf-faq details { 
    border: var(--bf-glass-border); 
    border-radius: var(--bf-radius-sm); 
    margin-bottom: 10px; 
    background: white;
    overflow: hidden;
}
.bf-faq summary { 
    padding: 1.2rem; 
    cursor: pointer; 
    font-weight: 600; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.bf-faq summary::-webkit-details-marker { display: none; }
.bf-faq-content { padding: 0 1.2rem 1.2rem; color: var(--bf-text-sec); line-height: 1.6; }

/* ============================================
   UTILITIES
   ============================================ */
.bf-divider { height: 1px; background: #eee; margin: 4rem 0; }
.hidden { display: none; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bf-hero-title { font-size: 2rem; }
    .bf-nav { justify-content: flex-start; }
    .bf-section { scroll-margin-top: 160px; } /* Account for double sticky headers if any */
}/* End custom CSS */