/* ============================================
   Vorwerk-Style Premium Design
   ============================================ */

:root {
    --primary-color: #1A1A1A;
    --secondary-color: #27AE60;
    --accent-color: #27AE60;
    --light-color: #F5F5F5;
    --danger-color: #E53935;
    --surface-color: #FFFFFF;
    --border-color: #E8E8E8;
    --shadow: 0 4px 24px rgba(0,0,0,0.09);
    --text-color: #1A1A1A;
    --text-muted: #737373;
    --nav-bg: #1C1C1C;
    --nav-bottom: #141414;
    --footer-bg: #2D2D2D;
    --card-bg: #F5F5F5;
}

/* ============================================
   Base
   ============================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    padding-top: 114px; /* 68px top + 46px nav */
    scroll-behavior: smooth;
    background: #FFFFFF;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Header — Vorwerk Two-Tier Dark
   ============================================ */
.vw-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--nav-bg);
}

/* Top row */
.vw-header-top {
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vw-top-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 68px;
    gap: 12px;
}

.vw-logo-link { justify-self: center; display: block; }

.site-logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(200px, 35vw);
    object-fit: contain;
}

.vw-top-left  { justify-self: start; }
.vw-top-right { justify-self: end; }

.vw-util-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.vw-util-link:hover { color: var(--secondary-color); }

/* Icon buttons in top bar */
.vw-icon-btn {
    color: rgba(255,255,255,0.8) !important;
    background: transparent;
    border: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.15s;
}
.vw-icon-btn:hover { color: white !important; }
.vw-icon-btn i { font-size: 1.1rem; }

/* Mobile hamburger */
.vw-hamburger {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    padding: 6px 10px;
    font-size: 1.3rem;
    line-height: 1;
    border-radius: 2px;
}

/* Bottom nav row */
.vw-header-nav {
    background: var(--nav-bottom);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vw-header-nav .navbar-nav {
    flex-direction: row;
    align-items: stretch;
    height: 46px;
    gap: 0;
    flex-wrap: nowrap;
}

.vw-header-nav .nav-link {
    color: rgba(255,255,255,0.72) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 16px !important;
    height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
    letter-spacing: 0.15px;
}

.vw-header-nav .nav-link:hover,
.vw-header-nav .nav-link.active {
    color: white !important;
    border-bottom-color: var(--secondary-color);
}

.vw-header-nav .dropdown-menu {
    background: #1a1a1a;
    border: none;
    border-top: 2px solid var(--secondary-color);
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    padding: 6px 0;
    margin-top: 0 !important;
}

.vw-header-nav .dropdown-item {
    color: rgba(255,255,255,0.72);
    font-size: 0.84rem;
    padding: 10px 20px;
    transition: background 0.1s, color 0.1s;
}
.vw-header-nav .dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--secondary-color);
}

/* Generic dropdown overrides */
.dropdown-menu {
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 6px 0;
}
.dropdown-item {
    padding: 10px 18px;
    font-size: 0.88rem;
    color: var(--text-color);
}
.dropdown-item:hover { background: #F5F5F5; color: var(--secondary-color); }

@media (max-width: 991px) {
    body { padding-top: 68px; }

    .vw-top-grid { grid-template-columns: auto 1fr auto; }
    .vw-logo-link { justify-self: start; }

    .vw-header-nav { background: #1a1a1a; }
    .vw-header-nav .navbar-collapse { padding: 6px 0 12px; }
    .vw-header-nav .navbar-nav { flex-direction: column; height: auto; }
    .vw-header-nav .nav-link {
        height: auto;
        padding: 10px 20px !important;
        border-bottom: none;
        border-left: 2px solid transparent;
    }
    .vw-header-nav .nav-link:hover,
    .vw-header-nav .nav-link.active {
        border-left-color: var(--secondary-color);
        border-bottom-color: transparent;
    }
    .vw-header-nav .dropdown-menu {
        background: #222;
        border: none;
        border-top: none;
        box-shadow: none;
        padding-left: 16px;
        position: static;
        display: block;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.25)),
                url('https://media.vorwerk.com/is/image/vorwerk/vorwerk-facelit:21x9?wid=2859&hei=1227&fmt=webp&qlt=90&resMode=sharp2&op_usm=0.9,1.0,8,0');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 14px;
}

.hero-heading {
    font-size: 4rem !important;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.22);
    margin-bottom: 20px !important;
}

