/**
 * AUTO AND MORE - COMPLETE BRAND REDESIGN
 * Premium Automotive E-commerce Theme
 * Color Palette: Primary Dark #1A1C1E, Accent #00D1FF, Neutral #E2E8F0, Background #F8FAFC
 * Typography: Bubblegum Sans (Headings), Inter (Body)
 */

@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Auto And More Brand Colors */
    --brand-primary-dark: #1A1C1E;
    --brand-accent: #00D1FF;
    --brand-neutral: #E2E8F0;
    --brand-bg: #F8FAFC;
    --brand-white: #FFFFFF;
    --brand-text: #1A1C1E;
    --brand-text-light: #6B7280;
    --brand-text-muted: #9CA3AF;
    --brand-border: #E2E8F0;
    --brand-success: #10B981;
    --brand-warning: #F59E0B;
    --brand-error: #EF4444;
    --brand-info: #3B82F6;
    
    /* Legacy support - map old andmore variables to brand variables */
    --andmore-primary: var(--brand-primary-dark);
    --andmore-accent: var(--brand-accent);
    --andmore-bg: var(--brand-bg);
    --andmore-white: var(--brand-white);
    --andmore-text: var(--brand-text);
    --andmore-text-light: var(--brand-text-light);
    --andmore-text-muted: var(--brand-text-muted);
    --andmore-border: var(--brand-border);
    --andmore-success: var(--brand-success);
    --andmore-warning: var(--brand-warning);
    --andmore-error: var(--brand-error);
    --andmore-info: var(--brand-info);
    
    /* Typography */
    --font-heading: 'Bubblegum Sans', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 28, 30, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 28, 30, 0.12);
    --shadow-lg: 0 10px 40px rgba(26, 28, 30, 0.15);
    --shadow-xl: 0 20px 60px rgba(26, 28, 30, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ============================================
   GLOBAL – samo box-sizing, bez resetovanja margin/padding
   (Bootstrap i template zadržavaju svoj layout)
   ============================================ */

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

/* ============================================
   TEXT-BASED LOGO
   ============================================ */

.auto-andmore-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.75rem;
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.auto-andmore-logo .logo-auto {
    color: var(--brand-white);
    margin-right: 0.25rem;
}

.auto-andmore-logo .logo-andmore {
    color: var(--brand-accent);
}

.auto-andmore-logo:hover {
    transform: scale(1.02);
}

.auto-andmore-logo:hover .logo-andmore {
    text-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
}

/* Header variant (dark background) */
.header-dark .auto-andmore-logo .logo-auto {
    color: var(--brand-white);
}

.header-dark .auto-andmore-logo .logo-andmore {
    color: var(--brand-accent);
}

/* Light variant (light background) */
.header-light .auto-andmore-logo .logo-auto {
    color: var(--brand-primary-dark);
}

.header-light .auto-andmore-logo .logo-andmore {
    color: var(--brand-accent);
}

/* ============================================
   HEADER – samo boje/pozadina, layout ostaje od template-a
   ============================================ */

.header-area {
    background: var(--brand-primary-dark) !important;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: rgba(26, 28, 30, 0.95) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.header-top .header-info a {
    color: var(--brand-neutral);
}

.header-top .header-info a:hover {
    color: var(--brand-accent);
}

.header-middle {
    background: var(--brand-primary-dark) !important;
}

/* Search – samo izgled polja, ne menja layout */
.search-style-2 input {
    border-color: rgba(226, 232, 240, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
}

.search-style-2 input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-style-2 input:focus {
    border-color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.15);
}

.header-action-icon-2 a {
    color: var(--brand-white);
}

.header-action-icon-2 a:hover {
    color: var(--brand-accent);
}

.header-action-icon-2 .pro-count,
.header-action-icon-2 .loyalty-badge {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, #0F1113 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 28, 30, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--brand-white);
    max-width: 600px;
}

.hero-content h1 {
    color: var(--brand-white);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--brand-neutral);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 209, 255, 0.3);
}

.btn-hero-cta:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 209, 255, 0.4);
}

