/**
 * ExitCam E-Commerce - Main Stylesheet
 * High-Tech Security & Camera Systems Modern Dark-Slate & Neon Amber Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
    --bg-main: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-input: #FFFFFF;
    --border-color: #E2E8F0;
    --border-highlight: rgba(249, 115, 22, 0.35);

    /* Brand Colors */
    --primary: #F97316;
    --primary-hover: #EA580C;
    --primary-gradient: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --primary-glow: rgba(249, 115, 22, 0.25);

    --accent-blue: #0284C7;
    --accent-green: #059669;
    --accent-red: #DC2626;

    /* Typography */
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-dim: #94A3B8;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Layout */
    --container-width: 1320px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product detail: price and delivery summary */
.detail-price-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 1.4rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.detail-price-card.is-dealer-price {
    border-color: rgba(16, 185, 129, 0.32);
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.28) 0%, #111827 55%);
}

.detail-price-card__header,
.detail-price-card__body,
.detail-price-card__footer {
    display: flex;
    align-items: center;
}

.detail-price-card__header {
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid rgba(52, 211, 153, 0.18);
}

.detail-price-card__eyebrow,
.detail-price-card__applied {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #6EE7B7;
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-price-card__eyebrow {
    padding: 0.42rem 0.72rem;
    color: #D1FAE5;
    background: rgba(16, 185, 129, 0.13);
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-price-card__body {
    justify-content: space-between;
    gap: 1.5rem;
}

.detail-price-card__main,
.detail-price-card__saving {
    display: flex;
    flex-direction: column;
}

.detail-price-card__label,
.detail-price-card__old-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.detail-price-card__current {
    color: var(--primary);
    font: 800 clamp(2.2rem, 4vw, 3rem)/1.08 var(--font-heading);
    letter-spacing: -0.025em;
}

.detail-price-card__saving {
    align-items: flex-end;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(148, 163, 184, 0.16);
}

.detail-price-card__old {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.detail-price-card__discount {
    margin-top: 0.35rem;
    padding: 0.28rem 0.58rem;
    color: #FCA5A5;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.detail-price-card__footer {
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.13);
}

.detail-price-card__shipping {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #D1FAE5;
    font-size: 0.82rem;
}

.detail-price-card__shipping span:not(.detail-price-card__icon) {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.detail-price-card__shipping small {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.detail-price-card__icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    color: #34D399;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 10px;
}

.detail-price-card__priority {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.detail-price-card__priority i {
    color: var(--primary);
}

@media (max-width: 600px) {
    .detail-price-card {
        padding: 1.1rem;
    }

    .detail-price-card__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }

    .detail-price-card__body {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.85rem;
    }

    .detail-price-card__saving {
        align-items: flex-start;
        padding: 0;
        border-left: 0;
    }

    .detail-price-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-price-card__current {
        font-size: 2.35rem;
    }
}

/* Keyboard focus and reduced-motion support. These rules intentionally win
   over older component-level outline resets. */
:focus-visible {
    outline: 3px solid var(--primary) !important;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #F8FAFC;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 15%, rgba(2, 132, 199, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main) !important;
    font-weight: 700;
    line-height: 1.25;
}

/* Page Header & Titles */
.page-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 3rem;
    padding-top: 1rem;
}

.page-title {
    font-size: 2.35rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #0F172A !important;
    margin-bottom: 0.85rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.05rem;
    color: #475569 !important;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Forms & Inputs Design System (Light Theme) */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.925rem;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.form-control:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-control::placeholder {
    color: #94A3B8;
}

select.form-control {
    appearance: none;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    cursor: pointer;
    color: var(--text-main);
}

select.form-control option {
    background: #FFFFFF;
    color: var(--text-main);
    padding: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-green {
    color: var(--accent-green) !important;
}

.text-red {
    color: var(--accent-red) !important;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(249, 115, 22, 0.15);
    color: #FB923C;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-discount {
    background: #EF4444;
    color: #FFFFFF;
    font-weight: 800;
}

.badge-stock {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Announcement Bar (Light & Clean) */
.announcement-bar {
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
    padding: 0.55rem 0;
    font-size: 0.825rem;
    color: #475569;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-marquee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.announcement-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.announcement-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
}

.announcement-user-link {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 700;
    line-height: 1;
}

.announcement-user-link i,
.announcement-user-link span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.announcement-user-link i {
    font-size: 1rem;
}

.announcement-links a:hover {
    color: var(--primary);
}

/* Header & Navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

/* When drawer is open, completely neutralize main-header stacking context */
body.drawer-open .main-header {
    z-index: auto !important;
    position: relative !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #FFFFFF !important;
}

body.drawer-open .nav-bar {
    z-index: auto !important;
}

body.drawer-open .mobile-search-bar {
    z-index: auto !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.brand-logo img.logo-image {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.08));
    transition: transform 0.3s ease;
}

.brand-logo:hover img.logo-image {
    transform: scale(1.03);
}

.brand-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.brand-logo span {
    color: var(--primary);
}

/* Search Box in Header */
.header-search-form {
    flex: 1;
    max-width: 460px;
    position: relative;
}

.header-search-input {
    width: 100%;
    background: #F8FAFC;
    border: 1.5px solid var(--border-color);
    border-radius: 999px;
    padding: 0.65rem 1.25rem 0.65rem 1.25rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.header-search-input:focus {
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.header-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    background: var(--bg-card);
}

.header-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.header-search-btn:hover {
    background: var(--primary-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.header-action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card);
}

.header-action-btn .btn-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

.btn-whatsapp-header {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.btn-whatsapp-header:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

/* Nav Menu Bar */
.nav-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: #FFF7ED;
}

.nav-link.active {
    color: var(--primary-hover);
    background: #FFF7ED;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Hero Single Banner Section */
.hero-banner-section {
    position: relative;
    padding: 1.5rem 0 2rem 0;
}

.hero-banner-card {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    background: #0F172A;
}

.hero-banner-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px -10px rgba(249, 115, 22, 0.25);
    transform: translateY(-3px);
}

.hero-banner-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-banner-card:hover .hero-banner-main-img {
    transform: scale(1.01);
}

/* Hero Carousel Modern Banner Slider */
.hero-carousel-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-carousel-slide a {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    opacity: 0.95;
}

.hero-carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 18px var(--primary-glow);
}

.hero-carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel-arrow.prev {
    left: 20px;
}

.hero-carousel-arrow.next {
    right: 20px;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

/* Dual Promo Banners (Under Slider) */
.hero-banner-section {
    padding-top: 1rem;
    padding-bottom: 0;
}

.promo-banners-section {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.promo-banner-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none !important;
}

.promo-banner-card:hover {
    transform: translateY(-3px);
    border-color: #CBD5E1;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.1);
}

.promo-banner-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.promo-banner-card:hover img {
    transform: scale(1.02);
}



.promo-banner-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.hero-slider-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 3.5rem;
    background: radial-gradient(circle at right center, rgba(249, 115, 22, 0.12) 0%, transparent 60%), var(--bg-card);
    min-height: 480px;
    gap: 2rem;
}

.slide-content h2 {
    font-size: 2.75rem;
    margin: 1rem 0;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}

.slide-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.08));
    transition: transform 0.5s ease;
}