.hero-subtitle {
    font-size: 1.05rem !important;
    opacity: 0.82;
    font-weight: 400;
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.72;
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: white !important;
    border: 2px solid var(--secondary-color);
    padding: 14px 32px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.btn-hero:hover { background: #219150; border-color: #219150; color: white !important; }

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white !important; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
}
.hero-scroll-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.hero-scroll-arrow {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(7px); opacity: 1; }
}

/* Wave bottom */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.floating { animation: float 3s ease-in-out infinite; }

@media (max-width: 768px) {
    .hero-section { height: 75vh !important; min-height: 480px !important; background-attachment: scroll; }
    .hero-heading  { font-size: 2.4rem !important; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .btn-hero, .btn-hero-outline { padding: 12px 22px !important; font-size: 0.82rem !important; }
}

/* ============================================
   TM7 Tabs
   ============================================ */
.vw-tab-nav {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.vw-tabs {
    display: flex;
    gap: 0;
}

.vw-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-align: left;
}
.vw-tab:last-child { border-right: none; }
.vw-tab:hover { background: #fafafa; }
.vw-tab.active {
    border-bottom-color: var(--secondary-color);
    background: white;
}

.vw-tab-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--border-color);
    line-height: 1;
    transition: color 0.15s;
    font-variant-numeric: tabular-nums;
}
.vw-tab.active .vw-tab-num { color: var(--secondary-color); }

.vw-tab-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.35;
    transition: color 0.15s;
}
.vw-tab.active .vw-tab-label { color: var(--primary-color); }

/* Panels */
.vw-tab-panel { display: none; }
.vw-tab-panel.active { display: block; }

.vw-tab-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.vw-tab-body {
    padding: 48px 56px;
    background: white;
}

.vw-tab-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}
.vw-tab-heading span { color: var(--secondary-color); }

.vw-tab-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.vw-tab-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.vw-tab-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}
.vw-tab-list li:last-child { border-bottom: none; }
.vw-tab-list li i {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .vw-tab { padding: 14px 12px; gap: 8px; }
    .vw-tab-num { font-size: 1.1rem; }
    .vw-tab-label { font-size: 0.72rem; }
    .vw-tab-img { height: 260px; }
    .vw-tab-body { padding: 28px 20px; }
    .vw-tab-heading { font-size: 1.4rem; }
}

/* ============================================
   Feature Strip
   ============================================ */
.feature-strip {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.feature-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 22px;
    border-right: 1px solid var(--border-color);
    transition: background 0.15s;
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: #FAFAFA; }

.feature-strip-icon {
    font-size: 1.6rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1;
}

.feature-strip-text h6 {
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.feature-strip-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-strip { flex-direction: column; }
    .feature-strip-item { border-right: none; border-bottom: 1px solid var(--border-color); padding: 16px 18px; }
    .feature-strip-item:last-child { border-bottom: none; }
}

/* ============================================
   Product Cards — Vorwerk Style
   ============================================ */
.product-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background: white;
    overflow: hidden;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 20px 52px rgba(0,0,0,0.11) !important;
    transform: translateY(-5px);
    border-color: transparent !important;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.28s ease;
    border-radius: 0 0 12px 12px;
}
.product-card:hover::after { transform: scaleX(1); }

.product-img {
    height: 220px;
    object-fit: contain;
    padding: 24px 32px 16px;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fafafa;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: block;
}

.product-card:hover .product-img { transform: scale(1.06); }

.card-body { padding: 18px 20px 20px !important; background: white; }

.card-title {
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-color);
    line-height: 1.4;
}

.product-title-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.15s;
}
.product-title-link:hover { color: var(--secondary-color); }

/* Category badge — Vorwerk style (small gray tag) */
.badge.bg-info {
    background: transparent !important;
    color: var(--text-muted) !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 0 6px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    display: block;
    text-align: left;
}

/* ============================================
   Prices
   ============================================ */
