/**
 * Waterdrop EU (waterdropfilter.eu) Inspired Design System
 * Clean, High-End, European E-Commerce Water Filtration Styling
 * Official Typography: Montserrat & Inter
 */

:root {
    /* Waterdrop EU Brand Colors */
    --wd-cyan: #009fe3;
    --wd-cyan-light: #e8f6fd;
    --wd-blue: #036aff;
    --wd-blue-dark: #003366;
    --wd-blue-ice: #f0f7fd;
    --wd-blue-soft: #e8f4fc;
    
    /* WhatsApp Official */
    --wd-wa: #25d366;
    --wd-wa-dark: #1ea952;
    
    /* Neutrals & Dark Surfaces */
    --wd-dark: #0f172a;
    --wd-dark-card: #1e293b;
    --wd-text-main: #111827;
    --wd-text-muted: #555555;
    --wd-text-light: #888888;
    --wd-border: #e5e7eb;
    --wd-border-light: #f1f5f9;
    --wd-bg-light: #f8fafc;
    --wd-white: #ffffff;
    
    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    --radius-full: 9999px;

    /* Fonts (Waterdrop Official Typography: Montserrat 400 & 600) */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Clean Flat Styling (Zero Neon & Zero Heavy Shadows) */
    --shadow-card: none;
    --shadow-card-hover: none;
    --shadow-dropdown: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    background-color: var(--wd-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    font-family: var(--font-body);
    color: var(--wd-cyan);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--wd-blue-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #000000;
    font-weight: 600;
    line-height: 1.25;
}

.wd-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 4rem; padding-bottom: 4rem; }
.text-brand-blue { color: var(--wd-cyan) !important; }
.text-muted { color: var(--wd-text-muted) !important; }

/* ----------------------------------------------------
   WATERDROP BUTTONS
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    padding: 12px 24px;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
}

.btn-wd-primary {
    background-color: var(--wd-cyan);
    color: var(--wd-white) !important;
    box-shadow: none;
}
.btn-wd-primary:hover {
    background-color: var(--wd-blue-dark);
    box-shadow: none;
    transform: none;
}

.btn-wd-whatsapp {
    background-color: var(--wd-wa);
    color: var(--wd-white) !important;
    box-shadow: none;
}
.btn-wd-whatsapp:hover {
    background-color: var(--wd-wa-dark);
    box-shadow: none;
    transform: none;
}

.btn-outline-secondary {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    color: var(--wd-text-main);
}
.btn-outline-secondary:hover {
    background: var(--wd-bg-light);
    border-color: var(--wd-text-muted);
}

/* ----------------------------------------------------
   1. ANNOUNCEMENT BAR & COUNTDOWN TIMER
---------------------------------------------------- */
.wd-site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wd-main-nav-bar {
    position: relative;
    background-color: var(--wd-white);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.wd-announcement-bar {
    background-color: #2c3f68; /* Dark blue matching Waterdrop */
    color: var(--wd-white);
    padding: 3px 0; /* Reduced from 8px */
    font-size: 0.8rem; /* Slightly smaller text */
    font-family: var(--font-heading);
}
.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px; /* Reduced gap */
}
.announcement-message {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced gap */
}
.announcement-tag {
    display: none;
}
.announcement-text {
    font-weight: 500;
}
.announcement-link {
    color: var(--wd-white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: underline;
}
.announcement-link:hover {
    color: #e2e8f0;
}

/* Digital Flip Countdown Timer */
.wd-countdown-timer {
    display: flex;
    align-items: center;
    gap: 3px;
}
.timer-box {
    background: #ffffff;
    color: #2c3f68;
    border-radius: 2px;
    padding: 2px 4px; /* Reduced padding */
    text-align: center;
    min-width: 24px;
}
.timer-num {
    font-family: var(--font-heading);
    font-size: 0.82rem; /* Reduced from 0.9rem */
    font-weight: 700;
    display: block;
    line-height: 1;
}
.timer-label {
    font-size: 0.4rem; /* Reduced from 0.45rem */
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    display: block;
    opacity: 0.85;
    margin-top: 1px;
}

/* ----------------------------------------------------
   2. MAIN NAVBAR & MEGA DROPDOWNS
---------------------------------------------------- */
.wd-main-nav-bar {
    background-color: var(--wd-white);
    border-bottom: 1px solid var(--wd-border);
    padding: 10px 0;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wd-branding-col {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wd-logo-link {
    display: flex;
    align-items: center;
}
.wd-brand-logo {
    width: auto;
    max-width: 210px;
    height: 44px;
    object-fit: contain;
}
.wd-logo-sub-badge {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--wd-cyan);
    border-left: 1px solid var(--wd-border);
    padding-left: 12px;
    line-height: 1.3;
    max-width: 110px;
}

/* Desktop Menu */
.wd-desktop-nav .wd-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
}
.wd-desktop-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--wd-text-main);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
    position: relative;
}
.wd-desktop-nav .nav-link:hover {
    color: var(--wd-cyan);
}
.dropdown-chevron {
    transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-pill-badge {
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    text-transform: uppercase;
}

/* Mega Dropdown */
.nav-item-dropdown {
    position: relative;
}
.wd-mega-dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 480px;
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-dropdown);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.nav-item-dropdown:hover .wd-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mega-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--wd-bg-light);
    transition: var(--transition);
}
.mega-card:hover {
    background: var(--wd-cyan-light);
    transform: translateY(-2px);
}
.mega-icon {
    font-size: 1.5rem;
}
.mega-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--wd-text-main);
}
.mega-info span {
    display: block;
    font-size: 0.72rem;
    color: var(--wd-text-muted);
}

/* Header Right Actions */
.wd-actions-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #1a1a1a !important;
    padding: 8px 18px;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wd-whatsapp-pill:hover {
    border-color: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15) !important;
    color: #1a1a1a !important;
}
.live-dot {
    width: 9px;
    height: 9px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: none !important;
    flex-shrink: 0;
}

/* 7/24 Support Hotline (Apple & Waterdrop Style) */
.wd-support-hotline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    padding: 6px 12px;
    border-radius: 9999px;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-support-hotline:hover {
    background: #f8fafc;
}
.support-hotline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f7ff;
    color: var(--wd-cyan, #009fe3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.wd-support-hotline:hover .support-hotline-icon {
    background: var(--wd-cyan, #009fe3);
    color: #ffffff;
    transform: scale(1.06);
}
.support-hotline-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.support-hotline-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.1;
    margin-bottom: 2px;
}
.support-hotline-number {
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}
.wd-support-hotline:hover .support-hotline-number {
    color: var(--wd-cyan, #009fe3);
}

.wd-header-divider {
    display: block;
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .wd-header-divider {
        display: none !important;
    }
    .wd-actions-col {
        gap: 8px !important;
    }
    /* 7/24 Support Hotline — mobile visible */
    .wd-support-hotline {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 4px 9px 4px 6px !important;
        border-radius: 9999px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }
    .wd-support-hotline:hover,
    .wd-support-hotline:active {
        background: #f0f7ff !important;
        border-color: rgba(0, 159, 227, 0.4) !important;
    }
    .support-hotline-icon {
        width: 28px !important;
        height: 28px !important;
        background: #f0f7ff !important;
        color: var(--wd-cyan, #009fe3) !important;
    }
    .support-hotline-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
    .support-hotline-text {
        display: flex !important;
        flex-direction: column !important;
    }
    .support-hotline-label {
        display: block !important;
        font-size: 0.58rem !important;
        font-weight: 700 !important;
        color: #64748b !important;
        line-height: 1 !important;
        margin-bottom: 2px !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
    }
    .support-hotline-number {
        display: block !important;
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .wd-branding-col .wd-brand-logo {
        max-width: 120px !important;
        height: 32px !important;
    }
    .wd-actions-col {
        gap: 5px !important;
    }
    .wd-support-hotline {
        padding: 3px 7px 3px 5px !important;
        gap: 5px !important;
    }
    .support-hotline-icon {
        width: 26px !important;
        height: 26px !important;
    }
    .support-hotline-icon svg {
        width: 13px !important;
        height: 13px !important;
    }
    .support-hotline-label {
        font-size: 0.52rem !important;
    }
    .support-hotline-number {
        font-size: 0.70rem !important;
    }
    .wd-icon-btn,
    .wd-mobile-toggle {
        padding: 3px !important;
    }
}

.wd-icon-btn {
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827 !important;
    cursor: pointer;
    padding: 0 !important;
    transition: color 0.2s ease, transform 0.2s ease;
}
.wd-icon-btn:hover {
    background: transparent !important;
    border: none !important;
    color: #0066cc !important;
    transform: scale(1.1);
}

/* ----------------------------------------------------
   WATERDROP MOBILE WAVE TOGGLE BUTTON
   (NO BACKGROUND AT ALL, ONLY WAVE LINES TURN BLUE)
---------------------------------------------------- */
.wd-mobile-toggle {
    display: none;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 6px !important;
    color: #0f172a !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: color 0.2s ease !important;
    flex-shrink: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-appearance: none !important;
}

.wd-mobile-toggle:hover,
.wd-mobile-toggle:focus,
.wd-mobile-toggle:active,
.wd-mobile-toggle.active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--wd-cyan, #009fe3) !important;
}

.wd-mobile-toggle .wave-menu-icon {
    width: 27px !important;
    height: 27px !important;
    display: block !important;
    color: inherit !important;
    stroke: currentColor !important;
    transition: color 0.2s ease, stroke 0.2s ease !important;
}

.wd-mobile-toggle:hover .wave-menu-icon,
.wd-mobile-toggle:focus .wave-menu-icon,
.wd-mobile-toggle:active .wave-menu-icon,
.wd-mobile-toggle.active .wave-menu-icon {
    color: var(--wd-cyan, #009fe3) !important;
    stroke: var(--wd-cyan, #009fe3) !important;
}

/* ----------------------------------------------------
   FULL-SCREEN MOBILE DRAWER (Right-to-Left Slide In)
---------------------------------------------------- */
.wd-mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 999999 !important; /* Above everything including floating whatsapp */
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.36s !important;
    visibility: hidden !important;
    overflow: hidden !important;
    box-shadow: none !important;
}
.wd-mobile-drawer.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.drawer-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 999990 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}
.drawer-backdrop.active {
    display: block !important;
    opacity: 1 !important;
}

/* Drawer Top Bar: Brand Logo & Close Circle */
.drawer-top-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #eef2f6 !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
}
.drawer-logo-wrap {
    display: flex !important;
    align-items: center !important;
}
.drawer-logo-img {
    height: 38px !important;
    width: auto !important;
    max-width: 175px !important;
    object-fit: contain !important;
}
.drawer-close-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    border: none !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}
.drawer-close-btn:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    transform: scale(1.05) !important;
}