.btn-hero-cta:active {
    transform: translateY(0);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-cart-wrap {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-cart-wrap:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-action-wrap {
    position: relative;
    overflow: hidden;
    background: var(--brand-bg);
}

.product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-cart-wrap:hover .product-img img {
    transform: scale(1.05);
}

/* Compatibility Badge */
.compatibility-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compatibility-badge::before {
    content: "🚗";
    font-size: 1rem;
}

/* Product Content */
.product-content-wrap {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.product-title a {
    color: var(--brand-primary-dark);
    transition: color var(--transition-base);
}

.product-title a:hover {
    color: var(--brand-accent);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.product-price .current-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--brand-text-muted);
    text-decoration: line-through;
}

.product-action {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--brand-border);
}

.btn-add-to-cart {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-add-to-cart:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
}

/* ============================================
   AUTOMOTIVE FILTER WIDGET
   ============================================ */

.automotive-filter {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, #0F1113 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    color: var(--brand-white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

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

.automotive-filter h2 {
    color: var(--brand-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.automotive-filter > p {
    color: var(--brand-neutral);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.filter-form .form-group {
    margin: 0;
}

.filter-form label {
    display: block;
    color: var(--brand-white);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.filter-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.filter-form select:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.1);
}

.filter-form select option {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 209, 255, 0.3);
    align-self: flex-end;
}

.filter-btn:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 209, 255, 0.4);
}

.filter-btn:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .filter-form {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .auto-andmore-logo {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .automotive-filter {
        padding: var(--spacing-lg);
    }
    
    .automotive-filter h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .auto-andmore-logo {
        font-size: 1.25rem;
    }
    
    .header-action-icon-2 a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .header-action-icon-2 a span {
        display: none;
    }
    
    .product-price .current-price {
        font-size: 1.25rem;
    }
}

/* ============================================
   SEARCH AJAX SUGGESTIONS
   ============================================ */

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    margin-top: 0.5rem;
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid var(--brand-border);
}

.search-suggestions-list {
    padding: 0.5rem 0;
}

.search-suggestion-item {
    transition: background var(--transition-base);
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: var(--brand-bg);
}

.search-suggestion-item a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--brand-text);
    text-decoration: none;
}

.search-suggestion-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.search-suggestion-content {
    flex: 1;
    min-width: 0;
}

.search-suggestion-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-primary-dark);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion-price {
    font-size: 0.85rem;
    color: var(--brand-accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

.search-suggestion-loading,
.search-suggestion-empty,
.search-suggestion-error {
    padding: var(--spacing-md);
    text-align: center;
    color: var(--brand-text-light);
}

.search-suggestion-footer {
    border-top: 1px solid var(--brand-border);
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
}

.search-suggestion-footer a {
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base);
}

.search-suggestion-footer a:hover {
    color: var(--brand-primary-dark);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer.main {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
    margin-top: var(--spacing-2xl);
}

footer .newsletter {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, #0F1113 100%);
    padding: var(--spacing-xl) 0;
}

footer .newsletter h4,
footer .newsletter h5 {
    color: var(--brand-white);
    font-family: var(--font-heading);
}

footer .form-subcriber {
    display: flex;
    gap: var(--spacing-sm);
}

footer .form-subcriber input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    font-family: var(--font-body);
    transition: all var(--transition-base);
}

footer .form-subcriber input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer .form-subcriber input:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.15);
}

footer .form-subcriber button {
    padding: 0.875rem 2rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer .form-subcriber button:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
}

footer .footer-mid {
    background: var(--brand-primary-dark);
    padding: var(--spacing-xl) 0;
}

footer .widget-about .logo a {
    display: inline-block;
}

footer .widget-about h5 {
    color: var(--brand-neutral);
    font-family: var(--font-heading);
    font-weight: 600;
}

footer .mobile-social-icon a {
    color: var(--brand-neutral);
    transition: color var(--transition-base);
    font-size: 1.25rem;
}

footer .mobile-social-icon a:hover {
    color: var(--brand-accent);
    transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-accent {
    color: var(--brand-accent) !important;
}

.bg-accent {
    background-color: var(--brand-accent) !important;
}

.text-primary-dark {
    color: var(--brand-primary-dark) !important;
}

.bg-primary-dark {
    background-color: var(--brand-primary-dark) !important;
}

.shadow-premium {
    box-shadow: var(--shadow-lg);
}

.transition-premium {
    transition: all var(--transition-base);
}

/* ============================================
   CART DROPDOWN STYLES
   ============================================ */

.cart-dropdown-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-top: var(--spacing-sm);
    z-index: 1000;
    padding: var(--spacing-md);
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid var(--brand-border);
}

