/* ============================================
   TIRE PAGE - Complete Redesign
   ASAP Towing - Commercial Tires
   Charcoal Theme | Mobile-First | Overkill Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Charcoal Theme */
    --tire-bg-dark: #1a1a1a;
    --tire-bg-darker: #0f0f0f;
    --tire-bg-card: #242424;
    --tire-bg-card-hover: #2a2a2a;
    
    /* Accent Colors */
    --tire-accent: #71B280;
    --tire-accent-dark: #5a9a69;
    --tire-accent-glow: rgba(113, 178, 128, 0.3);
    --tire-danger: #EB3349;
    --tire-danger-dark: #c62a3e;
    --tire-warning: #FFB800;
    
    /* Text */
    --tire-text: #ffffff;
    --tire-text-muted: rgba(255, 255, 255, 0.7);
    --tire-text-dim: rgba(255, 255, 255, 0.5);
    
    /* Borders */
    --tire-border: rgba(255, 255, 255, 0.1);
    --tire-border-accent: rgba(113, 178, 128, 0.3);
    
    /* Shadows */
    --tire-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --tire-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --tire-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --tire-shadow-glow: 0 0 30px rgba(113, 178, 128, 0.2);
    
    /* Transitions */
    --tire-transition: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --tire-radius-sm: 8px;
    --tire-radius-md: 12px;
    --tire-radius-lg: 16px;
    --tire-radius-xl: 20px;
    --tire-radius-full: 50px;
}

/* ============================================
   BASE STYLES
   ============================================ */
.tire-page {
    background: var(--tire-bg-darker);
    color: var(--tire-text);
    overflow-x: hidden;
}

.tire-page *,
.tire-page *::before,
.tire-page *::after {
    box-sizing: border-box;
}

.text-accent {
    color: var(--tire-accent);
}

/* ============================================
   HERO SECTION - Mobile First
   ============================================ */
.tire-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--tire-bg-darker);
    overflow: hidden;
}

/* ============================================
   TOP URGENCY BAR
   ============================================ */
.tire-urgency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 1px solid var(--tire-border-accent);
    flex-shrink: 0;
    z-index: 10;
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: var(--tire-accent);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--tire-accent);
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.3); 
    }
}

.live-text {
    color: var(--tire-text);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.urgency-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tire-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.urgency-phone:hover {
    color: var(--tire-text);
    text-shadow: 0 0 10px var(--tire-accent-glow);
}

.urgency-phone i {
    font-size: 0.75rem;
}

/* ============================================
   HERO MAIN LAYOUT
   ============================================ */
.tire-hero-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* ============================================
   HERO IMAGE COLUMN
   ============================================ */
.tire-hero-image-col {
    position: relative;
    width: 100%;
    height: 22vh;
    height: 22svh;
    min-height: 150px;
    max-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.tire-hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.tire-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s var(--tire-transition);
}

.tire-hero-image.active {
    opacity: 1;
    z-index: 1;
}

.tire-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tire-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.2) 0%,
        rgba(15, 15, 15, 0.6) 100%
    );
}

/* Hero Arrows */
.tire-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tire-border);
    color: var(--tire-text);
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tire-hero-arrow:hover {
    background: var(--tire-accent);
    border-color: var(--tire-accent);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.tire-hero-arrow-prev { left: 10px; }
.tire-hero-arrow-next { right: 10px; }

/* ============================================
   HERO CONTENT COLUMN
   ============================================ */
.tire-hero-content-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--tire-bg-darker);
    min-height: 0;
    overflow: hidden;
}

/* ============================================
   HERO TABS
   ============================================ */
.tire-hero-tabs {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--tire-border);
    flex-shrink: 0;
}

.tire-hero-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    background: transparent;
    border: none;
    color: var(--tire-text-dim);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tire-hero-tab i {
    font-size: 0.85rem;
}

.tire-hero-tab:hover {
    color: var(--tire-text-muted);
}