/* Scrollable Body: Houses Clean Menu */
.drawer-scroll-body {
    flex: 1 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 24px 24px 40px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Drawer Nav Menu */
.drawer-main-nav {
    width: 100% !important;
    margin-top: 10px !important;
}
.drawer-nav-items {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Staggered Slide-In Animation for Menu Items */
.wd-mobile-drawer .drawer-nav-item {
    border-bottom: 1px solid #f1f5f9 !important;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.wd-mobile-drawer.active .drawer-nav-item {
    opacity: 1;
    transform: translateX(0);
}
.wd-mobile-drawer.active .drawer-nav-item:nth-child(1) { transition-delay: 0.08s; }
.wd-mobile-drawer.active .drawer-nav-item:nth-child(2) { transition-delay: 0.12s; }
.wd-mobile-drawer.active .drawer-nav-item:nth-child(3) { transition-delay: 0.16s; }
.wd-mobile-drawer.active .drawer-nav-item:nth-child(4) { transition-delay: 0.20s; }
.wd-mobile-drawer.active .drawer-nav-item:nth-child(5) { transition-delay: 0.24s; }
.wd-mobile-drawer.active .drawer-nav-item:nth-child(6) { transition-delay: 0.28s; }

/* Menu Link: NO BLUE BACKGROUND BLOCK, Smooth Animated Slide */
.drawer-nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 8px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1e293b !important;
    text-decoration: none !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    position: relative !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease !important;
}

/* Subtle Left Accent Line on Hover / Active */
.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 24px;
    background: var(--wd-cyan, #009fe3);
    border-radius: 3px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
    background: transparent !important;
    color: var(--wd-cyan, #009fe3) !important;
    transform: translateX(10px) !important;
}

.drawer-nav-link:hover::before,
.drawer-nav-link.active::before {
    transform: translateY(-50%) scaleY(1);
}

.drawer-link-title {
    color: inherit !important;
}

/* Animated Arrow on Right */
.drawer-nav-arrow {
    font-size: 1.3rem !important;
    color: #94a3b8 !important;
    transform: translateX(-8px) !important;
    opacity: 0 !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, color 0.25s ease !important;
}

.drawer-nav-link:hover .drawer-nav-arrow,
.drawer-nav-link.active .drawer-nav-arrow {
    transform: translateX(0) !important;
    opacity: 1 !important;
    color: var(--wd-cyan, #009fe3) !important;
}

/* ----------------------------------------------------
   MOBILE DRAWER CONTACT CARD (PHONE & EMAIL WITH ICONS)
---------------------------------------------------- */
.drawer-contact-card {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-contact-heading {
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 2px;
}

.drawer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-contact-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.drawer-contact-row:hover,
.drawer-contact-row:active {
    background: #ffffff;
    border-color: var(--wd-cyan, #009fe3);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 159, 227, 0.1);
}

.drawer-contact-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drawer-contact-icon-circle.icon-phone {
    background: #f0f7ff;
    color: var(--wd-cyan, #009fe3);
}

.drawer-contact-icon-circle.icon-email {
    background: #f0f9ff;
    color: #0284c7;
}

.drawer-contact-icon-circle.icon-whatsapp {
    background: #ecfdf5;
    color: #10b981;
}

.drawer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.drawer-contact-sub {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.drawer-contact-main {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drawer-contact-row.row-whatsapp .drawer-contact-main {
    color: #059669;
}

/* ----------------------------------------------------
   ANIMATED TOP SLIDE-DOWN SEARCH BOX
---------------------------------------------------- */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 24px 0 28px 0;
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
    display: block;
}
.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    position: relative;
    max-width: 720px;
    width: 90%;
    margin: 0 auto;
}
.search-close-btn {
    position: absolute;
    top: -12px;
    right: -48px;
    background: #f1f5f9;
    border: none;
    color: #475569;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.search-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.search-input-wrap {
    display: flex;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 6px 8px 6px 14px;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.search-input-wrap:focus-within {
    border-color: var(--wd-cyan);
    background: #ffffff;
}
.search-icon-input {
    color: var(--wd-text-muted);
    flex-shrink: 0;
}
.search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--wd-text-main);
    background: transparent;
}
.search-submit-btn {
    background: #036aff;
    color: var(--wd-white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s ease;
}
.search-submit-btn:hover {
    background: #0054cc;
}
.search-quick-tags {
    margin-top: 14px;
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.search-quick-tags span {
    font-weight: 600;
    color: #475569;
}
.search-quick-tags a {
    color: #334155;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    transition: var(--transition);
}
.search-quick-tags a:hover {
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
}

/* ----------------------------------------------------
   3. WATERDROP FULLSCREEN HERO SLIDER WITH OVAL CURVE
---------------------------------------------------- */
.wd-fullscreen-hero {
    position: relative;
    width: 100%;
    height: 640px;
    max-height: 84vh;
    min-height: 560px;
    overflow: hidden;
    background: #ffffff;
}

.wd-fullscreen-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.wd-fs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
    display: flex;
    align-items: center;
}
.wd-fs-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-crisp-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #f7f7f5;
    overflow: hidden;
}

.slide-crisp-img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: right 45%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    display: block;
}

.slide-custom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.fs-slide-content-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.fs-content-box {
    max-width: 680px;
    padding-bottom: 20px;
}

.fs-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 2.9vw, 3.1rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.fs-hero-desc {
    font-family: var(--font-body);
    font-size: 1.12rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 530px;
}

.btn-fs-shop-now {
    background: #036aff;
    color: #ffffff !important;
    padding: 14px 34px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-fs-shop-now:hover {
    background: #0054cc;
    box-shadow: none;
    transform: none;
}

@media (max-width: 991px) {
    .wd-fullscreen-hero {
        height: 540px;
        min-height: 500px;
    }
    .fs-content-box {
        max-width: 100%;
    }
    .hero-title-line {
        white-space: normal;
        display: inline;
    }
}

@media (max-width: 767px) {
    .wd-fullscreen-hero {
        height: auto;
        min-height: 480px;
        padding: 40px 0 60px;
    }
    .fs-slide-content-wrap {
        padding: 0 20px;
    }
    .fs-hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }
    .hero-title-line {
        white-space: normal;
        display: inline;
    }
}

/* Side Floating Circular Navigation Arrows */
.wd-arrow-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10) !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.wd-arrow-circle.arrow-prev {
    left: 20px;
}
.wd-arrow-circle.arrow-next {
    right: 20px;
}
.wd-arrow-circle:hover {
    background: #f8fafc;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14) !important;
    transform: translateY(-50%);
}

/* Bottom Center Segmented Progress Bar (6-Second Filling Animation) */
.wd-progress-nav {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
}
.progress-bar-segment {
    width: 70px;
    height: 3.5px;
    border-radius: 2px;
    background: #cbd5e1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.progress-bar-segment .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #000000;
    border-radius: 2px;
}

/* Waterdrop Signature Oval Bottom Curve Mask */
.wd-hero-curve-mask {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}
.wd-hero-curve-mask svg {
    width: 100%;
    height: 85px;
    display: block;
}

/* ----------------------------------------------------
   4. WATERDROP 4-PILLAR TRUST BAR
---------------------------------------------------- */
.wd-trust-bar-section {
    background-color: var(--wd-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--wd-border);
}
.wd-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.trust-pill-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
}
.trust-icon-box {
    width: 46px;
    height: 46px;
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--wd-text-main);
}
.trust-content span {
    display: block;
    font-size: 0.78rem;
    color: var(--wd-text-muted);
}

/* ----------------------------------------------------
   5. CATEGORY CARDS SHOWCASE
---------------------------------------------------- */
.wd-categories-section {
    padding: 60px 0;
    background-color: var(--wd-bg-light);
}
.wd-section-header {
    margin-bottom: 36px;
}
.wd-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wd-cyan);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.wd-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}
.wd-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.wd-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.wd-cat-card {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wd-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--wd-cyan);
}
.wd-cat-card.highlight-cat {
    border-color: var(--wd-wa);
    background: #f0fdf4;
}
.cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--wd-wa);
    color: var(--wd-white);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}
.cat-img-box {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.cat-img-box img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.wd-cat-card:hover .cat-img-box img {
    transform: scale(1.05);
}
.wd-cat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.wd-cat-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wd-cyan);
}

/* ----------------------------------------------------
   6. TABBED PRODUCTS SHOWCASE
---------------------------------------------------- */
.wd-products-section {
    padding: 70px 0;
    background-color: var(--wd-white);
}
.wd-section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

/* Filter Tabs */
.wd-product-tabs {
    display: flex;
    background: var(--wd-bg-light);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--wd-border);
    gap: 4px;
}
.tab-pill {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--wd-text-muted);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}
.tab-pill.active,
.tab-pill:hover {
    background: var(--wd-cyan);
    color: var(--wd-white);
}

/* Product Cards */
.wd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.wd-product-card {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.wd-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--wd-cyan);
}
.wd-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wd-cyan);
    color: var(--wd-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wd-product-img-wrap {
    height: 240px;
    background: var(--wd-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}
.wd-product-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.wd-product-card:hover .wd-product-img {
    transform: scale(1.04);
}

.wd-product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wd-cat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wd-cyan);
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}
.wd-product-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
.wd-product-title a {
    color: var(--wd-text-main);
}
.wd-product-title a:hover {
    color: var(--wd-cyan);
}

.wd-specs-bullets {
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.wd-specs-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--wd-text-muted);
}

