/**
 * 24H Pneus Custom Styles - Premium Modernization
 * Version: 2.1.0
 *
 * NOTE: Base typography, colors, and CSS variables are defined in styles.css :root
 * This file contains custom component overrides and 24H Pneus-specific styling
 */

/* ============================================
   PRELOADER - Tyre Animation
============================================ */
.preload-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preload-container.preload-done {
    opacity: 0;
    visibility: hidden;
}

.preload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preload-logo {
    position: relative;
}

.preload-logo img {
    height: 50px;
    width: auto;
    animation: preload-pulse 2s ease-in-out infinite;
}

.preload-tyre {
    width: 60px;
    height: 60px;
}

.preload-tyre svg {
    width: 100%;
    height: 100%;
}

.preload-tyre .tyre-spin {
    transform-origin: center;
    animation: tyre-rotate 1s linear infinite;
}

/* Preloader Animations */
@keyframes tyre-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preload-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   ADDITIONAL CSS VARIABLES (Extending styles.css :root)
============================================ */
:root {
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* ============================================
   MODERN TOP BAR
============================================ */
.tf-top-bar-modern {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1;
}

.tf-top-bar-modern .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}

.tf-top-bar-modern .topbar-left {
    flex-shrink: 0;
}

.tf-top-bar-modern .topbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tf-top-bar-modern .topbar-phone:hover {
    color: var(--primary);
}

.tf-top-bar-modern .topbar-phone svg {
    stroke: var(--primary);
}

.tf-top-bar-modern .topbar-center {
    flex: 1;
    text-align: center;
    overflow: hidden;
}

.tf-top-bar-modern .topbar-promo-slider {
    position: relative;
    height: 20px;
}

.tf-top-bar-modern .promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tf-top-bar-modern .promo-slide.active {
    opacity: 1;
}

.tf-top-bar-modern .promo-slide span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tf-top-bar-modern .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.tf-top-bar-modern .topbar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tf-top-bar-modern .topbar-link:hover {
    color: var(--primary);
}

.tf-top-bar-modern .topbar-lang select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.tf-top-bar-modern .topbar-lang select option {
    background: #1a1a2e;
    color: #fff;
}

/* Hide top bar on mobile */
@media (max-width: 767px) {
    .tf-top-bar-modern {
        display: none;
    }
}

/* ============================================
   MODERN HEADER
============================================ */
.header-modern {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.header-modern.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-modern .header-main {
    padding: 15px 0;
}

.header-modern .header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.mobile-menu-toggle .hamburger span {
    display: block;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger span:nth-child(1) {
    width: 100%;
}

.mobile-menu-toggle .hamburger span:nth-child(2) {
    width: 75%;
}

.mobile-menu-toggle .hamburger span:nth-child(3) {
    width: 50%;
}

.mobile-menu-toggle:hover .hamburger span {
    width: 100%;
    background: var(--primary);
}

/* Header Logo */
.header-modern .header-logo {
    flex-shrink: 0;
}

.header-modern .header-logo img {
    height: 45px;
    width: auto;
}

/* Header Search */
.header-modern .header-search {
    flex: 1;
    max-width: 500px;
}

.header-modern .search-form-modern {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header-modern .search-form-modern:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.header-modern .search-form-modern input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.header-modern .search-form-modern button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header-modern .search-form-modern button svg {
    stroke: #fff;
}

.header-modern .search-form-modern button:hover {
    background: #c53030;
}

/* Header Actions */
.header-modern .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-modern .header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.header-modern .header-action-btn:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.header-modern .header-action-btn svg {
    transition: stroke 0.2s ease;
}

.header-modern .header-action-btn:hover svg {
    stroke: var(--primary);
}

.header-modern .header-action-btn .action-text {
    font-size: 11px;
    font-weight: 500;
}

.header-modern .header-cart {
    position: relative;
}

.header-modern .cart-count {
    position: absolute;
    top: 2px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MODERN NAVIGATION BAR
============================================ */
.header-modern .header-nav {
    background: #fff;
    border-top: 1px solid #eee;
}

.header-modern .nav-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
}

/* Categories Dropdown */
.nav-categories {
    position: relative;
}

.nav-categories .categories-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-categories .categories-btn:hover {
    background: #c53030;
}

.nav-categories .categories-btn .chevron {
    transition: transform 0.3s ease;
}

.nav-categories:hover .categories-btn .chevron {
    transform: rotate(180deg);
}

.nav-categories .categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: 0 0 12px 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: 100;
    overflow: hidden;
}

.nav-categories:hover .categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-categories .categories-grid {
    padding: 15px;
}

.nav-categories .categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nav-categories .category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-categories .category-item:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.nav-categories .category-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-categories .category-item span {
    font-size: 13px;
    font-weight: 500;
}

.nav-categories .categories-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: #f5f5f5;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-categories .categories-all:hover {
    background: var(--primary);
    color: #fff;
}

.nav-categories .categories-all:hover svg {
    stroke: #fff;
}

/* Main Navigation */
.main-nav {
    flex: 1;
}

.main-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-menu > li > a {
    display: block;
    padding: 14px 18px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav .nav-menu > li > a:hover {
    color: var(--primary);
}

.main-nav .nav-menu > li > a:hover::after {
    width: calc(100% - 36px);
}

/* Current/Active Menu Item */
.main-nav .nav-menu > li.current-menu-item > a,
.main-nav .nav-menu > li.current_page_item > a,
.main-nav .nav-menu > li.current-menu-ancestor > a,
.main-nav .nav-menu > li.current-menu-parent > a,
.box-nav-ul .menu-item.current-menu-item > a,
.box-nav-ul .menu-item.current_page_item > a,
.box-nav-ul .menu-item.current-menu-ancestor > a,
.box-nav-ul .menu-item.current-menu-parent > a {
    color: var(--primary) !important;
    background: transparent !important;
    background-color: transparent !important;
}

.main-nav .nav-menu > li.current-menu-item > a::after,
.main-nav .nav-menu > li.current_page_item > a::after,
.main-nav .nav-menu > li.current-menu-ancestor > a::after,
.box-nav-ul .menu-item.current-menu-item > a::after,
.box-nav-ul .menu-item.current_page_item > a::after {
    width: calc(100% - 36px);
    background: var(--primary);
    display: block !important;
}

/* Remove any default browser/WordPress focus styles */
.main-nav .nav-menu > li > a:focus,
.main-nav .nav-menu > li > a:active,
.box-nav-ul .menu-item > a:focus,
.box-nav-ul .menu-item > a:active {
    outline: none;
    background: transparent !important;
    background-color: transparent !important;
}

/* Reset any unwanted menu item backgrounds */
.main-nav .nav-menu > li > a,
.box-nav-ul .menu-item > a {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure consistent hover state */
.main-nav .nav-menu > li > a:hover,
.box-nav-ul .menu-item > a:hover {
    color: var(--primary) !important;
    background: transparent !important;
}

/* Submenu */
.main-nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-nav .nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #1a1a2e;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.main-nav .nav-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary);
    padding-left: 25px;
}

/* Navigation Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 10px 0;
}

.nav-phone svg {
    stroke: var(--primary);
}

.nav-phone a {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-phone a:hover {
    color: var(--primary);
}

/* ============================================
   MODERN MOBILE MENU
============================================ */
.mobile-menu-modern {
    width: 320px !important;
    max-width: 85vw;
    border: none !important;
}

.mobile-menu-modern .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-modern .mobile-menu-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-modern .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-modern .mobile-menu-close:hover {
    background: var(--primary);
}

.mobile-menu-modern .mobile-menu-close:hover svg {
    stroke: #fff;
}

.mobile-menu-modern .mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Search */
.mobile-menu-modern .mobile-menu-search {
    margin-bottom: 20px;
}

.mobile-menu-modern .mobile-menu-search form {
    display: flex;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.mobile-menu-modern .mobile-menu-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
}

.mobile-menu-modern .mobile-menu-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-menu-modern .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-modern .mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu-modern .mobile-nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-modern .mobile-nav-item > a:hover {
    color: var(--primary);
}

.mobile-menu-modern .mobile-nav-item > a svg {
    transition: transform 0.3s ease;
}

.mobile-menu-modern .mobile-nav-item > a[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-menu-modern .mobile-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 20px;
}

.mobile-menu-modern .mobile-sub-menu li a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-modern .mobile-sub-menu li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Mobile Quick Links */
.mobile-menu-modern .mobile-menu-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu-modern .mobile-menu-quick a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-menu-modern .mobile-menu-quick a:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-modern .mobile-menu-quick a:hover svg {
    stroke: #fff;
}

/* Mobile Menu Footer */
.mobile-menu-modern .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.mobile-menu-modern .mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
}

.mobile-menu-modern .mobile-menu-phone svg {
    stroke: var(--primary);
}

.mobile-menu-modern .mobile-menu-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.mobile-menu-modern .mobile-menu-cta:hover {
    background: #c53030;
}

.mobile-menu-modern .mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-menu-modern .mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #666;
    transition: all 0.2s ease;
}