.tire-hero-tab.active {
    color: var(--tire-accent);
}

/* Tab Indicator */
.tire-tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.333%;
    height: 2px;
    background: linear-gradient(90deg, var(--tire-accent), var(--tire-accent-dark));
    transition: transform 0.4s var(--tire-transition);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 10px var(--tire-accent-glow);
}

/* ============================================
   HERO PANELS
   ============================================ */
.tire-hero-panels {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.tire-hero-panel {
    position: absolute;
    inset: 0;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 
        opacity 0.5s var(--tire-transition),
        visibility 0.5s var(--tire-transition),
        transform 0.5s var(--tire-transition);
    overflow: hidden;
}

.tire-hero-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1;
}

/* Hero Badge */
.tire-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--tire-radius-full);
    color: var(--tire-text);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.badge-new {
    background: linear-gradient(135deg, var(--tire-accent), var(--tire-accent-dark));
    box-shadow: 0 4px 15px var(--tire-accent-glow);
}

.badge-used {
    background: linear-gradient(135deg, var(--tire-warning), #e6a600);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.badge-sizes {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tire-badge i {
    font-size: 0.55rem;
}

/* Hero Title */
.tire-hero-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--tire-text);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}

.tire-hero-title .text-accent {
    display: block;
    background: linear-gradient(135deg, var(--tire-accent), #a8d5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.tire-hero-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--tire-text-muted);
    margin-bottom: 0.6rem;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero Features */
.tire-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    flex-shrink: 0;
}

.tire-hero-features li {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(113, 178, 128, 0.1);
    border: 1px solid var(--tire-border-accent);
    padding: 4px 9px;
    border-radius: var(--tire-radius-full);
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--tire-text-muted);
    transition: all 0.3s ease;
}

.tire-hero-features li:hover {
    background: rgba(113, 178, 128, 0.2);
    border-color: var(--tire-accent);
    color: var(--tire-text);
}

.tire-hero-features li i {
    color: var(--tire-accent);
    font-size: 0.55rem;
}

/* Hero CTA */
.tire-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

/* Primary Button (Shop) */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--tire-accent), var(--tire-accent-dark));
    border: none;
    border-radius: var(--tire-radius-md);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--tire-accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--tire-accent-glow), var(--tire-shadow-glow);
    color: #000;
}

.btn-primary i {
    font-size: 0.95rem;
}

/* CTA Hero Button (Call) */
.btn-cta-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--tire-danger), var(--tire-danger-dark));
    border: none;
    border-radius: var(--tire-radius-md);
    color: var(--tire-text);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(235, 51, 73, 0.3);
}

.btn-cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 51, 73, 0.4);
    color: var(--tire-text);
}

.btn-cta-hero i {
    font-size: 1rem;
}

.btn-cta-hero span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-cta-hero small {
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta-hero strong {
    font-size: 0.85rem;
}

/* ============================================
   BRAND CAROUSEL BAR
   ============================================ */
.tire-brands-bar {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--tire-border);
    border-bottom: 1px solid var(--tire-border);
    padding: 12px 0;
    flex-shrink: 0;
}

.tire-brands-bar .brands-track {
    display: flex;
    gap: 20px;
    animation: brandScroll 25s linear infinite;
    width: max-content;
}

.tire-brands-bar:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--tire-radius-sm);
    border: 1px solid var(--tire-border);
    padding: 6px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tire-border-accent);
    transform: scale(1.05);
}

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

.brand-item:hover img {
    opacity: 1;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-80px * 8 - 20px * 8));
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.tire-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid var(--tire-border-accent);
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.tire-stats-bar:hover {
    background: linear-gradient(135deg, #151515 0%, #1f1f1f 100%);
}

.tire-stats-bar .stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tire-text);
}

.tire-stats-bar .stat i {
    color: var(--tire-accent);
    font-size: 0.85rem;
}