.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.84rem;
    display: block;
    margin-bottom: 2px;
}

.delivery-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    letter-spacing: 0.5px;
}

.product-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.product-status-badge .badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.3px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFF;
    padding: 11px 22px;
    font-size: 0.88rem;
}
.btn-primary:hover, .btn-primary:focus {
    background: #219150;
    border-color: #219150;
    color: #FFF;
}

.btn-success {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFF;
    padding: 11px 22px;
    font-size: 0.88rem;
}
.btn-success:hover, .btn-success:focus {
    background: #219150;
    border-color: #219150;
    color: #FFF;
}

.btn-warning {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF !important;
}
.btn-warning:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: #FFF !important; }

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-width: 1.5px;
    padding: 10px 20px;
    font-size: 0.88rem;
}
.btn-outline-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-secondary {
    color: var(--text-color);
    border-color: var(--border-color);
}
.btn-outline-secondary:hover { background: #F5F5F5; color: var(--text-color); }

.btn-light { background: #F5F5F5; border-color: var(--border-color); color: var(--primary-color); }
.btn-light:hover { background: #EBEBEB; }

.btn-lg { padding: 14px 32px !important; font-size: 0.9rem !important; font-weight: 700; border-radius: 4px; }

.add-to-cart {
    padding: 11px 18px;
    font-size: 0.82rem;
    width: 100%;
    margin-top: auto;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.add-to-cart:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Vorwerk-style text link CTA */
.vw-link-cta {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s, color 0.15s;
}
.vw-link-cta:hover { color: #219150; gap: 10px; }
.vw-link-cta::after { content: '›'; font-size: 1.1rem; }

/* ============================================
   Cart
   ============================================ */
.cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -440px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    z-index: 1200;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}
.cart-sidebar.open { right: 0; }

.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1150;
    display: none;
}
.cart-overlay.show { display: block; }

.cart-item { border-bottom: 1px solid var(--border-color); padding-bottom: 16px; margin-bottom: 16px; }
.cart-item-img { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; }
.quantity-btn { width: 36px; height: 36px; border-radius: 4px; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.cart-actions { display: none; margin-top: 16px; }
.cart-actions.show { display: flex; flex-direction: column; gap: 10px; }

/* ============================================
   Section Titles — Vorwerk Large
   ============================================ */
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
    padding-bottom: 0;
    color: var(--primary-color);
}
.section-title:after { display: none; }

.section-title-accent {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 4px;
}

.section-lead {
    font-size: 0.97rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.72;
    max-width: 640px;
}

/* ============================================
   Carousel Section
   ============================================ */
#tm7-carousel-section .display-6 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.carousel-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.carousel-item p { font-size: 0.97rem; color: #555; line-height: 1.75; }
.carousel-item li { font-size: 0.95rem; margin-bottom: 8px; color: #333; }
.carousel-item .bi-check-circle-fill { color: var(--secondary-color) !important; }

#tm7Carousel { padding: 0 0 46px 0; }

#tm7Carousel .carousel-control-prev,
#tm7Carousel .carousel-control-next { width: 52px; opacity: 1; z-index: 5; }

#tm7Carousel .carousel-control-prev-icon,
#tm7Carousel .carousel-control-next-icon {
    width: 44px; height: 44px;
    background-color: var(--primary-color);
    background-size: 18px 18px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background-color 0.15s;
}
#tm7Carousel .carousel-control-prev:hover .carousel-control-prev-icon,
#tm7Carousel .carousel-control-next:hover .carousel-control-next-icon { background-color: var(--secondary-color); }

#tm7Carousel .carousel-indicators { position: absolute; bottom: 10px; margin: 0; z-index: 5; }
#tm7Carousel .carousel-indicators [data-bs-target] {
    width: 24px; height: 3px; border-radius: 2px;
    background: #ccc; opacity: 1; border: 0; margin: 0 3px;
    transition: background 0.2s, width 0.2s;
}
#tm7Carousel .carousel-indicators .active { background: var(--secondary-color); width: 36px; }

#tm7-carousel-section h2 .bi-star-fill { color: var(--secondary-color) !important; }

@media (max-width: 768px) {
    #tm7Carousel .carousel-control-prev-icon,
    #tm7Carousel .carousel-control-next-icon { width: 36px; height: 36px; background-size: 15px 15px; }
}

/* ============================================
   Service Section (Vorwerk-style boxes)
   ============================================ */
.service-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 100%;
    transition: box-shadow 0.22s, border-color 0.22s;
}
.service-box:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); border-color: transparent; }