.cart-dropdown-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.cart-dropdown-wrap li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--brand-border);
}

.cart-dropdown-wrap li:last-child {
    border-bottom: none;
}

.shopping-cart-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.shopping-cart-title {
    flex: 1;
    min-width: 0;
}

.shopping-cart-title h4 {
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--brand-primary-dark);
}

.shopping-cart-title h4 a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.shopping-cart-title h4 a:hover {
    color: var(--brand-accent);
}

.shopping-cart-title h4 span {
    color: var(--brand-text-light);
    font-weight: 400;
}

.shopping-cart-delete a {
    color: var(--brand-text-muted);
    transition: color var(--transition-base);
    padding: 0.5rem;
}

.shopping-cart-delete a:hover {
    color: var(--brand-error);
}

.shopping-cart-footer {
    border-top: 2px solid var(--brand-border);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.shopping-cart-total h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-md);
}

.shopping-cart-total span {
    color: var(--brand-accent);
    font-size: 1.25rem;
}

.shopping-cart-button {
    display: flex;
    gap: var(--spacing-sm);
}

.shopping-cart-button a {
    flex: 1;
    padding: 0.875rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
}

.shopping-cart-button a.outline {
    background: transparent;
    border: 2px solid var(--brand-primary-dark);
    color: var(--brand-primary-dark);
}

.shopping-cart-button a.outline:hover {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
}

.shopping-cart-button a:not(.outline) {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
}

.shopping-cart-button a:not(.outline):hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
}

/* ============================================
   HEADER BOTTOM NAVIGATION
   ============================================ */

.header-bottom {
    background: var(--brand-primary-dark);
    padding: 0;
}

.header-bottom .main-menu ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-bottom .main-menu ul li {
    position: relative;
}

.header-bottom .main-menu ul li > a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--brand-white);
    font-weight: 500;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    border-radius: 0;
    text-decoration: none;
}

.header-bottom .main-menu ul li > a:hover,
.header-bottom .main-menu ul li > a.active {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.header-bottom .main-menu ul li:hover > a {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border-radius: var(--radius-md);
}

/* Categories Button */
.categori-button-active {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.categori-button-active:hover {
    background: #00B8E6;
    color: var(--brand-primary-dark);
}

/* ============================================
   ADDITIONAL COMPONENT STYLES
   ============================================ */

/* Buttons */
.btn-primary-andmore,
.button-add-to-cart,
.btn-add-cart {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.btn-primary-andmore:hover,
.button-add-to-cart:hover,
.btn-add-cart:hover {
    background: #0F1113;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--brand-white);
}

.btn-accent-andmore {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.btn-accent-andmore:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--brand-primary-dark);
}

/* Checkout Section */
.checkout-section {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.checkout-section h3 {
    color: var(--brand-primary-dark);
    font-size: 1.75rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--brand-border);
}

/* Form Groups */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    color: var(--brand-text);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--brand-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--brand-bg);
    font-family: var(--font-body);
    color: var(--brand-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    background: var(--brand-white);
    box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.1);
}

/* Shopping Summary Table */
.shopping-summery {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    border-collapse: collapse;
}

.shopping-summery thead {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
}

.shopping-summery thead th {
    padding: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: none;
    text-align: left;
}

.shopping-summery tbody td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--brand-border);
    color: var(--brand-text);
    font-family: var(--font-body);
}

.shopping-summery tbody tr:last-child td {
    border-bottom: none;
}

/* Product Thumbnail */
.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Product Name */
.product-name a {
    color: var(--brand-text);
    font-weight: 600;
    font-family: var(--font-body);
    transition: color var(--transition-base);
    text-decoration: none;
}

.product-name a:hover {
    color: var(--brand-accent);
}

/* Detail Qty */
.detail-qty {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    background: var(--brand-bg);
}

.detail-qty a {
    color: var(--brand-text);
    font-size: 1.2rem;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
}