.tire-stats-bar .stat-value {
    font-weight: 800;
    font-size: 0.75rem;
}

.tire-stats-bar .stat-label {
    display: none;
    font-size: 0.65rem;
    color: var(--tire-text-dim);
}

.tire-stats-bar .stat-divider {
    width: 1px;
    height: 16px;
    background: var(--tire-border);
}

/* ============================================
   TIRE SHOP SECTION
   ============================================ */
.tire-shop {
    padding: 50px 0 70px;
    background: var(--tire-bg-dark);
    position: relative;
}

.tire-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--tire-bg-darker) 0%, transparent 100%);
    pointer-events: none;
}

.tire-shop .container {
    position: relative;
    z-index: 1;
}

/* Shop Header */
.shop-header {
    text-align: center;
    margin-bottom: 30px;
}

.shop-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--tire-text);
}

.shop-subtitle {
    font-size: 0.9rem;
    color: var(--tire-text-muted);
}

/* ============================================
   SHOP CONTROLS
   ============================================ */
.shop-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--tire-bg-card);
    border: 2px solid var(--tire-border);
    border-radius: var(--tire-radius-md);
    padding: 0 16px;
    height: 50px;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--tire-accent);
    box-shadow: 0 0 20px var(--tire-accent-glow);
}

.search-icon {
    color: var(--tire-text-dim);
    font-size: 0.95rem;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--tire-text);
    font-size: 0.95rem;
    padding: 0;
}

.search-input::placeholder {
    color: var(--tire-text-dim);
}

.search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--tire-border);
    border: none;
    border-radius: 50%;
    color: var(--tire-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-clear.visible {
    display: flex;
}

.search-clear:hover {
    background: var(--tire-danger);
}

/* Filter Toggle */
.filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--tire-bg-card);
    border: 2px solid var(--tire-border);
    border-radius: var(--tire-radius-md);
    color: var(--tire-text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle:hover,
.filter-toggle.active {
    border-color: var(--tire-accent);
    background: rgba(113, 178, 128, 0.1);
}

.filter-toggle.active {
    color: var(--tire-accent);
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--tire-accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
}

/* Sort Wrapper */
.sort-wrapper {
    position: relative;
}

.sort-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    background: var(--tire-bg-card);
    border: 2px solid var(--tire-border);
    border-radius: var(--tire-radius-md);
    color: var(--tire-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--tire-accent);
}

.sort-select option {
    background: var(--tire-bg-dark);
    color: var(--tire-text);
}

/* ============================================
   FILTER PANEL
   ============================================ */
.filter-panel {
    display: none;
    background: var(--tire-bg-card);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

.filter-panel.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--tire-text-muted);
}

.filter-select {
    padding: 12px 14px;
    background: var(--tire-bg-darker);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-sm);
    color: var(--tire-text);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--tire-accent);
}

.filter-actions {
    display: flex;
    gap: 10px;
    padding-top: 6px;
}

.btn-apply {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--tire-accent), var(--tire-accent-dark));
    border: none;
    border-radius: var(--tire-radius-md);
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--tire-accent-glow);
}

.btn-clear {
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--tire-border);
    border-radius: var(--tire-radius-md);
    color: var(--tire-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    border-color: var(--tire-danger);
    color: var(--tire-danger);
}

/* ============================================
   ACTIVE FILTERS
   ============================================ */
.active-filters {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: rgba(113, 178, 128, 0.05);
    border: 1px solid var(--tire-border-accent);
    border-radius: var(--tire-radius-md);
    margin-bottom: 20px;
}

.active-filters.visible {
    display: flex;
}

.active-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tire-text-muted);
}

.active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--tire-accent);
    border-radius: var(--tire-radius-full);
    color: #000;
    font-size: 0.72rem;
    font-weight: 600;
}

.filter-tag button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 0.55rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-tag button:hover {
    background: rgba(0, 0, 0, 0.4);
}