.wd-price-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--wd-border-light);
    margin-bottom: 14px;
}
.price-stack {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.old-price {
    font-size: 0.88rem;
    text-decoration: line-through;
    color: var(--wd-text-light);
}
.current-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--wd-dark);
}
.quote-badge {
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.wd-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}
.btn-card-whatsapp {
    background-color: var(--wd-wa);
    color: var(--wd-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-card-whatsapp:hover {
    background-color: var(--wd-wa-dark);
}
.btn-card-detail {
    background-color: var(--wd-bg-light);
    border: 1px solid var(--wd-border);
    color: var(--wd-text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: var(--radius-md);
}
.btn-card-detail:hover {
    background: var(--wd-white);
    border-color: var(--wd-cyan);
    color: var(--wd-cyan);
}

/* ----------------------------------------------------
   7. TECHNOLOGY & FILTRATION SPOTLIGHT
---------------------------------------------------- */
.wd-tech-section {
    padding: 70px 0;
    background-color: var(--wd-bg-light);
}
.wd-tech-card {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.tech-main-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin: 8px 0 16px 0;
}
.tech-desc {
    font-family: var(--font-body);
    color: #555555;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 24px;
}
.tech-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tech-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--wd-bg-light);
    padding: 12px 18px;
    border-radius: var(--radius-md);
}
.tech-step-item .step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wd-cyan);
    color: var(--wd-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tech-step-item strong {
    display: block;
    font-size: 0.92rem;
}
.tech-step-item span {
    font-size: 0.78rem;
    color: var(--wd-text-muted);
}

.tech-glass-box {
    position: relative;
    background: var(--wd-cyan-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-hero-img {
    max-height: 320px;
    object-fit: contain;
}
.tech-floating-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--wd-white);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.tech-floating-tag strong {
    display: block;
    color: var(--wd-cyan);
}
.tech-floating-tag span {
    font-size: 0.72rem;
    color: var(--wd-text-muted);
}




/* ----------------------------------------------------
   9. FAQ ACCORDION
---------------------------------------------------- */
.wd-faq-section {
    padding: 70px 0;
    background-color: var(--wd-bg-light);
}
.wd-faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--wd-cyan);
    box-shadow: var(--shadow-card);
}
.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--wd-text-main);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-icon {
    color: var(--wd-cyan);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer-panel {
    max-height: 300px;
}
.faq-answer-panel p {
    padding: 0 24px 20px 24px;
    font-size: 0.92rem;
    color: var(--wd-text-muted);
    line-height: 1.6;
}

/* ----------------------------------------------------
   10. BOTTOM CONSULTATION BANNER
---------------------------------------------------- */
.wd-bottom-banner {
    background: linear-gradient(135deg, var(--wd-blue-dark) 0%, var(--wd-cyan) 100%);
    padding: 50px 0;
    color: var(--wd-white);
}
.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.banner-text h2 {
    color: var(--wd-white);
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
}
.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-banner-whatsapp {
    background: var(--wd-wa);
    color: var(--wd-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-banner-whatsapp:hover {
    background: var(--wd-wa-dark);
}
.btn-banner-call {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--wd-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
}
.btn-banner-call:hover {
    background: var(--wd-white);
    color: var(--wd-dark);
}

/* ----------------------------------------------------
   11. NEW LIGHT WATERDROP FOOTER
---------------------------------------------------- */
.wd-site-footer {
    background-color: #F3F8FF;
    color: var(--wd-text-main);
    border-top: none;
    position: relative;
    padding-top: 130px;
    padding-bottom: 20px;
    margin-top: 0;
}
.wd-site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 80px;
    background-color: #ffffff; /* White valley dipping down */
    border-radius: 0 0 50% 50% / 0 0 80px 80px; /* Concave curve */
    z-index: 1;
}
.wd-site-footer .vuslat-container {
    position: relative;
    z-index: 2; /* Keep content above the valley background */
}

/* Water Drop Back to Top */
.waterdrop-btt {
    position: absolute;
    top: 20px; /* Sits in the white valley */
    left: 50%;
    width: 48px;
    height: 48px;
    background-color: #00d0ff; /* Bright waterdrop blue */
    border-radius: 0 50% 50% 50%; /* Drop shape */
    transform: translateX(-50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: none; /* No shadow/neon */
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.waterdrop-btt:hover {
    background-color: #00b8e6;
    animation: floatWaterdrop 0.6s infinite alternate ease-in-out;
}
@keyframes floatWaterdrop {
    0% { transform: translateX(-50%) rotate(45deg) translate(0, 0); }
    100% { transform: translateX(-50%) rotate(45deg) translate(-8px, -8px); }
}
.waterdrop-btt svg {
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
    margin-bottom: -2px; /* optical alignment */
    margin-right: -2px;
}

/* 1. Header (Logo & Slogan) */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-slogan {
    color: #40bdf4;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
}

/* 2. Newsletter Box */
.footer-newsletter-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    margin-bottom: 50px;
}
.newsletter-text {
    flex: 1;
}
.newsletter-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 5px;
}
.newsletter-text h3 span {
    color: var(--wd-blue);
}
.newsletter-text p {
    font-size: 0.9rem;
    color: var(--wd-text-muted);
    margin: 0;
}
.newsletter-form form {
    display: flex;
    gap: 0;
    border: 1px solid #eef2f6;
    border-radius: 6px;
    overflow: hidden;
    width: 400px;
    max-width: 100%;
}
.newsletter-form input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 0.9rem;
    background: #fafcff;
    outline: none;
}
.newsletter-form button {
    background: var(--wd-blue);
    color: #fff;
    border: none;
    padding: 0 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: var(--wd-blue-dark);
}

/* 3. Links Columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.footer-link-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wd-dark);
    margin-bottom: 20px;
}
.footer-link-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-link-col ul li a {
    color: var(--wd-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link-col ul li a:hover {
    color: var(--wd-blue);
}

/* 4. Sub-footer Bar */
.footer-sub-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.footer-legal-links {
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    color: var(--wd-text-main);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}
.footer-legal-links a:hover {
    color: var(--wd-blue);
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}
.footer-social-icons a {
    color: var(--wd-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.footer-social-icons a:hover {
    color: var(--wd-blue);
}

/* 5. Copyright Bar */
.footer-bottom-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copy-text {
    font-size: 0.85rem;
    color: var(--wd-text-muted);
}
.payment-methods span {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Floating WhatsApp Button (Keep independent) */
.wd-floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wd-wa);
    color: var(--wd-white) !important;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.wd-floating-whatsapp:hover {
    background: var(--wd-wa-dark);
    transform: translateY(-3px);
}

/* Related Products Section */
.section-related-products {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid var(--wd-border);
}
.related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}
.related-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wd-cyan);
    display: block;
    margin-bottom: 6px;
}
.related-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wd-dark);
    margin: 0;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related-product-card {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.related-product-card:hover {
    border-color: var(--wd-cyan);
    transform: translateY(-3px);
}
.related-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--wd-cyan);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.related-card-img-wrap {
    height: 200px;
    background: var(--wd-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.related-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.related-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.related-card-cat {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wd-cyan);
}
.related-card-title {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    flex: 1;
}
.related-card-title a {
    color: var(--wd-text-main);
}
.related-card-title a:hover {
    color: var(--wd-cyan);
}
.related-card-price {
    padding-top: 8px;
    border-top: 1px solid var(--wd-border-light);
}
.related-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wd-dark);
}
.related-price-quote {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--wd-cyan);
}
.related-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}
.related-btn-detail {
    background: var(--wd-bg-light);
    border: 1px solid var(--wd-border);
    color: var(--wd-text-main);
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
}
.related-btn-detail:hover {
    border-color: var(--wd-cyan);
    color: var(--wd-cyan);
}
.related-btn-wa {
    background: var(--wd-wa);
    color: #fff !important;
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
}
.related-btn-wa:hover {
    background: var(--wd-wa-dark);
}

/* ----------------------------------------------------
   12. SINGLE PRODUCT & INNER PAGES (WATERDROP STYLE)
---------------------------------------------------- */
.breadcrumb-bar {
    background: var(--wd-bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--wd-border);
    font-size: 0.82rem;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wd-text-muted);
}
.breadcrumb-nav a {
    color: var(--wd-text-muted);
}
.breadcrumb-nav a:hover {
    color: var(--wd-cyan);
}
.bc-sep {
    color: var(--wd-border);
}
.bc-current {
    color: var(--wd-text-main);
    font-weight: 600;
}

.single-product-main {
    padding: 50px 0;
}
.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}
.product-gallery-col {
    width: 100%;
    min-width: 0;
}
.product-summary-col {
    width: 100%;
    min-width: 0;
}
.product-main-image-wrap {
    background: var(--wd-bg-light);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-badge-large {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--wd-cyan);
    color: var(--wd-white);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.main-product-img {
    max-height: 420px;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

/* Waterdrop Product Multi-Photo Gallery Carousel */
.product-thumbs-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
}
.thumb-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: none !important;
    transition: all 0.2s ease;
}
.thumb-nav-btn:hover {
    border-color: #009fe3;
    color: #009fe3;
    background: #f0f9ff;
}
.thumbs-track {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px;
    flex: 1;
}
.thumbs-track::-webkit-scrollbar {
    display: none;
}
.thumb-item-btn {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: none !important;
}
.thumb-item-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}
.thumb-item-btn.active {
    border-color: #009fe3;
    background: #ffffff;
    outline: 2px solid #009fe3;
    outline-offset: 1px;
}
.thumb-item-btn:hover {
    border-color: #009fe3;
}

.product-category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wd-cyan);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.single-product-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-guarantee-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.guarantee-badge {
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-price-section {
    background: var(--wd-bg-light);
    border: 1px solid var(--wd-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}
.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.old-price-lg {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--wd-text-light);
}
.current-price-lg {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--wd-dark);
}
.tax-info {
    font-size: 0.78rem;
    color: var(--wd-text-muted);
}

.stock-status-badge {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
}
.stock-status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.stock-status-badge .dot.green { background: var(--wd-wa); }
.stock-status-badge .dot.yellow { background: #eab308; }
.stock-status-badge .dot.red { background: #ef4444; }

.product-highlights {
    margin-bottom: 24px;
}
.product-highlights h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--wd-text-muted);
}

.product-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.btn-whatsapp {
    background: var(--wd-wa);
    color: var(--wd-white) !important;
}
.btn-whatsapp:hover {
    background: var(--wd-wa-dark);
}
.btn-outline-primary {
    background: var(--wd-white);
    border: 1.5px solid var(--wd-cyan);
    color: var(--wd-cyan);
}
.btn-outline-primary:hover {
    background: var(--wd-cyan);
    color: var(--wd-white);
}

.product-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--wd-border);
}
.p-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wd-text-muted);
}

/* Tabs & Product Details */
.product-tabs-section,
.single-product-tabs {
    padding: 40px 0;
    background: var(--wd-bg-light);
    border-top: 1px solid var(--wd-border);
}
.product-tabs-wrapper {
    width: 100%;
}
.product-tabs-nav,
.tab-buttons-bar {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--wd-border);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
}
.tab-buttons-bar::-webkit-scrollbar {
    display: none;
}
.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--wd-text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
    margin-bottom: -2px;
}
.tab-btn:hover {
    color: var(--wd-cyan);
}
.tab-btn.active {
    color: var(--wd-cyan);
    border-bottom: 2px solid var(--wd-cyan);
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

.table-specs {
    width: 100%;
    border-collapse: collapse;
    background: var(--wd-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.table-specs tr:nth-child(even) {
    background: var(--wd-bg-light);
}
.table-specs th,
.table-specs td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--wd-border-light);
}
.table-specs th {
    width: 35%;
    font-weight: 600;
    color: var(--wd-text-main);
}
.table-specs td {
    color: var(--wd-text-muted);
}

/* Spare Parts / Yedek Parçalar Specific */
.parts-hero-banner {
    background: linear-gradient(135deg, var(--wd-dark) 0%, var(--wd-blue) 100%);
    color: var(--wd-white);
    padding: 60px 0;
    text-align: center;
}
.parts-hero-banner h1 {
    color: var(--wd-white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.parts-hero-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 1024px) {
    .wd-desktop-nav { display: none; }
    .wd-mobile-toggle { display: flex; }
    .slide-container { grid-template-columns: 1fr; padding-bottom: 70px; text-align: center; }
    .slide-content-box { margin: 0 auto; }
    .slide-cta-row { justify-content: center; }
    .wd-tech-card { grid-template-columns: 1fr; padding: 30px; }
    .wd-calc-wrapper { grid-template-columns: 1fr; }
    .wd-footer-grid { grid-template-columns: 1fr 1fr; }
    .single-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .announcement-inner { justify-content: center; }
    .slide-main-title { font-size: 2.1rem; }
    .wd-title { font-size: 1.7rem; }
    .wd-logo-sub-badge { display: none; }
    .wd-whatsapp-pill span { display: none; }
    .wd-whatsapp-pill { padding: 8px 12px; }
    .wd-footer-grid { grid-template-columns: 1fr; }
    .bottom-inner { flex-direction: column; text-align: center; }
    .product-trust-row { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------
   SEARCH RESULTS PAGE (WATERDROP STYLE)
---------------------------------------------------- */
.search-results-section {
    background-color: var(--wd-white);
    min-height: 520px;
}
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--wd-border);
}
.search-results-count {
    color: var(--wd-text-muted);
    font-size: 0.95rem;
    margin-top: 4px;
}
.search-refine-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-refine-input {
    padding: 10px 16px;
    border: 1.5px solid var(--wd-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--wd-text-main);
    width: 280px;
    outline: none;
    transition: border-color 0.2s ease;
}
.search-refine-input:focus {
    border-color: var(--wd-cyan);
}
.search-empty-state {
    text-align: center;
    padding: 60px 20px;
    max-width: 580px;
    margin: 0 auto;
}
.empty-icon-box {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1;
}
.empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}
.empty-desc {
    color: var(--wd-text-muted);
    line-height: 1.6;
    font-size: 0.98rem;
}
.empty-quick-tags {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.empty-quick-tags span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--wd-text-main);
}
.empty-quick-tags .tag-pill {
    background: var(--wd-bg-light);
    border: 1px solid var(--wd-border);
    color: var(--wd-text-main);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
}
.empty-quick-tags .tag-pill:hover {
    background: var(--wd-cyan-light);
    border-color: var(--wd-cyan);
    color: var(--wd-cyan);
}
.empty-cta-wrap {
    margin-top: 28px;
}