.service-box-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border-radius: 8px;
}

.service-box-body h5 { font-size: 0.97rem; font-weight: 700; margin-bottom: 7px; color: var(--primary-color); }
.service-box-body p  { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ============================================
   Testimonials
   ============================================ */
.testimonial-section {
    background: #111111 !important;
    color: white;
    padding: 80px 0;
}
.testimonial-section .section-title { color: #fff; }

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.2s, background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.testimonial-rating { color: var(--secondary-color); margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.8; color: rgba(255,255,255,0.74); }

/* ============================================
   Mobile Buttons
   ============================================ */
.mobile-cart-button {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 1030;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    width: 54px; height: 54px;
    border-radius: 50%;
    font-size: 1.2rem;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.back-to-top {
    position: fixed;
    bottom: 90px; right: 22px;
    z-index: 1020;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: background 0.15s, transform 0.15s;
    font-size: 1.1rem;
    padding: 0;
}
.back-to-top:hover { background: var(--secondary-color); transform: translateY(-2px); }

@media (max-width: 768px) {
    .cart-sidebar { width: 100%; right: -100%; }
    .mobile-cart-button { display: flex; align-items: center; justify-content: center; }
    #cartButton { display: none; }
    .section-title { font-size: 2rem; }
    .price { font-size: 1.15rem; white-space: nowrap; }
    .product-img { height: 200px; }
    .service-box { padding: 20px 16px; gap: 14px; }
}

@media (min-width: 769px) { .mobile-cart-button { display: none !important; } }

/* ============================================
   Service Section — Dark Premium
   ============================================ */
.vw-service-section {
    background: var(--primary-color);
    padding: 80px 0 88px;
}

.vw-service-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 12px 0 0;
}

.vw-service-lead {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.vw-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.vw-service-item {
    padding: 44px 36px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: background 0.2s;
}
.vw-service-item:last-child { border-right: none; }
.vw-service-item:hover { background: rgba(255,255,255,0.03); }

.vw-service-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.vw-service-icon-wrap {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.vw-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.vw-service-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.78;
    margin: 0;
}

@media (max-width: 767px) {
    .vw-service-grid { grid-template-columns: 1fr; }
    .vw-service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 20px; }
    .vw-service-heading { font-size: 1.9rem; }
    .vw-service-section { padding: 52px 0; }
}

/* ============================================
   Deliver More Section
   ============================================ */
.vw-deliver-section {
    padding: 80px 0 88px;
    background: white;
}

.vw-deliver-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}
.vw-deliver-heading span { color: var(--secondary-color); }

.vw-deliver-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.vw-deliver-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.vw-deliver-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.78;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .vw-deliver-heading { font-size: 2rem; }
    .vw-deliver-section { padding: 52px 0; }
}

/* ============================================
   Video Section
   ============================================ */
.vw-video-section {
    background: var(--primary-color);
    overflow: hidden;
}

.vw-video-text {
    padding: 64px 56px;
}

.vw-video-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.12;
    letter-spacing: -1px;
    margin: 18px 0 22px;
}
.vw-video-heading span { color: var(--secondary-color); }

.vw-video-desc {
    color: rgba(255,255,255,0.62);
    font-size: 0.95rem;
    line-height: 1.82;
    max-width: 400px;
}

.vw-video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .vw-video-text { padding: 44px 24px; }
    .vw-video-heading { font-size: 2rem; }
    .vw-video { min-height: 280px; }
}

/* ============================================
   Page Hero Banner (all inner pages)
   ============================================ */
.page-hero {
    background: var(--nav-bg);
    padding: 48px 0 44px;
}
.page-hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 14px;
}
.page-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}
.page-hero-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    margin-bottom: 0;
    max-width: 520px;
}
@media (max-width: 767px) {
    .page-hero { padding: 32px 0 28px; }
    .page-hero-title { font-size: 1.7rem; }
}