.clear-all {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-full);
    color: var(--tire-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-all:hover {
    border-color: var(--tire-danger);
    color: var(--tire-danger);
}

/* ============================================
   RESULTS INFO
   ============================================ */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tire-border);
}

.results-info span {
    font-size: 0.85rem;
    color: var(--tire-text-muted);
}

.results-info strong {
    color: var(--tire-accent);
}

/* ============================================
   TIRE GRID
   ============================================ */
.tire-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

/* ============================================
   TIRE CARD - Premium Design
   ============================================ */
.tire-card {
    position: relative;
    background: var(--tire-bg-card);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--tire-transition);
    display: flex;
    flex-direction: column;
}

.tire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tire-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tire-card:hover {
    transform: translateY(-6px);
    border-color: var(--tire-border-accent);
    box-shadow: var(--tire-shadow-lg), var(--tire-shadow-glow);
}

.tire-card:hover::before {
    opacity: 1;
}

/* Card Badge */
.tire-card .card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: var(--tire-radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.tire-card .card-badge.badge-new {
    background: linear-gradient(135deg, var(--tire-accent), var(--tire-accent-dark));
    color: #000;
}

.tire-card .card-badge.badge-used {
    background: linear-gradient(135deg, var(--tire-warning), #e6a600);
    color: #000;
}

/* Card Image */
.tire-card .card-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tire-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--tire-transition);
}

.tire-card:hover .card-image img {
    transform: scale(1.08);
}

.tire-card .card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Quick View Button */
.tire-card .quick-view {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 9px 18px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-full);
    color: var(--tire-text);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.tire-card:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tire-card .quick-view:hover {
    background: var(--tire-accent);
    color: #000;
    border-color: var(--tire-accent);
}

/* Card Content */
.tire-card .card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tire-card .card-brand {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tire-accent);
    margin-bottom: 5px;
}

.tire-card .card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tire-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.tire-card .card-size {
    font-size: 0.8rem;
    color: var(--tire-text-muted);
    margin-bottom: 10px;
}

/* Card Specs */
.tire-card .card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.tire-card .card-specs span {
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-sm);
    font-size: 0.65rem;
    color: var(--tire-text-dim);
}

/* Card Price */
.tire-card .card-price {
    margin-bottom: 14px;
}

.tire-card .card-price small {
    display: block;
    font-size: 0.65rem;
    color: var(--tire-text-dim);
    margin-bottom: 2px;
}

.tire-card .card-price strong {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--tire-accent);
}

/* Card CTA */
.tire-card .card-cta {
    margin-top: auto;
}

.tire-card .btn-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--tire-danger), var(--tire-danger-dark));
    border: none;
    border-radius: var(--tire-radius-md);
    color: var(--tire-text);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 51, 73, 0.2);
}

.tire-card .btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(235, 51, 73, 0.35);
}

.tire-card .btn-card i {
    font-size: 0.95rem;
}

/* ============================================
   NO RESULTS
   ============================================ */
.no-results {
    text-align: center;
    padding: 50px 20px;
    display: none;
}

.no-results.active {
    display: block;
}

.no-results-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--tire-bg-card);
    border: 1px solid var(--tire-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 1.8rem;
    color: var(--tire-text-dim);
}

.no-results h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tire-text);
    margin-bottom: 8px;
}

.no-results p {
    font-size: 0.95rem;
    color: var(--tire-text-muted);
    margin-bottom: 20px;
}

/* ============================================
   LOAD MORE
   ============================================ */