/* ----------------------------------------------------
   ARCHIVE PRODUCTS PAGE (urunler)
---------------------------------------------------- */
.archive-products-page { padding: 50px 0; }
.archive-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters-sidebar { background: var(--wd-white); border: 1px solid var(--wd-border); border-radius: 12px; padding: 24px; position: sticky; top: 100px; }
.filter-group { margin-bottom: 28px; }
.filter-group-title { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--wd-text-main); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--wd-border); }
.filter-link { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.88rem; color: var(--wd-text-muted); border-bottom: 1px solid var(--wd-border-light, #f0f4f8); text-decoration: none; font-family: var(--font-heading); font-weight: 500; transition: color 0.2s; }
.filter-link:hover, .filter-link.active { color: var(--wd-cyan); }
.filter-link.active { font-weight: 600; }
.filter-link .count { background: var(--wd-bg-light); border-radius: 9999px; font-size: 0.72rem; padding: 1px 7px; color: var(--wd-text-muted); }
.sort-radio-group { display: flex; flex-direction: column; gap: 8px; }
.sort-radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-family: var(--font-heading); font-weight: 500; color: var(--wd-text-muted); cursor: pointer; }
.sort-radio-label input { accent-color: var(--wd-cyan); cursor: pointer; }
.sort-submit-btn { width: 100%; margin-top: 12px; background: var(--wd-cyan); color: #fff; border: none; border-radius: 8px; padding: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; cursor: pointer; }
.products-main { min-width: 0; }
.products-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--wd-border); }
.products-count-text { font-size: 0.88rem; color: var(--wd-text-muted); font-family: var(--font-heading); }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--wd-cyan-light, #e8f6fd); color: var(--wd-cyan); font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 9999px; text-decoration: none; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* Modern Premium Archive Product Cards */
.archive-product-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.archive-product-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 18px 36px -8px rgba(0, 159, 227, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
}

.archive-card-img-wrap {
    height: 250px;
    background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f8fafc 85%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}
.archive-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.archive-product-card:hover .archive-card-img {
    transform: scale(1.06);
}

.archive-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.archive-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #009fe3;
    margin-bottom: 6px;
    display: inline-block;
}
.archive-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.42;
    margin: 0 0 16px 0;
    color: #1e293b;
    min-height: 2.85em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.archive-card-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}
.archive-card-title a:hover {
    color: #009fe3;
}
.archive-card-price {
    margin-top: auto;
    margin-bottom: 16px;
    padding: 0;
    border-top: none;
    display: flex;
    align-items: center;
}
.archive-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}
.archive-price-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #0284c7;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    padding: 7px 14px;
    border-radius: 10px;
}
.archive-price-quote::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #009fe3;
    box-shadow: 0 0 6px rgba(0, 159, 227, 0.5);
}
.archive-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.archive-btn-detail {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.archive-btn-detail:hover {
    background: #ffffff;
    border-color: #009fe3;
    color: #009fe3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.archive-btn-wa {
    background: #25D366;
    color: #ffffff !important;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}
.archive-btn-wa:hover {
    background: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
    color: #ffffff !important;
}
.archive-btn-wa svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .archive-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .archive-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------
   FULL WIDTH MEGA MENU
---------------------------------------------------- */
.wd-main-nav-bar { position: relative; }
.nav-item-mega-full { position: static; }

.wd-mega-dropdown-fullwidth {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--wd-white);
    border-top: 1px solid var(--wd-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.nav-item-mega-full:hover .wd-mega-dropdown-fullwidth {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-full-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 380px;
}

.mega-sidebar {
    width: 250px;
    background: #f4f7f9;
    padding: 30px 0;
    border-right: 1px solid var(--wd-border);
}
.mega-tab-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wd-text-main);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.mega-tab-btn:hover {
    color: var(--wd-cyan);
    background: rgba(0, 159, 227, 0.05);
}
.mega-tab-btn.active {
    color: var(--wd-cyan);
    background: var(--wd-white);
    font-weight: 600;
}
.mega-tab-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--wd-cyan);
}

.mega-content-area {
    flex: 1;
    padding: 40px;
    background: var(--wd-white);
}

.mega-panel {
    display: none;
}
.mega-panel.active {
    display: block;
}

.mega-panel-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
}

.mega-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wd-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mega-shop-all {
    font-size: 0.8rem;
    color: var(--wd-cyan);
    font-weight: 600;
    text-decoration: none;
}
.mega-shop-all:hover {
    text-decoration: underline;
}

.mega-subcats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mega-subcat-link {
    font-size: 0.95rem;
    color: var(--wd-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.mega-subcat-link:hover {
    color: var(--wd-cyan);
}
.mega-subcat-link.view-all {
    margin-top: 10px;
    color: var(--wd-cyan);
    font-weight: 600;
}

.mega-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.mega-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid var(--wd-border-light, #e2e8f0);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mega-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    border-color: var(--wd-cyan);
}
.mega-product-card .img-wrap {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
}
.mega-product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.mega-p-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mega-p-info .p-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wd-dark);
    line-height: 1.3;
}
.mega-p-info .p-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--wd-cyan);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

:root {
    --container-max: 1240px;
    --container-padding: 24px;
}

.vuslat-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ----------------------------------------------------
   PAGE BANNER (HAKKIMIZDA & İLETİŞİM)
---------------------------------------------------- */
.page-banner {
    background: linear-gradient(135deg, var(--wd-cyan) 0%, var(--wd-blue-dark) 100%);
    padding: 60px 0;
    color: var(--wd-white);
    text-align: center;
}
.page-banner-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--wd-white);
    margin-bottom: 12px;
}
.page-banner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.breadcrumb-nav.white {
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}
.breadcrumb-nav.white a {
    color: var(--wd-white);
}
.breadcrumb-nav.white .bc-current {
    color: rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------------------
   ABOUT PAGE (HAKKIMIZDA)
---------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}
.about-text-col p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.a-stat {
    background: var(--wd-bg-light);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--wd-border-light, #eef2f6);
    text-align: center;
}
.a-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--wd-cyan);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 4px;
}
.a-stat span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wd-text-main);
}
.about-img-col {
    position: relative;
}
.about-featured-img {
    border-radius: var(--radius-xl);
    width: 100%;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.mv-card {
    background: var(--wd-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--wd-border-light, #eef2f6);
    text-align: center;
}
.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--wd-blue);
}
.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--wd-dark);
}
.mv-card p {
    line-height: 1.6;
}

/* ----------------------------------------------------
   CONTACT PAGE (İLETİŞİM - Waterdrop Style)
---------------------------------------------------- */

.wd-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.wd-contact-card {
    background: var(--wd-white);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--wd-border-light, #eef2f6);
}
.wd-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--wd-cyan);
}
.wd-contact-icon {
    width: 60px; height: 60px;
    background: var(--wd-blue);
    color: var(--wd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.wd-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--wd-dark);
    margin-bottom: 12px;
}
.wd-contact-card p {
    font-size: 0.95rem;
    color: var(--wd-text-muted);
    margin-bottom: 20px;
    min-height: 60px;
    line-height: 1.6;
}
.wd-contact-card a {
    display: inline-block;
    color: var(--wd-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.wd-contact-card a:hover {
    text-decoration: underline;
}

.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 80px;
}
.wd-contact-form-wrap {
    background: var(--wd-white);
    border-radius: 12px;
    padding: 50px 40px;
    border: 1px solid var(--wd-border-light, #eef2f6);
    width: 100%;
}
.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wd-border-light, #eef2f6);
    width: 100%;
    min-height: 450px;
}
.wd-form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}
.wd-btn-outline {
    background: #fff;
    border: 1.5px solid var(--wd-blue);
    color: var(--wd-blue);
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.2s;
}
.wd-btn-outline:hover {
    background: var(--wd-blue-soft);
}
.wd-btn-primary {
    background: var(--wd-blue);
    border: 1.5px solid var(--wd-blue);
    color: #fff;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.2s;
}
.wd-btn-primary:hover {
    background: var(--wd-blue-dark);
    border-color: var(--wd-blue-dark);
}
.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--wd-border-light, #eef2f6);
    width: 100%;
    min-height: 450px;
}
.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wd-dark);
    border-bottom: 2px solid var(--wd-border);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.wd-form-clean .form-row {
    display: flex;
    gap: 20px;
}
.wd-form-clean .form-row .form-group {
    flex: 1;
}
.wd-form-clean .form-group {
    margin-bottom: 20px;
}
.wd-form-clean label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wd-dark);
}
.wd-form-clean .req {
    color: #dc3232;
}
.wd-form-clean input,
.wd-form-clean select,
.wd-form-clean textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wd-border);
    border-radius: 6px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--wd-text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wd-form-clean input:focus,
.wd-form-clean select:focus,
.wd-form-clean textarea:focus {
    border-color: var(--wd-cyan);
    outline: none;
    box-shadow: 0 0 0 3px var(--wd-cyan-light);
}

@media (max-width: 991px) {
    .wd-contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-map-grid {
        grid-template-columns: 1fr;
    }
    .footer-newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .newsletter-form form {
        width: 100%;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-sub-bar {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .wd-contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .wd-form-clean .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ----------------------------------------------------
   CALCULATOR PAGE (TASARRUF HESAPLA)
---------------------------------------------------- */
.section-calculator-page {
    padding: 60px 0;
}
.calc-page-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}
.calc-card-main {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.calc-card-main h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.calc-card-main p {
    color: var(--wd-text-muted);
    margin-bottom: 24px;
}
.calc-field label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--wd-dark);
}
.badge-calc-val {
    background: var(--wd-cyan-light);
    color: var(--wd-cyan);
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
}
.calc-slider {
    width: 100%;
    margin-top: 16px;
    accent-color: var(--wd-cyan);
}
.slider-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--wd-text-muted);
    font-weight: 600;
}
.calc-big-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--wd-border);
}
.big-res-box {
    background: var(--wd-bg-light);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--wd-border);
}
.big-res-box.highlight {
    background: var(--wd-cyan-light);
    border-color: var(--wd-cyan);
}
.big-res-box small {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wd-text-muted);
    margin-bottom: 8px;
}
.big-res-box strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
}
.big-res-box.highlight small {
    color: var(--wd-cyan);
}
.big-res-box.highlight strong {
    color: var(--wd-cyan);
}
.calc-benefits-card {
    background: #f4f7f9;
    padding: 32px;
    border-radius: var(--radius-lg);
}
.calc-benefits-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.benefits-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.benefits-list li strong {
    font-size: 1.05rem;
    color: var(--wd-dark);
}
.benefits-list li span {
    font-size: 0.9rem;
    color: var(--wd-text-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .calc-page-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .calc-big-results-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Floating WhatsApp Widget */
.vuslat-wa-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: var(--font-main, sans-serif);
}
.vuslat-wa-toggle {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s infinite;
    transition: transform 0.3s ease;
}
.vuslat-wa-toggle:hover {
    transform: scale(1.1);
}
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.vuslat-wa-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transform-origin: bottom left;
}
.vuslat-wa-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vuslat-wa-header {
    background-color: #25d366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vuslat-wa-title {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.vuslat-wa-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}
.vuslat-wa-close:hover {
    opacity: 1;
}
.vuslat-wa-body {
    background-color: #efeae2;
    padding: 20px;
    background-image: url('../images/whatsapp-doodle.jpg');
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.vuslat-wa-message {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 14px;
    color: #333;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
}
.vuslat-wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.vuslat-wa-footer {
    padding: 10px;
    background: #f0f0f0;
}
#vuslat-wa-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
#vuslat-wa-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}
.vuslat-wa-send {
    background: #25d366;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}
.vuslat-wa-send:hover {
    background: #1ebc5a;
}

/* ==========================================================================
   PRELOADER (LOADING ANIMATION)
   ========================================================================== */
#vuslat-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--wd-white, #ffffff);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#vuslat-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-favicon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-favicon-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 3px solid var(--wd-bg-light, #f0f4f8);
    border-top-color: var(--wd-cyan, #009fe3);
    border-radius: 50%;
    animation: vuslatSpin 1s infinite linear;
}
.preloader-favicon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    animation: vuslatPulse 1.5s infinite ease-in-out;
}
@keyframes vuslatSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes vuslatPulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.7; }
}

/* ==========================================================================
   BEFORE / AFTER COMPARISON SLIDER (Hakkimizda Sayfasi)
   ========================================================================== */
