/* ========================================
   TEKDEN HEADER REDESIGN
   Brand Colors:
   - Primary Teal: #06A5A1
   - Primary Dark: #008683
   - Black: #000000
   - Text Gray: #444444
   - Light Gray: #F3F3F3
   - White: #FFFFFF
   - Accent Yellow: #FFD200
======================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --tekden-primary: #06A5A1;
    --tekden-primary-dark: #008683;
    --tekden-black: #000000;
    --tekden-dark-gray: #242424;
    --tekden-text: #444444;
    --tekden-light-gray: #C0C0C0;
    --tekden-lighter-gray: #F3F3F3;
    --tekden-white: #FFFFFF;
    --tekden-yellow: #FFD200;

    /* Spacing */
    --header-height: 60px;
    --top-bar-height: 40px;
    --container-max-width: 1500px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--td-font-ui);
    line-height: 1.6;
    color: var(--tekden-text);
    background-color: var(--tekden-lighter-gray);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER WRAPPER
======================================== */
.tekden-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--tekden-black);
    transition: box-shadow var(--transition-medium);
}

.tekden-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

/* Top bar stays visible when scrolled */
.tekden-header.is-scrolled .header-top-bar {
    /* Keep top bar visible on scroll */
}

/* ========================================
   TOP BAR
======================================== */
.header-top-bar {
    background: var(--tekden-black);
    color: var(--tekden-white);
    height: var(--top-bar-height);
    transition: all var(--transition-medium);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.top-bar-phone,
.top-bar-email {
    color: var(--tekden-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border-radius: 4px;
}

.top-bar-phone:hover,
.top-bar-email:hover {
    color: var(--tekden-primary);
    background: rgba(6, 165, 161, 0.15);
}

.top-bar-phone i,
.top-bar-email i {
    font-size: 14px;
    color: var(--tekden-primary);
}

.top-bar-phone span,
.top-bar-email span {
    font-weight: 500;
}

.top-bar-divider {
    color: var(--tekden-light-gray);
    opacity: 0.3;
    font-size: 12px;
}

.top-bar-text {
    color: var(--tekden-primary);
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 4px;
    margin-right: -8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--tekden-white);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    color: var(--tekden-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   MAIN HEADER
======================================== */
.header-main {
    height: var(--header-height);
    background: var(--tekden-black);
    border-bottom: 0;
    padding: 0;
    margin-top: 8px;
}

.header-main-content {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    gap: 32px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-self: start;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: auto !important;
    width: auto !important;
    max-width: 180px !important;
    max-height: 36px !important;
    display: block;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tekden-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   MAIN NAVIGATION
======================================== */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    height: 100%;
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item.has-mega-menu {
    position: static;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    height: 100%;
    color: var(--tekden-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--tekden-primary);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
======================================== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--tekden-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    list-style: none;
    padding: 12px 0;
    z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--tekden-dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--tekden-primary);
    background: var(--tekden-lighter-gray);
}

/* ========================================
   MEGA MENU
======================================== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    background: var(--tekden-white);
    border-top: 14px solid var(--tekden-black);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all var(--transition-medium);
    z-index: 100;
    padding: 32px;
}

.nav-item.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Old brands layout - DEPRECATED, now using brands-fullwidth-grid */
/* .mega-menu-brands {
    grid-template-columns: repeat(5, 1fr);
} */

.mega-menu-column {
    min-width: 0;
}

.mega-menu-heading {
    font-size: 13px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-lighter-gray);
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    margin-bottom: 4px;
}

.mega-menu-list a {
    display: block;
    padding: 8px 0;
    color: var(--tekden-dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.mega-menu-list a:hover {
    color: var(--tekden-primary);
    padding-left: 8px;
}

/* Mega Menu Featured Box */
.mega-menu-featured {
    border-left: 1px solid var(--tekden-lighter-gray);
    padding-left: 32px;
}

.featured-box {
    background: var(--tekden-lighter-gray);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.featured-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-label {
    display: inline-block;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.featured-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tekden-black);
    margin-bottom: 6px;
}

.featured-content p {
    font-size: 13px;
    color: var(--tekden-text);
    margin-bottom: 12px;
    flex: 1;
}

.featured-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--tekden-primary);
    margin-bottom: 12px;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.featured-btn:hover,
.featured-btn:focus,
.featured-btn:active {
    background: var(--tekden-primary-dark);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
}

/* ========================================
   SHOP MEGA MENU
======================================== */
.mega-menu-shop {
    padding: 0 !important;
}

.shop-mega-inner {
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding: 28px 24px 0;
}

.shop-mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(16px, 1.5vw, 24px);
}

.shop-mega-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-category {
    display: flex;
    flex-direction: column;
}

.shop-category-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tekden-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--tekden-primary);
}

.shop-category-heading i {
    color: var(--tekden-primary);
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.shop-category-heading a {
    color: var(--tekden-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.shop-category-heading a:hover {
    color: var(--tekden-primary);
}

.shop-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shop-product-list li a {
    display: block;
    padding: 5px 0 5px 24px;
    font-size: 13.5px;
    color: var(--tekden-text);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.shop-product-list li a:hover {
    color: var(--tekden-primary);
    background: var(--tekden-lighter-gray);
    padding-left: 28px;
}

/* Room size labels for dens */
.den-size {
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-left: 4px;
}

.shop-product-list li a:hover .den-size {
    color: var(--tekden-primary);
    opacity: 0.7;
}

/* ===== CABIN HOVER PREVIEW SECTION ===== */
.dens-preview-section {
    background: var(--tekden-lighter-gray);
    border-radius: 12px;
    padding: 16px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Active State - Shows cabin details */
.den-preview-active {
    display: none;
    flex-direction: column;
    height: 100%;
}

.den-preview-active.is-visible {
    display: flex;
}

.den-preview-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.den-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.den-preview-active:hover .den-preview-image img {
    transform: scale(1.05);
}

.den-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.den-preview-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tekden-primary);
    margin-bottom: 4px;
}

.den-preview-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--tekden-black);
    margin: 0 0 8px 0;
}

.den-preview-specs {
    margin-bottom: 12px;
}

.den-preview-size {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
    background: var(--tekden-white);
    padding: 4px 10px;
    border-radius: 4px;
}

.den-preview-size::before {
    content: "\f065";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: var(--tekden-primary);
}

.den-preview-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.den-preview-price .price-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.den-preview-price .price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--tekden-primary);
}

.den-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
}

.den-preview-btn:hover {
    background: var(--tekden-primary-dark);
    transform: translateY(-1px);
}

.den-preview-btn i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.den-preview-btn:hover i {
    transform: translateX(3px);
}

/* Den list items hover highlight */
.shop-product-list li[data-den-image] {
    transition: background-color 0.15s ease;
}

.shop-product-list li[data-den-image]:hover {
    background-color: rgba(0, 166, 153, 0.08);
}

.shop-view-all {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tekden-primary) !important;
    text-decoration: none !important;
    padding: 4px 0 4px 24px !important;
    transition: all var(--transition-fast);
}

.shop-view-all:hover {
    padding-left: 28px !important;
}

/* Shop Mega Footer */
.shop-mega-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px max(24px, calc((100vw - var(--container-max-width)) / 2 + 24px));
    background: var(--tekden-lighter-gray);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-radius: 0;
    margin-top: 24px;
}

.shop-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tekden-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.shop-footer-link:hover {
    color: var(--tekden-primary);
}

.shop-footer-link i {
    color: var(--tekden-primary);
}

.shop-footer-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--tekden-text);
}

.shop-footer-cta i {
    color: var(--tekden-primary);
}

.shop-footer-cta a {
    color: var(--tekden-primary);
    font-weight: 600;
    text-decoration: none;
}

.shop-footer-cta a:hover {
    text-decoration: underline;
}

/* ========================================
   BRANDS, ABOUT, TOOLS, RESOURCES MEGA MENUS
   (All now full-width like Shop)
======================================== */
.mega-menu-brands,
.mega-menu-tools,
.mega-menu-about,
.mega-menu-resources {
    padding: 0 !important;
}

/* Brands - Full width like Shop menu */
.mega-menu-brands {
    /* Full width positioning (inherits left: 0; right: 0; from .mega-menu base) */
}

/* Tools - Full width like Shop, Brands, and About */
.mega-menu-tools {
    /* Full width positioning (inherits left: 0; right: 0; from .mega-menu base) */
}

.mega-menu-tools .shop-mega-inner {
    padding: 28px 24px 0;
}

/* About - Full width like Shop and Brands */
.mega-menu-about {
    /* Full width positioning (inherits left: 0; right: 0; from .mega-menu base) */
}

