:root {
    --bg-dark: #0f1419;
    --bg-card: #1a2332;
    --bg-elevated: #243044;
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-amber: #f59e0b;
    --accent-amber-light: #fbbf24;
    --accent-teal: #14b8a6;
    --accent-teal-light: #2dd4bf;
    --accent-blue: #3b82f6;
    --accent-blue-dark: #0f3460;
    --accent-violet: #8b5cf6;
    --accent-violet-light: #a78bfa;
    --accent-green: #22c55e;
    --accent-green-light: #4ade80;
    --accent-green-dark: #16a34a;
    --border-subtle: rgba(148, 163, 184, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font);
    position: relative;
    z-index: 1;
    background: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.site-header .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--text-primary) !important;
}

.brand-logo-img {
    display: block;
    width: auto;
    max-width: min(176px, 55vw);
    height: auto;
    object-fit: contain;
}

.site-header .brand-logo-img {
    max-width: min(192px, 55vw);
    border-radius: 6px;
}

.brand-logo-footer .brand-logo-img {
    max-width: 192px;
}

.brand-logo-admin {
    max-width: 100%;
}

.brand-logo-login {
    max-width: 224px;
    margin: 0 auto;
}

.brand-icon {
    font-size: 1.5rem;
}

.footer-brand .brand-icon {
    font-size: 1.25rem;
}

.brand-accent {
    color: var(--accent-amber);
}

.login-brand img {
    filter: drop-shadow(0 6px 18px rgba(245, 158, 11, 0.25));
}

.site-header .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--text-primary) !important;
    background: var(--bg-elevated);
}

.site-header .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.site-header .dropdown-item {
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.site-header .dropdown-item:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.navbar-toggler {
    border-color: var(--border-subtle);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-amber), #d97706);
    border: none;
    color: #0f1419;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-amber-light), var(--accent-amber));
    color: #0f1419;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--accent-teal);
    background: rgba(20, 184, 166, 0.1);
    color: var(--text-primary);
}