.mobile-menu-modern .mobile-menu-social a:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-modern .mobile-menu-social a:hover svg {
    fill: #fff;
    stroke: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Active State */
.mobile-menu-modern.active {
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE VISIBILITY HELPERS
============================================ */
@media (max-width: 575px) {
    .tf-xs-hidden {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .tf-sm-hidden {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .tf-md-hidden {
        display: none !important;
    }

    .header-modern .header-inner {
        gap: 15px;
    }

    .header-modern .header-logo img {
        height: 35px;
    }

    .header-modern .header-action-btn {
        padding: 8px;
    }

    .header-modern .header-action-btn .action-text {
        display: none;
    }
}

@media (min-width: 992px) {
    .tf-lg-hidden {
        display: none !important;
    }

    .tf-md-hidden-inverse {
        display: none !important;
    }
}

/* ============================================
   TYPOGRAPHY ENHANCEMENTS
============================================ */
.title {
    font-family: var(--font-heading), sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

/* ============================================
   LEGACY OVERRIDES (hide old header styles)
============================================ */
.tf-top-bar.bg_grey-7,
.header-default .main-header.line,
.header-default .header-bottom.line,
.offcanvas.canvas-mb:not(.mobile-menu-modern) {
    display: none !important;
}

/* Keep new header visible */
.header-modern,
.tf-top-bar-modern,
.mobile-menu-modern {
    display: block !important;
}

/* ============================================
   OLD COMPACT HEADER STYLES - DEPRECATED
============================================ */
/* Top Bar - Compact */
.tf-top-bar {
    padding: 3px 0 !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

.tf-top-bar * {
    font-size: 10px !important;
}

/* Main Header - Compact */
#header,
.header-default,
header.header-default {
    padding: 5px 0 !important;
}

#header .wrapper-header,
.header-default .wrapper-header,
.wrapper-header {
    min-height: 36px !important;
    height: 36px !important;
}

/* Logo - Smaller */
.logo img,
#header .logo img,
.header-default .logo img {
    max-height: 28px !important;
    height: 28px !important;
    width: auto !important;
}

/* Header Bottom - Compact Menu Bar */
.header-bottom {
    margin-top: 0 !important;
    padding: 5px 0 !important;
    border-top: 1px solid #eee !important;
    background: #fff !important;
}

/* Navigation Links - Smaller */
#header .box-nav-ul,
.header-default .box-nav-ul,
.box-nav-ul {
    gap: 12px !important;
}

#header .box-nav-ul .item-link,
.header-default .box-nav-ul .item-link,
.box-nav-ul .item-link,
.box-nav-ul > li > a {
    font-size: 11px !important;
    padding: 6px 0 !important;
    font-weight: 600 !important;
}

/* Categories Button - Smaller */
.categories-title,
.tf-list-categories .categories-title {
    height: 28px !important;
    padding: 0 10px !important;
    font-size: 10px !important;
}

/* Search Bar - FIX: Single box, compact */
.tf-form-search {
    position: relative !important;
}

.tf-form-search .search-box,
.tf-form-search form.search-box {
    display: flex !important;
    align-items: center !important;
    height: 30px !important;
    padding: 0 10px !important;
    background: #f5f5f5 !important;
    border: 1px solid #eee !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}

.tf-form-search .search-box input[type="text"],
.tf-form-search input#s {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    font-size: 11px !important;
    padding: 0 8px !important;
    height: 100% !important;
    outline: none !important;
    box-shadow: none !important;
}

.tf-form-search .search-box button,
.tf-form-search button.tf-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.tf-form-search button i {
    font-size: 14px !important;
    color: #666 !important;
}

.tf-form-search .search-suggests-results {
    display: none !important;
}

/* Nav Icons - Smaller */
#header .nav-icon .nav-icon-item,
.nav-icon-item {
    padding: 3px !important;
}

#header .nav-icon .icon,
.nav-icon-item i {
    font-size: 16px !important;
}

#header .nav-icon .count-box,
.count-box {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    font-size: 8px !important;
    /* line-height: 14px !important; */
    top: -3px !important;
    right: -3px !important;
}

/* Phone - Compact */
.header-phone {
    display: none !important; /* Hide phone to save space */
}

/* Mobile Menu Toggle */
.tf-lg-hidden a {
    width: 32px !important;
    height: 32px !important;
}

/* Hide elements to save space on desktop */
@media (min-width: 992px) {
    #header .nav-icon .nav-icon-item .text {
        display: none !important;
    }
}

/* Mobile Header - Even More Compact */
@media (max-width: 991px) {
    .tf-top-bar {
        padding: 2px 0 !important;
        font-size: 9px !important;
    }

    #header,
    .header-default {
        padding: 4px 0 !important;
    }

    #header .wrapper-header,
    .wrapper-header {
        min-height: 32px !important;
        height: 32px !important;
    }

    .logo img {
        max-height: 24px !important;
        height: 24px !important;
    }

    .tf-form-search .search-box {
        height: 26px !important;
    }
}

/* ============================================
   DROPDOWN MENUS (Keep functional)
============================================ */
.sub-menu,
.menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.box-nav-ul > .menu-item:hover .sub-menu,
.box-nav-ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--secondary);
}

.sub-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

/* Categories Dropdown */
.list-categories-inner {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.tf-list-categories:hover .list-categories-inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tf-category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--secondary);
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.tf-category-link:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.tf-category-link .image img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

/* --- Mobile Menu & Offcanvas --- */
.offcanvas.canvas-mb {
    width: var(--mobile-menu-width);
    border-right: none;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mb-canvas-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mb-content-top {
    margin-bottom: 30px;
}

/* Mobile Links */
.nav-ul-mb {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-mb-item {
    border-bottom: 1px solid var(--border-color, #eee);
}

.mb-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.mb-menu-link:hover,
.mb-menu-link[aria-expanded="true"] {
    color: var(--menu-text-hover);
}

/* Mobile Submenu Toggle */
.btn-open-sub {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light, #f5f5f5);
    border-radius: 50%;
    transition: all var(--transition-medium);
    position: relative;
}

.btn-open-sub::before,
.btn-open-sub::after {
    content: '';
    position: absolute;
    background-color: var(--secondary);
    transition: transform var(--transition-medium);
}

.btn-open-sub::before {
    width: 10px;
    height: 2px;
}

.btn-open-sub::after {
    width: 2px;
    height: 10px;
}

.mb-menu-link[aria-expanded="true"] .btn-open-sub {
    background: var(--menu-text-hover);
    transform: rotate(180deg);
}

.mb-menu-link[aria-expanded="true"] .btn-open-sub::before,
.mb-menu-link[aria-expanded="true"] .btn-open-sub::after {
    background-color: #fff;
}

.mb-menu-link[aria-expanded="true"] .btn-open-sub::after {
    transform: rotate(90deg);
}

/* Mobile Submenu */
.sub-nav-menu {
    list-style: none;
    padding: 0 0 15px 15px;
    margin: 0;
    background: #fff;
    display: none;
    /* Controlled by Bootstrap collapse */
}

.collapse.show .sub-nav-menu {
    display: block;
}

.sub-nav-link {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light, #666);
    transition: all var(--transition-fast);
}

.sub-nav-link:hover {
    color: var(--menu-text-hover);
    padding-left: 5px;
}

/* Mobile Bottom Button */
.mb-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #eee);
}

/* Mobile Search */
.form-search {
    position: relative;
    margin-bottom: 20px;
}

.form-search .input-search {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.form-search .input-search:focus {
    border-color: var(--primary);
    outline: none;
}

.form-search .button-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
}

/* ============================================
   HERO SECTION & TYRE FINDER
============================================ */
.tf-hero-finder {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg-image {
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.tf-hero-finder:hover .hero-bg-image {
    transform: scale(1);
}

/* Old hero styles - scoped to .tf-hero-finder only */
.tf-hero-finder .hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.tf-hero-finder .hero-title {
    font-size: 56px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tf-hero-finder .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Glassmorphism Tyre Finder */
.hero-finder {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.finder-form label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.finder-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-body);
    color: var(--secondary);
    cursor: pointer;
    transition: border-color 0.3s;
}

.finder-form select:focus {
    border-color: var(--primary);
    outline: none;
}

.finder-btn {
    background: var(--primary);
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 28px;
    /* Align with inputs */
}

.finder-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* ============================================
   SECTIONS GENERAL
============================================ */
.flat-spacing-10 {
    padding: 5px 0;
}

.flat-title .title {
    font-size: 36px;
    margin-bottom: 15px;
}

.flat-title .sub-title {
    font-size: 16px;
    color: var(--text-light);
}

/* ============================================
   ADVANTAGES SECTION
============================================ */
.tf-avantages {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.avantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: background 0.3s;
}

.avantage-item:hover {
    background: var(--bg-light);
}

.avantage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.avantage-icon svg {
    width: 24px;
    height: 24px;
}

.avantage-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

/* ============================================
   SERVICES CARDS
============================================ */
.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-price strong {
    color: var(--primary);
    font-size: 18px;
}

/* ============================================
   POPULAR CATEGORIES
============================================ */
.popular-category-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.popular-category-card:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category-icon img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ============================================
   BRANDS MARQUEE
============================================ */
.brand-card-link {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s;
    padding: 20px;
    display: block;
    text-align: center;
}

.brand-card-link:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-item.style-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: none;
    position: relative;
}

.testimonial-item .rating {
    color: #FFB800;
    margin-bottom: 20px;
}

.testimonial-item .text {
    font-size: 16px;
    color: var(--secondary);
    font-style: normal;
    font-weight: 500;
}

.testimonial-item .author .name {
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background-color: var(--secondary);
    color: #fff;
    padding-top: 80px;
}

.footer-heading h6 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-menu_item,
.footer-menu_item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.footer-menu_item a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

/* ============================================
   BUTTON OVERRIDES (Extending styles.css .tf-btn)
============================================ */
.tf-btn {
    border-radius: 8px;
    font-family: var(--font-heading), sans-serif;
    letter-spacing: 0.5px;
}

.tf-btn.btn-fill {
    background: var(--primary);
    border-color: var(--primary);
}

.tf-btn.btn-fill:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.tf-btn.btn-line:hover {
    background: var(--secondary);
}

/* ============================================
   PREMIUM HOMEPAGE SECTIONS - v2.0
   Modern, Mobile-First Design System
============================================ */

/* ============================================
   SECTION HEADERS (Consistent across all sections)
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: #fff;
}

.section-header-light .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   HERO SECTION - Premium Design
============================================ */
.tf-hero-finder {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transform: scale(1.05);
    transition: transform 20s ease-out;
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.tf-hero-finder .container {
    position: relative;
    z-index: 10;
}

/* Old hero grid - scoped to .tf-hero-finder only */
.tf-hero-finder .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 0 80px;
    align-items: center;
}

@media (min-width: 992px) {
    .tf-hero-finder .hero-content {
        grid-template-columns: 1fr 480px;
        gap: 60px;
        padding: 100px 0;
    }
}

/* Hero Text */
.tf-hero-finder .hero-text {
    color: #fff;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.hero-badge-top svg {
    fill: #FFD700;
    stroke: none;
}

/* Scoped to .tf-hero-finder */
.tf-hero-finder .hero-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tf-hero-finder .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Hero Badges - scoped to .tf-hero-finder */
.tf-hero-finder .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tf-hero-finder .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.tf-hero-finder .hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tf-hero-finder .hero-badge .badge-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

/* Hero Trust Rating */
.hero-trust {
    margin-top: 20px;
}

.trust-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
}

.trust-rating .stars {
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.rating-text strong {
    color: #fff;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s infinite;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   TYRE FINDER CARD - Premium Glass Design
============================================ */
.hero-finder {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.tyre-finder-wrap {
    width: 100%;
}

.tyre-finder-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.finder-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.finder-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 5px;
}

.finder-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Finder Form */
.tyre-finder-form .finder-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .tyre-finder-form .finder-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-finder .tyre-finder-form .finder-row {
        grid-template-columns: 1fr;
    }
}

.finder-col label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.finder-col .label-text {
    font-family: var(--font-heading), sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finder-col .label-hint {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

.finder-col select,
.tf-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 14px;
    font-family: var(--font-body), sans-serif;
    font-size: 15px;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.finder-col select:hover,
.tf-select:hover {
    border-color: var(--text-light);
}

.finder-col select:focus,
.tf-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.finder-col select:disabled,
.tf-select:disabled {
    background-color: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Finder Submit Button */
#tyre-finder-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#tyre-finder-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
}

#tyre-finder-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Finder Options (Runflat) */
.finder-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.finder-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--secondary);
}

.finder-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.finder-checkbox .checkbox-hint {
    color: var(--text-light);
    font-size: 12px;
}

/* Finder Product Count */
.finder-count {
    margin-top: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(49, 165, 109, 0.1) 0%, rgba(49, 165, 109, 0.05) 100%);
    border-radius: 10px;
    text-align: center;
}

.finder-count .count-number {
    font-family: var(--font-heading), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.finder-count .count-text {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 5px;
}

/* Finder Helper Link */
.finder-helper {
    margin-top: 20px;
    text-align: center;
}

.helper-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.helper-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Visual Guide (collapsed by default on finder card - except hero) */
.tf-hero-premium .finder-visual-guide {
    display: none;
}

/* ============================================
   AVANTAGES SECTION - Premium Grid
============================================ */
.tf-avantages {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .avantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .avantages-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
}

.avantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.avantage-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
}

.avantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
    border-radius: 50%;
    margin-bottom: 15px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.avantage-item:hover .avantage-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.avantage-content h4 {
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 5px;
}

.avantage-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SERVICES SECTION - Premium Cards
============================================ */
.tf-services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-icon {
    color: var(--secondary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon {
    color: #fff;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 15px;
    line-height: 1.5;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.service-price .price-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price .price-value {
    font-family: var(--font-heading), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.service-price .price-value small {
    font-size: 14px;
    font-weight: 500;
}

.service-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--primary);
    color: #fff;
}

/* Services CTA */
.services-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.btn-cta.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-cta.btn-secondary {
    background: #fff;
    color: var(--secondary);
    border: 2px solid var(--border-color);
}

.btn-cta.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: #fff;
}

.btn-cta.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-cta.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-cta.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.btn-outline-light:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
}

/* ============================================
   POPULAR CATEGORIES SECTION
============================================ */
.tf-popular-section {
    padding: 80px 0;
    background: #fff;
}

.popular-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .popular-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .popular-categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }
}

.popular-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popular-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.12);
}

.popular-card-accent {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.03) 100%);
}

.popular-card-accent:hover {
    background: #fff;
}