/* Resources - Full width like Shop, Brands, About, Tools */
.mega-menu-resources {
    /* Full width positioning (inherits left: 0; right: 0; from .mega-menu base) */
}

.mega-menu-resources .shop-mega-inner {
    padding: 28px 24px 0;
}

.mega-menu-about .shop-mega-inner {
    padding: 28px 24px 0;
}

/* ========================================
   TOOLS FULL WIDTH WITH FEATURED IMAGES
======================================== */
.tools-fullwidth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 380px;
    gap: 24px;
    padding: 0;
}

/* Tools Featured Section - right column */
.tools-featured-section {
    border-left: 1px solid #e5e5e5;
    padding-left: 24px;
}

.featured-tools-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

.featured-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.featured-tool-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.featured-tool-card:hover {
    background: #fff;
    border-color: var(--tekden-primary);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.15);
    transform: translateX(4px);
}

.featured-tool-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tekden-primary);
    border-radius: 10px;
    flex-shrink: 0;
}

.featured-tool-icon i {
    font-size: 22px;
    color: #fff;
}

.featured-tool-info {
    flex: 1;
}

.featured-tool-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.featured-tool-desc {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.featured-tool-card:hover .featured-tool-name {
    color: var(--tekden-primary);
}

/* Tools Responsive */
@media (max-width: 1200px) {
    .tools-fullwidth-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .tools-featured-section {
        display: none;
    }
}

@media (max-width: 992px) {
    .tools-fullwidth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tools-fullwidth-grid {
        grid-template-columns: 1fr;
    }
}

/* Grid column overrides */
.brands-mega-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ========================================
   ABOUT FULL WIDTH WITH FEATURED IMAGES
======================================== */
.about-fullwidth-grid {
    display: grid;
    grid-template-columns: minmax(170px, 0.82fr) minmax(190px, 0.9fr) minmax(260px, 1.08fr) minmax(320px, 1.2fr);
    gap: 24px;
    padding: 0;
}

.about-showroom-column {
    min-width: 0;
}

.about-showroom-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    color: var(--tekden-white);
    background:
        linear-gradient(145deg, rgba(6, 165, 161, 0.18), rgba(6, 165, 161, 0) 46%),
        #111716;
    border: 1px solid rgba(6, 165, 161, 0.28);
    border-radius: 8px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.about-showroom-card:hover {
    border-color: rgba(6, 165, 161, 0.55);
    transform: translateY(-2px);
}

.about-showroom-eyebrow {
    color: #75e7e4;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-showroom-title {
    margin-top: 12px;
    color: var(--tekden-white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
}

.about-showroom-copy {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13.5px;
    line-height: 1.55;
}

.about-showroom-points {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.about-showroom-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    font-weight: 700;
}

.about-showroom-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #75e7e4;
    background: rgba(6, 165, 161, 0.18);
    border: 1px solid rgba(117, 231, 228, 0.28);
    border-radius: 999px;
    font-size: 11px;
    flex: 0 0 auto;
}

.about-showroom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.about-showroom-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: var(--tekden-black);
    background: var(--tekden-white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.about-showroom-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.about-showroom-button:hover,
.about-showroom-button:focus-visible {
    color: var(--tekden-black);
    background: #75e7e4;
    outline: none;
}

.about-showroom-link:hover,
.about-showroom-link:focus-visible {
    color: #75e7e4;
    outline: none;
}

/* About Featured Section - right column */
.about-featured-section {
    border-left: 1px solid #e5e5e5;
    padding-left: 24px;
}

.featured-projects-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.featured-project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.featured-project-card:hover {
    background: #fff;
    border-color: var(--tekden-primary);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.15);
    transform: translateY(-2px);
}

.featured-project-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-project-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
    padding: 10px 8px;
}

.featured-project-card:hover .featured-project-name {
    color: var(--tekden-primary);
}

/* About Responsive */
@media (max-width: 1200px) {
    .about-fullwidth-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .about-featured-section {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-fullwidth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-fullwidth-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESOURCES FULL WIDTH WITH FEATURED IMAGES
======================================== */
.resources-fullwidth-grid {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(210px, 1fr) minmax(190px, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(18px, 2vw, 32px);
    padding: 0;
}

/* Resources Featured Section - right column */
.resources-featured-section {
    border-left: 1px solid #e5e5e5;
    padding-left: 24px;
}

.featured-resources-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.featured-resource-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.featured-resource-card:hover {
    background: #fff;
    border-color: var(--tekden-primary);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.15);
    transform: translateY(-2px);
}

.featured-resource-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.featured-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-resource-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
    padding: 10px 8px;
}

.featured-resource-card:hover .featured-resource-name {
    color: var(--tekden-primary);
}

/* Resources Responsive */
@media (max-width: 1200px) {
    .resources-fullwidth-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .resources-featured-section {
        display: none;
    }
}

@media (max-width: 992px) {
    .resources-fullwidth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .resources-fullwidth-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BRANDS FULL WIDTH WITH FEATURED IMAGES
======================================== */
.brands-fullwidth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 24px;
    padding: 0;
}

/* Brands Featured Section - right column like Shop */
.brands-featured-section {
    border-left: 1px solid #e5e5e5;
    padding-left: 24px;
}

.featured-brands-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

.featured-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.featured-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.featured-brand-card:hover {
    background: #fff;
    border-color: var(--tekden-primary);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.15);
    transform: translateY(-2px);
}

.featured-brand-image {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 4px;
}

.featured-brand-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-brand-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.featured-brand-card:hover .featured-brand-name {
    color: var(--tekden-primary);
}

/* 5th brand spans full width at bottom */
.featured-brands-grid .featured-brand-card:nth-child(5) {
    grid-column: span 2;
}

/* Brands Responsive */
@media (max-width: 1200px) {
    .brands-fullwidth-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .brands-featured-section {
        display: none;
    }
}

@media (max-width: 992px) {
    .brands-fullwidth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .brands-fullwidth-grid {
        grid-template-columns: 1fr;
    }

    .featured-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-brands-grid .featured-brand-card:nth-child(5) {
        grid-column: span 2;
    }
}

/* ========================================
   TURNKEY DENS MEGA MENU
======================================== */

/* Turnkey Dens highlighted nav item */
.nav-item-highlight .nav-link-highlight {
    background: linear-gradient(135deg, var(--tekden-primary), #05918e);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-item-highlight .nav-link-highlight:hover {
    background: linear-gradient(135deg, #05918e, var(--tekden-primary));
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.3);
}

/* Dens mega menu - full width like other menus */
.mega-menu.mega-menu-dens {
    /* Full width positioning (inherits left: 0; right: 0; from .mega-menu base) */
    padding: 0 !important;
}

/* Dens full width grid */
.dens-fullwidth-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.18fr) minmax(235px, 0.86fr) minmax(245px, 0.92fr) minmax(210px, 0.78fr);
    gap: 24px;
    padding: 0;
}

/* Dens category subtitle */
.dens-category-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--tekden-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0 8px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(6, 165, 161, 0.2);
}

.dens-category-subtitle:first-of-type {
    margin-top: 8px;
}

/* ============================================ */
/* Dens Promo Column - Clean Card Layout       */
/* ============================================ */
.dens-promo-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dens-promo-card {
    background: var(--tekden-white);
    border-radius: 10px;
    padding: 15px 16px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dens-promo-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.dens-promo-card i {
    font-size: 21px;
    color: var(--tekden-primary);
    margin-bottom: 7px;
}

.dens-promo-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--tekden-black);
    margin: 0 0 4px 0;
}

.dens-promo-card p {
    font-size: 12px;
    color: var(--tekden-text);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.dens-planning-column {
    min-width: 0;
}

.dens-planning-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    background: #f7f8f8;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
}