.load-more {
    text-align: center;
    padding-top: 15px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid var(--tire-accent);
    border-radius: var(--tire-radius-md);
    color: var(--tire-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--tire-accent);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--tire-accent-glow);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
    padding: 60px 0;
    background: var(--tire-bg-darker);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(113, 178, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.why-header .section-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-header .section-subtitle {
    font-size: 0.95rem;
    color: var(--tire-text-muted);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--tire-bg-card);
    border: 1px solid var(--tire-border);
    border-radius: var(--tire-radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s var(--tire-transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tire-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--tire-border-accent);
    box-shadow: var(--tire-shadow-lg), var(--tire-shadow-glow);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(113, 178, 128, 0.2), rgba(113, 178, 128, 0.05));
    border: 1px solid var(--tire-border-accent);
    border-radius: var(--tire-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--tire-accent);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--tire-accent);
    border-color: var(--tire-accent);
    transform: scale(1.1) rotate(5deg);
}

.why-card:hover .why-icon i {
    color: #000;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tire-text);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--tire-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.tire-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--tire-accent-dark) 0%, var(--tire-accent) 100%);
    position: relative;
    overflow: hidden;
}

.tire-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon-wrap {
    margin-bottom: 20px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--tire-danger), var(--tire-danger-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ctaPulse 2s infinite;
    box-shadow: 0 10px 40px rgba(235, 51, 73, 0.4);
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(235, 51, 73, 0.4), 0 10px 40px rgba(235, 51, 73, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(235, 51, 73, 0), 0 10px 40px rgba(235, 51, 73, 0.4);
    }
}

.cta-icon i {
    font-size: 2rem;
    color: var(--tire-text);
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 18px;
}

.cta-phone {
    margin-bottom: 25px;
}