.popular-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.popular-card:hover .popular-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.popular-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 10px;
}

.popular-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
}

.popular-tag-hot {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
}

.popular-tag-special {
    background: linear-gradient(135deg, #31A56D 0%, #26855A 100%);
    color: #fff;
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.tf-products-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    color: var(--text-light);
}

/* ============================================
   BRANDS SECTION
============================================ */
.tf-brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d0d0d 100%);
}

.brands-carousel-wrapper {
    position: relative;
    padding: 30px 0;
}

.brands-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo {
    max-width: 120px;
    height: auto;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.tf-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.testimonials-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0 0 25px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
}

.author-location {
    font-size: 13px;
    color: var(--text-light);
}

.verified-badge {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #31A56D 0%, #26855A 100%);
    border-radius: 50%;
    color: #fff;
}

/* Swiper Navigation */
.swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.swiper-nav-prev {
    left: 0;
}

.swiper-nav-next {
    right: 0;
}

.swiper-pagination {
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge-item svg {
    color: var(--primary);
}

/* ============================================
   BLOG SECTION
============================================ */
.tf-blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-card-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-featured .blog-image-wrap {
    aspect-ratio: 16/9;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

.blog-card-featured .blog-title {
    font-size: 22px;
}

.blog-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 15px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: var(--primary-hover);
}

/* ============================================
   NEWSLETTER CTA SECTION
============================================ */
.tf-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d0d0d 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.cta-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.cta-form .form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.cta-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .form-disclaimer {
        justify-content: flex-start;
    }
}

/* ============================================
   TYRE SIZE MODAL
============================================ */
#tyre-size-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

#tyre-size-modal .modal-header {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 20px 30px;
}

#tyre-size-modal .modal-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
}

#tyre-size-modal .btn-close {
    filter: invert(1);
}

#tyre-size-modal .modal-body {
    padding: 30px;
}

.tyre-guide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .tyre-guide {
        grid-template-columns: 1fr 1fr;
    }
}

.tyre-guide-image img {
    width: 100%;
    border-radius: 12px;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 15px;
}

.guide-number {
    min-width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
}