.slider-slide:hover .slide-img {
    transform: scale(1.03);
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    right: 35px;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Feature Highlights Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.feature-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.08);
}

.feature-box:hover {
    border-color: var(--border-highlight);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF7ED;
    color: #EA580C;
    border: 1px solid #FFEDD5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-info p {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.section-view-all:hover {
    gap: 0.65rem;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #CBD5E1;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.1);
}

.product-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.product-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F1F5F9;
}

.product-card-thumb a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-thumb img {
    transform: scale(1.03);
}

.product-card-discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    background: linear-gradient(135deg, #EF4444 0%, #EA580C 100%);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
    letter-spacing: 0.2px;
}

.product-card-shipping-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    pointer-events: none;
}

/* Out of Stock Card State */
.product-card.is-out-of-stock {
    opacity: 0.88;
}

.product-card.is-out-of-stock .product-card-thumb img {
    filter: grayscale(40%) contrast(88%);
    opacity: 0.7;
}

.product-stock-badge-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    color: #F87171;
    border: 1.5px solid rgba(239, 68, 68, 0.6);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.75px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08), 0 0 12px rgba(239, 68, 68, 0.3);
    z-index: 12;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.product-card-out-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background: rgba(239, 68, 68, 0.92);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    pointer-events: none;
    text-transform: uppercase;
}

.btn-add-to-cart.btn-out-of-stock {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #64748B !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-add-to-cart.btn-out-of-stock:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: none !important;
}

/* Product Detail Gallery Frame & Images */
.product-gallery-frame {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
    padding: 0.5rem;
    cursor: zoom-in;
    user-select: none;
}

.product-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
    transform: none !important;
}

.product-gallery-frame:hover .product-gallery-img {
    transform: none !important;
}

/* Lightbox Fullscreen Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    background: #FFFFFF;
    padding: 8px;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #EF4444;
    border-color: #EF4444;
    transform: scale(1.1);
}

.lightbox-caption {
    margin-top: 0.75rem;
    color: #F8FAFC;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-heading);
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    align-items: center;
    justify-content: flex-start;
    scrollbar-width: thin;
}

.product-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.gallery-thumb,
.product-thumb {
    width: 76px;
    height: 76px;
    min-width: 76px;
    max-width: 76px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.12);
    padding: 5px;
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.65;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-thumb.active,
.product-thumb.active,
.gallery-thumb:hover,
.product-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25), 0 4px 14px rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

.gallery-thumb img,
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

/* Product Detail Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.product-gallery-column {
    display: flex;
    min-width: 0;
    min-height: 560px;
    flex-direction: column;
    gap: 0.85rem;
}

.product-detail-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.product-detail-title {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.product-assurances-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.product-specs-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-card-title:hover {
    color: var(--primary);
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #FBBF24;
    margin-bottom: 1rem;
}

.product-card-rating span {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price-box {
    display: flex;
    flex-direction: column;
}

.product-price-old {
    font-size: 0.82rem;
    color: #94A3B8;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #0F172A;
}

.btn-add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-hover);
    transform: scale(1.08);
}

/* Category Slider Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    background: var(--bg-card);
    transform: translateY(-4px);
}

.category-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
}

.category-card:hover .category-card-icon {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 0 20px var(--primary-glow);
}

.category-card-name {
    font-size: 1rem;
    font-weight: 700;
}

.category-card-count {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* B2B Banner Promo */
.b2b-banner {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.b2b-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.b2b-content p {
    color: #CBD5E1;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 540px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    color: #334155;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    background: #FFF7ED;
    border-color: #FDBA74;
    color: #EA580C;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm, 8px);
}

.btn-block {
    width: 100%;
}

/* Footer */
.main-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
    color: #475569;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #0F172A !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: #FFF7ED;
    border-color: #FDBA74;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.75rem 0 2rem;
    margin-top: 3.5rem;
    font-size: 0.875rem;
    color: #64748B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-weight: 500;
    color: #64748B;
}

.footer-payment-security {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.footer-card-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-card-badge {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.footer-divider-pipe {
    width: 1px;
    height: 18px;
    background: #CBD5E1;
    display: inline-block;
}

.footer-security-text {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.825rem;
    color: #475569;
    font-weight: 600;
}

/* CB Digital Agency Footer Signature Badge (Frameless / Borderless) */
.cbdigital-signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 4px 0;
    text-decoration: none;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    margin-left: auto;
}

.cbdigital-signature-badge:hover {
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translateY(-1px);
}

.cbdigital-label {
    font-size: 0.775rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cbdigital-signature-badge:hover .cbdigital-label {
    color: #0F172A;
}

.cbdigital-logo-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.cbdigital-logo-img {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.cbdigital-signature-badge:hover .cbdigital-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 2px 8px rgba(255, 59, 0, 0.35));
}

.cbdigital-icon {
    font-size: 0.95rem;
    color: #94A3B8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cbdigital-signature-badge:hover .cbdigital-icon {
    color: #FF3B00;
    transform: translate(2px, -2px);
}

/* Modals, Cart Drawer & Live Search */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    cursor: pointer;
    font-size: 1.35rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(251, 146, 60, 0.35);
    outline-offset: 3px;
}