.vuslat-before-after-section {
    padding: 80px 0;
    background: #ffffff !important;
    border-top: none;
}
.vba-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.vba-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vba-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wd-cyan, #009fe3);
}
.vba-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--wd-dark, #0f172a);
    line-height: 1.2;
    margin: 0;
}
.vba-desc {
    font-family: var(--font-heading);
    font-size: 0.93rem;
    font-weight: 400;
    color: var(--wd-text-muted, #555);
    line-height: 1.7;
    margin: 0;
}
.vba-desc strong {
    color: var(--wd-dark, #0f172a);
    font-weight: 600;
}
.vba-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vba-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--wd-text-main, #111827);
}
.vba-list li svg {
    flex-shrink: 0;
    stroke: var(--wd-cyan, #009fe3);
}

/* Slider Column */
.vba-slider-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.vba-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    cursor: col-resize;
    user-select: none;
}
.vba-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}
.vba-img-after {
    width: 100%;
}
.vba-img-before {
    width: 50%;
}
.vba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.vba-img-before img {
    width: auto;
    min-width: 100%;
    max-width: none;
}
.vba-label {
    position: absolute;
    bottom: 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.45);
    padding: 4px 12px;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}
.vba-label-before { left: 14px; }
.vba-label-after  { right: 14px; }

/* Divider Handle */
.vba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: all;
    cursor: col-resize;
}
.vba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vba-handle svg {
    stroke: var(--wd-cyan, #009fe3);
    stroke-width: 2.5;
    width: 22px;
    height: 22px;
}
.vba-drag-hint {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--wd-text-muted, #888);
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .vba-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vba-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   HAKKIMIZDA HERO BANNER (Waterdrop Tarzı - Genişletilmiş & Üstü Açık)
   ========================================================================== */
.hkm-hero {
    position: relative;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e2e8f0;
}
.hkm-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hakkimizda-hero.webp');
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
}
/* İletişim Sayfası Hero Arka Plan Görseli */
#contactHero .hkm-hero-bg {
    background-image: url('../images/iletisim-hero.webp');
    background-position: center 30%;
}

/* Üst taraf tamamen temiz/açık (0 karartma), sadece en alt kısımda metin altı hafif gölge */
.hkm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.24) 34%,
        rgba(0, 0, 0, 0.00) 62%
    );
    pointer-events: none;
}
.hkm-hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-top: 195px;
    padding-bottom: 60px;
    max-width: 740px;
    margin: 0 auto;
}
.hkm-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}
.hkm-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.hkm-breadcrumb a:hover {
    color: #ffffff;
}
.hkm-breadcrumb .bc-sep {
    opacity: 0.6;
}

/* Başlık: Kalın, sıkı harf aralığı */
.hkm-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Açıklama: Okunaklı, hafif gölgeli */
.hkm-hero-sub {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.55;
    letter-spacing: -0.35px;
    margin: 0;
    max-width: 660px;
}

/* Kavis: Hakkımızda sayfasında kavis daha zarif ve aşağıda (55px) */
.hkm-hero .wd-hero-curve-mask svg {
    height: 72px;
}

/* Su Damlası Scroll Butonu: Footerdaki ile Birebir Aynı CSS Tekniği (Beyaz Renk) */
.hkm-droplet-link {
    position: absolute;
    bottom: 26px;
    left: 50%;
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 0 50% 50% 50%;
    transform: translateX(-50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    z-index: 20;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.hkm-droplet-link svg {
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
    margin-top: 3px;
    margin-left: 3px;
    display: block;
}
/* Normalde sabit durur, sadece üzerine gelince footerdaki gibi süzülür */
.hkm-droplet-link:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
    animation: floatHeroDrop 0.6s infinite alternate ease-in-out;
}
@keyframes floatHeroDrop {
    0% {
        transform: translateX(-50%) rotate(45deg) translate(0, 0);
    }
    100% {
        transform: translateX(-50%) rotate(45deg) translate(5px, 5px);
    }
}

@media (max-width: 900px) {
    .hkm-hero {
        min-height: 500px;
    }
    .hkm-hero-inner {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .hkm-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .hkm-hero-sub {
        font-size: 0.98rem;
        letter-spacing: -0.2px;
    }
    .hkm-hero .wd-hero-curve-mask svg {
        height: 56px;
    }
    .hkm-droplet-link {
        bottom: 18px;
    }
}
@media (max-width: 576px) {
    .hkm-hero {
        min-height: 420px;
    }
    .hkm-hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }
    .hkm-hero-sub {
        font-size: 0.9rem;
    }
    .hkm-hero .wd-hero-curve-mask svg {
        height: 40px;
    }
    .hkm-droplet-link {
        bottom: 14px;
    }
}



/* ==========================================================================
   HAKKIMIZDA SADELEŞTİRİLMİŞ İÇERİK & FOOTER BEYAZ KAVİS UYUMU
   ========================================================================== */
.about-intro-wrap {
    max-width: 980px;
    margin: 0 auto 50px;
    text-align: center;
}
.about-intro-wrap .section-title {
    margin-bottom: 20px;
}
.about-intro-text {
    max-width: 840px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--wd-text-muted, #4b5563);
}
.about-intro-text p {
    margin-bottom: 16px;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Footer öncesi son bölümün arka planı her zaman saf beyaz olmalıdır (footer kavis geçişiyle kusursuz birleşim) */
.vuslat-before-after-section {
    background: #ffffff !important;
    border-top: none !important;
    padding-bottom: 100px;
}
.site-main > *:last-child,
main > *:last-child {
    background-color: #ffffff !important;
    border-bottom: none !important;
}

@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 500px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   HAKKIMIZDA: SADE VE KUTUSUZ ANİMASYONLU İSTATİSTİKLER (GÖLGESİZ & NEONSUZ)
   ========================================================================== */
.about-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}
.about-story-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-story-col .section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #036aff;
}
.about-story-col .section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.22;
    margin: 0;
}
.about-story-p {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 6px;
}
.about-story-p p {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

/* Sağ Kolon: Birleşik 4 Kare Çerçeve Tasarımı (Cross-Grid) */
.about-clean-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}
.clean-stat-item {
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    transition: background-color 0.25s ease;
}
.clean-stat-item:hover {
    background-color: #f8fafc;
}

/* 4 Birleşik Kareyi Ayıran İç Çizgiler */
.clean-stat-item:nth-child(1) {
    border-right: 1.5px solid #e2e8f0;
    border-bottom: 1.5px solid #e2e8f0;
}
.clean-stat-item:nth-child(2) {
    border-bottom: 1.5px solid #e2e8f0;
}
.clean-stat-item:nth-child(3) {
    border-right: 1.5px solid #e2e8f0;
}

.clean-stat-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #036aff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0;
}
.clean-stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media (max-width: 580px) {
    .about-clean-stats {
        grid-template-columns: 1fr;
    }
    .clean-stat-item {
        padding: 24px 20px;
    }
    .clean-stat-item:nth-child(1),
    .clean-stat-item:nth-child(2),
    .clean-stat-item:nth-child(3) {
        border-right: none;
        border-bottom: 1.5px solid #e2e8f0;
    }
    .clean-stat-num {
        font-size: 2.2rem;
    }
}



/* ==========================================================================
   HİZMET VE YASAL POLİTİKALAR (WATERDROP REFERANS BİREBİR TASARIM)
   ========================================================================== */
.policy-main-section {
    padding: 60px 0 120px;
    background: #ffffff;
}
.policy-container-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Sabit Menü Kartı (Referans Görsel: media_1788815756302.png) */
.policy-sidebar {
    position: sticky;
    top: 110px;
}
.policy-sidebar-inner {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.policy-nav-list {
    display: flex;
    flex-direction: column;
}
.policy-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    border-right: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}
.policy-nav-link:hover {
    color: #036aff;
}
/* Aktif sekme: Mavi yazı ve sağ kenarda 3px mavi dikey çizgi (Referansın birebir aynısı) */
.policy-nav-link.active {
    color: #036aff;
    font-weight: 600;
    border-right: 3px solid #036aff;
}

/* Sağ İçerik Alanı: Kurumsal & Temiz Başlıklar */
.policy-content-area {
    min-width: 0;
}
.policy-block {
    scroll-margin-top: 110px;
}
.policy-block-header {
    margin-bottom: 24px;
}
.policy-block-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.5px;
}
.policy-body {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.8;
    color: #334155;
}
.policy-body p {
    margin-bottom: 18px;
}
.policy-body h3 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 12px;
}
.policy-body ul {
    margin: 0 0 20px 24px;
    padding: 0;
}
.policy-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.policy-body a {
    color: #036aff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.policy-body a:hover {
    color: #004ecc;
}
.policy-divider {
    border: none;
    border-top: 1px solid #eef2f6;
    margin: 55px 0;
}

@media (max-width: 900px) {
    .policy-container-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .policy-sidebar {
        position: static;
    }
    .policy-block-header h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   FLOATING DIRECT PHONE CALL WIDGET (SAĞ ALT KÖŞE)
   ========================================================================== */
.vuslat-phone-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.vuslat-phone-toggle {
    width: 60px;
    height: 60px;
    background-color: #009fe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 159, 227, 0.4);
    animation: phone-pulse 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.vuslat-phone-toggle:hover {
    transform: scale(1.1);
    background-color: #0082ba;
    box-shadow: 0 6px 18px rgba(0, 159, 227, 0.55);
}
.vuslat-phone-toggle svg {
    display: block;
}
@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 159, 227, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0, 159, 227, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 159, 227, 0);
    }
}

@media (max-width: 576px) {
    .vuslat-phone-widget {
        bottom: 18px;
        right: 16px;
    }
    .vuslat-phone-toggle {
        width: 54px;
        height: 54px;
    }
    .vuslat-phone-toggle svg {
        width: 24px;
        height: 24px;
    }
}


/* ====================================================
   LUXURY FROSTED GLASSMORPISM BADGES
   ==================================================== */
.archive-card-badge,
.wd-card-badge,
.product-badge,
.product-badge-large {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 13px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 0.70rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #0369a1 !important;
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    line-height: 1 !important;
}

.archive-card-badge::before,
.wd-card-badge::before,
.product-badge::before,
.product-badge-large::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #009fe3 !important;
    box-shadow: 0 0 6px rgba(0, 159, 227, 0.6) !important;
    flex-shrink: 0 !important;
}