.detail-qty a:hover {
    color: var(--brand-primary-dark);
    background: var(--brand-white);
}

.qty-val {
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    font-family: var(--font-body);
}

/* Points Earned Notice */
.points-earned-notice {
    background: var(--brand-bg);
    border-left: 4px solid var(--brand-accent);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    color: var(--brand-text);
    font-family: var(--font-body);
}

.points-earned-notice strong {
    color: var(--brand-primary-dark);
    font-size: 1.1rem;
}

/* Loyalty Badge */
.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--brand-accent) 0%, #00B8E6 100%);
    color: var(--brand-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-body);
    margin: var(--spacing-xs) 0;
    box-shadow: var(--shadow-sm);
}

/* Loyalty Tier */
.loyalty-tier {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.loyalty-tier.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    color: var(--brand-white);
}

.loyalty-tier.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: var(--brand-text);
}

.loyalty-tier.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--brand-text);
}

/* Breadcrumb */
.breadcrumb-wrap {
    background: var(--brand-bg);
    padding: var(--spacing-md) 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

.breadcrumb-item {
    color: var(--brand-text-light);
}

.breadcrumb-item a {
    color: var(--brand-text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-item a:hover {
    color: var(--brand-accent);
}

.breadcrumb-item.active {
    color: var(--brand-primary-dark);
}

/* Page Header */
.page-header {
    padding: var(--spacing-lg) 0;
    background: var(--brand-bg);
}

/* ============================================
   ENHANCED RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .filter-form {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .product-grid-3 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .header-wrap {
        flex-wrap: wrap;
    }
    
    .search-style-2 {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .header-bottom .main-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .header-bottom .main-menu ul li > a {
        width: 100%;
        border-radius: 0;
    }
    
    .header-bottom .main-menu ul li > a:hover {
        border-radius: 0;
    }
    
    .categori-button-active {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .auto-andmore-logo {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .automotive-filter {
        padding: var(--spacing-lg);
    }
    
    .automotive-filter h2 {
        font-size: 1.5rem;
    }
    
    .product-grid-3 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .shopping-summery {
        font-size: 0.9rem;
    }
    
    .shopping-summery thead th,
    .shopping-summery tbody td {
        padding: 1rem 0.75rem;
    }
    
    .checkout-section {
        padding: var(--spacing-md);
    }
    
    .checkout-section h3 {
        font-size: 1.5rem;
    }
    
    .cart-dropdown-wrap {
        width: 300px;
        right: -50px;
    }
}

@media (max-width: 576px) {
    .auto-andmore-logo {
        font-size: 1.25rem;
    }
    
    .header-action-icon-2 a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .header-action-icon-2 a span {
        display: none;
    }
    
    .product-price .current-price {
        font-size: 1.25rem;
    }
    
    .product-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .automotive-filter h2 {
        font-size: 1.75rem;
    }
    
    .shopping-summery thead {
        display: none;
    }
    
    .shopping-summery tbody td {
        display: block;
        padding: 0.75rem;
        text-align: left;
    }
    
    .shopping-summery tbody td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        color: var(--brand-primary-dark);
    }
    
    .shopping-summery tbody tr {
        display: block;
        margin-bottom: var(--spacing-md);
        border: 1px solid var(--brand-border);
        border-radius: var(--radius-md);
        padding: var(--spacing-sm);
    }
    
    .cart-dropdown-wrap {
        width: calc(100vw - 2rem);
        right: 1rem;
    }
    
    .btn-primary-andmore,
    .btn-accent-andmore {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   CONTRAST FIXES & OVERRIDES
   ============================================ */

/* Ensure all text on dark backgrounds is white */
.header-area,
.header-top,
.header-bottom,
.header-middle {
    color: var(--brand-white);
}

.header-area a,
.header-top a,
.header-bottom a {
    color: var(--brand-white);
}

.header-area a:hover,
.header-top a:hover {
    color: var(--brand-accent);
}

/* Pozadina sadržaja – ne dirati .container */
.main {
    background-color: var(--brand-bg);
}

/* Fix any white text on white background issues */
.text-white {
    color: var(--brand-white) !important;
}

.text-dark {
    color: var(--brand-primary-dark) !important;
}

/* Naši dugmići (ne sva .btn – template ima svoje) */
.main .btn--primary,
.main .btn--outline,
.main .product-card .btn,
.main .banner-card .btn {
    font-family: var(--font-body);
    font-weight: 600;
    transition: all var(--transition-base);
}

/* Ensure buttons have proper contrast - samo naši brand dugmići */
.main button.btn--primary,
.main .btn--primary:hover,
.main a.btn--primary:hover {
    background: #0F1113;
    color: var(--brand-white);
    transform: translateY(-2px);
}

/* Template zadržava svoje forme, tabele, kartice i naslove */

/* Fix any remaining contrast issues */
.bg-white {
    background-color: var(--brand-white) !important;
    color: var(--brand-text) !important;
}

.bg-dark {
    background-color: var(--brand-primary-dark) !important;
    color: var(--brand-white) !important;
}

.bg-light {
    background-color: var(--brand-bg) !important;
    color: var(--brand-text) !important;
}

/* Override any template colors that might conflict */
:root {
    --color-brand: var(--brand-primary-dark);
    --color-brand-2: var(--brand-accent);
    --color-primary: var(--brand-primary-dark);
    --color-accent: var(--brand-accent);
}

/* Ensure maind6c3.css colors are overridden */
.main-menu > nav > ul > li > a.active {
    color: var(--brand-accent) !important;
}

.main-menu > nav > ul > li > a:hover {
    color: var(--brand-accent) !important;
}

/* ============================================
   HOMEPAGE SPECIFIC STYLES
   ============================================ */

/* Slider Area */
.home-slider {
    position: relative;
    overflow: hidden;
}

.single-hero-slider {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.single-slider-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.single-slider-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-slider-content-2 {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--brand-white);
    max-width: 600px;
}

.hero-slider-content-2 h1,
.hero-slider-content-2 h2,
.hero-slider-content-2 h4 {
    color: var(--brand-white);
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
}

.hero-slider-content-2 h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-slider-content-2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.hero-slider-content-2 .text-brand {
    color: var(--brand-accent) !important;
}

.btn-brush,
.btn-brush-3 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 209, 255, 0.3);
    text-decoration: none;
}

.btn-brush:hover,
.btn-brush-3:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 209, 255, 0.4);
    color: var(--brand-primary-dark);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.section-title span {
    position: relative;
    padding: 0 var(--spacing-md);
    background: var(--brand-bg);
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-border);
    z-index: 0;
}