/* Inner page breadcrumb — dark version (inside hero) */
.vw-breadcrumb-dark { background: var(--nav-bg); padding: 20px 0 0; }
.vw-breadcrumb-dark .breadcrumb,
.page-hero .breadcrumb { margin: 0 0 6px; font-size: 0.78rem; background: none; padding: 0; }
.vw-breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before,
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.vw-breadcrumb-dark .breadcrumb-item a,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.vw-breadcrumb-dark .breadcrumb-item a:hover,
.page-hero .breadcrumb-item a:hover { color: var(--secondary-color); }
.vw-breadcrumb-dark .breadcrumb-item.active,
.page-hero .breadcrumb-item.active { color: var(--secondary-color); font-weight: 600; }

/* Flat card (Vorwerk style) */
.vw-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: none;
    background: white;
}
.vw-card-header {
    background: var(--primary-color);
    color: white;
    padding: 16px 22px;
    border-radius: 8px 8px 0 0;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Stats block (About page) */
.vw-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -1px;
}

/* Contact info row */
.vw-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}
.vw-contact-row:last-child { border-bottom: none; }
.vw-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Product detail page */
.product-detail-img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
}
.product-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.product-detail-features li:last-child { border-bottom: none; }
.product-detail-features li i { color: var(--secondary-color); margin-top: 2px; flex-shrink: 0; }
.product-detail-info {
    background: var(--light-color);
    border-radius: 8px;
    padding: 18px 20px;
}
.product-detail-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
}
.product-detail-info-row:last-child { border-bottom: none; }
.product-detail-info-row i { color: var(--secondary-color); width: 18px; }

/* ============================================
   Footer — Vorwerk Dark Gray
   ============================================ */
footer, .vw-footer {
    background: var(--footer-bg) !important;
    color: white;
    margin-top: 60px;
    padding-top: 56px;
    border-top: none;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.footer-logo-wrap {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.footer-logo-wrap img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

footer h5, footer h6 {
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #FFFFFF;
}

footer p, footer a, footer li { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
footer .text-primary { color: var(--secondary-color) !important; }

footer a.hover-primary:hover {
    color: var(--secondary-color) !important;
    padding-left: 4px;
    transition: all 0.15s;
}

/* Social icons — Vorwerk style (dark circles) */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: white !important;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.18s;
}
.social-icon:hover { background: var(--secondary-color); }

footer .bg-light {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08);
}

footer .form-control {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: white;
    padding: 10px 14px;
    font-size: 0.88rem;
    border-radius: 4px;
}
footer .form-control::placeholder { color: rgba(255,255,255,0.3); }
footer .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(39,174,96,0.2);
    color: white;
}

/* ============================================
   FAQ
   ============================================ */
#faq-tm7 .accordion-button {
    background: white;
    border-radius: 0 !important;
    padding: 16px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: none !important;
}
#faq-tm7 .accordion-button:not(.collapsed) { background: #FAFAFA; color: var(--secondary-color); }
#faq-tm7 .accordion-body { background: white; padding: 18px 22px; font-size: 0.93rem; line-height: 1.72; }
#faq-tm7 .accordion-item { border-radius: 0; overflow: hidden; margin-bottom: 6px; border: 1px solid var(--border-color) !important; }
#faq-tm7 .badge.bg-success { background: var(--secondary-color) !important; }

/* ============================================
   Badges (generic)
   ============================================ */
.badge {
    font-size: 0.7rem;
    padding: 4px 9px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

/* ============================================
   Cards (generic)
   ============================================ */
.card { border-radius: 8px; border: 1px solid var(--border-color); }
.card-header { padding: 16px 20px; font-size: 0.92rem; font-weight: 700; }

/* ============================================
   Notifications
   ============================================ */
.notification {
    position: fixed;
    top: 124px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1300;
    animation: notifIn 0.22s ease;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 6px;
    min-width: 260px;
    max-width: min(460px, calc(100vw - 32px));
    box-shadow: 0 6px 24px rgba(0,0,0,0.16);
    text-align: center;
    pointer-events: none;
}
@keyframes notifIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 768px) { .notification { top: 80px; min-width: 0; width: calc(100vw - 24px); } }