.dens-planning-eyebrow {
    color: var(--tekden-primary);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.dens-planning-title {
    margin-top: 10px;
    color: var(--tekden-black);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.08;
}

.dens-planning-card p {
    margin: 10px 0 0;
    color: #5a5f5e;
    font-size: 12.5px;
    line-height: 1.5;
}

.dens-planning-steps {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.dens-planning-steps a {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--tekden-black);
    text-decoration: none;
    background: var(--tekden-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.dens-planning-steps a:hover,
.dens-planning-steps a:focus-visible {
    border-color: rgba(6, 165, 161, 0.42);
    transform: translateY(-1px);
    outline: none;
}

.dens-planning-steps i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--tekden-primary);
    background: rgba(6, 165, 161, 0.1);
    border-radius: 999px;
    font-size: 12px;
}

.dens-planning-steps strong,
.dens-planning-steps small {
    display: block;
}

.dens-planning-steps strong {
    color: var(--tekden-black);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.2;
}

.dens-planning-steps small {
    margin-top: 2px;
    color: #666;
    font-size: 11.5px;
    line-height: 1.25;
}

/* Coming Soon Badge */
.dens-coming-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

/* Promo Buttons */
.dens-promo-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: var(--tekden-primary) !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.dens-promo-btn:hover,
.dens-promo-btn:focus {
    background: var(--tekden-black);
    color: #fff !important;
    transform: translateY(-1px);
}

.dens-promo-btn-outline {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    color: var(--tekden-primary) !important;
    text-decoration: none !important;
    border: 1.5px solid var(--tekden-primary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.dens-promo-btn-outline:hover,
.dens-promo-btn-outline:focus {
    background: var(--tekden-primary);
    color: #fff !important;
}

/* ============================================ */
/* Dens Preview Section - Right Column         */
/* (Dynamic preview when hovering cabins)      */
/* ============================================ */

/* Dens responsive */
@media (max-width: 1200px) {
    .dens-fullwidth-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .dens-preview-section {
        display: none;
    }
}

@media (max-width: 992px) {
    .dens-fullwidth-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dens-promo-column {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dens-promo-card {
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .dens-fullwidth-grid {
        grid-template-columns: 1fr;
    }

    .dens-promo-column {
        flex-direction: column;
    }

    .dens-promo-card {
        flex: 1 1 100%;
    }
}

/* Shop/Brands Responsive */
@media (max-width: 1200px) {
    .shop-mega-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ========================================
   TOOLS DROPDOWN
======================================== */
.tekden-header .nav-item.has-dropdown {
    position: relative;
}
.tekden-header .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}
.tekden-header .nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}
.tekden-header .nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tekden-header .nav-dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.tekden-header .nav-dropdown-list li a:hover {
    background: #f5f5f5;
    color: var(--primary);
}
.tekden-header .nav-dropdown-list li a i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* ========================================
   HEADER ACTIONS
======================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
    height: 100%;
}

/* Turnkey Dens CTA Button in Header */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.header-cta-btn:hover,
.header-cta-btn:focus,
.header-cta-btn:active {
    background: var(--tekden-primary-dark);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--tekden-white);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    color: var(--tekden-primary);
    background: rgba(255, 255, 255, 0.1);
}

.header-icon i {
    font-size: 18px;
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 4px;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

/* Header Cart Wrapper */
.header-cart-wrapper {
    position: relative;
}

/* Mini Cart Dropdown */
.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 360px;
    background: var(--tekden-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.mini-cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: var(--tekden-white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.mini-cart-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--tekden-white);
    border-bottom: 1px solid #eee;
}

.mini-cart-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--tekden-dark-gray);
}

.mini-cart-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--tekden-lighter-gray);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--tekden-dark-gray);
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    transition: all 0.2s;
}

.mini-cart-close:hover {
    background: var(--tekden-dark-gray);
    color: var(--tekden-white);
    border-color: var(--tekden-dark-gray);
}

.mini-cart-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 0;
}

.mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--tekden-text-muted);
    text-align: center;
}

.mini-cart-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.mini-cart-empty p {
    margin: 0;
    font-size: 14px;
}

/* Mini Cart Items */
.mini-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--tekden-dark);
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.mini-cart-item-name a:hover {
    color: var(--tekden-primary);
}

.mini-cart-item-meta {
    font-size: 12px;
    color: var(--tekden-text-muted);
}

.mini-cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--tekden-primary);
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: var(--tekden-text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    opacity: 0.5;
    transition: all 0.2s;
}

.mini-cart-item-remove:hover {
    opacity: 1;
    color: #e74c3c;
}

/* Mini Cart Footer */
.mini-cart-footer {
    padding: 16px 20px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mini-cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 15px;
}

.mini-cart-subtotal span:first-child {
    color: var(--tekden-text-muted);
}

.mini-cart-total {
    font-weight: 700;
    color: var(--tekden-dark);
    font-size: 18px;
}

.mini-cart-buttons {
    display: flex;
    gap: 10px;
}