.btn-teal {
    background: linear-gradient(135deg, var(--accent-teal), #0d9488);
    border: none;
    color: #0f1419;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-teal:hover {
    background: linear-gradient(135deg, var(--accent-teal-light), var(--accent-teal));
    color: #0f1419;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.btn-violet {
    background: linear-gradient(135deg, var(--accent-violet), #7c3aed);
    border: none;
    color: #f0f4f8;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-violet:hover {
    background: linear-gradient(135deg, var(--accent-violet-light), var(--accent-violet));
    color: #f0f4f8;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.btn-green {
    background: linear-gradient(145deg, var(--accent-green-light), var(--accent-green) 45%, var(--accent-green-dark));
    border: none;
    color: #0f1419;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    box-shadow:
        0 4px 14px rgba(34, 197, 94, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-green:hover {
    background: linear-gradient(145deg, #86efac, var(--accent-green-light) 40%, var(--accent-green));
    color: #0f1419;
    transform: translateY(-1px);
    box-shadow:
        0 10px 28px rgba(34, 197, 94, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--accent-amber);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-text-layer {
    display: inline-block;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    line-height: 1.55;
}

.hero-lead.home-text-layer {
    display: block;
    max-width: 540px;
    margin-bottom: 2rem;
    padding: 0;
    font-size: 1.15rem;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--accent-blue-dark);
}

.hero-stat .home-text-layer {
    margin-top: 0.35rem;
    font-size: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: var(--accent-blue-dark);
}

.section-header p.home-text-layer {
    margin-bottom: 0;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.hero-stat span {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Category cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.category-card.ebike:hover {
    border-color: rgba(20, 184, 166, 0.4);
}

.category-card.antenna:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.category-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.category-card.led .category-card-icon {
    background: rgba(245, 158, 11, 0.15);
}

.category-card.ebike .category-card-icon {
    background: rgba(20, 184, 166, 0.15);
}

.category-card.antenna .category-card-icon {
    background: rgba(139, 92, 246, 0.15);
}

.category-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.category-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
}

.tag-amber { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber-light); }
.tag-teal { background: rgba(20, 184, 166, 0.15); color: var(--accent-teal-light); }
.tag-violet { background: rgba(139, 92, 246, 0.15); color: var(--accent-violet-light); }

/* Section */
.section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-alt {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.3);
}

.product-card.ebike:hover {
    border-color: rgba(20, 184, 166, 0.3);
}

.product-card.antenna:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.product-led-warm::before { background: linear-gradient(135deg, #78350f, #f59e0b); }
.product-led-cool::before { background: linear-gradient(135deg, #1e3a5f, #60a5fa); }
.product-led-b22::before { background: linear-gradient(135deg, #4c1d95, #a78bfa); }
.product-led-smart::before { background: linear-gradient(135deg, #831843, #f472b6); }
.product-led-candle::before { background: linear-gradient(135deg, #713f12, #fcd34d); }
.product-led-golf::before { background: linear-gradient(135deg, #134e4a, #5eead4); }
.product-panel-square::before { background: linear-gradient(135deg, #1e293b, #94a3b8); }
.product-panel-round::before { background: linear-gradient(135deg, #312e81, #818cf8); }
.product-ebike-rear-city::before { background: linear-gradient(135deg, #064e3b, #34d399); }
.product-ebike-rear-trek::before { background: linear-gradient(135deg, #14532d, #4ade80); }
.product-ebike-front-urban::before { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.product-ebike-front-cargo::before { background: linear-gradient(135deg, #1e3a5f, #60a5fa); }
.product-antenna-indoor-compact::before { background: linear-gradient(135deg, #312e81, #818cf8); }
.product-antenna-indoor-flat::before { background: linear-gradient(135deg, #4c1d95, #a78bfa); }
.product-antenna-loft::before { background: linear-gradient(135deg, #581c87, #c084fc); }
.product-antenna-outdoor-yagi::before { background: linear-gradient(135deg, #1e3a5f, #60a5fa); }

.product-image-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.product-image-photo {
    background: #ffffff;
}

.product-image-photo::before {
    display: none;
}

.product-image-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.product-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-type-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-bottom: 0.35rem;
}

.product-card.ebike .product-type-badge {
    color: var(--accent-teal-light);
}

.product-card.antenna .product-type-badge {
    color: var(--accent-violet-light);
}

.product-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.product-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    background: var(--bg-elevated);
    border-radius: 6px;
    color: var(--text-secondary);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.product-card.antenna .product-price {
    color: var(--accent-violet-light);
}

.product-link.antenna:hover {
    color: var(--accent-violet-light);
}

.product-card.ebike .product-price {
    color: var(--accent-teal-light);
}

.product-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--accent-amber);
}

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1.5px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-amber-light);
}

.filter-bar.teal .filter-btn:hover,
.filter-bar.teal .filter-btn.active {
    border-color: var(--accent-teal);
    background: rgba(20, 184, 166, 0.12);
    color: var(--accent-teal-light);
}

.filter-bar.violet .filter-btn:hover,
.filter-bar.violet .filter-btn.active {
    border-color: var(--accent-violet);
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-violet-light);
}

/* Brand page background (home, catalog, services, cart, etc.) */
main.page-brand-bg {
    position: relative;
}

main.page-brand-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #e8eaed;
    background-image: url('/images/page-background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

main.page-brand-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 20, 25, 0.62);
    pointer-events: none;
}

main.page-brand-bg > * {
    position: relative;
    z-index: 1;
}

main.page-brand-bg .section-alt {
    background: rgba(26, 35, 50, 0.85);
}

/* Home page background */
main.page-home-bg {
    position: relative;
}

main.page-home-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #ffffff;
    background-image: url('/images/home-background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

main.page-home-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 20, 25, 0.45);
    pointer-events: none;
}

main.page-home-bg > * {
    position: relative;
    z-index: 1;
}

main.page-home-bg .section-alt {
    background: rgba(26, 35, 50, 0.85);
}

/* Services & Repair page background */
main.page-services-bg {
    position: relative;
}

main.page-services-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #1a1a1a;
    background-image: url('/images/services-background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

main.page-services-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 20, 25, 0.5);
    pointer-events: none;
}

main.page-services-bg > * {
    position: relative;
    z-index: 1;
}

main.page-services-bg .section-alt {
    background: rgba(26, 35, 50, 0.85);
}

/* LED Bulbs catalog page background */
.led-bulbs-page {
    position: relative;
}

.led-bulbs-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #e8eaed;
    background-image: url('/images/led-bulbs-background.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    pointer-events: none;
}

.led-bulbs-page::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 20, 25, 0.62);
    pointer-events: none;
}

.led-bulbs-page > * {
    position: relative;
    z-index: 1;
}

.led-bulbs-page .section-alt {
    background: rgba(26, 35, 50, 0.85);
}

/* Page header */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
}

/* Product detail */
.product-detail {
    padding: 2rem 0 4rem;
}

.detail-image {
    height: 360px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.detail-image-icon {
    position: relative;
    z-index: 1;
    font-size: 6rem;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.detail-image-photo {
    background: #ffffff;
}

.detail-image-photo::before {
    display: none;
}

.detail-image-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.detail-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 1.5rem;
}

.detail-info.ebike .detail-price {
    color: var(--accent-teal-light);
}

.detail-info.antenna .detail-price {
    color: var(--accent-violet-light);
}

.detail-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.spec-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.spec-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Services */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-amber);
}

.repair-card .service-list li::before {
    color: var(--accent-teal);
}

/* Form */
.form-section {
    padding: 3rem 0 5rem;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 640px;
}

.form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.form-control,
.form-select {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.65rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-elevated);
    border-color: var(--accent-amber);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.text-danger {
    font-size: 0.8rem;
}

.confirmation-card {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* About */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.site-footer h6 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-amber);
}

.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Stock badge */
.stock-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.stock-in { background: rgba(20, 184, 166, 0.2); color: var(--accent-teal-light); }
.stock-out { background: rgba(239, 68, 68, 0.2); color: #f87171; }

/* Cart */
.cart-link { position: relative; }
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--accent-amber);
    color: #0f1419;
    border-radius: 100px;
    margin-left: 0.25rem;
}

.cart-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th,
.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.cart-table th { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cart-product { display: flex; align-items: center; gap: 0.75rem; color: var(--text-primary); }
.cart-product-icon { font-size: 1.5rem; }
.cart-qty-form { display: flex; gap: 0.5rem; align-items: center; }
.cart-qty-input { width: 70px; }
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    max-width: 360px;
    margin-left: auto;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

/* Admin */
.admin-body { background: transparent; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-subtle);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.admin-sidebar-brand {
    flex-direction: column;
    align-items: flex-start;
}

.admin-sidebar-brand small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    padding-left: 0.15rem;
}
.admin-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.admin-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}
.admin-nav a:hover { background: var(--bg-elevated); color: var(--text-primary); }
.admin-nav hr { border-color: var(--border-subtle); margin: 1rem 0; }
.admin-main { flex: 1; padding: 2rem; overflow-x: auto; }
.admin-page-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}
.admin-stat-value { display: block; font-size: 2rem; font-weight: 700; color: var(--accent-amber); }
.admin-stat-label { font-size: 0.85rem; color: var(--text-muted); }
.admin-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.admin-panel h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td { padding: 0.75rem; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.admin-table th { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; }
.admin-table a { color: var(--accent-amber-light); text-decoration: none; }
.admin-alert { border-radius: var(--radius); margin-bottom: 1rem; }
.admin-section-title { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); margin: 1rem 0 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-dl dt { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; margin-top: 1rem; }
.admin-dl dd { color: var(--text-primary); margin-bottom: 0; }
.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
}
.btn-danger {
    background: #dc2626;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
}

@media (max-width: 768px) {
    .hero { padding: 3rem 0 4rem; }
    .hero-stats { gap: 1.5rem; }
    .detail-image { height: 240px; }
    .form-card { padding: 1.5rem; }
    .admin-shell { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
    .cart-summary { max-width: 100%; }
}