/* Cart Drawer (Smooth Right Slide-In) */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active,
.cart-drawer.open {
    transform: translateX(0) !important;
}

.drawer-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
}

.drawer-close-btn,
.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover,
.drawer-close:hover {
    background: #FEE2E2;
    border-color: #FCA5A5;
    color: #DC2626;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #FFFFFF;
}

.drawer-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.drawer-item-product {
    display: flex;
    width: 100%;
    gap: 1rem;
    padding-right: 2rem;
    color: inherit;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.drawer-item-product:hover .drawer-item-title {
    color: var(--primary) !important;
}

.drawer-item-img {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    object-fit: contain;
    padding: 0.35rem;
    flex-shrink: 0;
}

.drawer-item-info {
    flex: 1;
    min-width: 0;
}

.drawer-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    color: #0F172A !important;
    transition: color 0.2s ease;
}

.drawer-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem;
    color: #94A3B8;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.drawer-item-remove:hover {
    color: #EF4444;
    background: #FEE2E2;
}

.drawer-footer {
    padding: 1.5rem;
    background: #F8FAFC;
    border-top: 1px solid var(--border-color);
}

/* Live Search Modal */
.search-modal {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    z-index: 1020;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

.search-results-list {
    max-height: 380px;
    overflow-y: auto;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #0D131F;
    border-radius: var(--radius-sm);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: 420px;
    width: calc(100% - 32px);
}

.toast {
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #10B981;
    border-radius: var(--radius-md, 12px);
    padding: 0.9rem 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

.toast span {
    color: #0F172A;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
}

.toast i {
    font-size: 1.35rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.toast-success {
    border-left-color: #10B981;
}

.toast.toast-success i,
.toast .text-green {
    color: #10B981 !important;
}

.toast.toast-error {
    border-left-color: #EF4444;
}

.toast.toast-error i,
.toast .text-red {
    color: #EF4444 !important;
}

.toast.toast-warning {
    border-left-color: #F59E0B;
}

.toast.toast-warning i,
.toast .text-amber {
    color: #F59E0B !important;
}

.toast.toast-info {
    border-left-color: #0284C7;
}

.toast.toast-info i,
.toast .text-blue {
    color: #0284C7 !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Global Alert Styles for Flash Messages */
.alert {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md, 12px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-success i {
    color: #10B981;
    font-size: 1.2rem;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.alert-error i {
    color: #EF4444;
    font-size: 1.2rem;
}

.alert-warning {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
}

.alert-info {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: #075985;
}

/* Global Custom Dark Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(11, 15, 25, 0.6);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* Sidebar Category List */
.sidebar-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-right: 0.25rem;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background: transparent;
    transition: var(--transition);
}

.sidebar-category-item i {
    color: #64748B;
    transition: var(--transition);
}

.sidebar-category-item:hover {
    color: var(--primary);
    background: #FFF7ED;
    padding-left: 1rem;
}

.sidebar-category-item:hover i {
    color: var(--primary);
}

.sidebar-category-item.active {
    color: #FFFFFF !important;
    background: var(--primary);
    font-weight: 700;
}

.sidebar-category-item.active i {
    color: #FFFFFF !important;
}

.cat-count-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.sidebar-category-item.active .cat-count-badge {
    background: rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    border-color: transparent;
}

/* Premium Light Quantity Picker Component */
.qty-picker {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3px;
    height: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qty-picker .qty-btn,
.qty-picker button {
    width: 38px;
    height: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    outline: none;
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0;
}

.qty-picker .qty-btn:hover,
.qty-picker button:hover {
    background: #FFF7ED;
    border-color: #FFEDD5;
    color: var(--primary);
}

.qty-picker .qty-btn:active,
.qty-picker button:active {
    transform: scale(0.92);
}

.qty-picker .qty-input,
.qty-picker input {
    width: 48px;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A !important;
    font-family: var(--font-heading);
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-picker input::-webkit-outer-spin-button,
.qty-picker input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   CONVERSION & DIRECT SALES ENGINE (Ürün Filtreleme Sekmeleri, FOMO & FAQ)
   ========================================================================== */

/* 1. Direct Sales Showcase Filter Tabs (Static, No Jitter) */
.showcase-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
}

.showcase-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.showcase-tab-btn {
    height: 42px;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: 999px;
    padding: 0 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none !important;
    transform: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.showcase-tab-btn i {
    color: var(--primary);
    font-size: 1.05rem;
    transition: color 0.15s ease;
}

.showcase-tab-btn:hover:not(.active) {
    background: #FFF7ED !important;
    border-color: #FDBA74 !important;
    color: #EA580C !important;
    transform: none !important;
    box-shadow: none !important;
}

.showcase-tab-btn:hover:not(.active) i {
    color: #EA580C !important;
}

.showcase-tab-btn:focus,
.showcase-tab-btn:focus-visible {
    outline: none !important;
}

.showcase-tab-btn.active {
    background: #F97316 !important;
    color: #FFFFFF !important;
    border-color: #F97316 !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25) !important;
    transform: none !important;
}

.showcase-tab-btn.active i {
    color: #FFFFFF !important;
}

.showcase-tab-btn.active:hover {
    background: #EA580C !important;
    border-color: #EA580C !important;
    color: #FFFFFF !important;
    transform: none !important;
}

/* 2. FAQ Semantic Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.faq-item.active {
    border-color: #F97316 !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #0F172A;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question {
    color: #EA580C;
}

.faq-question:hover {
    color: #F97316;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.35rem;
    color: #475569;
    font-size: 0.935rem;
    line-height: 1.7;
    display: none;
}

.faq-answer strong {
    color: #0F172A;
    font-weight: 700;
}

.faq-item.active .faq-answer {
    display: block !important;
    animation: faqFadeIn 0.25s ease forwards;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & APP-LIKE BOTTOM BAR
   ========================================================================== */

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-size: 1.35rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background: #FFF0EB;
    color: var(--primary);
    border-color: #FFD8CC;
}

/* Mobile Dedicated Search Bar (Clean Light Mode) */
.mobile-search-bar {
    display: none;
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    padding: 0.5rem 0;
}

.mobile-search-inner {
    position: relative;
    width: 100%;
}

.mobile-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1.15rem;
    pointer-events: none;
}

.mobile-search-inner .mobile-input {
    width: 100%;
    height: 42px;
    border-radius: 9999px;
    padding-left: 2.6rem;
    padding-right: 1.25rem;
    font-size: 0.885rem;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    color: #0F172A;
    outline: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-search-inner .mobile-input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.mobile-search-inner .mobile-input:focus {
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    color: #0F172A;
}

/* Slide-out Mobile Navigation Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: #FFFFFF !important;
    border-right: 1px solid #E2E8F0;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.active {
    left: 0 !important;
}

.mobile-drawer-header {
    flex-shrink: 0;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E2E8F0;
    background: #FFFFFF;
}

.drawer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.drawer-logo img {
    max-height: 30px;
    width: auto;
    object-fit: contain;
}

.drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background: #FEE2E2;
    color: #DC2626;
    border-color: #FECACA;
}

.mobile-drawer-user {
    padding: 1rem 1.25rem;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.user-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.drawer-auth-actions {
    display: flex;
    gap: 0.5rem;
}

.drawer-auth-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
}

.mobile-drawer-body {
    padding: 1.25rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94A3B8;
    margin-bottom: 0.6rem;
}

.mobile-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-drawer-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-drawer-menu a:hover,
.mobile-drawer-menu a:active {
    background: #FFF7ED;
    color: var(--primary);
}

.mobile-drawer-menu a i {
    font-size: 1.15rem;
}

.mobile-drawer-footer {
    flex-shrink: 0;
    padding: 0.85rem 1rem;
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
    box-sizing: border-box;
    width: 100%;
}

.drawer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.85rem;
    background: #16A34A !important;
    background: linear-gradient(135deg, #25D366 0%, #16A34A 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.drawer-whatsapp-btn:hover,
.drawer-whatsapp-btn:active {
    background: #15803D !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.drawer-whatsapp-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

/* App-like Mobile Bottom Sticky Navigation Bar (Clean Light Mode) */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid #E2E8F0;
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.25rem;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #64748B;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    flex: 1;
    height: 100%;
    position: relative;
    transition: color 0.2s ease;
}

.mobile-bottom-item i {
    font-size: 1.25rem;
    line-height: 1;
    color: #64748B;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-bottom-item:hover,
.mobile-bottom-item:active {
    color: #0F172A;
}

.mobile-bottom-item:hover i,
.mobile-bottom-item:active i {
    color: #0F172A;
    transform: translateY(-1px);
}

.mobile-bottom-item.active {
    color: var(--primary);
}

.mobile-bottom-item.active i {
    color: var(--primary);
}

.mobile-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #FFFFFF;
}

.whatsapp-bottom-bubble {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -14px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    font-size: 1.35rem;
    transition: transform 0.2s ease;
}

.whatsapp-bottom-bubble:active {
    transform: scale(0.92);
}

.whatsapp-bottom-bubble i {
    color: #FFFFFF !important;
    font-size: 1.4rem;
}

.mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   PAGE & COMPONENT RESPONSIVE LAYOUT CLASSES (UNIFIED DESIGN SYSTEM)
   ========================================================================== */

.home-section {
    margin-top: 3.5rem;
}

.page-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.page-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Catalog Page */
.catalog-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 2rem;
    align-items: start;
}

.catalog-sidebar {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.catalog-page-container {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.catalog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.mobile-filter-btn {
    display: none;
    margin-bottom: 1rem;
}

.mobile-catalog-bar {
    display: none;
}

.mobile-product-count-bar {
    display: none;
}

.mobile-only {
    display: none !important;
}

.sidebar-close-btn {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: #64748B;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
}

.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ==========================================================================
   CART PAGE (Responsive Desktop Table + Mobile Card-Based Experience)
   ========================================================================== */
.cart-page-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.cart-page-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cart-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count-pill {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    background: #F1F5F9;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
}

/* Empty Cart Card */
.empty-cart-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2.5rem;
}

/* Free Shipping Card */
.free-shipping-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.free-shipping-success {
    color: #059669;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.free-shipping-success i {
    font-size: 1.25rem;
    color: #10B981;
    flex-shrink: 0;
}

.free-shipping-pending {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.free-shipping-text {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.free-shipping-text strong {
    color: var(--primary);
}

.free-shipping-bar-bg {
    width: 100%;
    height: 7px;
    background: #F1F5F9;
    border-radius: 999px;
    overflow: hidden;
}

.free-shipping-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Dealer Discount Banner */
.dealer-discount-banner {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 0.85rem 1.15rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #047857;
    font-size: 0.9rem;
}

.dealer-discount-banner i {
    font-size: 1.35rem;
    color: #10B981;
    flex-shrink: 0;
}

/* Cart Layout Grid */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Desktop Cart Table */
.cart-desktop-table-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: #F8FAFC;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-table td {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-table-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.cart-table-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-table-title {
    font-weight: 600;
    color: #0F172A;
    font-size: 0.92rem;
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s;
}

.cart-table-title:hover {
    color: var(--primary);
}

.cart-table-variant {
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-table-sku {
    font-size: 0.72rem;
    color: #94A3B8;
}

.cart-remove-btn {
    color: #94A3B8;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    color: #EF4444;
    background: #FEE2E2;
}

/* Mobile Cart List (Cards) - Hidden by default on Desktop */
.cart-mobile-list {
    display: none;
}

.cart-mobile-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.cart-mobile-card-main {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cart-mobile-img-link {
    flex-shrink: 0;
}

.cart-mobile-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 3px;
}

.cart-mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.cart-mobile-title {
    font-size: 0.86rem;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-mobile-variant {
    font-size: 0.74rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-mobile-unit-price {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

.cart-mobile-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.65rem;
    border-top: 1px solid #F1F5F9;
}

.mobile-qty-picker {
    height: 32px;
    border: 1.5px solid #E2E8F0;
    background: #FFFFFF;
    border-radius: 8px;
}

.mobile-qty-picker .qty-btn {
    width: 28px;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 0.9rem;
}

.mobile-qty-picker .qty-input {
    width: 32px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-mobile-footer-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-mobile-total-price {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0F172A;
    font-family: var(--font-heading);
}

.cart-mobile-delete-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF1F2;
    border: 1px solid #FFE4E6;
    border-radius: 8px;
    color: #E11D48;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-mobile-delete-btn:active {
    background: #F43F5E;
    color: #FFFFFF;
}

/* Cart Summary Card */
.cart-summary-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.cart-summary-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F1F5F9;
}

.cart-coupon-section {
    margin-bottom: 1.25rem;
}

.cart-coupon-form {
    display: flex;
    gap: 0.5rem;
}

.cart-coupon-form .form-control {
    height: 38px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.cart-coupon-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #065F46;
}

.cart-coupon-remove {
    color: #DC2626;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    color: #64748B;
}

.cart-summary-row span:last-child {
    font-weight: 600;
    color: #0F172A;
}

.cart-summary-row.discount-row {
    color: #059669;
}

.cart-summary-row.discount-row span:last-child {
    color: #059669;
    font-weight: 700;
}

.cart-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 0.85rem;
    border-top: 1.5px solid #E2E8F0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.cart-total-amount {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.cart-checkout-btn {
    height: 48px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cart-security-badge {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* Checkout Page */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.25rem;
    align-items: start;
}

.checkout-form-col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.checkout-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.checkout-summary-col {
    position: sticky;
    top: 90px;
}

/* Dealership Page */
.dealer-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    text-align: left;
}

.dealer-advantage-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: var(--transition);
}

.dealer-adv-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.dealer-advantage-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #FFFFFF;
}

.dealer-advantage-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.dealer-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.dealer-profile-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.dealer-whatsapp-box {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Support Videos Page */
.support-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.support-video-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.support-video-card:hover {
    border-color: var(--border-highlight);
}

.support-cta-box {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
}

/* Auth Pages (Login / Register) */
.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

/* Account Page */
.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Support Teaser Card */
.support-teaser-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Blog & Knowledge Base Component Styles */
.blog-category-nav {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
}

.blog-category-nav::-webkit-scrollbar {
    display: none;
}

.blog-tab-btn {
    height: 42px;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: 999px;
    padding: 0 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.blog-tab-btn i {
    color: var(--primary);
    font-size: 1.05rem;
}

.blog-tab-btn:hover:not(.active) {
    background: #FFF7ED;
    border-color: #FDBA74;
    color: #EA580C;
}

.blog-tab-btn.active {
    background: #F97316 !important;
    border-color: #F97316 !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}

.blog-tab-btn.active i {
    color: #FFFFFF !important;
}

.blog-tab-count {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.blog-tab-btn.active .blog-tab-count {
    background: rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    border-color: transparent;
}

.blog-card {
    background: #FFFFFF !important;
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #FDBA74 !important;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.1) !important;
}

.blog-card-title {
    color: #0F172A !important;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary) !important;
}

/* ==========================================================================
   PRODUCT DETAIL MODERN BADGES, TABS & REVIEWS
   ========================================================================== */

.product-detail-badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.detail-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(249, 115, 22, 0.12);
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.detail-stock-badge.is-out-of-stock {
    color: #F87171;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.detail-stock-badge.is-out-of-stock .pulse-dot {
    background: #EF4444;
    box-shadow: none;
    animation: none;
}

.detail-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    color: #60A5FA;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.detail-sku-badge {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: monospace;
}

/* Product Detail Interactive Tabs - Modern Light Theme */
.product-tabs-wrapper {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.product-tabs-nav {
    display: flex;
    overflow-x: auto;
    border-bottom: 2px solid #E2E8F0;
    background: #F8FAFC;
    padding: 0.4rem 0.75rem 0;
    gap: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.product-tabs-nav::-webkit-scrollbar {
    display: none;
}

.product-tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    outline: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-tab-btn i {
    font-size: 1.15rem;
}

.product-tab-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.7);
}

.product-tab-btn.active {
    color: var(--primary);
    background: #FFFFFF;
    font-weight: 800;
    border-color: #E2E8F0;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: -2px;
}

.product-tab-content {
    display: none;
    padding: 2.25rem;
    animation: fadeIn 0.3s ease;
    background: #FFFFFF;
}

.product-tab-content.active {
    display: block;
}

/* Product specification list */
.product-specs-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.product-specs-heading-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    color: var(--primary);
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 12px;
    font-size: 1.3rem;
}

.product-specs-heading h3 {
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.product-specs-heading p {
    margin-top: 0.15rem;
    color: #64748B;
    font-size: 0.85rem;
}

.product-specs-list {
    overflow: hidden;
    margin: 0;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-lg);
}

.product-spec-row {
    display: grid;
    grid-template-columns: minmax(190px, 30%) 1fr;
    margin: 0;
    background: #FFFFFF;
}

.product-spec-row:nth-child(even) {
    background: #F8FAFC;
}

.product-spec-row+.product-spec-row {
    border-top: 1px solid #E2E8F0;
}

.product-spec-row dt,
.product-spec-row dd {
    margin: 0;
    padding: 0.95rem 1.25rem;
    line-height: 1.45;
}

.product-spec-row dt {
    display: flex;
    align-items: center;
    color: var(--primary);
    background: #FFF7ED;
    border-right: 1px solid #FFEDD5;
    font-size: 0.88rem;
    font-weight: 700;
}

.product-spec-row dd {
    color: #0F172A;
    font-size: 0.92rem;
    font-weight: 600;
}

/* Reviews Breakdown & Cards */
.reviews-summary-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.rating-score-box {
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid #E2E8F0;
}

.rating-score-num {
    font-size: 3.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #0F172A;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.review-item {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    color: #059669;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
}

.review-rating-row {
    display: grid;
    grid-template-columns: 58px 1fr 30px;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.review-rating-row>span:last-child {
    color: #64748B;
    text-align: right;
}

.review-rating-track {
    height: 8px;
    overflow: hidden;
    background: #E2E8F0;
    border-radius: 999px;
}

.review-rating-track>div {
    height: 100%;
    background: #F59E0B;
    border-radius: inherit;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-list .review-item {
    margin-bottom: 0;
}

.review-author-name {
    color: #0F172A;
    font-weight: 800;
    margin-right: 0.5rem;
}

.review-author time {
    color: #64748B;
    font-size: 0.78rem;
}

.review-stars {
    color: #F59E0B;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.review-item p {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
}

.review-empty {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #64748B;
    background: #F8FAFC;
    border: 1.5px dashed #CBD5E1;
    border-radius: var(--radius-lg);
    text-align: center;
}

.review-empty i {
    color: var(--primary);
    font-size: 2rem;
}

.review-empty strong {
    color: #0F172A;
}

.review-action-box {
    padding: 1.75rem;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-lg);
    text-align: center;
}

.review-action-box h4 {
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
}

.review-action-box>p {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-action-box .btn-sm {
    padding: 0.6rem 1.25rem;
    font-weight: 700;
}

.review-action-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    place-items: center;
    color: var(--primary);
    background: #FFF7ED;
    border-radius: 12px;
    font-size: 1.35rem;
    border: 1px solid #FFEDD5;
}

.review-form {
    max-width: 720px;
    margin: 1.25rem auto 0;
    text-align: left;
}

.review-form>label,
.review-star-picker legend {
    display: block;
    margin-bottom: 0.5rem;
    color: #0F172A;
    font-size: 0.85rem;
    font-weight: 700;
}

.review-form textarea {
    width: 100%;
    resize: vertical;
    padding: 0.9rem 1rem;
    color: #0F172A;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius-md);
    outline: none;
    font-size: 0.9rem;
}

.review-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .15);
}

.review-star-picker {
    display: flex;
    width: max-content;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin: 0 0 1rem;
    border: 0;
}

.review-star-picker legend {
    float: left;
    width: 100%;
}

.review-star-picker input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-star-picker label {
    cursor: pointer;
    color: #CBD5E1;
    font-size: 1.8rem;
    line-height: 1;
    transition: color .15s, transform .15s;
}

.review-star-picker label:hover,
.review-star-picker label:hover~label,
.review-star-picker input:checked~label {
    color: #F59E0B;
}

.review-star-picker label:hover {
    transform: translateY(-2px);
}

.review-star-picker input:focus-visible+label {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.review-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
}

.review-form-footer small {
    color: #64748B;
}

@media (max-width: 600px) {
    .review-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .review-form-footer .btn {
        width: 100%;
    }

    .review-rating-row {
        grid-template-columns: 52px 1fr 24px;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP / TABLET / MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-slide {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .b2b-banner {
        grid-template-columns: 1fr;
    }

    .dealer-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-search-form {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .mobile-search-bar {
        display: block !important;
    }

    .action-btn-label {
        display: none;
    }

    .header-action-btn {
        padding: 0.45rem 0.65rem;
    }

    .floating-whatsapp-btn {
        display: none !important;
    }

    .mobile-bottom-bar {
        display: flex !important;
    }

    body {
        padding-bottom: 65px;
    }

    /* Layout stack for tablet/mobile */
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Base Container Spacing */
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .home-section {
        margin-top: 1.5rem !important;
    }

    /* Page Header */
    .page-header {
        margin-bottom: 1.25rem !important;
    }

    .page-title {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.4rem !important;
    }

    .page-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Form Rows */
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Hide Announcement Bar, Banners, Sliders on Mobile - DIRECT PRODUCTS */
    .announcement-bar {
        display: none !important;
    }

    .nav-bar {
        display: none !important;
    }

    .desktop-only-section {
        display: none !important;
    }

    .hero-banner-section {
        display: none !important;
    }

    .promo-banners-section {
        display: none !important;
    }

    .features-section {
        display: none !important;
    }

    /* Header Inner on Mobile */
    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
        min-height: 54px !important;
        padding: 0.5rem 0.25rem !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        z-index: 2 !important;
        margin-left: 4px !important;
    }

    .header-actions {
        display: none !important;
    }

    .header-inner .brand-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 1 !important;
    }

    .header-inner .brand-logo .logo-image {
        max-height: 38px !important;
    }

    .main-showcase-section {
        margin-top: 0.35rem !important;
    }

    .showcase-filter-wrapper {
        gap: 0.5rem !important;
        padding-bottom: 0.35rem !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.5rem !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .showcase-filter-wrapper::-webkit-scrollbar {
        display: none !important;
    }

    /* 2-Column Product Cards Grid across all grids */
    .products-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .product-card {
        background: #FFFFFF;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
        box-shadow: var(--shadow-card);
        transition: var(--transition);
    }

    .product-card:hover {
        transform: translateY(-4px);
        border-color: #CBD5E1;
        box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.1);
    }

    .product-card-body {
        padding: 0.5rem !important;
    }

    .product-card-category {
        font-size: 0.62rem !important;
        margin-bottom: 2px !important;
    }

    .product-card-title {
        font-size: 0.78rem !important;
        height: 2.3em !important;
        line-height: 1.15em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 0.25rem !important;
    }

    .product-card-rating {
        font-size: 0.62rem !important;
        margin-bottom: 0.25rem !important;
        gap: 1px !important;
    }

    .product-card-rating span {
        font-size: 0.6rem !important;
    }

    .product-card-footer {
        gap: 0.25rem !important;
        padding-top: 0.25rem !important;
    }

    .product-price-current {
        font-size: 0.88rem !important;
        font-weight: 800 !important;
    }

    .product-price-old {
        font-size: 0.68rem !important;
    }

    .btn-add-to-cart {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
    }

    .product-card-discount-tag {
        top: 5px !important;
        left: 5px !important;
        font-size: 0.58rem !important;
        padding: 0.12rem 0.4rem !important;
        border-radius: 12px !important;
    }

    .product-card-shipping-tag {
        top: 5px !important;
        right: 5px !important;
        font-size: 0.55rem !important;
        padding: 0.12rem 0.4rem !important;
        border-radius: 12px !important;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .category-card {
        padding: 0.75rem 0.5rem !important;
    }

    .category-card-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.15rem !important;
    }

    .category-card-name {
        font-size: 0.8rem !important;
    }

    /* B2B Banner */
    .b2b-banner {
        grid-template-columns: 1fr !important;
        padding: 1.25rem !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    .b2b-content h2 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .b2b-content p {
        font-size: 0.825rem !important;
        line-height: 1.5 !important;
    }

    .b2b-content div {
        justify-content: center !important;
    }

    /* Support Teaser Box */
    .support-teaser-card {
        padding: 1.25rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .support-teaser-card .btn {
        width: 100% !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.2rem !important;
    }

    .section-subtitle {
        font-size: 0.8rem !important;
    }

    .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.35rem !important;
        margin-bottom: 0.75rem !important;
    }

    .catalog-page-container {
        padding-top: 0.5rem !important;
        padding-bottom: 2rem !important;
    }

    .catalog-breadcrumb {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Single Modern Mobile Catalog Action Bar */
    .mobile-catalog-bar {
        display: flex !important;
        align-items: center !important;
        background: #FFFFFF !important;
        border: 1px solid #E2E8F0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
        margin-bottom: 0.4rem !important;
        overflow: hidden !important;
        height: 44px !important;
    }

    .mobile-bar-btn {
        flex: 1 !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.45rem !important;
        background: transparent !important;
        border: none !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #0F172A !important;
        cursor: pointer !important;
        transition: background 0.2s ease !important;
    }

    .mobile-bar-btn i {
        font-size: 1.1rem !important;
        color: var(--primary) !important;
    }

    .mobile-bar-btn:active {
        background: #F8FAFC !important;
    }

    .mobile-bar-divider {
        width: 1px !important;
        height: 22px !important;
        background: #E2E8F0 !important;
        flex-shrink: 0 !important;
    }

    .mobile-bar-sort-form {
        flex: 1.15 !important;
        height: 100% !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .mobile-sort-icon {
        position: absolute !important;
        left: 12px !important;
        font-size: 1rem !important;
        color: var(--primary) !important;
        pointer-events: none !important;
    }

    .mobile-bar-select {
        width: 100% !important;
        height: 100% !important;
        padding: 0 10px 0 34px !important;
        border: none !important;
        background: transparent !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #0F172A !important;
        cursor: pointer !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .mobile-product-count-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 0.78rem !important;
        color: #64748B !important;
        padding: 0 4px !important;
        margin-bottom: 0.75rem !important;
    }

    .mobile-product-count-bar strong {
        color: #0F172A !important;
    }

    .catalog-sidebar {
        display: none;
        padding: 1.25rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
    }

    .catalog-sidebar.open {
        display: block !important;
    }

    .catalog-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: 12px !important;
    }

    /* Cart & Checkout Mobile */
    .cart-page-container {
        padding-top: 0.85rem !important;
        padding-bottom: 2rem !important;
    }

    .cart-page-header {
        margin-bottom: 1rem !important;
    }

    .cart-page-title {
        font-size: 1.35rem !important;
    }

    .cart-breadcrumb {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .cart-mobile-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.65rem !important;
    }

    .cart-layout {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .cart-summary-card,
    .checkout-card,
    .auth-card,
    .dealer-form-card,
    .contact-form-card {
        padding: 1.25rem 1rem !important;
    }

    /* Dealer Page Mobile */
    .dealer-advantages-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
        margin-top: 1.25rem !important;
    }

    .dealer-profile-location-grid {
        grid-template-columns: 1fr !important;
    }

    .dealer-advantage-item {
        padding: 0.75rem 0.6rem !important;
    }

    .dealer-adv-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 1rem !important;
        margin-bottom: 0.35rem !important;
    }

    .dealer-advantage-item h4 {
        font-size: 0.8rem !important;
    }

    .dealer-advantage-item p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    .dealer-whatsapp-box {
        padding: 1.25rem !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .dealer-whatsapp-box a {
        width: 100% !important;
        text-align: center !important;
    }

    /* Support Videos Mobile */
    .support-videos-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .support-cta-box {
        margin-top: 1.5rem !important;
        padding: 1.25rem !important;
    }

    .support-cta-box a {
        width: 100% !important;
    }

    /* Contact Mobile */
    .contact-info-card {
        padding: 1rem !important;
        gap: 0.75rem !important;
    }

    /* Product Detail Page Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }

    .product-gallery-column {
        min-height: 0 !important;
    }

    .product-gallery-frame {
        flex: none;
        aspect-ratio: 1 / 1;
    }

    .back-to-top {
        right: 14px !important;
        bottom: 74px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        font-size: 1.15rem !important;
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35) !important;
        z-index: 95 !important;
    }

    .product-detail-title {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .product-assurances-grid {
        grid-template-columns: 1fr !important;
        gap: 0.4rem !important;
    }

    .product-tabs-wrapper {
        margin-top: 1.5rem !important;
        margin-bottom: 2rem !important;
        border-radius: var(--radius-lg) !important;
    }

    .product-tab-btn {
        padding: 0.85rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .product-tab-content {
        padding: 1.25rem !important;
    }

    .product-spec-row {
        grid-template-columns: 1fr !important;
    }

    .product-spec-row dt {
        padding-bottom: 0.25rem;
        border-right: 0;
        background: transparent;
    }

    .product-spec-row dd {
        padding-top: 0.2rem;
    }

    .reviews-summary-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }

    .rating-score-box {
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-bottom {
        border-top: 1px solid #E2E8F0 !important;
        padding: 1.5rem 0.75rem 3.5rem !important;
        margin-top: 2rem !important;
        font-size: 0.85rem !important;
        color: #64748B !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.85rem !important;
        background: transparent !important;
    }

    .footer-copyright {
        text-align: center !important;
        font-size: 0.82rem !important;
    }

    .footer-payment-security {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .footer-card-logos {
        display: flex !important;
        justify-content: center !important;
    }

    .footer-divider-pipe {
        display: none !important;
    }

    .footer-security-text {
        display: flex !important;
        justify-content: center !important;
        font-size: 0.78rem !important;
        color: #64748B !important;
    }

    .footer-agency-col {
        margin-top: 0.25rem !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .cbdigital-signature-badge {
        margin: 0 auto !important;
        justify-content: center !important;
    }

    /* Cart Drawer on Mobile */
    .cart-drawer {
        position: fixed;
        top: 0;
        right: -420px;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: #FFFFFF;
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Modals */
    .search-modal {
        width: 95% !important;
        left: 2.5% !important;
        transform: none !important;
        top: 15px !important;
    }
}

/* ==========================================================================
   🌟 FAQ ACCORDION STYLING & ANIMATIONS (Item 7)
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-card);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1.35rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.65;
    display: none;
}

.faq-answer strong {
    color: var(--text-main);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.65;
    display: none;
}

.faq-answer strong {
    color: var(--text-main);
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Announcement Bar CTA Link */
.announcement-cta-link:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

/* ==========================================================================
   AUTH PAGES (Desktop: Classic Full Layout / Mobile: Compact Scroll-Free)
   ========================================================================== */
.auth-container-wrapper {
    padding-top: 3rem;
    padding-bottom: 6rem;
    max-width: 480px;
    margin: 0 auto;
}

.auth-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.auth-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card-icon {
    width: 60px;
    height: 60px;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.auth-card-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.25;
}

.auth-card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Google OAuth Button & Auth Divider */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: #FFFFFF;
    color: #1F2937;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md, 8px);
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}

.btn-google:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    color: #111827;
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-dim, #94A3B8);
    font-size: 0.825rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.auth-divider span {
    padding: 0 0.85rem;
    text-transform: lowercase;
    letter-spacing: 0.3px;
}

.auth-submit-btn {
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: var(--radius-md, 8px);
    font-weight: 700;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-submit-btn:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.account-type-btn {
    border: 1.5px solid var(--border-color);
    background: #F8FAFC;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.account-type-btn:has(input[type="radio"]:checked) {
    border: 2px solid var(--primary) !important;
    background: #FFF7ED !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.auth-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    body.auth-page-body {
        padding-bottom: 68px;
        overflow-x: hidden;
    }

    body.auth-page-body .main-footer {
        display: none !important;
    }

    .auth-container-wrapper {
        padding: 0.5rem 0.75rem !important;
        min-height: calc(100vh - 128px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .auth-breadcrumb {
        display: none !important;
    }

    .auth-card {
        padding: 1.15rem 1rem !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
    }

    .auth-card-header {
        margin-bottom: 0.65rem !important;
    }

    .auth-card-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.15rem !important;
        margin: 0 auto 0.25rem !important;
    }

    .auth-card-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.15rem !important;
    }

    .auth-card-subtitle {
        font-size: 0.76rem !important;
    }

    .btn-google {
        height: 38px !important;
        padding: 0.4rem 0.75rem !important;
        font-size: 0.84rem !important;
        gap: 0.5rem !important;
        margin-bottom: 0 !important;
    }

    .auth-divider {
        margin: 0.5rem 0 !important;
        font-size: 0.74rem !important;
    }

    .auth-card .form-group {
        margin-bottom: 0.5rem !important;
    }

    .auth-card .form-label {
        font-size: 0.78rem !important;
        margin-bottom: 0.15rem !important;
    }

    .auth-card .form-control {
        height: 38px !important;
        font-size: 0.84rem !important;
    }

    .auth-submit-btn {
        height: 40px !important;
        font-size: 0.88rem !important;
        margin-top: 0.6rem !important;
        padding: 0.45rem 1rem !important;
    }

    .auth-card-footer {
        margin-top: 0.6rem !important;
        padding-top: 0.5rem !important;
        font-size: 0.78rem !important;
    }
}

/* ==========================================================================
   PRODUCT DESCRIPTION FORMATTED (Airy, Well-Spaced, Card-like Features)
   ========================================================================== */
.product-description-formatted {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.product-description-formatted h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid #F1F5F9;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.product-description-formatted h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.product-description-formatted p {
    margin-bottom: 1.25rem;
    color: #334155;
    line-height: 1.85;
}

.product-description-formatted p:last-child {
    margin-bottom: 0;
}

.product-description-formatted hr {
    border: 0;
    height: 1px;
    background: #E2E8F0;
    margin: 2.25rem 0;
}

.product-description-formatted ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.75rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.product-description-formatted ul li {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.product-description-formatted ul li:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.product-description-formatted em {
    display: block;
    background: #EFF6FF;
    border-left: 4px solid #3B82F6;
    border-radius: 8px;
    padding: 0.85rem 1.15rem;
    color: #1E40AF;
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 1rem 0 1.75rem 0;
}

.product-usage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.85rem 0 1.5rem 0;
}

.product-usage-tags .usage-tag {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #1E293B;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}