.mini-cart-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.mini-cart-btn.view-cart {
    background: var(--tekden-white);
    color: var(--tekden-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mini-cart-btn.view-cart:hover {
    background: #f5f5f5;
}

.mini-cart-btn.checkout {
    background: var(--tekden-primary);
    color: var(--tekden-white);
    border: 1px solid var(--tekden-primary);
}

.mini-cart-btn.checkout:hover {
    background: var(--tekden-primary-dark);
    border-color: var(--tekden-primary-dark);
}

/* Mini Cart Loading State */
.mini-cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mini-cart-loading::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--tekden-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Search Dropdown */
.header-search {
    position: relative;
}

/* FiboSearch in Dropdown Styling */
.search-dropdown .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

.search-dropdown .dgwt-wcas-search-wrapp * {
    box-sizing: border-box !important;
}

/* Hide FiboSearch's own icon toggle - we use our own */
.search-dropdown .dgwt-wcas-search-icon,
.search-dropdown .dgwt-wcas-search-icon-arrow {
    display: none !important;
}

/* Force the search form to always show and center it */
.search-dropdown .dgwt-wcas-search-form {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.search-dropdown .dgwt-wcas-sf-wrapp {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.search-dropdown .dgwt-wcas-search-input {
    font-size: 14px;
    padding: 12px 16px !important;
    height: 44px;
    flex: 1 !important;
    border: 2px solid var(--tekden-lighter-gray);
    border-radius: 8px 0 0 8px !important;
    margin: 0 !important;
}

.search-dropdown .dgwt-wcas-search-input:focus {
    border-color: var(--tekden-primary);
    outline: none;
}

.search-dropdown .dgwt-wcas-search-submit {
    display: none !important;
}

.search-dropdown .dgwt-wcas-search-input {
    border-radius: 8px !important;
}

/* Reset any FiboSearch positioning that might cause offset */
.search-dropdown .dgwt-wcas-preloader,
.search-dropdown .dgwt-wcas-voice-search {
    right: 50px !important;
}

/* Desktop: Hide the toggle button, show search inline */
.search-toggle {
    display: none;
}

/* Desktop: Show search bar inline in navbar */
.search-dropdown {
    position: static;
    width: 280px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    padding: 0;
    z-index: auto;
    overflow: visible;
}

/* Desktop: Hide mobile-only search elements */
.search-dropdown-inner {
    display: contents;
}

.mobile-search-header,
.mobile-search-suggestions,
.mobile-search-overlay,
.search-dropdown::before {
    display: none !important;
}

/* Desktop FiboSearch styling */
.header-search .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 100% !important;
}

.header-search .dgwt-wcas-search-input {
    background: var(--tekden-white) !important;
    border: none !important;
    border-radius: 8px !important;
    color: var(--tekden-dark) !important;
    font-size: 14px !important;
    padding: 10px 40px 10px 14px !important;
    height: 40px !important;
    transition: all var(--transition-fast) !important;
}

.header-search .dgwt-wcas-search-input::placeholder {
    color: #6b7280 !important;
    font-weight: 600 !important;
}

.header-search .dgwt-wcas-search-input:focus {
    box-shadow: 0 0 0 2px var(--tekden-primary) !important;
    outline: none !important;
}

/* Hide FiboSearch submit button on desktop */
.header-search .dgwt-wcas-search-submit {
    display: none !important;
}

/* Style the preloader/voice search icons */
.header-search .dgwt-wcas-preloader,
.header-search .dgwt-wcas-voice-search {
    right: 12px !important;
}

/* Hide FiboSearch's own icon toggle */
.header-search .dgwt-wcas-search-icon,
.header-search .dgwt-wcas-search-icon-arrow {
    display: none !important;
}

/* Force the search form to always show */
.header-search .dgwt-wcas-search-form {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tekden-native-search__field {
    position: relative !important;
}

.tekden-native-search__loader {
    width: 16px;
    height: 16px;
    display: none;
    position: absolute;
    top: 50%;
    right: 14px !important;
    border: 2px solid rgba(6, 165, 161, 0.18);
    border-top-color: var(--tekden-primary);
    border-radius: 999px;
    transform: translateY(-50%);
    animation: spin 0.72s linear infinite;
    pointer-events: none;
}

.tekden-native-search.is-loading .tekden-native-search__loader {
    display: block;
}

.tekden-native-search__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 10020;
    min-width: min(420px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(17, 21, 19, 0.12);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 21, 19, 0.18);
}

.tekden-native-search__panel[hidden] {
    display: none !important;
}

.tekden-native-search__list {
    display: grid;
    padding: 6px;
}

.tekden-native-search__result {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border-radius: 8px;
    padding: 8px;
    color: var(--tekden-dark);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.tekden-native-search__result:hover,
.tekden-native-search__result:focus-visible,
.tekden-native-search__result.is-active {
    background: rgba(6, 165, 161, 0.09);
    outline: none;
}

.tekden-native-search__thumb {
    width: 54px;
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    border-radius: 7px;
    background: #f2f0ea;
}

.tekden-native-search__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tekden-native-search__meta {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.tekden-native-search__category {
    overflow: hidden;
    color: var(--tekden-primary);
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.tekden-native-search__title {
    overflow: hidden;
    color: var(--tekden-dark);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.22;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tekden-native-search__price {
    overflow: hidden;
    color: var(--tekden-primary-dark);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tekden-native-search__status {
    padding: 16px;
    color: #5d6561;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.tekden-native-search__status--error {
    color: #8a2f2b;
}

.tekden-native-search__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 4px;
    border-top: 1px solid rgba(17, 21, 19, 0.08);
    border-radius: 0 0 8px 8px;
    padding: 11px 10px 8px;
    color: var(--tekden-primary-dark);
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
}

.tekden-native-search__all i {
    font-size: 0.75rem;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--tekden-lighter-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--tekden-primary);
}

.search-submit {
    padding: 12px 20px;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-submit:hover {
    background: var(--tekden-primary-dark);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--tekden-white);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile-menu-sidebar.is-active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--tekden-black);
    min-height: 70px;
    position: relative;
}

.mobile-logo {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 160px !important;
}

/* ===== CLOSE BUTTON - Prominent & Clear ===== */
.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tekden-primary);
    border: none;
    color: var(--tekden-white);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(6, 165, 161, 0.4);
    position: relative;
    z-index: 10;
}

.mobile-menu-close::after {
    content: 'Close';
    position: absolute;
    right: 52px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: var(--tekden-primary);
}

.mobile-menu-close:hover {
    background: var(--tekden-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.5);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

/* ===== MOBILE SEARCH BAR ===== */
.mobile-menu-search {
    padding: 12px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-search form {
    display: flex;
    gap: 8px;
}

.mobile-menu-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--tekden-white);
    transition: border-color 0.15s ease;
}

.mobile-menu-search input:focus {
    outline: none;
    border-color: var(--tekden-primary);
}

.mobile-menu-search input::placeholder {
    color: #999;
}

.mobile-menu-search button {
    padding: 12px 16px;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mobile-menu-search button:hover,
.mobile-menu-search button:active {
    background: var(--tekden-primary-dark);
}

/* FiboSearch in Mobile Menu Styling */
.mobile-menu-search .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu-search .dgwt-wcas-search-wrapp * {
    box-sizing: border-box !important;
}

/* Hide FiboSearch's own icon toggle on mobile */
.mobile-menu-search .dgwt-wcas-search-icon,
.mobile-menu-search .dgwt-wcas-search-icon-arrow {
    display: none !important;
}

/* Force the search form to always show on mobile */
.mobile-menu-search .dgwt-wcas-search-form {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu-search .dgwt-wcas-sf-wrapp {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu-search .dgwt-wcas-search-input {
    width: 100% !important;
    font-size: 14px;
    padding: 12px 16px !important;
    height: 44px;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: var(--tekden-white) !important;
    margin: 0 !important;
}

.mobile-menu-search .dgwt-wcas-search-input:focus {
    border-color: var(--tekden-primary) !important;
    outline: none;
}

.mobile-menu-search .dgwt-wcas-search-input::placeholder {
    color: #999;
}

/* Hide the submit button on mobile too */
.mobile-menu-search .dgwt-wcas-search-submit {
    display: none !important;
}

/* Position preloader and voice search properly */
.mobile-menu-search .dgwt-wcas-preloader,
.mobile-menu-search .dgwt-wcas-voice-search {
    right: 12px !important;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for mobile nav */
.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

/* ===== MOBILE NAV ITEMS ===== */
.mobile-nav-menu {
    list-style: none;
    padding: 8px 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.15s ease;
}

.mobile-nav-item > a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--tekden-primary);
}

.mobile-nav-item > a:hover,
.mobile-nav-item > a:active {
    color: var(--tekden-primary);
}

.mobile-nav-item.has-children {
    position: relative;
}

.mobile-nav-item.has-children > a {
    padding-right: 56px;
}

/* ===== EXPAND/COLLAPSE TOGGLE ===== */
.mobile-submenu-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f4;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    color: #666;
    transition: all 0.15s ease;
}

.mobile-submenu-toggle:hover {
    background: var(--tekden-primary);
    border-color: var(--tekden-primary);
    color: var(--tekden-white);
}

.mobile-submenu-toggle i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.mobile-nav-item.is-open .mobile-submenu-toggle {
    background: var(--tekden-primary);
    border-color: var(--tekden-primary);
    color: var(--tekden-white);
}

.mobile-nav-item.is-open .mobile-submenu-toggle i {
    transform: rotate(45deg);
}

/* ===== MOBILE SUBMENU - Clean & Professional ===== */
.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.mobile-nav-item.is-open .mobile-submenu {
    max-height: 800px;
}

/* Product Links - Clean & Simple */
.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 32px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
    background: #fff;
}

.mobile-submenu li:last-child a {
    border-bottom: none;
}

.mobile-submenu li a:hover,
.mobile-submenu li a:active {
    color: var(--tekden-primary);
    background: rgba(6, 165, 161, 0.05);
    padding-left: 38px;
}

/* ===== SECTION HEADINGS - Clear Category Dividers ===== */
.mobile-submenu-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--tekden-white);
    padding: 12px 20px;
    background: var(--tekden-primary);
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 5;
}

.mobile-submenu-heading:not(:first-child) {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== SUBHEADINGS - Subtle Category Labels ===== */
.mobile-submenu-subheading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #666;
    padding: 10px 20px 6px 20px;
    background: #f0f2f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

.mobile-submenu-subheading a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mobile-submenu-subheading a:hover,
.mobile-submenu-subheading a:focus {
    color: var(--tekden-primary);
}

/* ===== CTA BUTTON - Shop All / Configurator ===== */
.mobile-submenu-cta {
    padding: 16px 20px;
    background: #f0f2f4;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-configurator-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--tekden-primary) !important;
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-configurator-btn i {
    color: var(--tekden-white) !important;
}

.mobile-configurator-btn:hover,
.mobile-configurator-btn:focus,
.mobile-configurator-btn:active {
    background: var(--tekden-primary) !important;
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    opacity: 0.9;
}

.mobile-configurator-btn.mobile-book-btn {
    background: var(--tekden-black);
}

.mobile-configurator-btn.mobile-book-btn:hover,
.mobile-configurator-btn.mobile-book-btn:focus,
.mobile-configurator-btn.mobile-book-btn:active {
    background: #333;
}

/* Larger max-height for menus with many items */
.mobile-nav-highlight.is-open .mobile-submenu,
.mobile-nav-golf.is-open .mobile-submenu {
    max-height: 3000px;
}

/* ===== NESTED SUBMENU - Second Level Dropdowns ===== */
.mobile-nested-item {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nested-item:last-child {
    border-bottom: none;
}

.mobile-nested-item.has-nested-children > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 32px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    border-bottom: none;
    padding-right: 56px;
    transition: all 0.15s ease;
}

.mobile-nested-item.has-nested-children > a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--tekden-primary);
}

.mobile-nested-item.has-nested-children > a:hover,
.mobile-nested-item.has-nested-children > a:active {
    color: var(--tekden-primary);
}

/* Nested Toggle Button - Matches first-level toggle */
.mobile-nested-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f4;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    color: #666;
    transition: all 0.15s ease;
}

.mobile-nested-toggle:hover {
    background: var(--tekden-primary);
    border-color: var(--tekden-primary);
    color: var(--tekden-white);
}

.mobile-nested-toggle i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.mobile-nested-item.is-open > .mobile-nested-toggle {
    background: var(--tekden-primary);
    border-color: var(--tekden-primary);
    color: var(--tekden-white);
}

.mobile-nested-item.is-open > .mobile-nested-toggle i {
    transform: rotate(45deg);
}

/* Nested Submenu */
.mobile-nested-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.mobile-nested-item.is-open > .mobile-nested-submenu {
    max-height: 600px;
}

.mobile-nested-submenu li a {
    display: block;
    padding: 12px 20px 12px 48px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
    background: #fff;
}

.mobile-nested-submenu li:last-child a {
    border-bottom: none;
}

.mobile-nested-submenu li a:hover,
.mobile-nested-submenu li a:active {
    color: var(--tekden-primary);
    background: rgba(6, 165, 161, 0.05);
    padding-left: 54px;
}