/* ============================================
   Category Page
   ============================================ */
.category-header {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    padding: 72px 0;
    margin-bottom: 48px;
}
.category-header h1 { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.5px; }
.category-header p  { font-size: 1.05rem; opacity: 0.75; }

/* ============================================
   Product Detail
   ============================================ */
.product-detail-img { max-height: 540px; object-fit: contain; }
.product-gallery-thumb {
    width: 80px; height: 80px;
    object-fit: cover; cursor: pointer;
    border: 2px solid transparent; border-radius: 6px;
    transition: border-color 0.18s;
}
.product-gallery-thumb:hover, .product-gallery-thumb.active { border-color: var(--secondary-color); }

/* ============================================
   Checkout
   ============================================ */
.checkout-summary { background: #FAFAFA; border-radius: 8px; padding: 24px; border: 1px solid var(--border-color); }
.checkout-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 0.93rem; }
.checkout-total { font-size: 1.7rem; font-weight: 800; color: var(--primary-color); }

/* ============================================
   Contact
   ============================================ */
.contact-info-card { background: linear-gradient(135deg, #111 0%, #2a2a2a 100%); color: white; border-radius: 8px; padding: 36px; }
.contact-info-card i { font-size: 2rem; margin-bottom: 14px; color: var(--secondary-color); }
.contact-info-card h6 { font-size: 1rem; }
.contact-info-card p  { font-size: 0.9rem; opacity: 0.78; }

/* ============================================
   Forms
   ============================================ */
.form-control, .form-select {
    padding: 11px 14px;
    font-size: 0.93rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(39,174,96,0.12);
}
.form-label { font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--primary-color); }

/* ============================================
   Tracking
   ============================================ */
.tracking-timeline { position: relative; padding-left: 36px; }
.tracking-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--secondary-color); }
.tracking-step { position: relative; padding-bottom: 24px; }
.tracking-step::before { content: ''; position: absolute; left: -28px; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--secondary-color); border: 2px solid white; box-shadow: 0 0 0 2px var(--secondary-color); }
.tracking-step.completed::before { background: var(--secondary-color); }
.tracking-step.pending::before { background: #ccc; box-shadow: 0 0 0 2px #ccc; }

/* ============================================
   Typography
   ============================================ */
h1, .h1 { font-size: 2.6rem;  font-weight: 800; letter-spacing: -0.5px; }
h2, .h2 { font-size: 2.1rem;  font-weight: 800; letter-spacing: -0.3px; }
h3, .h3 { font-size: 1.65rem; font-weight: 700; }
h4, .h4 { font-size: 1.25rem; font-weight: 700; }
h5, .h5 { font-size: 1.05rem; font-weight: 600; }
h6, .h6 { font-size: 0.88rem; font-weight: 600; }
p.lead   { font-size: 1.05rem; font-weight: 400; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Spacing / bg
   ============================================ */
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.mb-5 { margin-bottom: 3.5rem !important; }
.bg-light { background-color: #F8F8F8 !important; }

/* ============================================
   Footer Trust Grid
   ============================================ */
.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    padding: 22px 0 10px;
    align-items: stretch;
}

.trust-card {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 20px 18px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.18s;
    min-height: 100%;
}
.trust-card:hover { border-color: rgba(255,255,255,0.14); }

.trust-card-compact { grid-column: span 6; min-height: 150px; }
.trust-card-wide    { grid-column: span 7; }
.trust-card-trusted { grid-column: span 5; }

.trust-card-icon {
    width: 38px; height: 38px; border-radius: 6px;
    background: var(--secondary-color);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; font-size: 0.95rem; color: #fff;
}
.trust-card-icon.shipping-icon { background: #2563EB; }

.trust-card-title { color: #fff; font-weight: 700; font-size: 0.7rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 1.2px; }
.trust-card-desc  { color: rgba(255,255,255,0.48); font-size: 0.82rem; margin: 0; line-height: 1.6; max-width: 32ch; }

.trust-shipping-details { display: flex; flex-direction: column; gap: 6px; }
.trust-shipping-details span { color: rgba(255,255,255,0.48); font-size: 0.82rem; display: inline-flex; align-items: center; }
.trust-shipping-details i    { color: #2563EB; }

.trust-card-payment { display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 12px; }

.payment-badge {
    font-size: 0.66rem; font-weight: 700; padding: 4px 8px;
    border-radius: 4px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1;
}
.payment-badge.stripe      { background: #635bff; color: #fff; }
.payment-badge.dhl         { background: #fc0; color: #d40511; font-weight: 800; }
.payment-badge.klarna      { background: #ffb3c7; color: #0a0b09; }
.payment-badge.dpd         { background: #dc0032; color: #fff; }
.payment-badge.sepa        { background: #004990; color: #fff; }
.payment-badge.ratenzahlung{ background: var(--secondary-color); color: #fff; }

.trust-images-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.payment-secure { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; }
.payment-secure img { max-height: 38px; max-width: 100%; border-radius: 4px; object-fit: contain; }
.payment-secure-installment img { height: 36px; width: auto; }
.payment-secure-ssl img         { height: 34px; width: auto; }

.trusted-shops-card { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.trusted-shops-card img { max-width: 64px; margin-bottom: 10px; }
.ts-title    { color: #fff; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; max-width: 22ch; }
.ts-subtitle { color: var(--secondary-color); font-size: 0.78rem; font-weight: 600; }
.ts-divider  { border-color: rgba(255,255,255,0.08); margin: 10px 0; width: min(100%, 200px); }
.ts-stats    { color: rgba(255,255,255,0.48); font-size: 0.78rem; }
.ts-stars    { color: #f1c40f; font-size: 0.95rem; font-weight: 700; margin-top: 7px; }

@media (max-width: 991px) {
    .footer-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-card-compact, .trust-card-wide, .trust-card-trusted { grid-column: span 1; }
}

@media (max-width: 768px) {
    .site-logo { height: 44px; max-width: 48vw; }
    .footer-trust-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 16px; }
    .trust-card, .trust-card-compact, .trust-card-wide, .trust-card-trusted { grid-column: span 1; padding: 16px 14px; min-height: auto; }
}

/* ============================================
   FAQ Section
   ============================================ */
.vw-faq-section {
    background: #111111;
    padding: 88px 0 96px;
}
.vw-section-title-light {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.vw-section-sub-light {
    color: rgba(255,255,255,0.52);
    font-size: 1.05rem;
    margin-top: 10px;
}

/* FAQ list */
.vw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.vw-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vw-faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.vw-faq-btn:hover .vw-faq-q,
.vw-faq-btn.active .vw-faq-q {
    color: var(--secondary-color);
}
.vw-faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(39,174,96,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
    transition: background 0.2s;
}
.vw-faq-btn.active .vw-faq-icon {
    background: var(--secondary-color);
    color: #fff;
}
.vw-faq-q {
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    transition: color 0.2s;
    line-height: 1.4;
}
.vw-faq-chevron {
    flex-shrink: 0;
    color: rgba(255,255,255,0.38);
    font-size: 1.3rem;
    transition: transform 0.25s;
}
.vw-faq-btn.active .vw-faq-chevron {
    color: var(--secondary-color);
}

/* FAQ body */
.vw-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 0 0 52px;
}
.vw-faq-body.open {
    max-height: 600px;
    padding-bottom: 22px;
}
.vw-faq-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.7;
}
.vw-faq-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vw-faq-ul li {
    color: rgba(255,255,255,0.65);
    font-size: 0.93rem;
    padding-left: 18px;
    position: relative;
}
.vw-faq-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}
.vw-faq-ul li strong {
    color: rgba(255,255,255,0.88);
}
.vw-faq-link {
    color: var(--secondary-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}
.vw-faq-link:hover { opacity: 0.75; color: var(--secondary-color); }

/* Payment methods */
.vw-faq-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.vw-faq-method {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.93rem;
    font-weight: 600;
}
.vw-faq-method i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}
.vw-faq-method span {
    display: block;
    font-weight: 400;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    margin-top: 1px;
}
.vw-faq-note {
    font-size: 0.84rem !important;
    color: rgba(39,174,96,0.8) !important;
    margin-bottom: 0 !important;
}

/* Delivery grid */
.vw-faq-delivery-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}
.vw-faq-delivery-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}
.vw-faq-delivery-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 600;
}
.vw-faq-delivery-std {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.vw-faq-delivery-exp {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}
.vw-faq-delivery-exp small {
    color: rgba(39,174,96,0.6);
    font-weight: 400;
    font-size: 0.75rem;
}

/* FAQ CTA */
.vw-faq-cta {
    margin-top: 52px;
    padding: 32px 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.vw-faq-cta-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.vw-faq-cta-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .vw-section-title-light { font-size: 1.7rem; }
    .vw-faq-body { padding-left: 0; }
    .vw-faq-cta { flex-direction: column; text-align: center; }
    .vw-faq-delivery-item { grid-template-columns: 1fr auto; }
    .vw-faq-delivery-exp { grid-column: 2; }
}

/* ============================================
   Extra-small screens (< 450px)
   ============================================ */
@media (max-width: 450px) {

    /* Header */
    .vw-top-left .vw-util-link span,
    .vw-top-left .vw-util-link:not(:first-child) { display: none; }
    .site-logo { height: 38px; max-width: 42vw; }
    .vw-icon-btn { padding: 4px 8px; font-size: 0.75rem; }

    /* Hero */
    .hero-section { height: 70vh !important; min-height: 420px !important; }
    .hero-heading { font-size: 1.75rem !important; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.85rem !important; }
    .btn-hero, .btn-hero-outline { padding: 10px 18px !important; font-size: 0.8rem !important; width: 100%; text-align: center; }
    .hero-scroll-indicator { display: none; }

    /* Tabs */
    .vw-tab { padding: 10px 6px; gap: 4px; flex-direction: column; align-items: center; text-align: center; }
    .vw-tab-num { font-size: 0.9rem; }
    .vw-tab-label { font-size: 0.62rem; letter-spacing: 0.3px; }
    .vw-tab-img { height: 220px; }
    .vw-tab-body { padding: 22px 16px; }
    .vw-tab-heading { font-size: 1.2rem; }

    /* Section titles */
    .section-title { font-size: 1.5rem !important; }
    .section-lead { font-size: 0.88rem !important; }

    /* Product cards — 1 column */
    .product-card-col { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
    .product-img { height: 180px; }

    /* Video section */
    .vw-video-text { padding: 32px 16px; }
    .vw-video-heading { font-size: 1.5rem; }
    .vw-video { min-height: 220px; }

    /* Deliver more */
    .vw-deliver-section { padding: 40px 0; }
    .vw-deliver-heading { font-size: 1.5rem; }

    /* Service section */
    .vw-service-section { padding: 40px 0; }
    .vw-service-heading { font-size: 1.5rem; }
    .vw-service-item { padding: 24px 16px; }

    /* Page hero */
    .page-hero { padding: 24px 0 20px; }
    .page-hero-title { font-size: 1.4rem; }
    .page-hero-sub { font-size: 0.82rem; }

    /* Testimonials */
    .testimonial-card { padding: 20px 16px; }

    /* FAQ */
    .vw-faq-section { padding: 52px 0 60px; }
    .vw-section-title-light { font-size: 1.4rem; }
    .vw-section-sub-light { font-size: 0.88rem; }
    .vw-faq-btn { gap: 10px; padding: 16px 0; }
    .vw-faq-q { font-size: 0.9rem; }
    .vw-faq-icon { width: 30px; height: 30px; font-size: 0.85rem; }
    .vw-faq-body { padding-left: 0; }
    .vw-faq-cta { padding: 22px 18px; margin-top: 32px; }
    .vw-faq-delivery-item { grid-template-columns: 1fr auto; gap: 10px; padding: 10px 12px; }
    .vw-faq-delivery-exp { display: none; }

    /* Footer */
    footer, .vw-footer { padding-top: 40px !important; margin-top: 32px; }
    .footer-trust-grid { gap: 8px; }

    /* Cards */
    .vw-card { border-radius: 6px; }
    .vw-card-header { padding: 12px 16px; font-size: 0.78rem; }
}