/* Also upgrade front-page .wd-product-card to match the modern styling */
.wd-product-card {
    border-radius: 20px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.wd-product-card:hover {
    transform: translateY(-6px) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 18px 36px -8px rgba(0, 159, 227, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}
.wd-product-img-wrap {
    background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f8fafc 85%, #f1f5f9 100%) !important;
    border-bottom: 1px solid #f1f5f9 !important;
}


/* ====================================================
   WATERDROP CORPORATE PRODUCT CARD DESIGN (TRANSPARENT / NO BOX SHADOW)
   ==================================================== */
.archive-product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    transition: none !important;
}

.archive-product-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Image Stage: Clean Neutral Grey Backdrop with Rounded Corners */
.archive-card-top-stage {
    position: relative;
    width: 100%;
    background: #f7f7f8;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}

.archive-card-img-wrap {
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    text-decoration: none;
}

.archive-card-img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.archive-product-card:hover .archive-card-img {
    transform: scale(1.03);
}

/* Stacked Pill Badges on Top-Left of Image Stage */
.wd-badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
    pointer-events: none;
}

.wd-badge-orange {
    background: #ff8e3c;
    color: #ffffff;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 9999px;
    line-height: 1.3;
    letter-spacing: 0.2px;
    display: inline-block;
    width: fit-content;
}

.wd-badge-blue {
    background: #0066cc;
    color: #ffffff;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    line-height: 1.3;
    letter-spacing: 0.2px;
    display: inline-block;
    width: fit-content;
}

/* Card Body Content (No container, seamless on page) */
.archive-card-body {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

/* Green Stars & Rating Row */
.wd-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    line-height: 1;
}

.wd-star-box {
    color: #00a854;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.wd-review-count {
    color: #555555;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading, sans-serif);
}

/* Clean Corporate Title */
.archive-card-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 4px 0 10px 0 !important;
    color: #111111 !important;
    min-height: 42px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.archive-card-title a {
    color: #111111 !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.archive-card-title a:hover {
    color: #0066cc !important;
}

/* Price & Warranty/Servis Row */
.wd-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.wd-price-val {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

.wd-price-quote {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.wd-code-badge {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    color: #4b5563;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Feature Pill & Subtitle */
.wd-feature-block {
    margin-bottom: 16px;
}

.wd-feature-pill {
    display: inline-block;
    background: #f0f7ff;
    color: #0066cc;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    font-family: var(--font-heading, sans-serif);
    margin-bottom: 6px;
}

.wd-feature-sub {
    font-size: 12px;
    color: #6b7280;
    font-family: var(--font-heading, sans-serif);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Waterdrop Buttons: Clean Outline Blue & Solid WhatsApp Green */
.archive-card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: auto !important;
}

.wd-btn-cart {
    background: #ffffff !important;
    border: 1.5px solid #0066cc !important;
    color: #0066cc !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    padding: 9px 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    font-family: var(--font-heading, sans-serif) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wd-btn-cart:hover {
    background: #f0f7ff !important;
    color: #0052a3 !important;
    border-color: #0052a3 !important;
}

.wd-btn-learn {
    background: #25D366 !important;
    border: 1.5px solid #25D366 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    padding: 9px 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    font-family: var(--font-heading, sans-serif) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2) !important;
}

.wd-btn-learn:hover {
    background: #20ba5a !important;
    border-color: #20ba5a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35) !important;
}

.wd-btn-learn svg {
    flex-shrink: 0;
}


/* ====================================================
   DYNAMIC MEGA MENU (CATEGORIES LEFT, PRODUCTS RIGHT)
   ==================================================== */
.mega-full-inner {
    display: flex !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    min-height: 420px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 0 16px 16px !important;
    overflow: hidden !important;
}

/* Left Sidebar */
.mega-sidebar {
    width: 270px !important;
    background: #f8fafc !important;
    border-right: 1px solid #eef2f6 !important;
    padding: 24px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
}

.mega-sidebar-heading {
    padding: 0 24px 12px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 8px;
}

.mega-tab-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    padding: 13px 24px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 0.90rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

.mega-tab-btn:hover {
    color: #009fe3 !important;
    background: #f1f5f9 !important;
}

.mega-tab-btn.active {
    color: #009fe3 !important;
    background: #ffffff !important;
    font-weight: 700 !important;
}

.mega-tab-btn.active::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: #009fe3 !important;
    border-radius: 0 4px 4px 0 !important;
}

.m-cat-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 8px;
}

.m-cat-badge {
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.mega-tab-btn.active .m-cat-badge {
    background: #e0f2fe;
    color: #0284c7;
}

.mega-sidebar-footer {
    margin-top: auto;
    padding: 16px 24px 0 24px;
    border-top: 1px solid #eef2f6;
}

.mega-all-catalog-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: #009fe3;
    text-decoration: none;
    transition: color 0.2s;
}

.mega-all-catalog-link:hover {
    color: #0284c7;
}

/* Right Content Area */
.mega-content-area {
    flex: 1 !important;
    padding: 30px 36px !important;
    background: #ffffff !important;
    min-width: 0 !important;
}

.mega-panel {
    display: none !important;
}

.mega-panel.active {
    display: block !important;
    animation: megaFadeIn 0.25s ease-out;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.mega-cat-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.mega-cat-summary {
    font-size: 0.80rem;
    color: #64748b;
}

.mega-cat-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #009fe3;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    background: #f0f9ff;
    transition: all 0.2s ease;
}

.mega-cat-explore-link:hover {
    background: #009fe3;
    color: #ffffff;
}

/* Products Grid in Mega Menu */
.mega-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

@media (max-width: 1100px) {
    .mega-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.mega-p-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mega-p-card:hover {
    border-color: #009fe3;
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.08);
    transform: translateY(-3px);
}

.mega-p-thumb-box {
    height: 140px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
}

.mega-p-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mega-p-card:hover .mega-p-img {
    transform: scale(1.05);
}

.mega-p-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0066cc;
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 9999px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.mega-p-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mega-p-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.84rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.3em;
}

.mega-p-card:hover .mega-p-name {
    color: #009fe3;
}

.mega-p-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.mega-p-price {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.90rem;
    font-weight: 700;
    color: #0f172a;
}

.mega-p-quote {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0284c7;
}

.mega-p-arrow {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: transform 0.2s, color 0.2s;
}

.mega-p-card:hover .mega-p-arrow {
    color: #009fe3;
    transform: translateX(3px);
}

/* Empty State */
.mega-empty-state {
    grid-column: 1 / -1;
    padding: 40px 20px;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
}

.mega-empty-state .empty-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.mega-empty-state h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.mega-empty-state p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 16px 0;
}

.mega-empty-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: #009fe3;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.mega-empty-btn:hover {
    background: #0284c7;
}


/* Category Pill Badge on top-left of image stage (Frosted Glass / Buzlu Cam) */
.wd-cat-pill-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.85) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    color: #0f172a !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 10.5px !important;
    font-weight: 600 !important;
    padding: 4px 13px !important;
    border-radius: 9999px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.6px !important;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    transition: all 0.25s ease !important;
}

.archive-product-card:hover .wd-cat-pill-badge {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.09) !important;
}


/* Homepage Featured Products Grid: Clean Waterdrop Layout */
.wd-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px 24px !important;
    align-items: start !important;
}

.wd-products-grid .archive-product-card {
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

@media (max-width: 1200px) {
    .wd-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 860px) {
    .wd-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px !important;
    }
}

@media (max-width: 540px) {
    .wd-products-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ====================================================
   WATERDROP FOOTER TRUST & ASSURANCE BAR
   ==================================================== */
.wd-footer-trust-bar {
    background: #ffffff !important;
    padding: 44px 0 32px 0 !important;
    border-top: 1px solid #f1f5f9 !important;
    position: relative !important;
    z-index: 10 !important;
}

.wd-trust-disclaimer {
    margin-bottom: 26px !important;
}

.wd-trust-disclaimer .claim-line {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    margin: 0 0 4px 0 !important;
    letter-spacing: 0.2px !important;
}

.wd-trust-disclaimer .source-line {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

.wd-trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    align-items: start !important;
}

.wd-trust-item {
    padding: 0 28px !important;
    border-right: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.wd-trust-item:first-child {
    padding-left: 0 !important;
}

.wd-trust-item:last-child {
    border-right: none !important;
    padding-right: 0 !important;
}

.wd-trust-icon-wrap {
    margin-bottom: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.wd-trust-icon-wrap svg {
    display: block !important;
    width: 38px !important;
    height: 38px !important;
}

.wd-trust-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.3 !important;
}

.wd-trust-sub {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

@media (max-width: 960px) {
    .wd-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px 20px !important;
    }
    .wd-trust-item {
        padding: 0 16px !important;
        border-right: none !important;
    }
    .wd-trust-item:nth-child(odd) {
        border-right: 1px solid #e2e8f0 !important;
    }
}

@media (max-width: 580px) {
    .wd-trust-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .wd-trust-item {
        padding: 0 !important;
        border-right: none !important;
    }
}


/* Two-tone Waterdrop Hero Trust Bar Styling */
.trust-pill-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 8px 12px !important;
}

.trust-icon-box {
    width: 42px !important;
    height: 42px !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.trust-icon-box svg {
    display: block !important;
    width: 38px !important;
    height: 38px !important;
}

.trust-content strong {
    display: block !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 3px !important;
    line-height: 1.3 !important;
}

.trust-content span {
    display: block !important;
    font-size: 12.5px !important;
    color: #64748b !important;
    line-height: 1.35 !important;
}


/* ====================================================
   WATERDROP SIGNATURE ANIMATED LIQUID CTA SECTION
   ==================================================== */
.wd-waterdrop-cta-section {
    position: relative;
    background: #ffffff !important;
    padding: 70px 0 140px 0 !important;
    overflow: hidden !important;
    text-align: center !important;
    border-top: none !important;
}

/* Floating 3D Water Droplets */
.cta-droplet {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0;
    will-change: transform, opacity;
}

.cta-droplet .drop-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 20px 35px rgba(0, 102, 204, 0.10)) !important;
}

/* Left Top Droplet */
.cta-drop-left-top {
    left: -40px !important;
    top: 30px !important;
    width: 250px !important;
    transform: translate(-140px, -60px) scale(0.65) rotate(-15deg);
    transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.1s ease;
}

/* Left Bottom Droplet */
.cta-drop-left-bottom {
    left: 80px !important;
    bottom: 30px !important;
    width: 130px !important;
    transform: translate(-90px, 80px) scale(0.5) rotate(10deg);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 1.2s ease 0.15s;
}

/* Right Droplet */
.cta-drop-right {
    right: -80px !important;
    top: 45px !important;
    width: 330px !important;
    transform: translate(160px, 40px) scale(0.65) rotate(15deg);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.2s ease 0.1s;
}

/* Triggered State: Drops move into their exact position */
.wd-waterdrop-cta-section.in-view .cta-drop-left-top {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotate(0deg) !important;
}

.wd-waterdrop-cta-section.in-view .cta-drop-left-bottom {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotate(0deg) !important;
}

.wd-waterdrop-cta-section.in-view .cta-drop-right {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotate(0deg) !important;
}

/* Once animated into place, add continuous ambient float animation */
.wd-waterdrop-cta-section.animated .cta-drop-left-top {
    animation: ambientFloatLeftTop 6s ease-in-out infinite alternate !important;
}

.wd-waterdrop-cta-section.animated .cta-drop-left-bottom {
    animation: ambientFloatLeftBottom 5.2s ease-in-out infinite alternate !important;
}

.wd-waterdrop-cta-section.animated .cta-drop-right {
    animation: ambientFloatRight 7s ease-in-out infinite alternate !important;
}

@keyframes ambientFloatLeftTop {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(14px, -18px) rotate(4deg); }
}

@keyframes ambientFloatLeftBottom {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-10px, 14px) rotate(-5deg); }
}

@keyframes ambientFloatRight {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-16px, 20px) rotate(-3deg); }
}

/* Center Content */
.cta-content-wrapper {
    position: relative !important;
    z-index: 2 !important;
    max-width: 840px !important;
    margin: 0 auto !important;
}

.wd-liquid-cta-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 52px !important;
    line-height: 1.15 !important;
    margin: 0 0 22px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
}

.wd-liquid-cta-title .title-accent-blue {
    color: #0066cc !important;
    font-weight: 500 !important;
    letter-spacing: -0.5px !important;
}

.wd-liquid-cta-title .title-dark-text {
    color: #111827 !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.wd-liquid-cta-desc {
    font-size: 16px !important;
    color: #4b5563 !important;
    line-height: 1.65 !important;
    max-width: 680px !important;
    margin: 0 auto 36px auto !important;
}

/* Dual Button Group (Exact Waterdrop Style) */
.wd-liquid-cta-buttons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.btn-liquid-cta-primary {
    background: #0066cc !important;
    color: #ffffff !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 15px 36px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.btn-liquid-cta-primary:hover {
    background: #004d99 !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-liquid-cta-secondary {
    background: #25D366 !important;
    color: #ffffff !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 15px 32px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    transition: background-color 0.2s ease !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.btn-liquid-cta-secondary:hover {
    background: #1eb858 !important;
    box-shadow: none !important;
    transform: none !important;
}

@media (max-width: 900px) {
    .wd-waterdrop-cta-section {
        padding: 90px 0 100px 0 !important;
    }
    .wd-liquid-cta-title {
        font-size: 38px !important;
    }
    .cta-drop-left-top {
        width: 170px !important;
        left: -30px !important;
    }
    .cta-drop-left-bottom {
        display: none !important;
    }
    .cta-drop-right {
        width: 220px !important;
        right: -60px !important;
    }
}