.cta-phone a {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone a:hover {
    color: var(--tire-text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #000;
    border: none;
    border-radius: var(--tire-radius-md);
    color: var(--tire-text);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: var(--tire-text);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--tire-radius-md);
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000;
    color: #000;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--tire-accent), var(--tire-accent-dark));
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--tire-accent-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--tire-accent-glow);
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (375px and below)
   ============================================ */
@media (max-width: 375px) {
    
    .tire-urgency-bar {
        padding: 6px 12px;
    }

    .live-text {
        font-size: 0.6rem;
    }

    .urgency-phone {
        font-size: 0.75rem;
        gap: 5px;
    }

    .tire-hero-image-col {
        height: 18vh;
        height: 18svh;
        min-height: 120px;
        max-height: 160px;
    }

    .tire-hero-tab {
        padding: 8px 4px;
        font-size: 0.58rem;
    }

    .tire-hero-tab i {
        font-size: 0.75rem;
    }

    .tire-hero-panel {
        padding: 0.85rem 1rem;
    }

    .tire-badge {
        padding: 4px 10px;
        font-size: 0.55rem;
        margin-bottom: 0.5rem;
    }

    .tire-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
    }

    .tire-hero-subtitle {
        font-size: 0.68rem;
        margin-bottom: 0.5rem;
    }

    .tire-hero-features {
        gap: 4px;
        margin-bottom: 0.7rem;
    }

    .tire-hero-features li {
        padding: 3px 7px;
        font-size: 0.58rem;
    }

    .tire-hero-cta {
        gap: 6px;
    }

    .btn-primary {
        padding: 11px 18px;
        font-size: 0.8rem;
    }

    .btn-cta-hero {
        padding: 11px 18px;
    }

    .btn-cta-hero small {
        font-size: 0.55rem;
    }

    .btn-cta-hero strong {
        font-size: 0.8rem;
    }

    .brand-item {
        width: 70px;
        height: 35px;
    }

    .tire-stats-bar {
        padding: 10px 12px;
        gap: 10px;
    }

    .tire-stats-bar .stat-value {
        font-size: 0.7rem;
    }

    .shop-title {
        font-size: 1.5rem;
    }

    .tire-card .card-image {
        height: 160px;
    }

    .cta-phone a {
        font-size: 1.6rem;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE (320px)
   ============================================ */
@media (max-width: 320px) {
    
    .tire-hero-image-col {
        height: 15vh;
        height: 15svh;
        min-height: 100px;
        max-height: 130px;
    }

    .tire-hero-tab {
        padding: 7px 3px;
        font-size: 0.52rem;
    }

    .tire-hero-tab span {
        display: none;
    }

    .tire-hero-tab i {
        font-size: 1rem;
    }

    .tire-hero-panel {
        padding: 0.75rem 0.85rem;
    }

    .tire-hero-title {
        font-size: 1.25rem;
    }

    .tire-hero-subtitle {
        font-size: 0.62rem;
    }

    .tire-hero-features li {
        padding: 2px 6px;
        font-size: 0.52rem;
    }

    .btn-primary,
    .btn-cta-hero {
        padding: 10px 16px;
    }

    .btn-primary {
        font-size: 0.75rem;
    }

    .btn-cta-hero strong {
        font-size: 0.75rem;
    }

    .brand-item {
        width: 60px;
        height: 30px;
    }
}

/* ============================================
   RESPONSIVE - SHORT PHONES (height < 700px)
   ============================================ */
@media (max-height: 700px) and (max-width: 767px) {
    
    .tire-hero-image-col {
        height: 16vh;
        height: 16svh;
        min-height: 100px;
        max-height: 140px;
    }

    .tire-hero-tab {
        padding: 8px 6px;
    }

    .tire-hero-panel {
        padding: 0.75rem 1rem;
    }

    .tire-badge {
        margin-bottom: 0.4rem;
        padding: 4px 10px;
    }

    .tire-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .tire-hero-subtitle {
        font-size: 0.68rem;
        margin-bottom: 0.4rem;
    }

    .tire-hero-features {
        margin-bottom: 0.6rem;
    }

    .tire-hero-cta {
        gap: 6px;
    }

    .tire-brands-bar {
        padding: 10px 0;
    }

    .brand-item {
        width: 65px;
        height: 32px;
    }

    .tire-stats-bar {
        padding: 10px;
    }
}

/* ============================================
   RESPONSIVE - VERY SHORT PHONES (height < 600px)
   ============================================ */
@media (max-height: 600px) and (max-width: 767px) {
    
    .tire-hero-image-col {
        height: 14vh;
        height: 14svh;
        min-height: 80px;
        max-height: 110px;
    }

    .tire-hero-panel {
        padding: 0.6rem 1rem;
    }

    .tire-badge {
        margin-bottom: 0.35rem;
    }

    .tire-hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .tire-hero-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .tire-hero-features {
        margin-bottom: 0.5rem;
        gap: 3px;
    }

    .tire-hero-features li {
        padding: 3px 6px;
        font-size: 0.55rem;
    }

    .tire-hero-cta {
        gap: 5px;
    }

    .btn-primary,
    .btn-cta-hero {
        padding: 10px 16px;
    }

    .tire-brands-bar {
        padding: 8px 0;
    }

    .brand-item {
        width: 55px;
        height: 28px;
    }

    .tire-stats-bar {
        padding: 8px 10px;
    }
}

/* ============================================
   RESPONSIVE - TALL PHONES (height > 800px)
   ============================================ */
@media (min-height: 800px) and (max-width: 767px) {
    
    .tire-hero-image-col {
        height: 26vh;
        height: 26svh;
        min-height: 180px;
        max-height: 240px;
    }

    .tire-hero-panel {
        padding: 1.25rem 1.25rem 1rem;
    }

    .tire-badge {
        margin-bottom: 0.75rem;
    }

    .tire-hero-title {
        font-size: 1.85rem;
        margin-bottom: 0.5rem;
    }

    .tire-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .tire-hero-features {
        gap: 8px;
        margin-bottom: 1rem;
    }

    .tire-hero-features li {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .tire-hero-cta {
        gap: 10px;
    }

    .btn-primary {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .btn-cta-hero {
        padding: 14px 22px;
    }

    .btn-cta-hero strong {
        font-size: 0.95rem;
    }

    .tire-brands-bar {
        padding: 15px 0;
    }

    .brand-item {
        width: 90px;
        height: 45px;
    }

    .tire-stats-bar {
        padding: 14px 20px;
    }
}

/* ============================================
   RESPONSIVE - LANDSCAPE MOBILE
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    
    .tire-hero {
        height: auto;
        min-height: auto;
    }

    .tire-hero-image-col {
        height: 35vh;
        min-height: 150px;
    }

    .tire-hero-subtitle {
        display: none;
    }

    .tire-hero-features {
        display: none;
    }

    .tire-hero-panel {
        padding: 0.75rem 1rem;
    }

    .tire-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .tire-hero-cta {
        flex-direction: row;
        gap: 10px;
    }

    .btn-primary,
    .btn-cta-hero {
        flex: 1;
        padding: 10px 16px;
    }

    .tire-brands-bar {
        display: none;
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    
    /* Urgency Bar */
    .tire-urgency-bar {
        padding: 12px 40px;
    }

    .live-pulse {
        width: 10px;
        height: 10px;
    }

    .live-text {
        font-size: 0.9rem;
    }

    .urgency-phone {
        font-size: 1.1rem;
        gap: 8px;
    }

    /* Hero Image */
    .tire-hero-image-col {
        height: 35vh;
        min-height: 250px;
        max-height: 350px;
    }

    .tire-hero-arrow {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .tire-hero-arrow-prev { left: 20px; }
    .tire-hero-arrow-next { right: 20px; }

    /* Hero Tabs */
    .tire-hero-tab {
        padding: 14px 20px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .tire-hero-tab i {
        font-size: 1rem;
    }

    .tire-tab-indicator {
        height: 3px;
    }

    /* Hero Panel */
    .tire-hero-panel {
        padding: 2rem;
    }

    .tire-badge {
        padding: 8px 18px;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .tire-hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }

    .tire-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: unset;
        display: block;
    }

    .tire-hero-features {
        gap: 10px;
        margin-bottom: 1.25rem;
    }

    .tire-hero-features li {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .tire-hero-cta {
        flex-direction: row;
        gap: 15px;
        padding-bottom: 0;
    }

    .btn-primary,
    .btn-cta-hero {
        flex: 1;
        padding: 14px 24px;
    }

    .btn-primary {
        font-size: 0.9rem;
    }

    .btn-cta-hero strong {
        font-size: 0.95rem;
    }

    /* Brands Bar */
    .tire-brands-bar {
        padding: 18px 0;
    }

    .tire-brands-bar .brands-track {
        gap: 30px;
    }

    .brand-item {
        width: 120px;
        height: 60px;
        padding: 10px;
    }

    @keyframes brandScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 8 - 30px * 8));
        }
    }

    /* Stats Bar */
    .tire-stats-bar {
        gap: 30px;
        padding: 18px 40px;
    }

    .tire-stats-bar .stat {
        gap: 10px;
    }

    .tire-stats-bar .stat i {
        font-size: 1.1rem;
    }

    .tire-stats-bar .stat-value {
        font-size: 1rem;
    }

    .tire-stats-bar .stat-label {
        display: block;
        font-size: 0.7rem;
    }

    .tire-stats-bar .stat-divider {
        height: 24px;
    }

    /* Shop Section */
    .tire-shop {
        padding: 70px 0 90px;
    }

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

    .shop-title {
        font-size: 2rem;
    }

    /* Shop Controls */
    .shop-controls {
        flex-direction: row;
        align-items: center;
    }

    .search-wrapper {
        flex: 1;
        height: 54px;
    }

    .filter-toggle {
        width: auto;
    }

    .sort-wrapper {
        width: 180px;
    }

    /* Filter Grid */
    .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    /* Tire Grid */
    .tire-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .tire-card .card-image {
        height: 200px;
    }

    /* Why Grid */
    .why-choose {
        padding: 80px 0;
    }

    .why-header .section-title {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* CTA Section */
    .tire-cta {
        padding: 80px 0;
    }

    .cta-icon {
        width: 90px;
        height: 90px;
    }

    .cta-icon i {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-phone a {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    
    /* Hero Full Height */
    .tire-hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        max-height: none;
    }

    .tire-hero-main {
        flex-direction: row;
        flex: 1;
    }

    /* Image Column - 50% */
    .tire-hero-image-col {
        width: 50%;
        height: 100%;
        min-height: unset;
        max-height: unset;
    }

    .tire-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(15, 15, 15, 0) 0%,
            rgba(15, 15, 15, 0.4) 70%,
            rgba(15, 15, 15, 0.95) 100%
        );
    }

    .tire-hero-arrow {
        width: 54px;
        height: 54px;
        font-size: 1.1rem;
    }

    .tire-hero-arrow-prev { left: 25px; }
    .tire-hero-arrow-next { right: 25px; }

    /* Content Column - 50% */
    .tire-hero-content-col {
        width: 50%;
        border-left: 3px solid var(--tire-accent);
    }

    .tire-hero-tab {
        padding: 18px 24px;
        font-size: 0.85rem;
    }

    .tire-hero-panel {
        padding: 2.5rem 3rem;
        justify-content: center;
    }

    .tire-hero-title {
        font-size: 2.8rem;
        margin-bottom: 0.75rem;
    }

    .tire-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        max-width: 450px;
    }

    .tire-hero-features {
        gap: 12px;
        margin-bottom: 1.5rem;
    }

    .tire-hero-cta {
        margin-top: 0;
        gap: 18px;
    }

    .btn-primary,
    .btn-cta-hero {
        flex: unset;
        padding: 16px 32px;
    }

    /* Brands Bar */
    .tire-brands-bar {
        padding: 20px 0;
    }

    .tire-brands-bar .brands-track {
        gap: 40px;
    }

    .brand-item {
        width: 140px;
        height: 70px;
    }

    @keyframes brandScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 8 - 40px * 8));
        }
    }

    /* Stats Bar */
    .tire-stats-bar {
        gap: 50px;
        padding: 22px 60px;
    }

    .tire-stats-bar .stat i {
        font-size: 1.2rem;
    }

    .tire-stats-bar .stat-value {
        font-size: 1.1rem;
    }

    .tire-stats-bar .stat-label {
        font-size: 0.8rem;
    }

    /* Shop Section */
    .tire-shop {
        padding: 80px 0 100px;
    }

    .shop-title {
        font-size: 2.25rem;
    }

    /* Filter Grid */
    .filter-panel {
        padding: 24px;
    }

    .filter-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .filter-actions {
        grid-column: auto;
        flex-direction: column;
    }

    /* Tire Grid */
    .tire-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    /* Why Section */
    .why-choose {
        padding: 100px 0;
    }

    .why-header .section-title {
        font-size: 2.25rem;
    }

    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 1.8rem;
    }

    .why-card h3 {
        font-size: 1.15rem;
    }

    /* CTA Section */
    .tire-cta {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-phone a {
        font-size: 3rem;
    }

    .btn-cta-large {
        padding: 18px 40px;
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    
    .tire-hero-panel {
        padding: 3rem 4rem;
    }

    .tire-hero-title {
        font-size: 3.2rem;
    }

    .tire-hero-subtitle {
        font-size: 1.15rem;
        max-width: 480px;
    }

    .tire-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .shop-title {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   RESPONSIVE - ULTRA WIDE (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    
    .tire-hero-title {
        font-size: 3.5rem;
    }

    .tire-hero-subtitle {
        font-size: 1.2rem;
        max-width: 520px;
    }

    .tire-grid {
        gap: 32px;
    }
}

/* ============================================
   REDUCED MOTION (Accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    
    .live-pulse,
    .cta-icon {
        animation: none;
    }

    .tire-hero-image,
    .tire-hero-panel,
    .tire-tab-indicator,
    .tire-card,
    .why-card,
    .btn-primary,
    .btn-cta-hero,
    .brands-track {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}