/* Nested Subheading - Matches first-level subheading */
.mobile-nested-submenu .mobile-submenu-subheading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #666;
    padding: 10px 20px 6px 48px;
    background: #f0f2f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

/* View All Link in Nested Submenu */
.mobile-nested-submenu .mobile-view-all {
    color: var(--tekden-primary) !important;
    font-weight: 600 !important;
    background: rgba(6, 165, 161, 0.05) !important;
    border-top: 1px solid rgba(6, 165, 161, 0.1);
}

.mobile-nested-submenu .mobile-view-all:hover {
    background: rgba(6, 165, 161, 0.1) !important;
    padding-left: 54px !important;
}

/* ===== COMING SOON BADGE ===== */
.mobile-coming-soon {
    position: relative;
}

.mobile-coming-soon > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 32px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    padding-right: 120px;
    cursor: default;
}

.mobile-coming-soon > a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFD200 0%, #FFB800 100%);
    color: #333;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ===== MOBILE MENU FOOTER ===== */
.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f8f9fa;
}

.mobile-footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.15s ease;
}

.mobile-footer-link:last-of-type {
    border-bottom: none;
}

.mobile-footer-link:hover,
.mobile-footer-link:active {
    color: var(--tekden-primary);
}

.mobile-footer-link i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--tekden-primary);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--tekden-white);
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
    border: 1px solid #e5e7eb;
}

.mobile-social-links a:hover,
.mobile-social-links a:active {
    background: var(--tekden-primary);
    color: var(--tekden-white);
    border-color: var(--tekden-primary);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Tablet */
@media (max-width: 1200px) {
    .mega-menu-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-menu-featured {
        display: none;
    }

    .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .header-main-content {
        display: flex;
        gap: 16px;
    }

    .header-logo {
        flex: 1;
        text-align: center;
        justify-self: auto;
    }

    .header-actions {
        justify-self: auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* Mobile Header Search Styling */
    .header-search {
        position: static;
    }

    /* Show toggle button on mobile */
    .search-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        color: var(--tekden-white);
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.2s ease;
    }

    .search-toggle:hover,
    .search-toggle:active {
        background: rgba(255, 255, 255, 0.15);
    }

    .search-toggle.is-active {
        background: rgba(255, 255, 255, 0.2);
    }

    .search-toggle i {
        font-size: 18px;
    }

    /* Mobile dropdown - full width bar below header */
    .search-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
        background: var(--tekden-white);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        border-radius: 0 0 16px 16px;
        pointer-events: none;
    }

    .search-dropdown.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Mobile search dropdown inner container */
    .search-dropdown::before {
        display: none;
    }

    .search-dropdown-inner {
        padding: 20px;
        background: var(--tekden-white);
    }

    /* Mobile search header */
    .mobile-search-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .mobile-search-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--tekden-dark);
    }

    .mobile-search-close {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--tekden-lighter-gray);
        border: none;
        border-radius: 50%;
        color: var(--tekden-dark);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-search-close:hover,
    .mobile-search-close:active {
        background: var(--tekden-light-gray);
    }

    .mobile-search-close i {
        font-size: 14px;
    }

    /* Mobile FiboSearch input styling */
    .header-search .dgwt-wcas-search-input {
        background: var(--tekden-lighter-gray) !important;
        border: 2px solid transparent !important;
        border-radius: 12px !important;
        color: var(--tekden-dark) !important;
        font-size: 16px !important;
        padding: 14px 18px !important;
        height: 52px !important;
        transition: all 0.2s ease !important;
    }

    .header-search .dgwt-wcas-search-input:focus {
        background: var(--tekden-white) !important;
        border-color: var(--tekden-primary) !important;
        box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1) !important;
    }

    .header-search .dgwt-wcas-search-input::placeholder {
        color: #9ca3af !important;
    }

    /* Mobile search suggestions */
    .mobile-search-suggestions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }

    .mobile-search-suggestions span {
        font-size: 12px;
        color: #6b7280;
        font-weight: 500;
    }

    .mobile-search-suggestions a {
        display: inline-block;
        padding: 6px 12px;
        background: var(--tekden-lighter-gray);
        border-radius: 20px;
        font-size: 13px;
        color: var(--tekden-dark);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-search-suggestions a:hover,
    .mobile-search-suggestions a:active {
        background: var(--tekden-primary);
        color: var(--tekden-white);
    }

    /* Mobile search overlay */
    .mobile-search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9998;
    }

    .mobile-search-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile: Show mobile-only search elements */
    .search-dropdown-inner {
        display: block;
    }

    .mobile-search-header,
    .mobile-search-suggestions {
        display: flex !important;
    }

    .logo-img {
        height: 28px !important;
        max-height: 28px !important;
    }

    .top-bar-text {
        display: none;
    }

    .top-bar-divider {
        display: none;
    }

    /* Hide Turnkey Dens CTA button on mobile */
    .header-cta-btn {
        display: none;
    }

    /* Show phone number on mobile */
    .top-bar-phone {
        padding: 6px 12px;
        font-size: 14px;
    }

    .top-bar-phone span {
        display: inline;
    }

    .top-bar-email {
        display: none;
    }

    /* FiboSearch in Mobile Header Dropdown */
    .search-dropdown .dgwt-wcas-search-input {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        padding: 10px 14px !important;
        height: 44px;
    }

    .search-dropdown .dgwt-wcas-sf-wrapp {
        width: 100% !important;
    }

    .header-search .tekden-native-search__panel {
        top: calc(100% + 8px);
        min-width: 0;
        max-height: min(58dvh, 430px);
        overflow-y: auto;
        border-radius: 12px;
        box-shadow: 0 18px 38px rgba(17, 21, 19, 0.18);
    }

    .tekden-native-search__result {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 10px;
    }

    .tekden-native-search__thumb {
        width: 48px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    :root {
        --header-height: 70px;
        --top-bar-height: 36px;
    }

    .container {
        padding: 0 16px;
    }

    /* Show phone number, hide email text on small mobile */
    .top-bar-phone span {
        display: inline;
        font-size: 13px;
    }

    .top-bar-email span {
        display: none;
    }

    .top-bar-phone {
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.05);
        font-size: 13px;
    }

    .top-bar-email {
        display: none;
    }

    .top-bar-left {
        gap: 8px;
    }

    .top-bar-divider {
        display: none;
    }

    .logo-img {
        height: 24px !important;
        max-height: 24px !important;
    }

    .header-icon {
        width: 40px;
        height: 40px;
    }

    .header-icon i {
        font-size: 16px;
    }

    /* Small mobile - search dropdown adjustments */
    .search-dropdown-inner {
        padding: 14px 16px 18px;
    }

    .mobile-search-header {
        margin-bottom: 10px;
    }

    .mobile-search-title {
        font-size: 15px;
    }

    .header-search .dgwt-wcas-search-input {
        font-size: 16px !important;
        padding: 12px 16px !important;
        height: 48px !important;
    }

    .mobile-search-suggestions {
        margin-top: 12px;
    }

    .mobile-search-suggestions a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .header-actions {
        gap: 2px;
    }

    .search-toggle {
        width: 36px;
        height: 36px;
    }

    .search-toggle i {
        font-size: 15px;
    }

    .mobile-menu-sidebar {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .mobile-menu-header {
        padding: 14px 16px;
    }

    .mobile-menu-search {
        padding: 14px 16px;
    }

    .mobile-menu-search .tekden-native-search__panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
    }

    .mobile-nav-menu {
        padding: 6px 0;
    }

    .mobile-nav-item {
        margin: 0 8px;
    }

    .mobile-nav-item > a {
        padding: 14px 10px;
        font-size: 14px;
    }

    .mobile-submenu li a {
        padding: 12px 16px 12px 48px;
        font-size: 13px;
    }

    .mobile-submenu-heading {
        padding: 14px 16px 8px 48px;
        font-size: 9px;
    }

    .mobile-submenu-heading::before {
        left: 32px;
        width: 5px;
        height: 5px;
    }

    .mobile-submenu-subheading {
        padding: 10px 16px 6px 56px;
        font-size: 9px;
    }

    .mobile-submenu-cta {
        padding: 14px 16px 14px 48px;
    }

    .mobile-configurator-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Nested Submenu Mobile Styles - Matches first-level */
    .mobile-nested-item.has-nested-children > a {
        padding: 14px 16px 14px 48px;
        padding-right: 52px;
        font-size: 14px;
    }

    .mobile-nested-toggle {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .mobile-nested-toggle i {
        font-size: 11px;
    }

    .mobile-nested-submenu li a {
        padding: 12px 16px 12px 56px;
        font-size: 13px;
    }

    .mobile-nested-submenu .mobile-submenu-subheading {
        padding: 10px 16px 6px 56px;
        font-size: 9px;
    }

    .mobile-menu-footer {
        padding: 16px;
    }

    .mobile-footer-link {
        padding: 12px 10px;
        font-size: 13px;
    }

    .mobile-social-links a {
        width: 40px;
        height: 40px;
    }

    .cart-count {
        top: 2px;
        right: 2px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }

    /* Mini Cart Mobile */
    .mini-cart-dropdown {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        border-radius: 0;
        transform: none;
        transition: right 0.3s ease;
    }

    .mini-cart-dropdown::before {
        display: none;
    }

    .mini-cart-dropdown.is-active {
        right: 0;
        transform: none;
    }

    .mini-cart-content {
        max-height: calc(100vh - 180px);
    }
}