@media (max-width: 560px) {
    .wd-waterdrop-cta-section {
        padding: 70px 0 80px 0 !important;
    }
    .wd-liquid-cta-title {
        font-size: 30px !important;
    }
    .wd-liquid-cta-desc {
        font-size: 14.5px !important;
        margin-bottom: 28px !important;
    }
    .wd-liquid-cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    .btn-liquid-cta-primary,
    .btn-liquid-cta-secondary {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .cta-drop-left-top {
        width: 120px !important;
        left: -40px !important;
        top: 10px !important;
    }
    .cta-drop-right {
        width: 140px !important;
        right: -50px !important;
        top: 30px !important;
    }
}

/* ====================================================
   FAQ & SİZİ ARAYALIM SPLIT SECTION
   ==================================================== */
.wd-faq-section {
    position: relative !important;
    padding: 110px 0 50px 0 !important;
    background-color: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
    border-bottom: none !important;
    overflow: hidden !important;
}

/* Floating 3D Water Droplets for FAQ (Trend A Continuity) */
.faq-drop-left {
    left: -35px !important;
    bottom: 30px !important;
    width: 140px !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 1 !important;
    animation: ambientFloatLeftBottom 5.8s ease-in-out infinite alternate !important;
}

.faq-drop-right {
    right: -45px !important;
    top: 40px !important;
    width: 220px !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 1 !important;
    animation: ambientFloatRight 7.2s ease-in-out infinite alternate !important;
}

.wd-faq-split-wrapper {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 1.16fr 0.94fr !important;
    gap: 52px !important;
    align-items: start !important;
}

/* Trend A Badge */
.trend-a-badge {
    display: inline-block !important;
    background: #eff6ff !important;
    color: #0066cc !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    margin-bottom: 12px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
}

/* Left: FAQ Header (Trend A Dual-Tone Typography) */
.faq-trend-a-header {
    margin-bottom: 32px !important;
    text-align: left !important;
}

.faq-trend-a-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 38px !important;
    line-height: 1.18 !important;
    margin: 0 0 14px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    letter-spacing: -0.5px !important;
}

.faq-trend-a-title .title-accent-blue {
    color: #0066cc !important;
    font-weight: 500 !important;
}

.faq-trend-a-title .title-dark-text {
    color: #111827 !important;
    font-weight: 700 !important;
}

.faq-trend-a-desc {
    font-family: var(--font-body, inherit) !important;
    font-size: 15.5px !important;
    color: #4b5563 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    max-width: 580px !important;
}

/* FAQ Accordion List (Trend A Minimalist Cards) */
.wd-faq-accordion-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.faq-item {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.faq-item:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.05) !important;
}

.faq-item.active {
    border-color: #0066cc !important;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.08) !important;
}

.faq-question-btn {
    width: 100% !important;
    padding: 20px 24px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    text-align: left !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.faq-question-btn:hover,
.faq-item.active .faq-question-btn {
    color: #0066cc !important;
}

.faq-icon-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #eff6ff !important;
    color: #0066cc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: background-color 0.25s ease, color 0.25s ease !important;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.faq-item.active .faq-icon-circle {
    background: #0066cc !important;
    color: #ffffff !important;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg) !important;
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease !important;
    padding: 0 24px !important;
}

.faq-item.active .faq-answer-panel {
    padding: 0 24px 22px 24px !important;
}

.faq-answer-panel p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #4b5563 !important;
}

/* Right: Sizi Arayalım Card (Trend A) */
.callback-trend-a-card {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    padding: 38px 32px !important;
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.05) !important;
    position: sticky !important;
    top: 100px !important;
}

.callback-card-header-trend-a {
    margin-bottom: 22px !important;
}

.callback-trend-a-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.25 !important;
    display: flex !important;
    gap: 8px !important;
    letter-spacing: -0.5px !important;
}

.callback-trend-a-title .title-accent-blue {
    color: #0066cc !important;
    font-weight: 500 !important;
}

.callback-trend-a-title .title-dark-text {
    color: #111827 !important;
    font-weight: 700 !important;
}

.callback-trend-a-subtitle {
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: #4b5563 !important;
    margin: 0 !important;
}

.callback-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.callback-form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.callback-form-group label {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
}

.callback-form-group input,
.callback-form-group select {
    width: 100% !important;
    padding: 13px 16px !important;
    font-size: 14.5px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
    font-family: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

.callback-form-group input:focus,
.callback-form-group select:focus {
    background: #ffffff !important;
    border-color: #0066cc !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1) !important;
}

/* Trend A Flat Submit Button */
.btn-callback-flat {
    width: 100% !important;
    background: #0066cc !important;
    color: #ffffff !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 15px 24px !important;
    border-radius: 8px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    margin-top: 6px !important;
}

.btn-callback-flat:hover {
    background: #004d99 !important;
    box-shadow: none !important;
    transform: none !important;
}

.callback-success-box {
    display: none !important;
    align-items: flex-start !important;
    gap: 12px !important;
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    color: #166534 !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin-top: 14px !important;
}

.callback-success-box.is-visible {
    display: flex !important;
}

.callback-success-box strong {
    display: block !important;
    color: #14532d !important;
    margin-bottom: 2px !important;
}

@media (max-width: 960px) {
    .wd-faq-section {
        padding: 70px 0 !important;
    }
    .wd-faq-split-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .callback-trend-a-card {
        position: static !important;
        padding: 28px 22px !important;
    }
    .faq-trend-a-title {
        font-size: 28px !important;
    }
    .faq-drop-left,
    .faq-drop-right {
        display: none !important;
    }
}

/* ====================================================
   WATERDROP SIGNATURE BLOG CENTER
   ==================================================== */
.wd-blog-page {
    background: #ffffff !important;
    padding-bottom: 90px !important;
}

/* 1. Water Ripple Search Hero Banner */
.wd-blog-hero-banner {
    position: relative !important;
    background: #e9f5fc url('../images/blog-hero-3151351.webp') no-repeat center center / cover !important;
    padding: 85px 20px 95px 20px !important;
    text-align: center !important;
    border-bottom: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
}

.wd-blog-hero-banner::before {
    display: none !important;
}

.wd-blog-hero-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 0 28px 0 !important;
    letter-spacing: -0.5px !important;
}

.wd-blog-search-box {
    max-width: 640px !important;
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #dbeafe !important;
    border-radius: 9999px !important;
    padding: 4px 4px 4px 22px !important;
    box-shadow: 0 8px 30px rgba(0, 70, 150, 0.08) !important;
    transition: all 0.2s ease !important;
}

.wd-blog-search-box:focus-within {
    border-color: #0066ff !important;
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.12) !important;
}

.wd-blog-search-box .search-icon {
    color: #1e293b !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
}

.wd-blog-search-box input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    flex: 1 !important;
    font-size: 15px !important;
    color: #0f172a !important;
    padding: 12px 6px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
}

.wd-blog-search-box input::placeholder {
    color: #64748b !important;
    font-weight: 400 !important;
}

.wd-blog-search-box .search-btn {
    background: #0066ff !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 13px 36px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    box-shadow: none !important;
}

.wd-blog-search-box .search-btn:hover {
    background: #0052cc !important;
}

/* 2. Blog Center Bar & Category Links (Waterdrop Pure Text Style) */
.wd-blog-nav-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 28px 0 16px 0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 40px !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.wd-blog-center-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
    letter-spacing: -0.3px !important;
}

.wd-blog-category-nav {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
    flex-wrap: wrap !important;
}

.cat-nav-link {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    text-decoration: none !important;
    padding: 6px 0 !important;
    position: relative !important;
    transition: color 0.2s ease !important;
}

.cat-nav-link:hover,
.cat-nav-link.active {
    color: #0066ff !important;
    font-weight: 600 !important;
}

.cat-nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -17px !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #0066ff !important;
}

/* 3. Featured Stories Section */
.wd-blog-featured-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr !important;
    gap: 32px !important;
    margin-bottom: 60px !important;
}

.featured-main-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease !important;
}

.featured-main-card:hover {
    border-color: #0066cc !important;
}

.featured-main-card .thumb-wrap {
    height: 320px !important;
    overflow: hidden !important;
    background: #f1f5f9 !important;
}

.featured-main-card .thumb-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.featured-main-card:hover .thumb-wrap img {
    transform: scale(1.03) !important;
}

.featured-main-card .body {
    padding: 28px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.featured-side-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.featured-side-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 18px !important;
    display: flex !important;
    gap: 18px !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease !important;
    align-items: center !important;
}

.featured-side-card:hover {
    border-color: #0066cc !important;
}

.featured-side-card .thumb-wrap {
    width: 140px !important;
    height: 105px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #f1f5f9 !important;
}

.featured-side-card .thumb-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.featured-side-card .body {
    flex: 1 !important;
    min-width: 0 !important;
}

.post-meta-tag {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
    display: inline-block !important;
}

.post-meta-date {
    font-size: 12.5px !important;
    color: #94a3b8 !important;
    margin-left: 6px !important;
}

.featured-main-card .title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    margin: 8px 0 12px 0 !important;
}

.featured-side-card .title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    margin: 4px 0 0 0 !important;
}

/* 4. Newsletter Strip (Exclusive Benefits For You) */
.wd-blog-newsletter-banner {
    background: #f0f7fd !important;
    border: 1px solid #e0effa !important;
    border-radius: 16px !important;
    padding: 36px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
    margin-bottom: 60px !important;
    flex-wrap: wrap !important;
}

.newsletter-left {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 580px !important;
}

.newsletter-icon-wrap {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0066cc !important;
    flex-shrink: 0 !important;
    border: 1px solid #e2e8f0 !important;
}

.newsletter-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 6px 0 !important;
}

.newsletter-desc {
    font-size: 14px !important;
    color: #475569 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.newsletter-form-inline {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    min-width: 280px !important;
    max-width: 440px !important;
}

.newsletter-form-inline input {
    flex: 1 !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    outline: none !important;
    box-shadow: none !important;
}

.newsletter-form-inline button {
    background: #0066cc !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 13px 24px !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    transition: background-color 0.2s ease !important;
}

.newsletter-form-inline button:hover {
    background: #004d99 !important;
}

/* 5. All Blog (3-Column Grid) */
.wd-all-blog-section {
    margin-top: 20px !important;
}

.wd-all-blog-heading {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 32px 0 !important;
}

.wd-blog-grid-3col {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
}

.wd-blog-card-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease, transform 0.2s ease !important;
}

.wd-blog-card-item:hover {
    border-color: #0066cc !important;
    transform: translateY(-3px) !important;
}

.wd-blog-card-item .card-thumb {
    height: 220px !important;
    background: #f1f5f9 !important;
    overflow: hidden !important;
    position: relative !important;
}

.wd-blog-card-item .card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.35s ease !important;
}

.wd-blog-card-item:hover .card-thumb img {
    transform: scale(1.04) !important;
}

.wd-blog-card-item .card-body {
    padding: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.wd-blog-card-item .card-meta {
    font-size: 12.5px !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
}

.wd-blog-card-item .card-meta .cat-name {
    color: #0066cc !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 11.5px !important;
}

.wd-blog-card-item .card-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    margin: 0 0 10px 0 !important;
    flex: 1 !important;
}

.wd-blog-card-item .card-excerpt {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    margin: 0 0 16px 0 !important;
}

.wd-blog-card-item .card-read-more {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0066cc !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: auto !important;
}

/* Pagination */
.wd-blog-pagination {
    margin-top: 50px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}

.wd-blog-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #334155 !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.wd-blog-pagination .page-numbers:hover,
.wd-blog-pagination .page-numbers.current {
    background: #0066cc !important;
    color: #ffffff !important;
    border-color: #0066cc !important;
}