/* Product Tabs */
.product-tabs {
    background: var(--brand-bg);
    padding: var(--spacing-xl) 0;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.nav-tabs {
    border-bottom: 2px solid var(--brand-border);
    display: flex;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    padding: 1rem 2rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--brand-text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.nav-tabs .nav-link:hover {
    color: var(--brand-primary-dark);
    background: var(--brand-bg);
}

.nav-tabs .nav-link.active {
    color: var(--brand-primary-dark);
    border-bottom-color: var(--brand-accent);
    background: var(--brand-white);
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-accent);
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all var(--transition-base);
}

.view-more:hover {
    color: var(--brand-primary-dark);
    gap: 0.75rem;
}

/* Product Grid */
.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Product Cards - Enhanced */
.product-cart-wrap {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--brand-border);
}

.product-cart-wrap:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-accent);
}

.product-img-action-wrap {
    position: relative;
    overflow: hidden;
    background: var(--brand-bg);
    aspect-ratio: 1 / 1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-cart-wrap:hover .product-img img {
    transform: scale(1.1);
}

.product-content-wrap {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content-wrap h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.product-content-wrap h2 a {
    color: var(--brand-primary-dark);
    transition: color var(--transition-base);
    text-decoration: none;
}

.product-content-wrap h2 a:hover {
    color: var(--brand-accent);
}

.product-category {
    font-size: 0.85rem;
    color: var(--brand-text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.product-category a {
    color: var(--brand-text-light);
    transition: color var(--transition-base);
    text-decoration: none;
}

.product-category a:hover {
    color: var(--brand-primary-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
    flex-wrap: wrap;
}

.product-price span:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--brand-text-muted);
    text-decoration: line-through;
    font-family: var(--font-body);
}

/* Action Buttons */
.product-action-1 {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--brand-border);
}

.product-action-1.show {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
    color: var(--brand-primary-dark);
}

.action-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Popular Categories */
.popular-categories {
    background: var(--brand-white);
    padding: var(--spacing-xl) 0;
}

.card-1 {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--brand-border);
}

.card-1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent);
}