.guide-largeur { background: #E63946; }
.guide-hauteur { background: #2563EB; }
.guide-diametre { background: #059669; }
.guide-indices { background: #7C3AED; }

.guide-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.guide-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.tyre-location-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   AOS ANIMATION OVERRIDES
============================================ */
[data-aos] {
    pointer-events: auto !important;
}

/* ============================================
   RESPONSIVE FINE-TUNING
============================================ */
@media (max-width: 767px) {
    .tf-hero-finder {
        min-height: auto;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-finder {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .services-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .services-cta .btn-cta {
        justify-content: center;
    }

    .testimonials-wrapper {
        padding: 0 10px;
    }

    .swiper-nav {
        display: none;
    }
}

/* ============================================
   TYRE FINDER V2 - With Visual Guide
============================================ */
.tyre-finder-v2 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.finder-v2-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.finder-v2-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    color: #fff;
}

.finder-v2-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 4px;
}

.finder-v2-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.finder-v2-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .finder-v2-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Visual Tyre Guide */
.finder-v2-visual {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tyre-diagram {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tyre-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.tyre-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Finder V2 Form */
.finder-v2-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.finder-v2-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.finder-v2-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.finder-v2-field label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-indicator {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.field-label {
    font-family: var(--font-heading), sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-unit {
    font-size: 11px;
    color: var(--text-light);
    margin-left: auto;
}

/* Finder V2 Select - Fixed text alignment */
.finder-v2-select {
    width: 100%;
    height: 50px;
    padding: 0 45px 0 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-size: 14px;
    font-family: var(--font-body), sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: left;
    text-align-last: left;
    line-height: 50px;
}

.finder-v2-select:hover {
    border-color: var(--text-light);
}

.finder-v2-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.finder-v2-select:disabled {
    background-color: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

.finder-v2-select option {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--secondary);
    background: #fff;
}

/* Finder V2 Options (Runflat) */
.finder-v2-options {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.finder-v2-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.finder-v2-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.finder-v2-checkbox input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.finder-v2-checkbox input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

.checkbox-text small {
    color: var(--text-light);
    font-weight: 400;
    margin-left: 5px;
}

/* Finder V2 Submit Button */
.finder-v2-submit {
    width: 100%;
    height: 54px;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.finder-v2-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
}

.finder-v2-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Finder V2 Count */
.finder-v2-count {
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(49, 165, 109, 0.1) 0%, rgba(49, 165, 109, 0.05) 100%);
    border-radius: 10px;
    text-align: center;
}

.finder-v2-count .count-number {
    font-family: var(--font-heading), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.finder-v2-count .count-text {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 5px;
}

/* Finder V2 Tip */
.finder-v2-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

.finder-v2-tip svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Mobile adjustments for Finder V2 */
@media (max-width: 767px) {
    .tyre-finder-v2 {
        padding: 20px;
        border-radius: 16px;
    }

    .finder-v2-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .finder-v2-icon {
        width: 40px;
        height: 40px;
    }

    .finder-v2-title {
        font-size: 18px;
    }

    .tyre-diagram {
        padding: 15px;
    }
}

/* ============================================
   BRANDS GRID - All WooCommerce Marques
============================================ */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.brand-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-grid-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.brand-grid-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-grid-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-grid-item:hover .brand-grid-logo img {
    opacity: 1;
    filter: none;
}

.brand-grid-name {
    font-family: var(--font-heading), sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: color 0.3s ease;
}

.brand-grid-item:hover .brand-grid-name {
    color: #fff;
}

/* No logo fallback */
.brand-grid-logo .brand-initial {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.brand-grid-item:hover .brand-initial {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   BLOG FEATURED LAYOUT
============================================ */
.blog-featured-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 992px) {
    .blog-featured-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
}

/* Featured Article Card */
.blog-featured-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.blog-featured-card .blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-featured-card .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-featured-card .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.blog-featured-card .blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-featured-card .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-featured-card .blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-featured-card .blog-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px;
}

.blog-featured-card .blog-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured-card .blog-title a:hover {
    color: var(--primary);
}

.blog-featured-card .blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

.blog-featured-card .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-featured-card .blog-link:hover {
    gap: 15px;
    color: var(--primary-hover);
}

/* Side Articles */
.blog-side-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-side-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 15px;
}

.blog-side-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.blog-side-card .blog-image-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-side-card .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-side-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-side-card .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.blog-side-card .blog-category {
    position: static;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
    margin-bottom: 8px;
    width: fit-content;
}

.blog-side-card .blog-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.blog-side-card .blog-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-side-card .blog-title a:hover {
    color: var(--primary);
}

.blog-side-card .blog-meta {
    display: flex;
    gap: 10px;
    margin: 0;
}

.blog-side-card .blog-meta span {
    font-size: 11px;
    color: var(--text-light);
}

/* No posts message */
.no-posts-message {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-light);
    border-radius: 20px;
}

.no-posts-message p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Blog Section CTA */
.blog-section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   PREMIUM DESIGN SYSTEM v3.0
   Clean automotive style (blue, metallic grey, black, yellow accents)
============================================ */

/* Color Palette Extension */
:root {
    --automotive-blue: #1E3A5F;
    --automotive-blue-light: #2A4A6F;
    --metallic-grey: #4A5568;
    --metallic-grey-light: #718096;
    --carbon-black: #1A1A2E;
    --accent-yellow: #FFD700;
    --accent-yellow-dark: #E6C200;
    --gradient-premium: linear-gradient(135deg, var(--automotive-blue) 0%, var(--carbon-black) 100%);
    --gradient-cta: linear-gradient(135deg, var(--primary) 0%, #c53030 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO SECTION PREMIUM - COMPACT FOR ABOVE FOLD
============================================ */
.tf-hero-premium {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--carbon-black);
}

.tf-hero-premium .hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tf-hero-premium .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.tf-hero-premium .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(26, 26, 46, 0.9) 100%);
}

/* Hide animated shapes to save space */
.hero-shapes {
    display: none;
}

/* Hero Grid - Balanced */
.tf-hero-premium .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .tf-hero-premium .hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 50px;
        padding: 50px 0 60px;
    }
}

@media (min-width: 1200px) {
    .tf-hero-premium .hero-grid {
        grid-template-columns: 1fr 450px;
        padding: 60px 0 70px;
    }
}

/* Hero Content */
.tf-hero-premium .hero-content {
    color: #fff;
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--accent-yellow);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-trust-badge svg {
    fill: var(--accent-yellow);
}

.tf-hero-premium .hero-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
}

.tf-hero-premium .hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 500px;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* Feature Pills */
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.feature-pill svg {
    width: 16px;
    height: 16px;
}

.feature-pill-accent {
    background: rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.4);
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.rating-text strong {
    color: #fff;
    font-size: 15px;
}

.rating-count {
    color: var(--accent-yellow);
}

/* Finder Card */
.hero-finder-wrapper {
    position: relative;
}

.finder-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Finder Header */
.finder-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.finder-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #c53030 100%);
    border-radius: 12px;
    color: #fff;
}

.finder-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 4px;
}

.finder-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Visual Tyre Guide */
.finder-visual-guide {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.tyre-size-diagram {
    width: 100%;
    max-height: 80px;
}

/* Hero Scroll Indicator - hidden for compact above-fold layout */
.hero-scroll {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-scroll:hover {
    background: var(--primary);
    border-color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   AVANTAGES SECTION PREMIUM
============================================ */
.tf-avantages-premium {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.avantages-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .avantages-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .avantages-track {
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
    }
}

.avantage-card {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 1200px) {
    .avantage-card {
        border-radius: 0;
        box-shadow: none;
        border-right: 1px solid var(--border-color);
        padding: 30px 20px;
    }

    .avantage-card:first-child {
        border-radius: 20px 0 0 20px;
    }

    .avantage-card:last-child {
        border-radius: 0 20px 20px 0;
        border-right: none;
    }

    .avantages-track {
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow-medium);
    }
}

.avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

@media (min-width: 1200px) {
    .avantage-card:hover {
        border-radius: 16px;
    }
}

.avantage-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
    border-radius: 16px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.avantage-card:hover .avantage-icon-wrap {
    background: var(--gradient-cta);
    color: #fff;
    transform: scale(1.1);
}

.avantage-content h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 5px;
}

.avantage-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.avantage-card-highlight .avantage-icon-wrap {
    background: var(--gradient-cta);
    color: #fff;
}

/* ============================================
   SERVICES SECTION PREMIUM
============================================ */
.tf-services-premium {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 5px;
}

.section-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-header .section-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 15px;
    line-height: 1.2;
}

.section-header .section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header-light .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-header-light .section-title {
    color: #fff;
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Grid */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .services-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .services-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.service-card-premium {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--gradient-cta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-circle {
    background: var(--gradient-cta);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 10px;
}

.service-card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 20px;
    line-height: 1.5;
}

.service-card-price {
    margin-bottom: 15px;
}

.service-card-price .price-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.service-card-price .price-amount {
    font-family: var(--font-heading), sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.service-card-price .price-amount small {
    font-size: 14px;
    font-weight: 600;
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-card-arrow {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

/* Services CTA */
.services-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-premium,
.btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary-premium {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.btn-secondary-premium {
    background: var(--bg-light);
    color: var(--secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary-premium:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ============================================
   POPULAR SECTION PREMIUM
============================================ */
.tf-popular-premium {
    padding: 10px 0;
    background: var(--bg-light);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .popular-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }
}

.popular-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popular-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

.popular-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.popular-card-premium:hover .popular-card-icon {
    background: var(--gradient-cta);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.popular-card-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 12px;
}

.popular-card-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.popular-tag-hot {
    background: rgba(230, 57, 70, 0.15);
    color: var(--primary);
}

.popular-tag-popular {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.popular-tag-trend {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.popular-tag-special {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.popular-tag-default {
    background: var(--bg-light);
    color: var(--text-light);
}

/* ============================================
   PRODUCTS SECTION PREMIUM
============================================ */
.tf-products-premium {
    padding: 10px 0;
    background: #fff;
}

.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .products-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .products-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.products-empty {
    text-align: center;
    padding: 80px 30px;
    background: var(--bg-light);
    border-radius: 24px;
}

.products-empty svg {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.products-empty p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.section-cta {
    text-align: center;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

/* ============================================
   BRANDS SECTION PREMIUM
============================================ */
.tf-brands-premium {
    padding: 100px 0;
    background: var(--gradient-premium);
}

.brands-showcase {
    margin-bottom: 50px;
}

.brands-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .brands-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .brands-grid-premium {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1200px) {
    .brands-grid-premium {
        grid-template-columns: repeat(8, 1fr);
    }
}

.brand-card-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.brand-card-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.brand-logo-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-logo {
    max-width: 80px;
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-card-premium:hover .brand-logo {
    opacity: 1;
}

.brand-fallback {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-card-premium .brand-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.brand-card-premium:hover .brand-name {
    color: rgba(255, 255, 255, 0.8);
}

.brand-premium {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================
   TESTIMONIALS SECTION PREMIUM
============================================ */
.tf-testimonials-premium {
    padding: 100px 0;
    background: #fff;
}

.testimonials-container {
    position: relative;
    margin-bottom: 60px;
}

.testimonials-swiper {
    padding: 20px 10px 50px;
}

.testimonial-card-premium {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
}

.testimonial-card-premium:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cta);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary);
}

.author-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    color: #10B981;
}

/* Swiper Controls */
.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.swiper-btn-prev {
    left: -25px;
}

.swiper-btn-next {
    right: -25px;
}

@media (max-width: 1200px) {
    .swiper-btn {
        display: none;
    }
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 16px;
}

.trust-item svg {
    color: var(--primary);
}

.trust-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

/* ============================================
   BLOG SECTION PREMIUM
============================================ */
.tf-blog-premium {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .blog-grid-premium {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 30px;
    }
}

.blog-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.blog-card-image {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-card-featured .blog-card-image {
    aspect-ratio: 16/10;
}

.blog-card-side .blog-card-image {
    aspect-ratio: 16/9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-featured .blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-card-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

.blog-card-featured .blog-card-title {
    font-size: clamp(20px, 2.5vw, 26px);
}

.blog-card-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--primary-hover);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Tweaks - Mobile */
@media (max-width: 767px) {
    .tf-hero-premium .hero-grid {
        padding: 30px 0 40px;
        gap: 25px;
    }

    .finder-card {
        padding: 20px;
        border-radius: 16px;
    }

    .finder-header {
        display: none;
    }

    .tf-hero-premium .finder-visual-guide {
        display: none;
    }

    .tf-hero-premium .hero-title {
        font-size: 26px;
    }

    .tf-hero-premium .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-trust-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 15px;
    }

    .feature-pill {
        padding: 6px 10px;
        font-size: 11px;
    }

    .feature-pill svg {
        width: 14px;
        height: 14px;
    }

    .hero-rating {
        gap: 8px;
    }

    .rating-stars svg {
        width: 14px;
        height: 14px;
    }

    .rating-text {
        font-size: 12px;
    }

    .finder-card .finder-v2-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .finder-card .finder-v2-select {
        height: 44px;
        font-size: 14px;
    }

    .finder-card .finder-v2-submit {
        height: 48px;
        font-size: 14px;
    }

    .avantages-track {
        margin-top: 30px;
    }

    .tf-services-premium,
    .tf-popular-premium,
    .tf-products-premium,
    .tf-brands-premium,
    .tf-testimonials-premium,
    .tf-blog-premium {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-premium,
    .btn-secondary-premium,
    .btn-outline-premium,
    .btn-outline-light {
        justify-content: center;
    }
}

/* ============================================
   ADDITIONAL MISSING CSS FIXES
============================================ */

/* Container fix */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* Tyre Finder V2 integration in finder-card */
.finder-card .tyre-finder-v2 {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.finder-card .finder-v2-header {
    display: none;
}

.finder-card .finder-v2-content {
    grid-template-columns: 1fr;
}

.finder-card .finder-v2-visual {
    display: none;
}

.finder-card .finder-v2-inputs {
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.finder-card .finder-v2-field {
    margin-bottom: 0;
}

.finder-card .finder-v2-field label {
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.finder-card .finder-v2-field .field-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.finder-card .finder-v2-field .field-unit {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: auto;
}

.finder-card .finder-v2-select {
    padding: 12px 14px;
    font-size: 14px;
    height: 46px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.finder-card .finder-v2-select:focus {
    border-color: var(--primary);
    outline: none;
}

.finder-card .finder-v2-options {
    margin: 15px 0;
}

.finder-card .finder-v2-checkbox {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.finder-card .finder-v2-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.finder-card .finder-v2-submit {
    padding: 14px 24px;
    font-size: 15px;
    height: 52px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #c53030 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finder-card .finder-v2-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.finder-card .finder-v2-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.finder-card .finder-v2-tip {
    margin-top: 15px;
    padding: 12px;
    background: #f0f9ff;
    border-radius: 8px;
    font-size: 12px;
    color: #0369a1;
}

.finder-card .finder-v2-count {
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
    color: var(--text-light);
}

.finder-card .finder-v2-count .count-number {
    font-weight: 700;
    color: var(--primary);
}

/* AOS Animation Fallbacks */
[data-aos] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* WooCommerce Product Cards in Grid */
.products-grid-premium .product,
.products-grid-premium .type-product {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.products-grid-premium .product:hover,
.products-grid-premium .type-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.products-grid-premium .woocommerce-loop-product__link {
    display: block;
}

.products-grid-premium .attachment-woocommerce_thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 20px;
    background: var(--bg-light);
}

.products-grid-premium .woocommerce-loop-product__title {
    font-family: var(--font-heading), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    padding: 15px 20px 10px;
    margin: 0;
}

.products-grid-premium .price {
    display: block;
    padding: 0 20px 20px;
    font-family: var(--font-heading), sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.products-grid-premium .price del {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 8px;
}

.products-grid-premium .price ins {
    text-decoration: none;
}

.products-grid-premium .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.products-grid-premium .button,
.products-grid-premium .add_to_cart_button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.products-grid-premium .button:hover,
.products-grid-premium .add_to_cart_button:hover {
    background: var(--primary);
}

/* Swiper Carousel Fixes */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.testimonials-swiper .swiper-slide {
    padding: 10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Brand Card Hover Fix */
.brand-card-premium:hover .brand-fallback {
    color: #fff;
}

/* Blog Grid Layout Fix for 3 Columns */
@media (min-width: 992px) {
    .blog-grid-premium {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
    }

    .blog-grid-premium .blog-card-featured {
        grid-row: 1 / 3;
    }

    .blog-grid-premium .blog-card-side {
        grid-column: auto;
    }

    .blog-grid-premium .blog-card-side:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .blog-grid-premium .blog-card-side:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }
}

/* Featured Blog Card Full Height */
.blog-card-featured {
    display: flex;
    flex-direction: column;
}

.blog-card-featured .blog-card-image {
    flex: 1;
    min-height: 250px;
}

@media (min-width: 992px) {
    .blog-card-featured .blog-card-image {
        min-height: 300px;
        aspect-ratio: auto;
    }
}

/* Side Blog Cards */
.blog-card-side {
    display: flex;
    flex-direction: column;
}

.blog-card-side .blog-card-image {
    height: 180px;
}

.blog-card-side .blog-card-content {
    padding: 20px;
}

.blog-card-side .blog-card-title {
    font-size: 16px;
}

.blog-card-side .blog-card-excerpt {
    display: none;
}

/* Loading States */
.is-loading {
    position: relative;
    pointer-events: none;
}

.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Elements Enhancement */
select,
input[type="text"],
input[type="email"],
input[type="tel"] {
    font-family: var(--font-body), sans-serif;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fix for old section classes */
.tf-hero-finder {
    display: none;
}

/* Enhanced Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .tf-hero-premium,
    .hero-scroll,
    .swiper-btn,
    .swiper-pagination {
        display: none;
    }

    .section-header {
        break-after: avoid;
    }

    .service-card-premium,
    .popular-card-premium,
    .testimonial-card-premium,
    .blog-card-premium {
        break-inside: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-pill,
    .popular-card-tag,
    .blog-category {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-bg-image {
        animation: none;
    }

    .hero-shapes .shape {
        animation: none;
    }
}

/* Dark Mode Ready (for future) */
@media (prefers-color-scheme: dark) {
    /* Placeholder for dark mode styles */
}

/* ============================================
   MODERN SEARCH CANVAS - Minimal Clean
============================================ */
.canvas-search-modern {
    width: 420px !important;
    max-width: 100vw;
    background: #fff;
    border: none;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
}

.canvas-search-modern .search-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.canvas-search-modern .search-canvas-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.canvas-search-modern .search-canvas-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.canvas-search-modern .search-canvas-close:hover {
    background: #1a1a2e;
    color: #fff;
}

.canvas-search-modern .search-canvas-body {
    padding: 24px;
}

.canvas-search-modern .search-form-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.canvas-search-modern .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.2s ease;
}

.canvas-search-modern .search-input-wrapper:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
}

.canvas-search-modern .search-input-icon {
    flex-shrink: 0;
    color: #999;
    margin-right: 12px;
}

.canvas-search-modern .search-input-modern {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 15px;
    color: #333;
    outline: none;
}

.canvas-search-modern .search-input-modern::placeholder {
    color: #999;
}

.canvas-search-modern .search-input-clear {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.canvas-search-modern .search-input-clear:hover {
    background: #dc3545;
    color: #fff;
}

.canvas-search-modern .search-input-wrapper:focus-within .search-input-clear,
.canvas-search-modern .search-input-modern:not(:placeholder-shown) ~ .search-input-clear {
    display: flex;
}

.canvas-search-modern .search-submit-modern {
    padding: 14px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.canvas-search-modern .search-submit-modern:hover {
    background: #c62828;
    transform: translateY(-1px);
}

.canvas-search-modern .search-suggestions {
    margin-top: 28px;
}

.canvas-search-modern .search-suggestions-title {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.canvas-search-modern .search-suggestions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.canvas-search-modern .search-tag {
    display: inline-block;
    padding: 8px 14px;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.canvas-search-modern .search-tag:hover {
    background: var(--primary);
    color: #fff;
}

.canvas-search-modern .search-results-modern {
    margin-top: 24px;
}

/* ============================================
   MODERN AUTH MODALS - Minimal Clean
============================================ */
.modal-auth-modern .modal-dialog {
    max-width: 420px;
    margin: 1rem auto;
}

.modal-auth-modern .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 0;
}

.modal-auth-modern .modal-close-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-auth-modern .modal-close-modern:hover {
    background: #1a1a2e;
    color: #fff;
}

.modal-auth-modern .modal-auth-header {
    text-align: center;
    padding: 40px 32px 24px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.modal-auth-modern .modal-auth-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--primary);
}

.modal-auth-modern .modal-auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.modal-auth-modern .modal-auth-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.modal-auth-modern .modal-auth-body {
    padding: 32px;
}

.modal-auth-modern .auth-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-auth-modern .form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-auth-modern .form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-auth-modern .form-label-modern {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.modal-auth-modern .form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-auth-modern .form-link-modern {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
}

.modal-auth-modern .form-link-modern:hover {
    text-decoration: underline;
}

.modal-auth-modern .input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0 14px;
    transition: all 0.2s ease;
}

.modal-auth-modern .input-wrapper-modern:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
}

.modal-auth-modern .input-icon-modern {
    flex-shrink: 0;
    color: #999;
    margin-right: 10px;
}

.modal-auth-modern .form-input-modern {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 14px;
    color: #333;
    outline: none;
    min-width: 0;
}

.modal-auth-modern .form-input-modern::placeholder {
    color: #aaa;
}

.modal-auth-modern .password-toggle-modern {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
}

.modal-auth-modern .password-toggle-modern:hover {
    color: #333;
}

.modal-auth-modern .password-strength-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.modal-auth-modern .strength-bar-modern {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.modal-auth-modern .strength-bar-modern span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modal-auth-modern .strength-bar-modern.weak span {
    width: 33%;
    background: #dc3545;
}

.modal-auth-modern .strength-bar-modern.medium span {
    width: 66%;
    background: #ffc107;
}

.modal-auth-modern .strength-bar-modern.strong span {
    width: 100%;
    background: #28a745;
}

.modal-auth-modern .strength-text-modern {
    font-size: 11px;
    color: #999;
}

/* Checkbox Modern */
.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-modern input {
    display: none;
}

.checkbox-box-modern {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.checkbox-modern input:checked + .checkbox-box-modern {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-modern input:checked + .checkbox-box-modern::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label-modern {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.checkbox-label-modern a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label-modern a:hover {
    text-decoration: underline;
}

.modal-auth-modern .btn-auth-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.modal-auth-modern .btn-primary-modern {
    background: var(--primary);
    color: #fff;
}

.modal-auth-modern .btn-primary-modern:hover {
    background: #c62828;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.modal-auth-modern .modal-auth-footer {
    text-align: center;
    padding: 20px 32px 32px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.modal-auth-modern .auth-switch-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.modal-auth-modern .auth-switch-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.modal-auth-modern .auth-switch-link:hover {
    text-decoration: underline;
}

/* ============================================
   MODERN CART MODAL - Minimal Clean
============================================ */
.modal-cart-modern .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    max-width: 420px;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.modal-cart-modern.show .modal-dialog {
    transform: translateX(0);
}

.modal-cart-modern .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.modal-cart-modern .cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.modal-cart-modern .cart-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a2e;
}

.modal-cart-modern .cart-header-title h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.modal-cart-modern .cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.modal-cart-modern .cart-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.modal-cart-modern .cart-modal-close:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Shipping Progress */
.modal-cart-modern .cart-shipping-progress {
    padding: 16px 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.modal-cart-modern .progress-track {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: visible;
    position: relative;
}

.modal-cart-modern .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ff7043);
    border-radius: 3px;
    position: relative;
    transition: width 0.5s ease;
    min-width: 20px;
}

.modal-cart-modern .progress-truck {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-cart-modern .cart-shipping-progress.complete .progress-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.modal-cart-modern .cart-shipping-progress.complete .progress-truck {
    color: #28a745;
}

.modal-cart-modern .progress-message {
    font-size: 13px;
    color: #666;
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-cart-modern .progress-message strong {
    color: #333;
}

.modal-cart-modern .cart-shipping-progress.complete .progress-message {
    color: #28a745;
}

.modal-cart-modern .cart-shipping-progress.complete .progress-message strong {
    color: #28a745;
}

/* Cart Body */
.modal-cart-modern .cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Empty State */
.modal-cart-modern .cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    height: 100%;
}

.modal-cart-modern .empty-icon {
    color: #ddd;
    margin-bottom: 20px;
}

.modal-cart-modern .cart-empty-state h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.modal-cart-modern .cart-empty-state p {
    font-size: 14px;
    color: #999;
    margin: 0 0 24px;
}

.modal-cart-modern .btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-cart-modern .btn-shop-now:hover {
    background: #c62828;
    transform: translateY(-1px);
}

/* Cart Items */
.modal-cart-modern .cart-items-list {
    padding: 0;
}

.modal-cart-modern .cart-item-modern {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.modal-cart-modern .cart-item-modern:hover {
    background: #fafafa;
}

.modal-cart-modern .cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.modal-cart-modern .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-cart-modern .cart-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-cart-modern .cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal-cart-modern .cart-item-title:hover {
    color: var(--primary);
}

.modal-cart-modern .cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.modal-cart-modern .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* Quantity Selector */
.modal-cart-modern .quantity-selector-modern {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.modal-cart-modern .qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.modal-cart-modern .qty-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.modal-cart-modern .qty-input {
    width: 40px !important;
    height: 32px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    appearance: none !important;
    line-height: 32px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    border-radius: 0 !important;
}

/* Hide spinner buttons in qty-input */
.modal-cart-modern .qty-input::-webkit-outer-spin-button,
.modal-cart-modern .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-cart-modern .cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.modal-cart-modern .cart-item-remove:hover {
    background: #fee2e2;
    color: #dc3545;
}

/* Cart Footer */
.modal-cart-modern .cart-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.modal-cart-modern .cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.modal-cart-modern .subtotal-label {
    font-size: 14px;
    color: #666;
}

.modal-cart-modern .subtotal-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.modal-cart-modern .cart-note {
    font-size: 12px;
    color: #999;
    margin: 0 0 16px;
}

.modal-cart-modern .cart-terms {
    margin-bottom: 16px;
}

.modal-cart-modern .cart-buttons {
    display: flex;
    gap: 12px;
}

.modal-cart-modern .btn-cart-view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-cart-modern .btn-cart-view:hover {
    border-color: #333;
    background: #333;
    color: #fff;
}

.modal-cart-modern .btn-cart-checkout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-cart-modern .btn-cart-checkout:hover {
    background: #c62828;
    transform: translateY(-1px);
}

.modal-cart-modern .cart-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

.modal-cart-modern .cart-security svg {
    color: #28a745;
}

/* Modal Backdrop */
.modal-cart-modern.show ~ .modal-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 480px) {
    .canvas-search-modern {
        width: 100% !important;
    }

    .modal-auth-modern .modal-dialog {
        max-width: 100%;
        margin: 0;
        height: 100%;
    }

    .modal-auth-modern .modal-content {
        border-radius: 0;
        height: 100%;
    }

    .modal-auth-modern .form-row-modern {
        grid-template-columns: 1fr;
    }

    .modal-cart-modern .modal-dialog {
        max-width: 100%;
    }

    .modal-cart-modern .cart-item-image {
        width: 70px;
        height: 70px;
    }
}

/* Hide old modal styles */
.canvas-search:not(.canvas-search-modern),
.form-sign-in:not(.modal-auth-modern),
.modal-shopping-cart:not(.modal-cart-modern) {
    display: none !important;
}

/* ============================================
   HERO SPLIT - 50/50 Layout (Dark Premium)
============================================ */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a14;
    padding: 20px 0 20px;
}

/* Background Layer */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-layer .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 20, 0.95) 0%,
        rgba(10, 10, 20, 0.85) 50%,
        rgba(10, 10, 20, 0.7) 100%
    );
}

/* Split Wrapper */
.hero-split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Side - Text Content (50%) */
.hero-text-side {
    flex: 1;
    max-width: 50%;
}

/* Right Side - Finder (50%) */
.hero-finder-side {
    flex: 1;
    max-width: 50%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-badge .badge-icon {
    color: #FFD700;
}

.hero-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Title */
.hero-main-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-main-title .title-highlight {
    display: block;
    color: var(--primary);
    background: linear-gradient(135deg, #E63946 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-main-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Trust Grid - 2x2 */
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.hero-trust-grid .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-trust-grid .trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-trust-grid .trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 57, 53, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.hero-trust-grid .trust-icon svg {
    color: var(--primary);
}

.hero-trust-grid .trust-item span {
    color: #fff;
}

.hero-trust-grid .trust-item-accent {
    background: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.25);
}

/* Rating Bar */
.hero-rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-rating-bar .rating-stars {
    display: flex;
    gap: 2px;
}

.hero-rating-bar .rating-score {
    font-weight: 700;
    color: #FFD700;
}

.hero-rating-bar .rating-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   HERO FINDER CARD - Right Side
============================================ */
.finder-card-modern {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Card Header */
.finder-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.finder-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 12px;
    color: #fff;
}

.finder-card-titles {
    flex: 1;
}

.finder-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
}

.finder-card-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   VISUAL GUIDE WITH REAL IMAGE (Hero Split)
============================================ */
.hero-split .finder-visual-guide,
.hero-finder-side .finder-visual-guide {
    display: block !important;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
}

.visual-guide-image {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.visual-guide-image img {
    max-width: 100%;
    max-height: 160px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Guide Markers on Image */
.guide-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.guide-marker .marker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: markerPulse 2s ease-in-out infinite;
}

.guide-marker .marker-line {
    width: 30px;
    height: 2px;
}

.marker-largeur {
    top: 35%;
    left: 15%;
}
.marker-largeur .marker-dot { background: #E63946; }
.marker-largeur .marker-line { background: #E63946; }

.marker-hauteur {
    top: 50%;
    left: 20%;
}
.marker-hauteur .marker-dot { background: #3B82F6; }
.marker-hauteur .marker-line { background: #3B82F6; }

.marker-diametre {
    top: 65%;
    left: 15%;
}
.marker-diametre .marker-dot { background: #10B981; }
.marker-diametre .marker-line { background: #10B981; }

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Mini Visual Guide Display */
.finder-mini-guide {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
}

.mini-guide-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.guide-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.guide-segment.active,
.guide-segment:hover {
    background: rgba(255, 255, 255, 0.1);
}

.guide-segment .segment-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.guide-segment .segment-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.7;
}

.guide-largeur { color: #E63946; }
.guide-hauteur { color: #3B82F6; }
.guide-diametre { color: #10B981; }

.guide-separator {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

/* Guide Help Link */
.guide-help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 12px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.guide-help-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.guide-help-link svg {
    flex-shrink: 0;
}

/* ============================================
   HERO FINDER FORM
============================================ */
.finder-hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.finder-hero-fields {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.finder-hero-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.finder-hero-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finder-hero-field .field-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.finder-hero-field .field-unit {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.finder-hero-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

.finder-hero-select:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.12);
}

.finder-hero-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.finder-hero-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.finder-hero-select option {
    background: #1a1a2e;
    color: #fff;
}

.finder-hero-separator {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 14px;
}

/* Actions Row */
.finder-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.finder-hero-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.finder-hero-checkbox input {
    display: none;
}

.finder-hero-checkbox .checkbox-mark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.finder-hero-checkbox input:checked + .checkbox-mark {
    background: var(--primary);
    border-color: var(--primary);
}

.finder-hero-checkbox input:checked + .checkbox-mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.finder-hero-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #c62828 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
}

.finder-hero-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.4);
}

.finder-hero-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.finder-hero-submit .submit-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 4;
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-indicator .scroll-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator .scroll-icon {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   TYRE GUIDE MODAL
============================================ */
.tyre-guide-modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
}

.tyre-guide-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.tyre-guide-close:hover {
    background: var(--primary);
}

.tyre-guide-header {
    text-align: center;
    padding: 40px 32px 24px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.tyre-guide-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.tyre-guide-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.tyre-guide-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
}

/* Photo Guide */
.tyre-photo-guide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tyre-photo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.tyre-photo-svg {
    width: 100%;
    height: auto;
}

.tyre-sidewall-text {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

/* Photo Markers */
.photo-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-marker .marker-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.photo-marker .marker-badge:hover {
    transform: scale(1.2);
}

.photo-marker .marker-line {
    width: 30px;
    height: 2px;
}

.marker-largeur {
    top: 22%;
    left: 15%;
}
.marker-largeur .marker-badge { background: #E63946; }
.marker-largeur .marker-line { background: #E63946; }

.marker-hauteur {
    top: 22%;
    left: 42%;
}
.marker-hauteur .marker-badge { background: #3B82F6; }
.marker-hauteur .marker-line { background: #3B82F6; }

.marker-diametre {
    top: 22%;
    right: 20%;
}
.marker-diametre .marker-badge { background: #10B981; }
.marker-diametre .marker-line { background: #10B981; }

/* Explanations */
.tyre-guide-explanations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-explanation {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guide-explanation:hover {
    background: rgba(255, 255, 255, 0.06);
}

.explanation-number {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.explanation-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.explanation-content h4 .dim-unit {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.explanation-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px;
    line-height: 1.5;
}

.explanation-example {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}

.explanation-example .example-label {
    color: rgba(255, 255, 255, 0.5);
}

.explanation-example .example-values {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tyre-guide-footer {
    padding: 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.btn-guide-understood {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #c62828 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-guide-understood:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

/* Hide old hero */
.tf-hero-premium {
    display: none !important;
}

/* ============================================
   HERO RESPONSIVE - Split Layout
============================================ */
@media (max-width: 1199px) {
    .hero-split-wrapper {
        gap: 40px;
    }

    .hero-main-title {
        font-size: clamp(28px, 3.5vw, 44px);
    }
}

@media (max-width: 991px) {
    .hero-split {
        padding: 80px 0 60px;
    }

    .hero-split-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-side,
    .hero-finder-side {
        max-width: 100%;
        width: 100%;
    }

    .hero-text-side {
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-trust-grid {
        max-width: 400px;
        margin: 0 auto 24px;
    }

    .hero-rating-bar {
        justify-content: center;
    }

    .finder-card-modern {
        padding: 24px;
    }

    .finder-hero-fields {
        flex-wrap: wrap;
    }

    .finder-hero-field {
        flex: 1 1 calc(50% - 20px);
        min-width: 120px;
    }

    .finder-hero-separator {
        display: none;
    }

    .tyre-guide-body {
        grid-template-columns: 1fr;
    }

    .tyre-photo-container {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Visual Guide Image */
    .visual-guide-image img {
        max-height: 140px;
    }
}

@media (max-width: 767px) {
    .hero-split {
        min-height: auto;
        padding: 70px 0 50px;
    }

    .hero-gradient-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 20, 0.9) 0%,
            rgba(10, 10, 20, 0.85) 50%,
            rgba(10, 10, 20, 0.95) 100%
        );
    }

    .hero-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-trust-grid .trust-item {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero-trust-grid .trust-icon {
        width: 32px;
        height: 32px;
    }

    .hero-trust-grid .trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .finder-card-header {
        flex-wrap: wrap;
    }

    .finder-mini-guide {
        padding: 12px 16px;
    }

    .guide-segment .segment-value {
        font-size: 22px;
    }

    .finder-hero-field {
        flex: 1 1 100%;
    }

    .finder-hero-actions {
        flex-direction: column;
    }

    .finder-hero-checkbox {
        width: 100%;
        justify-content: center;
    }

    /* Visual Guide */
    .visual-guide-image {
        padding: 12px;
    }

    .visual-guide-image img {
        max-height: 120px;
    }

    .guide-marker {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .finder-hero-submit {
        width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .tyre-guide-modal-content {
        margin: 10px;
        border-radius: 16px;
    }

    .tyre-guide-header {
        padding: 32px 20px 20px;
    }

    .tyre-guide-header h3 {
        font-size: 20px;
    }

    .tyre-guide-body {
        padding: 20px;
        gap: 20px;
    }

    .guide-explanation {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .mini-guide-display {
        flex-wrap: wrap;
        gap: 4px;
    }

    .guide-segment {
        padding: 6px 12px;
    }

    .guide-segment .segment-value {
        font-size: 18px;
    }

    .guide-separator {
        font-size: 18px;
    }
}

/* Hero Finder JavaScript Interaction Styles
=====================================================================*/

/* Shake animation for incomplete form */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.finder-hero-form.shake {
    animation: shake 0.5s ease-in-out;
}

/* Loading state for dependent selects */
.finder-hero-field.loading {
    position: relative;
}

.finder-hero-field.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-top-color: #E63946;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.finder-hero-field.loading select {
    opacity: 0.6;
    pointer-events: none;
}

/* Active segment highlight in mini guide */
.guide-segment.active {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.guide-segment .segment-value.active {
    text-shadow: 0 0 10px currentColor;
}

.guide-largeur.active {
    background: rgba(230, 57, 70, 0.3);
}

.guide-hauteur.active {
    background: rgba(59, 130, 246, 0.3);
}

.guide-diametre.active {
    background: rgba(16, 185, 129, 0.3);
}

/* Submit button states */
.finder-hero-submit.disabled,
.finder-hero-submit[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #666 !important;
}

.finder-hero-submit.disabled:hover,
.finder-hero-submit[disabled]:hover {
    transform: none;
    box-shadow: none;
    background: #666 !important;
}

.finder-hero-submit .btn-count {
    margin-left: 8px;
    font-weight: 400;
    opacity: 0.9;
}

/* Tyre guide modal highlight animations */
.tyre-marker {
    transition: all 0.3s ease;
}

.tyre-marker.highlight {
    filter: drop-shadow(0 0 8px currentColor);
    transform: scale(1.1);
}

.marker-largeur.highlight {
    filter: drop-shadow(0 0 12px #E63946);
}

.marker-hauteur.highlight {
    filter: drop-shadow(0 0 12px #3B82F6);
}

.marker-diametre.highlight {
    filter: drop-shadow(0 0 12px #10B981);
}

/* Dimension item hover in guide modal */
.dimension-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dimension-item:hover {
    transform: translateY(-3px);
}

/* Select focus states */
.finder-select-hero:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
    outline: none;
}

/* Pulse animation for call-to-action */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(230, 57, 70, 0.6); }
}

.finder-hero-submit:not(.disabled):not([disabled]) {
    animation: pulse-glow 2s ease-in-out infinite;
}

.finder-hero-submit:not(.disabled):not([disabled]):hover {
    animation: none;
}

/* Responsive adjustments for loading state */
@media (max-width: 768px) {
    .finder-hero-field.loading::after {
        right: 15px;
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   AVANTAGES SECTION - Icon Cards Grid (Light)
============================================ */
.section-avantages {
    background: #fff;
    padding: 10px 0;
}

/* Section Header - Centered */
.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-title-lg {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Avantages Grid - 3x2 */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.avantage-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.avantage-item:hover {
    background: #fff;
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.avantage-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    margin: 0 auto 20px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.avantage-item:hover .avantage-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.avantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.avantage-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Highlighted Avantage */
.avantage-highlight {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0.1) 100%);
    border: 1px solid rgba(230, 57, 70, 0.15);
}

.avantage-highlight .avantage-icon {
    background: var(--primary);
    color: #fff;
}

.avantage-highlight:hover .avantage-icon {
    background: #c62828;
}

/* ============================================
   SERVICES SECTION - Card Grid (Light Grey BG)
============================================ */
.section-services {
    background: #f5f6f8;
    padding: 10px 0;
}

/* Services Grid - 4 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Popular Badge */
.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.service-card-popular {
    border-color: rgba(230, 57, 70, 0.3);
}

/* Service Icon */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

/* Service Content */
.service-content {
    flex: 1;
    margin-bottom: 16px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.service-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Service Footer */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 14px;
    font-weight: 600;
}

.service-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f8;
    border-radius: 50%;
    color: #999;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    background: var(--primary);
    color: #fff;
}

/* Services CTA */
.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.cta-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.cta-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: var(--primary);
    color: #fff;
}

.btn-cta-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.btn-cta-secondary {
    background: #1a1a2e;
    color: #fff;
}

.btn-cta-secondary:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
}

.btn-cta-phone {
    background: #f5f6f8;
    color: #1a1a2e;
    border: 1px solid #eee;
}

.btn-cta-phone:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   RESPONSIVE - Avantages & Services
============================================ */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section-avantages,
    .section-services {
        padding: 60px 0;
    }

    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 24px;
    }

    .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-avantages,
    .section-services {
        padding: 50px 0;
    }

    .section-header-center {
        margin-bottom: 32px;
    }

    .section-title-lg {
        font-size: 26px;
    }

    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .avantage-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .avantage-icon {
        width: 52px;
        height: 52px;
        margin: 0;
        flex-shrink: 0;
    }

    .avantage-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .avantage-desc {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-phone {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRODUCT GRID - Modern Glassmorphism Style
============================================ */

/* Grid Layout Improvements */
.tf-grid-layout.wrapper-shop {
    display: grid;
    gap: 24px;
    padding: 10px;
}

.tf-grid-layout.tf-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tf-grid-layout.tf-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Product Card - Glassmorphism Base */
.wrapper-shop .card-product {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Medium Hover Effect */
.wrapper-shop .card-product:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(230, 57, 70, 0.3);
}

/* Gradient Overlay Effect */
.wrapper-shop .card-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wrapper-shop .card-product:hover::before {
    opacity: 1;
}

/* Product Wrapper */
.wrapper-shop .card-product .card-product-wrapper {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Product Image */
.wrapper-shop .card-product .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.wrapper-shop .card-product .img-product {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wrapper-shop .card-product:hover .img-product {
    transform: scale(1.08);
}

/* Override base theme - prevent image from disappearing on hover */
.wrapper-shop .card-product .card-product-wrapper:hover .product-img .img-product,
.wrapper-shop .card-product .card-product-wrapper:hover .img-product {
    opacity: 1 !important;
}

/* Sale Badge - Glass Style */
.wrapper-shop .card-product .on-sale-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 10;
}

.wrapper-shop .card-product .on-sale-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #c62828 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
}

/* Runflat Badge */
.wrapper-shop .card-product .runflat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

/* New Badge */
.wrapper-shop .card-product .new-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.wrapper-shop .card-product .new-badge-item {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #28A745 0%, #20c997 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.35);
}

/* Product SKU */
.wrapper-shop .card-product .product-sku {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.wrapper-shop .card-product .product-sku .sku-label {
    font-weight: 600;
    margin-right: 3px;
}

/* Product Rating */
.wrapper-shop .card-product .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.wrapper-shop .card-product .product-rating .star-rating {
    font-size: 12px;
}

.wrapper-shop .card-product .product-rating .rating-count {
    font-size: 11px;
    color: #888;
}

/* Stock Status - Enhanced */
.wrapper-shop .card-product .stock-status.low-stock {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.wrapper-shop .card-product .stock-status.low-stock span {
    color: #856404;
}

/* Action Buttons - Reveal on Hover */
.wrapper-shop .card-product .list-product-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
}

.wrapper-shop .card-product:hover .list-product-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wrapper-shop .card-product .list-product-btn .box-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #1a1a2e;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wrapper-shop .card-product .list-product-btn .box-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.wrapper-shop .card-product .list-product-btn .tooltip {
    display: none;
}

/* Product Info Container */
.wrapper-shop .card-product .card-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
}

/* Brand Name */
.wrapper-shop .card-product .product-brand {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    background: rgba(230, 57, 70, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

/* Product Title */
.wrapper-shop .card-product .card-product-info .title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    margin: 0;
}

.wrapper-shop .card-product .card-product-info .title:hover {
    color: var(--primary);
}

/* Tyre Specs */
.wrapper-shop .card-product .tyre-specs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wrapper-shop .card-product .tyre-size {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'SF Mono', 'Consolas', monospace;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

/* Season Indicator */
.wrapper-shop .card-product .tyre-season {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

.wrapper-shop .card-product .tyre-season .season-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-shop .card-product .tyre-season .season-icon.summer {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.wrapper-shop .card-product .tyre-season .season-icon.summer::before {
    content: '☀';
    font-size: 12px;
}

.wrapper-shop .card-product .tyre-season .season-icon.winter {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.wrapper-shop .card-product .tyre-season .season-icon.winter::before {
    content: '❄';
    font-size: 10px;
}

.wrapper-shop .card-product .tyre-season .season-icon.allseason {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.wrapper-shop .card-product .tyre-season .season-icon.allseason::before {
    content: '◐';
    font-size: 12px;
    color: #fff;
}

/* Price Styling */
.wrapper-shop .card-product .price-wrap {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wrapper-shop .card-product .price-wrap .price {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.wrapper-shop .card-product .price-wrap .woocommerce-Price-currencySymbol {
    font-size: 16px;
    font-weight: 600;
}

.wrapper-shop .card-product .price-wrap del {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.wrapper-shop .card-product .price-wrap ins {
    text-decoration: none;
    color: var(--primary);
}

/* Stock Status */
.wrapper-shop .card-product .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 4px;
}

.wrapper-shop .card-product .stock-status.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.wrapper-shop .card-product .stock-status.out-of-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
}

/* Add to Cart Button */
.wrapper-shop .card-product .card-product-btn {
    margin-top: 12px;
}

.wrapper-shop .card-product .card-product-btn .button,
.wrapper-shop .card-product .card-product-btn .add_to_cart_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wrapper-shop .card-product .card-product-btn .button:hover,
.wrapper-shop .card-product .card-product-btn .add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.wrapper-shop .card-product .card-product-btn .added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

/* ============================================
   PRODUCT GRID - Responsive Breakpoints
============================================ */
@media (max-width: 1199px) {
    .tf-grid-layout.tf-col-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .tf-grid-layout.tf-col-4,
    .tf-grid-layout.tf-col-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wrapper-shop .card-product .card-product-info {
        padding: 16px;
    }

    .wrapper-shop .card-product .price-wrap .price {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .tf-grid-layout.tf-col-4,
    .tf-grid-layout.tf-col-3 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 5px;
    }

    .wrapper-shop .card-product {
        display: flex;
        flex-direction: row;
        border-radius: 16px;
    }

    .wrapper-shop .card-product .card-product-wrapper {
        width: 140px;
        min-width: 140px;
        aspect-ratio: 1 / 1;
        border-radius: 16px 0 0 16px;
    }

    .wrapper-shop .card-product .product-img {
        padding: 12px;
    }

    .wrapper-shop .card-product .card-product-info {
        flex: 1;
        padding: 14px;
        gap: 6px;
    }

    .wrapper-shop .card-product .product-brand {
        font-size: 10px;
        padding: 3px 8px;
    }

    .wrapper-shop .card-product .card-product-info .title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .wrapper-shop .card-product .tyre-size {
        font-size: 12px;
        padding: 4px 10px;
    }

    .wrapper-shop .card-product .price-wrap {
        margin-top: 2px;
        padding-top: 8px;
    }

    .wrapper-shop .card-product .price-wrap .price {
        font-size: 18px;
    }

    .wrapper-shop .card-product .card-product-btn .button,
    .wrapper-shop .card-product .card-product-btn .add_to_cart_button {
        padding: 10px 14px;
        font-size: 11px;
        border-radius: 8px;
    }

    /* Show action buttons always on mobile */
    .wrapper-shop .card-product .list-product-btn {
        position: static;
        transform: none;
        opacity: 1;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .wrapper-shop .card-product .list-product-btn .box-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .wrapper-shop .card-product .on-sale-wrap {
        top: 8px;
        left: 8px;
    }

    .wrapper-shop .card-product .on-sale-item {
        padding: 4px 10px;
        font-size: 10px;
    }

    .wrapper-shop .card-product .runflat-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
}

/* ============================================
   BRANDS MARQUEE - Auto-Scrolling Slider
============================================ */
.section-brands-marquee {
    padding: 10px 0;
    background: #fff;
    overflow: hidden;
}

/* Marquee Wrapper */
.brands-marquee-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

/* Fade edges */
.brands-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.brands-marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.brands-marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

/* Marquee Track */
.brands-marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
}

.brands-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Marquee Content (duplicated for seamless loop) */
.brands-marquee-content {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

/* Brand Item */
.brand-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 180px;
}

.brand-marquee-item:hover {
    background: #fff;
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Brand Logo */
.brand-marquee-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.brand-marquee-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-marquee-item:hover .brand-marquee-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Fallback Text */
.brand-marquee-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.brand-marquee-item:hover .brand-marquee-fallback {
    color: var(--primary);
}

/* CTA Button */
.brands-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-brands-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1a1a2e;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-brands-all:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.2);
}

.btn-brands-all svg {
    transition: transform 0.3s ease;
}

.btn-brands-all:hover svg {
    transform: translateX(4px);
}

/* ============================================
   BRANDS MARQUEE - Responsive
============================================ */
@media (max-width: 991px) {
    .section-brands-marquee {
        padding: 60px 0;
    }

    .brands-marquee-fade {
        width: 80px;
    }

    .brands-marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .brand-marquee-item {
        min-width: 150px;
        padding: 16px 24px;
    }

    .brand-marquee-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}

@media (max-width: 575px) {
    .section-brands-marquee {
        padding: 50px 0;
    }

    .brands-marquee-wrapper {
        margin: 30px 0;
    }

    .brands-marquee-fade {
        width: 40px;
    }

    .brands-marquee-content {
        gap: 20px;
        padding: 0 10px;
    }

    .brand-marquee-item {
        min-width: 120px;
        padding: 14px 18px;
        border-radius: 12px;
    }

    .brand-marquee-logo {
        height: 40px;
    }

    .brand-marquee-logo img {
        max-width: 80px;
        max-height: 35px;
    }

    .brand-marquee-fallback {
        font-size: 13px;
    }

    .btn-brands-all {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .brands-marquee-track {
        animation: none;
    }

    .brands-marquee-content {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   TESTIMONIALS - Google Reviews Grid
============================================ */
.section-testimonials-google {
    padding: 10px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* Header Layout */
.testimonials-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.testimonials-header-content {
    flex: 1;
}

.testimonials-header-content .section-badge {
    margin-bottom: 12px;
}

.testimonials-header-content .section-title-lg {
    margin-bottom: 8px;
}

/* Google Rating Card */
.google-rating-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.google-rating-card:hover {
    border-color: rgba(66, 133, 244, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.google-reviews-count {
    font-size: 13px;
    color: #666;
}

.google-arrow {
    color: #999;
    transition: all 0.3s ease;
}

.google-rating-card:hover .google-arrow {
    color: #4285F4;
    transform: translate(3px, -3px);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card-google {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.testimonial-card-google:hover {
    border-color: rgba(66, 133, 244, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Google Icon in Card */
.testimonial-google-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.testimonial-card-google:hover .testimonial-google-icon {
    opacity: 1;
}

/* Rating Stars */
.testimonial-rating-google {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

/* Quote Text */
.testimonial-text-google {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Section */
.testimonial-author-google {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar-google {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
}

.author-details-google {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name-google {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    font-style: normal;
}

.author-time-google {
    font-size: 12px;
    color: #999;
}

/* CTA Section */
.testimonials-cta {
    text-align: center;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-google-review:hover {
    border-color: #4285F4;
    background: #4285F4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.btn-google-review:hover svg path {
    fill: #fff;
}

.testimonials-cta-text {
    margin: 16px 0 0;
    font-size: 14px;
    color: #666;
}

/* ============================================
   TESTIMONIALS - Responsive
============================================ */
@media (max-width: 1199px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section-testimonials-google {
        padding: 60px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .google-rating-card {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .section-testimonials-google {
        padding: 50px 0;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .google-rating-card {
        padding: 16px 20px;
    }

    .rating-number {
        font-size: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card-google {
        padding: 20px;
    }

    .testimonial-text-google {
        -webkit-line-clamp: 3;
        font-size: 13px;
    }

    .btn-google-review {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BLOG SECTION - Minimal Cards Grid
============================================ */
.section-blog-minimal {
    padding: 10px 0;
    background: #fff;
}

/* Blog Grid - 4 columns */
.blog-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card-minimal {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.blog-card-minimal:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Card Image */
.blog-card-minimal-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-minimal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-minimal:hover .blog-minimal-img {
    transform: scale(1.05);
}

/* Category Badge */
.blog-minimal-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: #fff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.blog-card-minimal-content {
    padding: 20px;
}

/* Meta Info */
.blog-minimal-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.blog-minimal-meta .meta-separator {
    color: #ddd;
}

/* Title */
.blog-minimal-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-minimal-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-minimal-title a:hover {
    color: var(--primary);
}

/* Excerpt */
.blog-minimal-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read Link */
.blog-minimal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-minimal-link:hover {
    gap: 10px;
}

.blog-minimal-link svg {
    transition: transform 0.3s ease;
}

.blog-minimal-link:hover svg {
    transform: translateX(3px);
}

/* CTA Button */
.blog-cta {
    text-align: center;
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-blog-all:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-blog-all svg {
    transition: transform 0.3s ease;
}

.btn-blog-all:hover svg {
    transform: translateX(4px);
}

/* ============================================
   BLOG SECTION - Responsive
============================================ */
@media (max-width: 1199px) {
    .blog-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .section-blog-minimal {
        padding: 50px 0;
    }

    .blog-grid-minimal {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .blog-card-minimal {
        display: flex;
        flex-direction: row;
    }

    .blog-card-minimal-image {
        width: 120px;
        min-width: 120px;
        aspect-ratio: 1 / 1;
        border-radius: 16px 0 0 16px;
    }

    .blog-minimal-category {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }

    .blog-card-minimal-content {
        flex: 1;
        padding: 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .blog-minimal-meta {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .blog-minimal-title {
        font-size: 14px;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
    }

    .blog-minimal-excerpt {
        display: none;
    }

    .blog-minimal-link {
        font-size: 12px;
    }

    .btn-blog-all {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* ============================================
   FOOTER PREMIUM - DARK STYLE
============================================ */
.footer-premium {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #fff;
    font-size: 14px;
}

/* Trust Bar */
.footer-trust-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
    padding: 25px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .trust-bar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.trust-bar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-bar-icon svg {
    width: 24px;
    height: 24px;
}

.trust-bar-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-bar-text span {
    font-size: 12px;
    opacity: 0.85;
}

/* Main Footer */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

/* Footer Brand Column */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 65px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}

.footer-rating-badge svg {
    width: 16px;
    height: 16px;
    fill: #FFD700;
}

.footer-rating-info {
    flex: 1;
}

.footer-rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    color: #FFD700;
}

.footer-rating-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-rating-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-rating-text a {
    color: inherit;
    text-decoration: none;
}

.footer-rating-text a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Columns */
.footer-column-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover svg {
    opacity: 1;
}

/* Footer Newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-heading), sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.footer-newsletter-form button svg {
    width: 18px;
    height: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom-premium {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-copyright a {
    color: var(--primary);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-legal-links {
        justify-content: flex-end;
    }
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payments img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
}

/* ============================================
   FLOATING BUTTONS - CIRCULAR STYLE
============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover svg {
    transform: scale(1.1);
}

/* Back to Top */
.floating-btn-top {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn-top:hover {
    background: linear-gradient(135deg, #2d2d44 0%, #3d3d5c 100%);
}

/* Phone Button */
.floating-btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
    color: #fff;
    animation: pulse-phone 2s infinite;
}

.floating-btn-phone:hover {
    animation: none;
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(230, 57, 70, 0.7);
    }
}

/* WhatsApp Button */
.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    animation: bounce-whatsapp 3s ease-in-out infinite;
}

.floating-btn-whatsapp:hover {
    animation: none;
    background: linear-gradient(135deg, #2be875 0%, #1da88a 100%);
}

@keyframes bounce-whatsapp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Floating Button Tooltips */
.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    background: #1a1a2e;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a2e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover::before,
.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    .floating-btn::before,
    .floating-btn::after {
        display: none;
    }

    /* Trust bar mobile */
    .trust-bar-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-bar-icon {
        width: 45px;
        height: 45px;
    }

    .trust-bar-text strong {
        font-size: 13px;
    }

    .trust-bar-text span {
        font-size: 11px;
    }

    /* Footer mobile */
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-rating {
        justify-content: center;
    }

    .footer-column-title {
        display: block;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-newsletter-text {
        text-align: center;
    }
}

/* ============================================
   24H PNEUS - UNIQUE FOOTER DESIGN
   Original design with customizer/widget control
   ============================================ */

/* Base Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    color: #c9d1d9;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #E63946), #ff6b6b, var(--primary, #E63946));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Section 1: SEO Block */
.footer-seo {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.footer-seo__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-seo__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.footer-seo__content {
    color: #8b949e;
    font-size: 14px;
    line-height: 1.8;
}

.footer-seo__content a {
    color: var(--primary, #E63946);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-seo__content a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Section 2: Advantages / Trust Bar */
.footer-advantages {
    background: linear-gradient(135deg, var(--primary, #E63946) 0%, #c1121f 100%);
    padding: 0;
    position: relative;
}

.footer-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.footer-advantages__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-advantages__item:last-child {
    border-right: none;
}

.footer-advantages__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-advantages__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-advantages__item:hover .footer-advantages__icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.footer-advantages__icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.footer-advantages__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-advantages__text strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-advantages__text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Section 3: Accordion Links */
.footer-accordions {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-accordions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.footer-accordions__item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-accordions__item:last-child {
    border-right: none;
}

.footer-accordions__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-accordions__header:hover {
    color: var(--primary, #E63946);
}

.footer-accordions__arrow {
    width: 18px;
    height: 18px;
    color: var(--primary, #E63946);
    transition: transform 0.3s ease;
}

.footer-accordions__item.is-open .footer-accordions__arrow {
    transform: rotate(180deg);
}

.footer-accordions__content {
    padding: 0 20px 16px;
}

.footer-accordions__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-accordions__content li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-accordions__content li a:hover {
    color: var(--primary, #E63946);
}

/* Accordion Widget Content - Menu widget */
.footer-accordions__content .widget_nav_menu .menu,
.footer-accordions__content .footer-accordion-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-accordions__content .widget_nav_menu .menu li a,
.footer-accordions__content .footer-accordion-widget .menu li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    padding: 0;
}

.footer-accordions__content .widget_nav_menu .menu li a::before {
    display: none;
}

.footer-accordions__content .widget_nav_menu .menu li a:hover,
.footer-accordions__content .footer-accordion-widget .menu li a:hover {
    color: var(--primary, #E63946);
    padding-left: 0;
}

/* Accordion Widget - Store widget (for locations) */
.footer-accordions__content .store-locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-accordions__content .store-locations-list a {
    color: #8b949e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-accordions__content .store-locations-list a:hover {
    color: var(--primary, #E63946);
}

/* Desktop: Always show content */
@media (min-width: 992px) {
    .footer-accordions__header {
        pointer-events: none;
    }

    .footer-accordions__arrow {
        display: none;
    }

    .footer-accordions__content {
        display: block !important;
        max-height: none !important;
    }
}

/* Mobile: Accordion behavior */
@media (max-width: 991px) {
    .footer-accordions__grid {
        flex-direction: column;
    }

    .footer-accordions__item {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-accordions__content {
        display: none;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-accordions__item.is-open .footer-accordions__content {
        display: block;
    }
}

/* Section 4: Main Footer Grid */
.footer-main {
    padding: 60px 0 40px;
}

.footer-main__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.3fr;
    gap: 40px;
}

.footer-main__col--brand {
    padding-right: 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand a {
    display: inline-block;
}

.footer-brand img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand__name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-main__tagline {
    color: #8b949e;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c9d1d9;
    font-size: 14px;
}

.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact li a:hover {
    color: var(--primary, #E63946);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--primary, #E63946);
    margin-top: 2px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #c9d1d9;
    transition: all 0.3s ease;
}

.footer-social__link svg {
    width: 18px;
    height: 18px;
}

.footer-social__link:hover {
    transform: translateY(-3px);
}

.footer-social__link--facebook:hover {
    background: #1877F2;
    color: #fff;
}

.footer-social__link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.footer-social__link--whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.footer-social__link--youtube:hover {
    background: #FF0000;
    color: #fff;
}

.footer-social__link--tiktok:hover {
    background: #000;
    color: #fff;
}

/* Footer Column Titles */
.footer-main__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 12px;
}

.footer-main__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary, #E63946);
    border-radius: 2px;
}

/* Footer Navigation Links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary, #E63946);
    transition: width 0.2s ease;
}

.footer-nav li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-nav li a:hover::before {
    width: 12px;
}

/* Newsletter Column */
.footer-main__col--newsletter {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    margin: -12px 0;
}

.footer-newsletter__text {
    color: #8b949e;
    font-size: 13px;
    margin: 0 0 16px;
    line-height: 1.6;
}

.footer-newsletter__form {
    margin-bottom: 24px;
}

.footer-newsletter__input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease;
}

.footer-newsletter__input-group:focus-within {
    border-color: var(--primary, #E63946);
}

.footer-newsletter__input-group input {
    flex: 1;
    padding: 14px 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.footer-newsletter__input-group input::placeholder {
    color: #6e7681;
}

.footer-newsletter__input-group button {
    padding: 14px 18px;
    background: var(--primary, #E63946);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-newsletter__input-group button:hover {
    background: #c1121f;
}

.footer-newsletter__input-group button svg {
    width: 20px;
    height: 20px;
}

/* Payment Section */
.footer-payment {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.footer-payment__label {
    display: block;
    font-size: 12px;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-payment__icons img {
    max-height: 28px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(20%);
    transition: all 0.2s ease;
}

.footer-payment__icons img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Section 5: Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom__copyright {
    color: #6e7681;
    font-size: 13px;
}

.footer-legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-nav li a {
    color: #6e7681;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal-nav li a:hover {
    color: var(--primary, #E63946);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-actions__btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-actions__btn svg {
    width: 22px;
    height: 22px;
}

.floating-actions__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-actions__btn--top {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-actions__btn--top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-actions__btn--phone {
    background: linear-gradient(135deg, var(--primary, #E63946), #c1121f);
    color: #fff;
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(230, 57, 70, 0.7); }
}

.floating-actions__btn--phone:hover {
    animation: none;
}

.floating-actions__btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .footer-main__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-main__col--brand {
        grid-column: span 3;
        text-align: center;
        padding-right: 0;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-main__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-main__col--newsletter {
        grid-column: span 3;
        max-width: 400px;
        margin: 20px auto 0;
    }
}

@media (max-width: 991px) {
    .footer-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-advantages__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-advantages__item:nth-child(2),
    .footer-advantages__item:nth-child(4) {
        border-right: none;
    }

    .footer-advantages__item:nth-child(3),
    .footer-advantages__item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .footer-seo {
        padding: 30px 0;
    }

    .footer-seo__title {
        font-size: 18px;
    }

    .footer-advantages__grid {
        grid-template-columns: 1fr;
    }

    .footer-advantages__item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 24px 20px;
    }

    .footer-advantages__item:last-child {
        border-bottom: none;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-main__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-main__col--brand {
        grid-column: span 1;
    }

    .footer-main__col--newsletter {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav li a:hover {
        padding-left: 0;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-nav {
        justify-content: center;
    }

    .floating-actions {
        bottom: 20px;
        right: 16px;
        gap: 10px;
    }

    .floating-actions__btn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .floating-actions__btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Widget Area Styling */
.footer-accordion-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-accordion-widget ul li {
    margin-bottom: 8px;
}

.footer-accordion-widget ul li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-accordion-widget ul li a:hover {
    color: var(--primary, #E63946);
}

/* Footer Widget Columns - 5 columns */
.footer-main__grid--widgets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

@media (max-width: 1199px) {
    .footer-main__grid--widgets {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .footer-main__grid--widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .footer-main__grid--widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer Widget Styling */
.footer-widget {
    margin-bottom: 15px;
}

.footer-widget__title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary, #E63946);
    position: relative;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--primary, #E63946);
    padding-left: 5px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-widget img {
    max-width: 100%;
    height: auto;
}

/* Text Widget in Footer */
.footer-widget.widget_text .textwidget {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-widget.widget_text .textwidget a {
    color: var(--primary, #E63946);
}

.footer-widget.widget_text .textwidget a:hover {
    text-decoration: underline;
}

/* Nav Menu Widget in Footer */
.footer-widget.widget_nav_menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget.widget_nav_menu .menu li {
    margin-bottom: 10px;
}

.footer-widget.widget_nav_menu .menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 15px;
}

.footer-widget.widget_nav_menu .menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary, #E63946);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-widget.widget_nav_menu .menu li a:hover {
    color: var(--primary, #E63946);
    padding-left: 20px;
}

.footer-widget.widget_nav_menu .menu li a:hover::before {
    opacity: 1;
}

/* Footer Main Grid - Always 4 columns */
.footer-main__col {
    min-width: 0;
}

/* Pages Widget Specific Styling */
.footer-widget.widget_pages ul {
    columns: 1;
}

/* If too many pages, use 2 columns */
.footer-widget.widget_pages ul.too-many {
    columns: 2;
    column-gap: 20px;
}

/* Recent Posts Widget */
.footer-widget.widget_recent_entries ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget.widget_recent_entries ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-widget.widget_recent_entries ul li a {
    display: block;
    line-height: 1.4;
}

/* Tag Cloud Widget */
.footer-widget.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-widget.widget_tag_cloud .tagcloud a {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer-widget.widget_tag_cloud .tagcloud a:hover {
    background: var(--primary, #E63946);
    color: #fff;
}

/* Product Categories Widget */
.footer-widget.widget_product_categories ul,
.footer-widget.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget.widget_product_categories ul li,
.footer-widget.widget_categories ul li {
    margin-bottom: 8px;
}

.footer-widget.widget_product_categories ul li a,
.footer-widget.widget_categories ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-widget.widget_product_categories ul li a:hover,
.footer-widget.widget_categories ul li a:hover {
    color: var(--primary, #E63946);
}

/* Count badge for categories */
.footer-widget.widget_product_categories ul li .count,
.footer-widget.widget_categories ul li .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

/* Fix for widgets without titles */
.footer-widget:not(:has(.footer-widget__title)) {
    padding-top: 0;
}

/* Multiple widgets in same column - add spacing */
.footer-main__col .footer-widget + .footer-widget {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   GLOBAL FIX: Prevent product images from
   disappearing on hover (all pages)
============================================ */

/* Keep main product image visible on hover - GLOBAL */
.card-product .card-product-wrapper:hover .product-img .img-product,
.card-product .card-product-wrapper:hover .img-product,
.card-product:hover .product-img .img-product,
.card-product:hover .img-product {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide secondary hover image completely */
.card-product .img-hover,
.card-product .product-img .img-hover {
    display: none !important;
    opacity: 0 !important;
}

/* Front page - Derniers Arrivages section */
.tf-product-slider .card-product .img-product,
.tf-product-slider .card-product:hover .img-product,
.swiper-slide .card-product .img-product,
.swiper-slide .card-product:hover .img-product {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Single product - Related/Similar products */
.related-products .card-product .img-product,
.related-products .card-product:hover .img-product,
.upsells .card-product .img-product,
.upsells .card-product:hover .img-product,
.cross-sells .card-product .img-product,
.cross-sells .card-product:hover .img-product {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Any section with product grid */
.flat-spacing .card-product .img-product,
.flat-spacing .card-product:hover .img-product,
.tf-grid-layout .card-product .img-product,
.tf-grid-layout .card-product:hover .img-product,
.products .card-product .img-product,
.products .card-product:hover .img-product {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Keep zoom effect on hover */
.card-product:hover .img-product {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}
/* ============================================
   PRODUCT CARD ICON FIX
============================================ */
.list-product-btn .box-icon .icon {
    color: #000;
}

.list-product-btn .box-icon:hover .icon {
    color: #fff;
}