/* Single Post Layout */
.wd-single-post-page {
    background: #ffffff !important;
    padding: 30px 0 90px 0 !important;
}

.wd-single-post-header {
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    text-align: left !important;
}

.wd-single-post-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 36px !important;
    font-weight: 600 !important; /* Semi-bold matching Waterdrop reference */
    color: #0f172a !important;
    line-height: 1.3 !important;
    margin: 6px 0 14px 0 !important;
    letter-spacing: -0.5px !important;
}

.wd-single-post-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    font-size: 13.5px !important;
    color: #64748b !important;
}

/* Author EEAT Profile Box (Waterdrop Style) */
.wd-single-author-box {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 16px 0 24px 0 !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.wd-single-author-avatar {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #e0f2fe !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border: 2px solid #bae6fd !important;
}

.wd-single-author-info {
    flex: 1 !important;
    min-width: 0 !important;
}

.wd-single-author-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
}

.wd-single-author-role {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #0066ff !important;
    margin-bottom: 6px !important;
}

.wd-single-author-desc {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.wd-single-post-hero-img {
    max-width: 100% !important;
    margin: 0 0 36px 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #f1f5f9 !important;
}

.wd-single-post-hero-img img {
    width: 100% !important;
    height: auto !important;
    max-height: 480px !important;
    object-fit: cover !important;
    display: block !important;
}

.wd-single-post-content {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 16.5px !important;
    line-height: 1.8 !important;
    color: #334155 !important;
}

.wd-single-post-content h2,
.wd-single-post-content h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    color: #0f172a !important;
    margin-top: 36px !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
}

.wd-single-post-content p {
    margin-bottom: 22px !important;
}

.wd-single-post-content ul,
.wd-single-post-content ol {
    margin-bottom: 22px !important;
    padding-left: 24px !important;
}

.wd-single-post-content li {
    margin-bottom: 8px !important;
}

/* Post Footer Tags & Share Section (Waterdrop Style media_1788870882987.png) */
.wd-post-footer-meta {
    margin-top: 40px !important;
    padding-top: 24px !important;
}

.wd-post-tags-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    flex-wrap: wrap !important;
}

.tag-icon-wrap {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0066ff !important;
}

.wd-tag-pills {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.tag-pill {
    background: #f0f7ff !important;
    color: #0066ff !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.tag-pill:hover {
    background: #0066ff !important;
    color: #ffffff !important;
}

.wd-share-divider {
    width: 100px !important;
    height: 1px !important;
    background: #e2e8f0 !important;
    margin: 20px 0 24px 0 !important;
}

.wd-share-row {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.share-label {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.share-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.share-btn:hover {
    opacity: 0.85 !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 960px) {
    .wd-blog-featured-grid {
        grid-template-columns: 1fr !important;
    }
    .wd-blog-grid-3col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .wd-single-post-title {
        font-size: 27px !important;
    }
}

@media (max-width: 640px) {
    .wd-blog-grid-3col {
        grid-template-columns: 1fr !important;
    }
    .wd-blog-hero-title {
        font-size: 28px !important;
    }
    .wd-blog-nav-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    .wd-blog-category-nav {
        gap: 18px !important;
    }
    .wd-blog-newsletter-banner {
        padding: 24px 20px !important;
    }
    .newsletter-form-inline {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ====================================================
   SINGLE POST 2-COLUMN LAYOUT & WATERDROP SIDEBAR
   ==================================================== */
.wd-single-layout-split {
    display: grid !important;
    grid-template-columns: 1fr 340px !important;
    gap: 48px !important;
    align-items: start !important;
}

.wd-single-content-col {
    min-width: 0 !important;
}

.wd-single-sidebar-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
    position: sticky !important;
    top: 90px !important;
}

.sidebar-widget-card {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    padding: 26px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

/* 1. Newsletter Subscription Card */
.newsletter-widget-card {
    background: #ffffff !important;
}

.sidebar-widget-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    margin: 0 0 16px 0 !important;
}

.sidebar-newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.sidebar-newsletter-form input {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: none !important;
    outline: none !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
}

.sidebar-newsletter-form input:focus {
    border-color: #0066ff !important;
}

/* 2. Device Consultation Card (Waterdrop Style with illustration under button) */
.consultation-widget-card {
    background: #ffffff !important;
    text-align: center !important;
}

.consultation-card-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    margin: 0 0 10px 0 !important;
}

.consultation-card-desc {
    font-size: 13.5px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 0 18px 0 !important;
}

.consultation-img-wrap {
    margin-top: 22px !important;
    padding: 0 4px !important;
}

.consultation-img-wrap img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Vibrant Blue Pill Button (Zero Shadow, Zero Neon) */
.btn-sidebar-blue-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: #0066ff !important;
    color: #ffffff !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    padding: 13px 22px !important;
    border-radius: 9999px !important;
    text-align: center !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background-color 0.2s ease !important;
}

.btn-sidebar-blue-pill svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

.btn-sidebar-blue-pill:hover {
    background: #0052cc !important;
    box-shadow: none !important;
    transform: none !important;
}

/* 3. Section Headers (Categories & Recent Posts) */
.sidebar-sec-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-bottom: 16px !important;
}

.sidebar-sec-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

/* Open Category List (Waterdrop Style media_1788870863699.png) */
.sidebar-categories-section {
    margin-top: 10px !important;
}

.sidebar-open-cat-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.sidebar-open-cat-item {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 14px 0 !important;
}

.sidebar-open-cat-item:last-child {
    border-bottom: none !important;
}

.open-cat-link {
    text-decoration: none !important;
    display: block !important;
}

.open-cat-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0066ff !important;
    margin-bottom: 4px !important;
    transition: color 0.2s ease !important;
}

.open-cat-link:hover .open-cat-title {
    color: #0044cc !important;
}

.open-cat-desc {
    font-size: 13px !important;
    color: #334155 !important;
    line-height: 1.45 !important;
}

/* Recent Posts List */
.sidebar-recent-link {
    text-decoration: none !important;
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    line-height: 1.4 !important;
    display: block !important;
    transition: color 0.2s ease !important;
}

.sidebar-recent-link:hover {
    color: #0066ff !important;
}

.author-img-circle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 960px) {
    .wd-single-layout-split {
        grid-template-columns: 1fr !important;
    }
    .wd-single-sidebar-col {
        position: static !important;
        margin-top: 40px !important;
    }
}

/* ====================================================
   SEARCH RESULTS PAGE (WATERDROP ARCHIVE STYLE)
   ==================================================== */
.search-page-section {
    padding: 44px 0 70px 0;
    background: #ffffff;
    min-height: 60vh;
}

.search-hero-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.search-hero-info {
    max-width: 600px;
}

.search-hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #009fe3;
    margin-bottom: 6px;
}

.search-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.search-hero-count {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.search-hero-count strong {
    color: #009fe3;
    font-weight: 700;
}

.search-hero-refine {
    flex-shrink: 0;
}

.search-hero-input-wrap {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 9999px;
    padding: 4px 6px 4px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    max-width: 440px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.search-hero-input-wrap:focus-within {
    border-color: #009fe3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.12);
}

.search-hero-icon {
    flex-shrink: 0;
    color: #94a3b8;
}

.search-hero-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.92rem;
    color: #0f172a;
    padding: 8px 12px;
    flex: 1;
    min-width: 200px;
    font-family: inherit;
}

.search-hero-btn {
    background: #009fe3;
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 20px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.search-hero-btn:hover {
    background: #0082ba;
    transform: translateY(-1px);
}

.search-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 991px) {
    .search-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .search-hero-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .search-hero-refine {
        width: 100%;
    }
    .search-hero-input-wrap {
        max-width: 100%;
    }
    .search-products-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

/* Rozet badge styling inside top stage (Frosted Cyan Tint) */
.wd-cat-pill-badge.rozet-pill {
    background: rgba(240, 249, 255, 0.9) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(186, 230, 253, 0.9) !important;
    color: #0284c7 !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}
.archive-product-card:hover .wd-cat-pill-badge.rozet-pill {
    background: rgba(240, 249, 255, 0.98) !important;
    border-color: #7dd3fc !important;
    color: #0077b6 !important;
}

/* Search Empty State */
.search-empty-card {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 20px;
    padding: 60px 24px;
    text-align: center;
    max-width: 640px;
    margin: 20px auto 40px auto;
}

.search-empty-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-empty-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.search-empty-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 24px auto;
}

.search-empty-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.86rem;
    color: #64748b;
}

.search-empty-tags .tag-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.84rem;
    transition: all 0.2s ease;
}

.search-empty-tags .tag-pill:hover {
    border-color: #009fe3;
    color: #009fe3;
    background: #f0f9ff;
}

.btn-search-catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #009fe3;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.2);
}

.btn-search-catalog:hover {
    background: #0082ba;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 159, 227, 0.3);
}

/* ====================================================
   WATERDROP "SHOP BY CATEGORY" (CLEAN WHITE BACKGROUND & PLAIN WATERDROP)
==================================================== */
.wd-shop-by-cat-section {
    position: relative;
    background: #ffffff !important;
    padding: 70px 0 80px;
    overflow: hidden;
}

.shop-by-cat-header {
    margin-bottom: 40px;
}

.shop-by-cat-title {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.shop-by-cat-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Round Arrow Buttons */
.cat-slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
    flex-shrink: 0;
    outline: none;
}

.cat-slider-nav-btn:hover {
    color: #009fe3;
    border-color: #009fe3;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 159, 227, 0.15);
}

.cat-slider-nav-btn:active {
    transform: scale(0.95);
}

/* Category Track */
.shop-by-cat-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 30px 10px 15px;
    width: 100%;
}

.shop-by-cat-track::-webkit-scrollbar {
    display: none;
}

/* Category Card */
.shop-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    width: 185px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.3s ease;
}

/* Droplet Stage holding both SVG droplet and product image */
.cat-droplet-stage {
    position: relative;
    width: 170px;
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* The White Waterdrop Silhouette (NO NEON, NO SHADOW, PURE CRISP DROPLET) */
.cat-drop-silhouette {
    position: absolute;
    top: 0;
    left: 5px;
    width: 160px;
    height: 195px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center bottom;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    filter: none !important;
    box-shadow: none !important;
    z-index: 1;
}

.cat-drop-silhouette path {
    fill: #ffffff;
    stroke: #e2e8f0;
    stroke-width: 1.5px;
}

/* Product Cutout Image */
.cat-stage-img {
    position: relative;
    z-index: 2;
    max-width: 135px;
    max-height: 155px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    filter: none !important;
}

/* Category Label */
.cat-stage-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.35;
    transition: color 0.25s ease, font-weight 0.25s ease;
    display: block;
}

/* --- HOVER & ACTIVE INTERACTIONS --- */
.shop-cat-card:hover .cat-drop-silhouette,
.shop-cat-card:focus-visible .cat-drop-silhouette,
.shop-cat-card.active .cat-drop-silhouette {
    opacity: 1;
    transform: scale(1);
}

.shop-cat-card:hover .cat-stage-img,
.shop-cat-card:focus-visible .cat-stage-img {
    transform: translateY(-6px);
    filter: none !important;
}

.shop-cat-card:hover .cat-stage-label,
.shop-cat-card:focus-visible .cat-stage-label {
    color: #009fe3;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-by-cat-track {
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }
    .shop-cat-card {
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .wd-shop-by-cat-section {
        padding: 50px 0 60px;
    }
    .shop-by-cat-title {
        font-size: 1.7rem;
    }
    .cat-slider-nav-btn {
        display: none;
    }
    .shop-cat-card {
        width: 155px;
    }
    .cat-droplet-stage {
        width: 145px;
        height: 170px;
    }
    .cat-drop-silhouette {
        width: 135px;
        height: 170px;
    }
    .cat-stage-img {
        max-width: 110px;
        max-height: 130px;
    }
    .cat-stage-label {
        font-size: 0.88rem;
    }
}