.card-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card-1:hover img {
    transform: scale(1.1);
}

.card-1 h5 {
    padding: var(--spacing-md);
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-primary-dark);
    text-align: center;
}

.card-1 h5 a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.card-1 h5 a:hover {
    color: var(--brand-accent);
}

/* Section Padding */
.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Carousel Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: var(--brand-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    color: var(--brand-primary-dark);
}

.slider-arrow:hover {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-2 {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 0 var(--spacing-xs);
}

.carausel-6-columns-cover {
    position: relative;
}

/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */

.product-details-area {
    padding: var(--spacing-xl) 0;
    background: var(--brand-bg);
}

.product-details-img {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.product-details-content {
    padding: var(--spacing-lg);
}

.product-details-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-md);
}

.title-detail {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-md);
}

.detail-info {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.pro-details-brand {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brand-text-light);
    margin-bottom: var(--spacing-md);
}

.product-price-cover {
    margin-bottom: var(--spacing-lg);
}

.product-price-cover .product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.product-price-cover .text-brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-accent);
}

.product-price-cover .old-price {
    font-size: 1.5rem;
    color: var(--brand-text-muted);
    text-decoration: line-through;
}

.product-price-cover .save-price {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.short-desc {
    margin-bottom: var(--spacing-lg);
    color: var(--brand-text);
    font-family: var(--font-body);
    line-height: 1.8;
}

.product_sort_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product_sort_info li {
    padding: var(--spacing-sm) 0;
    font-family: var(--font-body);
    color: var(--brand-text);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.detail-extralink {
    margin-top: var(--spacing-lg);
}

.detail-qty {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    border: 2px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--brand-bg);
    margin-bottom: var(--spacing-md);
}

.detail-qty a {
    color: var(--brand-text);
    font-size: 1.2rem;
    transition: color var(--transition-base);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.detail-qty a:hover {
    color: var(--brand-primary-dark);
    background: var(--brand-white);
}

.detail-qty input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--brand-text);
}

.btn-add-cart {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.btn-add-cart:hover {
    background: #00B8E6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--brand-primary-dark);
}

/* Accordion Styles */
.product-detail-accordion {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.accordion-item {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.accordion-button {
    background: var(--brand-bg);
    color: var(--brand-primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

.accordion-button:hover {
    background: var(--brand-white);
}

.accordion-button:not(.collapsed) {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
}

.accordion-body {
    padding: var(--spacing-lg);
    color: var(--brand-text);
    font-family: var(--font-body);
    line-height: 1.8;
}

.accordion-body table {
    width: 100%;
    border-collapse: collapse;
}

.accordion-body table th,
.accordion-body table td {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--brand-border);
    text-align: left;
}

.accordion-body table th {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
    font-weight: 600;
    font-family: var(--font-body);
}

/* ============================================
   PRODUCT CATEGORY PAGE STYLES
   ============================================ */

.shop-product-fillter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--brand-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.totall-product {
    font-family: var(--font-body);
    color: var(--brand-text);
}

.totall-product strong {
    color: var(--brand-accent);
    font-weight: 700;
}

.sort-by-product-area {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-wrap: wrap;
}

.sort-by-cover {
    position: relative;
}

.sort-by-product-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1rem;
    background: var(--brand-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.sort-by-product-wrap:hover {
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
}

.sort-by {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brand-text-light);
}

.sort-by-dropdown-wrap {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--brand-primary-dark);
}

.sort-by-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--brand-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    margin-top: var(--spacing-xs);
    z-index: 100;
    display: none;
    padding: var(--spacing-sm) 0;
}

.sort-by-cover:hover .sort-by-dropdown {
    display: block;
}

.sort-by-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-by-dropdown ul li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--brand-text);
    text-decoration: none;
    transition: all var(--transition-base);
    font-family: var(--font-body);
}

.sort-by-dropdown ul li a:hover,
.sort-by-dropdown ul li a.active {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
}