/* ========================================
   USP TRUST BAR
======================================== */
.header-usp-bar {
    background: var(--tekden-primary);
    color: var(--tekden-white);
    padding: 8px 0;
    overflow: hidden;
}

.usp-scroll-wrapper {
    overflow: hidden;
}

.usp-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.usp-item i {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .usp-list {
        gap: 24px;
    }

    .usp-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-usp-bar {
        padding: 6px 0;
    }

    .usp-list {
        gap: 16px;
    }

    .usp-item {
        font-size: 11px;
    }

    .usp-item:nth-child(n+3) {
        display: none;
    }
}

/* Hide USP bar on scroll */
.tekden-header.is-scrolled .header-usp-bar {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}

/* Email responsive handled in main mobile breakpoints above */

/* ========================================
   HIGHLIGHTED NAV ITEM (Golf Dens)
======================================== */
.nav-item-highlight .nav-link {
    background: linear-gradient(135deg, var(--tekden-primary) 0%, var(--tekden-primary-dark) 100%);
    color: var(--tekden-white);
    border-radius: 6px;
    padding: 10px 18px;
}

.nav-item-highlight .nav-link:hover {
    color: var(--tekden-white);
    background: linear-gradient(135deg, var(--tekden-primary-dark) 0%, #006b68 100%);
}

.nav-item-highlight .nav-link .nav-icon {
    margin-right: 4px;
}

/* ===== TURNKEY DENS - Featured Item ===== */
.mobile-nav-highlight {
    background: var(--tekden-primary);
    border-radius: 8px;
    margin: 8px 0 !important;
    border: none !important;
}

.mobile-nav-highlight > a {
    color: var(--tekden-white) !important;
    font-weight: 600;
    padding: 14px 16px !important;
}

.mobile-nav-highlight > a i {
    color: var(--tekden-white) !important;
}

.mobile-nav-highlight .mobile-submenu-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: var(--tekden-white);
}

.mobile-nav-highlight .mobile-submenu-toggle:hover,
.mobile-nav-highlight.is-open .mobile-submenu-toggle {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav-highlight .mobile-submenu {
    margin: 0;
    border-radius: 0 0 8px 8px;
}

/* ===== GOLF - Secondary Featured Item ===== */
.mobile-nav-golf {
    background: rgba(6, 165, 161, 0.06);
    border-radius: 8px;
    margin: 4px 0 !important;
    border: 1px solid rgba(6, 165, 161, 0.12) !important;
}

.mobile-nav-golf > a {
    color: var(--tekden-primary);
    font-size: 15px;
    font-weight: 600;
}

.mobile-nav-golf > a i {
    color: var(--tekden-primary);
}

.mobile-nav-golf .mobile-submenu {
    margin: 0;
    border-radius: 0 0 8px 8px;
}

/* ========================================
   MEGA MENU DESCRIPTIONS
======================================== */
.mega-menu-heading a {
    color: var(--tekden-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mega-menu-heading a:hover {
    color: var(--tekden-primary-dark);
}

.mega-menu-desc {
    font-size: 12px;
    color: var(--tekden-text);
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.8;
}

/* View All Links */
.mega-menu-list a.view-all {
    color: var(--tekden-primary);
    font-weight: 500;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--tekden-lighter-gray);
}

.mega-menu-list a.view-all:hover {
    color: var(--tekden-primary-dark);
}

/* ========================================
   MEGA MENU PROMO CARD
======================================== */
.mega-menu-promo {
    border-left: 1px solid var(--tekden-lighter-gray);
    padding-left: 32px;
}

.promo-card {
    background: linear-gradient(135deg, var(--tekden-lighter-gray) 0%, #e8e8e8 100%);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card-alt {
    background: linear-gradient(135deg, #f0faf9 0%, #e6f5f4 100%);
}

.promo-badge {
    display: inline-block;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.promo-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tekden-black);
    margin-bottom: 8px;
}

.promo-card p {
    font-size: 13px;
    color: var(--tekden-text);
    margin-bottom: 16px;
    flex: 1;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.promo-btn:hover,
.promo-btn:focus,
.promo-btn:active {
    background: var(--tekden-primary-dark);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Narrow Mega Menu (for smaller categories) */
.mega-menu.mega-menu-narrow {
    width: 700px;
}

.mega-menu-narrow .mega-menu-inner {
    grid-template-columns: repeat(3, 1fr);
}

/* ========================================
   TABBED MEGA MENU (Turnkey Dens)
======================================== */
.tabbed-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 850px;
    background: var(--tekden-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 1000;
    overflow: hidden;
}

.nav-item.has-tabbed-mega:hover .tabbed-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tabbed-mega-inner {
    display: flex;
    min-height: 320px;
}

/* Sidebar with tabs */
.tabbed-mega-sidebar {
    width: 180px;
    background: #f8f9fa;
    padding: 20px 0;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: var(--tekden-dark-gray);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.tab-btn i {
    font-size: 16px;
    opacity: 0.6;
    width: 20px;
    text-align: center;
}

.tab-btn:hover {
    background: rgba(6, 165, 161, 0.08);
    color: var(--tekden-primary);
}

.tab-btn:hover i {
    opacity: 1;
}

.tab-btn.is-active {
    background: var(--tekden-white);
    color: var(--tekden-primary);
    border-left-color: var(--tekden-primary);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
}

.tab-btn.is-active i {
    opacity: 1;
}

/* ===== TAB COMING SOON BADGE ===== */
.tab-btn-coming-soon {
    position: relative;
}

.tab-coming-soon-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FFD200 0%, #FFB800 100%);
    color: #333;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ===== COMING SOON TAB CONTENT ===== */
.tab-content-coming-soon {
    display: none;
}

.tab-content-coming-soon.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.coming-soon-content {
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(6, 165, 161, 0.1) 0%, rgba(6, 165, 161, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon i {
    font-size: 32px;
    color: var(--tekden-primary);
}

.coming-soon-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tekden-dark-gray);
    margin: 0 0 8px 0;
}

.coming-soon-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FFD200 0%, #FFB800 100%);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 0 16px 0;
}

.coming-soon-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px 0;
}

.coming-soon-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.coming-soon-cta:hover,
.coming-soon-cta:focus,
.coming-soon-cta:active {
    background: var(--tekden-primary-dark);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.3);
}

.coming-soon-cta i {
    font-size: 14px;
}

/* Content area */
.tabbed-mega-content {
    flex: 1;
    padding: 24px 28px;
    position: relative;
}

/* Tab content - hidden by default */
.tab-content {
    display: none;
}

/* Show active tab content - high specificity to ensure visibility */
.tabbed-mega-menu .tabbed-mega-content .tab-content.is-active {
    display: block !important;
}

/* Tab transition animation - applied via JS on tab switch only */
.tab-content.is-switching {
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 30px;
}

/* Product columns */
.tab-column {
    padding-right: 20px;
}

.tab-column-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tekden-primary);
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

.tab-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-product-list li {
    margin-bottom: 8px;
}

.tab-product-list li a {
    display: block;
    padding: 8px 0;
    color: var(--tekden-dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tab-product-list li a:hover {
    color: var(--tekden-primary);
    padding-left: 8px;
}

/* Tab Content List (used in newer mega menus) */
.tab-content-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-content-list li {
    margin-bottom: 6px;
}

.tab-content-list li a {
    display: block;
    padding: 8px 0;
    color: var(--tekden-dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tab-content-list li a:hover {
    color: var(--tekden-primary);
    padding-left: 8px;
}

/* Tab Content Heading */
.tab-content-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tekden-primary);
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tekden-primary);
}

/* Tab Content Column */
.tab-content-column {
    padding-right: 20px;
}

/* Featured image area */
.tab-featured {
    display: flex;
    align-items: flex-start;
}

.tab-featured-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.tab-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s ease-in-out;
}

/* Actions row */
.tab-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--tekden-primary);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.tab-cta-btn:hover,
.tab-cta-btn:focus,
.tab-cta-btn:active {
    background: var(--tekden-primary-dark);
    color: var(--tekden-white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 165, 161, 0.3);
}

.tab-view-all {
    color: var(--tekden-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.tab-view-all:hover {
    color: var(--tekden-primary-dark);
    text-decoration: underline;
}

/* Golf Mega Menu - Wider for 5 tabs */
.tabbed-mega-golf {
    width: 920px;
}

.tabbed-mega-golf .tabbed-mega-sidebar {
    width: 200px;
}

.tabbed-mega-golf .tab-btn {
    padding: 14px 18px;
    font-size: 14px;
}

.tabbed-mega-golf .tab-btn i {
    font-size: 14px;
    width: 18px;
}

/* Gaming Mega Menu - Same width as Golf */
.tabbed-mega-gaming {
    width: 920px;
}

.tabbed-mega-gaming .tabbed-mega-sidebar {
    width: 200px;
}

.tabbed-mega-gaming .tab-btn {
    padding: 14px 18px;
    font-size: 14px;
}

.tabbed-mega-gaming .tab-btn i {
    font-size: 14px;
    width: 18px;
}

/* Cinema Mega Menu - Same width as Golf/Gaming */
.tabbed-mega-cinema {
    width: 920px;
}

.tabbed-mega-cinema .tabbed-mega-sidebar {
    width: 200px;
}

.tabbed-mega-cinema .tab-btn {
    padding: 14px 18px;
    font-size: 14px;
}

.tabbed-mega-cinema .tab-btn i {
    font-size: 14px;
    width: 18px;
}

/* Furniture Mega Menu - Same width as Golf/Gaming/Cinema */
.tabbed-mega-furniture {
    width: 920px;
}

.tabbed-mega-furniture .tabbed-mega-sidebar {
    width: 200px;
}

.tabbed-mega-furniture .tab-btn {
    padding: 14px 18px;
    font-size: 14px;
}

.tabbed-mega-furniture .tab-btn i {
    font-size: 14px;
    width: 18px;
}

/* Tab description text */
.tab-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--tekden-text);
    margin-bottom: 12px;
}

/* Brands Mega Menu - Same width as Golf/Gaming/Cinema/Furniture */
.tabbed-mega-brands {
    width: 920px;
}

.tabbed-mega-brands .tabbed-mega-sidebar {
    width: 200px;
}

.tabbed-mega-brands .tab-btn {
    padding: 14px 18px;
    font-size: 14px;
}

.tabbed-mega-brands .tab-btn i {
    font-size: 14px;
    width: 18px;
}

/* 2-column content grid for Brands */
.tab-content-2col {
    grid-template-columns: 1fr 200px;
    gap: 24px;
}

.tab-content-2col .tab-featured-image {
    width: 200px;
    height: auto;
    min-height: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
}

.tab-content-2col .tab-featured-image img {
    object-fit: contain;
    max-height: 200px;
    width: 100%;
    height: auto;
}

/* 3-column content grid for Golf */
.tab-content-3col {
    grid-template-columns: 1fr 1fr 180px;
}

/* Dropdown menu wide variant */
.dropdown-menu.dropdown-menu-wide {
    min-width: 220px;
}

.dropdown-menu-wide li a {
    padding: 12px 20px;
}

/* ========================================
   DROPDOWN MENU DESCRIPTIONS
======================================== */
.dropdown-menu li a {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-menu li a strong {
    color: var(--tekden-dark-gray);
    font-weight: 600;
}

.dropdown-desc {
    font-size: 12px;
    color: var(--tekden-text);
    opacity: 0.7;
    font-weight: 400;
}

.dropdown-menu li a:hover strong {
    color: var(--tekden-primary);
}

/* ========================================
   SEARCH SUGGESTIONS
======================================== */
.search-suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--tekden-lighter-gray);
}