/* Pagination */
.pagination-area {
    margin-top: var(--spacing-xl);
}

.pagination {
    display: flex;
    gap: var(--spacing-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: var(--brand-white);
    color: var(--brand-text);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all var(--transition-base);
}

.page-link:hover {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    border-color: var(--brand-accent);
}

.page-item.active .page-link {
    background: var(--brand-primary-dark);
    color: var(--brand-white);
    border-color: var(--brand-primary-dark);
}

.page-link.dot {
    background: transparent;
    border: none;
    cursor: default;
}

.page-link.dot:hover {
    background: transparent;
    color: var(--brand-text);
}

/* Responsive for Homepage */
@media (max-width: 992px) {
    .hero-slider-content-2 {
        left: 30px;
        max-width: 500px;
    }
    
    .hero-slider-content-2 h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider-content-2 h2 {
        font-size: 2rem;
    }
    
    .product-grid-4 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }
    
    .tab-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-tabs {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-content-2 {
        left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-slider-content-2 h1 {
        font-size: 2rem;
    }
    
    .hero-slider-content-2 h2 {
        font-size: 1.5rem;
    }
    
    .btn-brush,
    .btn-brush-3 {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .product-grid-4 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-details-content h2,
    .title-detail {
        font-size: 1.75rem;
    }
    
    .product-price-cover .text-brand {
        font-size: 2rem;
    }
    
    .shop-product-fillter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-by-product-area {
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.primary-sidebar {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.widget-category {
    margin-bottom: var(--spacing-xl);
}

.widget-category h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--brand-border);
}

.widget-category h5 a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.widget-category h5 a:hover {
    color: var(--brand-accent);
}

.widget-category .categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-category .categories li {
    margin-bottom: var(--spacing-xs);
}

.widget-category .categories li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--brand-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    font-family: var(--font-body);
}

.widget-category .categories li a:hover {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    padding-left: var(--spacing-lg);
}

.widget-category .categories li a strong {
    font-weight: 600;
    color: var(--brand-primary-dark);
}

.sidebar-widget {
    background: var(--brand-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--brand-border);
}

.widget-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--brand-border);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.widget-title a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.widget-title a:hover {
    color: var(--brand-accent);
}

.single-post {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--brand-border);
}

.single-post:last-child {
    border-bottom: none;
}

.single-post .image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.single-post .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .content h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.single-post .content h5 a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.single-post .content h5 a:hover {
    color: var(--brand-accent);
}

.single-post .content .price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--brand-accent);
    font-size: 1rem;
}

.single-post .content .old-price {
    color: var(--brand-text-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
}

.post-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.post-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-thumb:hover img {
    transform: scale(1.1);
}

.post-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.post-content h4 a {
    color: var(--brand-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.post-content h4 a:hover {
    color: var(--brand-accent);
}

.entry-meta {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brand-text-light);
}

.banner-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.banner-img:hover img {
    transform: scale(1.05);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .sticky-sidebar {
        position: static;
    }
    
    .primary-sidebar {
        margin-top: var(--spacing-lg);
    }
}

/* ============================================
   DIZAJN SISTEM 2026 – Banner tree, Product card, Sections
   ============================================ */

/* CSS variables extension */
:root {
    --primary-950: #0A0B0D;
    --primary-900: #1A1C1E;
    --primary-800: #2C2E31;
    --primary-700: #3E4145;
    --accent-600: #00B8E6;
    --accent-500: #00D1FF;
    --accent-400: #33DDFF;
    --accent-300: #66E6FF;
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-400: #94A3B8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --danger: #EF4444;
    --danger-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;
    --gradient-primary: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-400) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,28,30,0.95) 0%, rgba(26,28,30,0.85) 100%);
    --shadow-glow: 0 0 20px rgba(0, 209, 255, 0.4);
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --radius-full: 9999px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Banner tree (3 cards) */
.banner-tree {
    padding: var(--space-16) 0;
    background: var(--neutral-50);
}

.banner-tree__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    min-height: 320px;
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.banner-card__image {
    position: absolute;
    inset: 0;
}

.banner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.banner-card:hover .banner-card__image img {
    transform: scale(1.05);
}