.suggestions-label {
    font-size: 12px;
    color: var(--tekden-text);
    font-weight: 500;
}

.search-suggestions a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--tekden-lighter-gray);
    color: var(--tekden-dark-gray);
    text-decoration: none;
    font-size: 12px;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.search-suggestions a:hover {
    background: var(--tekden-primary);
    color: var(--tekden-white);
}

/* ========================================
   VISUALLY HIDDEN (Accessibility)
======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tekden-header.is-scrolled .header-main {
    animation: fadeInDown 0.3s ease;
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .tekden-header {
        position: relative;
    }

    .header-usp-bar,
    .header-top-bar,
    .header-search,
    .mobile-menu-toggle {
        display: none;
    }
}

/* ========================================
   FOOTER STYLES
   ========================================
   Matches the header design language
   ======================================== */

/* ========================================
   NEWSLETTER SECTION
======================================== */
.footer-newsletter {
    background: linear-gradient(135deg, var(--tekden-primary) 0%, var(--tekden-primary-dark) 100%);
    padding: 48px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--tekden-white);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--tekden-dark-gray);
    transition: all var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--tekden-gold);
    background: var(--tekden-white);
}

.newsletter-form input::placeholder {
    color: var(--tekden-light-gray);
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--tekden-primary);
    background: var(--tekden-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--tekden-gold);
    color: var(--tekden-black);
    transform: translateY(-2px);
}

.btn-subscribe i {
    font-size: 12px;
}

/* ========================================
   MAIN FOOTER
======================================== */
.footer-main {
    background: var(--tekden-black);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Footer Column */
.footer-column {
    min-width: 0;
}

/* Brand Column */
.footer-brand {
    padding-right: 24px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Partnership Text */
.footer-partnership-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tekden-primary);
    margin-bottom: 12px;
}

/* Family Brand Logos */
.footer-family-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-family-logos a {
    display: inline-block;
    transition: all var(--transition-fast);
}

.footer-family-logos a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-family-logos img {
    height: 45px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item i {
    width: 16px;
    color: var(--tekden-primary);
    font-size: 14px;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--tekden-primary);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--tekden-white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--tekden-primary);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tekden-white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tekden-primary);
}

.footer-heading-secondary {
    margin-top: 28px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--tekden-primary);
    padding-left: 6px;
}

.footer-links a.view-all {
    color: var(--tekden-primary);
    font-weight: 500;
    margin-top: 8px;
}

.footer-links a.view-all:hover {
    color: var(--tekden-primary-light);
}

/* Brands Links - Inline */
.footer-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-brands li {
    margin-bottom: 0;
}

/* ========================================
   TRUST BAR
======================================== */
.footer-trust {
    background: #1a1a1a;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: var(--tekden-primary);
    font-size: 18px;
}

/* ========================================
   BOTTOM BAR
======================================== */
.footer-bottom {
    background: var(--tekden-black);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-copyright p:first-child {
    margin-bottom: 4px;
}

.footer-company {
    font-size: 12px !important;
}

.footer-company a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-company a:hover {
    color: var(--tekden-primary);
}

/* Payment Icons */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payments-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--tekden-white);
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--tekden-primary);
    color: var(--tekden-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    z-index: 999;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--tekden-primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER RESPONSIVE - TABLET
======================================== */
@media (max-width: 991px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text {
        margin-bottom: 8px;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-item {
        margin-bottom: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-family-logos {
        justify-content: center;
    }

    .trust-items {
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-payments {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   FOOTER RESPONSIVE - MOBILE (Two Columns)
======================================== */
@media (max-width: 575px) {
    .footer-newsletter {
        padding: 36px 0;
    }

    .newsletter-text h2 {
        font-size: 24px;
    }

    .newsletter-text p {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 40px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    /* Brand section spans both columns */
    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .contact-item {
        justify-content: center;
    }

    /* Link columns - each takes one column */
    .footer-column:not(.footer-brand) {
        grid-column: span 1;
    }

    .footer-heading {
        text-align: left;
        font-size: 13px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .footer-heading-secondary {
        margin-top: 20px;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-brands {
        justify-content: flex-start;
        gap: 6px 12px;
    }

    .footer-family-logos {
        justify-content: center;
    }

    .trust-items {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   ABOUT & RESOURCES MEGA MENUS
   Styled to match tabbed mega menus (Golf, Gaming, etc.)
======================================== */

/* Responsive: hide Tools, About & Resources mega menus on mobile */
@media (max-width: 991px) {
    .mega-menu-tools,
    .mega-menu-about,
    .mega-menu-resources {
        display: none !important;
    }
}

/* ========================================
   FOOTER PRINT STYLES
======================================== */
@media print {
    .footer-newsletter,
    .footer-social,
    .footer-trust,
    .back-to-top {
        display: none;
    }

    .footer-main {
        background: none;
        color: black;
    }

    .footer-heading,
    .footer-links a {
        color: black !important;
    }
}


/* Native theme compatibility */
body.tekden-native-theme { padding-top: 143px !important; }
body.tekden-native-theme .td-main { background: #fafafa; }
body.admin-bar .tekden-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .tekden-header { top: 46px; } }
@media (max-width: 991px) {
    body.tekden-native-theme { padding-top: 144px !important; }
}
@media screen and (max-width: 782px) {
    body.admin-bar.tekden-native-theme { padding-top: 190px !important; }
}

body.tekden-native-theme :where(
    .header-cta-btn,
    .featured-btn,
    .den-preview-btn,
    .about-showroom-button,
    .dens-promo-btn,
    .dens-promo-btn-outline,
    .promo-btn,
    .coming-soon-cta,
    .tab-cta-btn,
    .mini-cart-btn,
    .mobile-configurator-btn,
    .mobile-menu-search button,
    .btn-subscribe
) {
    border-radius: var(--td-button-radius, 10px) !important;
}

body.tekden-native-theme :where(
    .featured-box,
    .dens-preview-section,
    .promo-card,
    .mini-cart-dropdown
) {
    border-radius: var(--td-card-radius, 10px);
}

/* Mobile menu refresh */
@media (max-width: 991px) {
    .mobile-menu-overlay {
        background: rgba(9, 15, 14, 0.48);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 10000;
    }

    .mobile-menu-sidebar {
        top: 0;
        left: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        background: #f7faf9;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 10001;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(calc(-100% - 40px), 0, 0);
        transition: transform 260ms ease, opacity 180ms ease, visibility 0s linear 260ms;
    }

    .mobile-menu-sidebar.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition: transform 260ms ease, opacity 180ms ease, visibility 0s linear 0s;
    }

    .mobile-menu-header {
        min-height: 64px;
        padding: 14px;
        background: #0f1513;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-logo-link {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        max-width: min(48vw, 180px);
    }

    .mobile-logo {
        display: block;
        width: auto !important;
        height: auto !important;
        max-width: min(48vw, 180px) !important;
        max-height: 34px !important;
        object-fit: contain;
        object-position: left center;
        aspect-ratio: auto;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #fff;
        border-radius: 10px;
        box-shadow: none;
    }

    .mobile-menu-close::after {
        content: none;
    }

    .mobile-menu-close:hover,
    .mobile-menu-close:focus-visible,
    .mobile-menu-close:active {
        background: var(--tekden-primary);
        transform: none;
        box-shadow: none;
    }

    .mobile-menu-search {
        padding: 14px;
        background: #0f1513;
        border-bottom: 0;
    }

    .mobile-menu-search .dgwt-wcas-search-input,
    .mobile-menu-search input {
        height: 46px;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        border-radius: 12px !important;
        background: #fff !important;
        color: #101614 !important;
        font-size: 15px !important;
        font-weight: 650 !important;
    }

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 12px 14px 10px;
        background: #fff;
        border-bottom: 1px solid rgba(14, 38, 35, 0.08);
    }

    .mobile-menu-action {
        display: flex;
        min-width: 0;
        min-height: 64px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 10px 6px;
        color: #15201e;
        text-decoration: none;
        background: #f4fbfa;
        border: 1px solid rgba(6, 139, 132, 0.18);
        border-radius: 12px;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.1;
    }

    .mobile-menu-action i {
        color: var(--tekden-primary);
        font-size: 16px;
    }

    .mobile-menu-action:hover,
    .mobile-menu-action:focus-visible {
        color: #fff;
        background: var(--tekden-primary);
        border-color: var(--tekden-primary);
    }

    .mobile-menu-action:hover i,
    .mobile-menu-action:focus-visible i {
        color: #fff;
    }

    .mobile-nav {
        background: #f7faf9;
    }

    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 14px;
    }

    .mobile-nav-item {
        margin: 0;
        border: 1px solid rgba(14, 38, 35, 0.1);
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
    }

    .mobile-nav-item:last-child {
        border-bottom: 1px solid rgba(14, 38, 35, 0.1);
    }

    .mobile-nav-item > a {
        min-height: 52px;
        padding: 14px 50px 14px 14px;
        color: #111816;
        font-size: 15px;
        font-weight: 850;
        line-height: 1.15;
    }

    .mobile-nav-highlight {
        background: #eef9f7;
        border-color: rgba(6, 139, 132, 0.22);
    }

    .mobile-nav-highlight > a {
        color: #007c78 !important;
    }

    .mobile-submenu-toggle,
    .mobile-nested-toggle {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 1px solid rgba(14, 38, 35, 0.12);
        border-radius: 10px;
        color: #5f6a66;
    }

    .mobile-submenu-toggle:hover,
    .mobile-submenu-toggle:focus-visible,
    .mobile-submenu-toggle:active,
    .mobile-nested-toggle:hover,
    .mobile-nested-toggle:focus-visible,
    .mobile-nested-toggle:active {
        background: #eaf7f5;
        border-color: rgba(6, 139, 132, 0.24);
        color: var(--tekden-primary);
    }

    .mobile-nav-item.is-open > .mobile-submenu-toggle,
    .mobile-nested-item.is-open > .mobile-nested-toggle {
        background: var(--tekden-primary);
        border-color: var(--tekden-primary);
        color: #fff;
    }

    .mobile-nav-item.is-open .mobile-submenu-toggle i,
    .mobile-nested-item.is-open > .mobile-nested-toggle i {
        transform: rotate(45deg);
    }

    .mobile-submenu,
    .mobile-nested-submenu {
        background: #f8fbfa;
        border-top: 1px solid rgba(14, 38, 35, 0.08);
    }

    .mobile-submenu li a,
    .mobile-nested-submenu li a,
    .mobile-nested-item.has-nested-children > a,
    .mobile-coming-soon > a {
        background: transparent;
        color: #26312e;
        border-bottom: 1px solid rgba(14, 38, 35, 0.07);
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-submenu li a {
        padding: 12px 16px 12px 22px;
    }

    .mobile-nested-item.has-nested-children > a {
        padding: 13px 54px 13px 22px;
    }

    .mobile-nested-submenu li a {
        padding: 11px 16px 11px 32px;
    }

    .mobile-submenu li a:hover,
    .mobile-submenu li a:focus-visible,
    .mobile-submenu li a:active,
    .mobile-nested-submenu li a:hover,
    .mobile-nested-submenu li a:focus-visible,
    .mobile-nested-submenu li a:active {
        padding-left: 22px;
        color: var(--tekden-primary);
        background: rgba(6, 139, 132, 0.07);
    }

    .mobile-nested-submenu li a:hover,
    .mobile-nested-submenu li a:focus-visible,
    .mobile-nested-submenu li a:active {
        padding-left: 32px;
    }

    .mobile-submenu-subheading,
    .mobile-nested-submenu .mobile-submenu-subheading {
        padding: 14px 16px 7px 22px;
        background: transparent;
        border-bottom: 0;
        color: #007c78;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.08em;
    }

    .mobile-submenu-subheading a {
        color: inherit;
    }

    .mobile-submenu-cta {
        padding: 12px;
        background: transparent;
        border-top: 0;
    }

    .mobile-configurator-btn {
        min-height: 44px;
        border-radius: 10px !important;
        font-size: 14px;
        font-weight: 850;
    }

    .mobile-coming-soon > a {
        padding: 13px 112px 13px 22px;
        color: #5f6a66;
    }

    .coming-soon-badge {
        right: 12px;
        background: #f2f6f5;
        border: 1px solid rgba(14, 38, 35, 0.1);
        color: #5f6a66;
        border-radius: 999px;
    }

    .mobile-menu-footer {
        padding: 14px;
        background: #fff;
        border-top: 1px solid rgba(14, 38, 35, 0.08);
    }

    .mobile-footer-support {
        display: grid;
        gap: 2px;
        margin-bottom: 10px;
        padding: 12px;
        background: #f4fbfa;
        border: 1px solid rgba(6, 139, 132, 0.16);
        border-radius: 12px;
        color: #17211f;
    }

    .mobile-footer-eyebrow {
        color: var(--tekden-primary);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-footer-link {
        min-height: 42px;
        padding: 10px 2px;
        color: #17211f;
        border-bottom: 1px solid rgba(14, 38, 35, 0.08);
        font-size: 14px;
        font-weight: 800;
    }

    .mobile-footer-link i {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eef9f7;
        border-radius: 8px;
        color: var(--tekden-primary);
    }

    .mobile-social-links {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .mobile-social-links a {
        width: 38px;
        height: 38px;
        background: #f7faf9;
        border-color: rgba(14, 38, 35, 0.1);
        border-radius: 10px;
    }
}