.banner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.banner-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: var(--space-8);
    color: #fff;
    z-index: 1;
}

.banner-card__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.banner-card__title strong {
    font-weight: 800;
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: 2px solid #fff;
    border-radius: var(--radius-full);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    align-self: flex-start;
}

.btn--outline:hover {
    background: #fff;
    color: var(--primary-900);
    transform: translateX(4px);
}

.badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-3);
}

.badge--accent {
    background: var(--accent-500);
    color: #fff;
}

.badge--success {
    background: var(--success);
    color: #fff;
}

.badge--info {
    background: var(--info);
    color: #fff;
}

.badge--new {
    background: var(--success);
    color: #fff;
}

.badge--sale {
    background: var(--danger);
    color: #fff;
}

.badge--out-of-stock {
    background: var(--neutral-500);
    color: #fff;
}

/* Section header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.section-label {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--accent-500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-900);
    margin: 0;
}

.btn--link {
    background: transparent;
    color: var(--accent-500);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.btn--link:hover {
    color: var(--accent-600);
    text-decoration: underline;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-6);
}

.product-grid--compact {
    gap: var(--space-4);
}

.product-grid--compact .product-card {
    font-size: 0.95rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--neutral-500);
    padding: var(--space-8);
}

/* Product card (modern) */
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--neutral-100);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card__badges {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    z-index: 2;
}

.product-card__actions {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
    z-index: 2;
}

.product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.action-btn:hover {
    background: var(--accent-500);
    color: #fff;
    transform: scale(1.1);
}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-5);
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card__meta .category {
    color: var(--neutral-500);
}

.stock-status {
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.stock-status.in-stock {
    background: var(--success-light);
    color: var(--success);
}

.stock-status.out-of-stock {
    background: var(--danger-light);
    color: var(--danger);
}

.product-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.product-card__title a {
    color: var(--primary-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-card__title a:hover {
    color: var(--accent-500);
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.product-card__price .price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-900);
}

.product-card__price .price-old {
    font-size: 0.95rem;
    color: var(--neutral-400);
    text-decoration: line-through;
}

.btn--add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: auto;
}

.btn--primary {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 209, 255, 0.4);
}

.btn--secondary {
    background: var(--neutral-200);
    color: var(--neutral-700);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    cursor: default;
}

.btn--block {
    width: 100%;
}

/* Bestsellers grid */
.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-8);
}

.bestseller-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: start;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.bestseller-card:hover {
    box-shadow: var(--shadow-lg);
}

.bestseller-rank {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: var(--radius-md);
}

.bestseller-image {
    grid-column: 2;
}

.bestseller-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.bestseller-info {
    grid-column: 2;
}

.bestseller-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-500);
}

.bestseller-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--space-2) 0;
}

.bestseller-title a {
    color: var(--primary-900);
    text-decoration: none;
}

.bestseller-title a:hover {
    color: var(--accent-500);
}

.bestseller-meta {
    margin-bottom: var(--space-2);
}

.sold-count {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.bestseller-price .price-current {
    font-size: 1.35rem;
    font-weight: 700;
}

.bestseller-price .price-old {
    text-decoration: line-through;
    color: var(--neutral-400);
}

/* Products tree sections */
.products-tree__section {
    margin-bottom: var(--space-16);
}

.products-tree__section:last-child {
    margin-bottom: 0;
}

/* Notifications */
.notification {
    position: fixed;
    top: var(--space-6);
    right: var(--space-6);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    padding: var(--space-4) var(--space-6);
    transform: translateX(calc(100% + var(--space-6)));
    transition: transform var(--transition-base);
    z-index: 9999;
    min-width: 280px;
}

.notification.show {
    transform: translateX(0);
}

.notification__content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.notification__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    font-weight: bold;
    flex-shrink: 0;
}

.notification--success .notification__icon {
    background: var(--success-light);
    color: var(--success);
}

.notification--error .notification__icon {
    background: var(--danger-light);
    color: var(--danger);
}

.notification__message {
    color: var(--primary-900);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--space-4);
    }
    .banner-tree__grid {
        grid-template-columns: 1fr;
    }
    .bestseller-card {
        grid-template-columns: 1fr;
    }
    .bestseller-rank {
        grid-row: auto;
    }
}

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

