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

:root {
    --primary: #c45c26;
    --primary-dark: #9a4318;
    --primary-light: #e07a3d;
    --accent: #d4a574;
    --gradient: linear-gradient(135deg, #c45c26 0%, #a67c52 100%);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.18);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.22);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.25s ease;

    /* Dark mode (Standard Shop) */
    --bg: #0d1117;
    --bg-elevated: #161b22;
    --bg-card: #ffffff;
    --text: #f4f1ea;
    --text-muted: rgba(244,241,234,0.72);
    --text-on-card: #0f172a;
    --text-muted-on-card: #64748b;
    --border: rgba(244,241,234,0.14);
    --border-card: #e2e8f0;
    --nav-bg: #0d1117;
    --footer-bg: rgba(8, 11, 16, 0.92);
    --overlay: linear-gradient(180deg, rgba(8,11,16,0.55) 0%, rgba(8,11,16,0.42) 45%, rgba(8,11,16,0.68) 100%);
    --bg-image: url('../assets/bg.jpg?v=upload1');

    /* aliases used across existing CSS */
    --dark: #12161c;
    --dark-2: #1a222c;
    --dark-3: #243040;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --light: #eef1f4;
    --white: #ffffff;
    --ink: #f4f1ea;
}

html[data-theme="light"] {
    --bg: #f3f4f6;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-muted: #475569;
    --text-on-card: #0f172a;
    --text-muted-on-card: #64748b;
    --border: rgba(15,23,42,0.12);
    --border-card: #e2e8f0;
    --nav-bg: #ffffff;
    --footer-bg: #0f172a;
    --overlay: linear-gradient(180deg, rgba(243,244,246,0.55) 0%, rgba(243,244,246,0.45) 50%, rgba(243,244,246,0.72) 100%);
    --bg-image: url('../assets/bg-light.jpg?v=upload1');
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --ink: #0f172a;
    --shadow: 0 4px 6px -1px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 24px rgba(15,23,42,0.1);
}

html { scroll-behavior: smooth; color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

body {
    font-family: 'Figtree', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        var(--overlay),
        var(--bg-image) center / cover no-repeat fixed;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* Theme toggle */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    cursor: pointer;
    font-size: 1.05rem;
    transition: var(--transition);
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary-light); }
html[data-theme="light"] .theme-toggle {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-nav {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-full { width: 100%; }

/* ── Partner Bar ── */
.partner-bar {
    background: var(--dark-2);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.partner-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.partner-bar span {
    color: var(--gray-light);
    font-size: 0.8rem;
    font-weight: 500;
}

.partner-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-danger {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-success:hover {
    background: #16a34a;
    color: var(--white);
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: #0d1117 !important;
    border-bottom: 1px solid rgba(244,241,234,0.12);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar.scrolled {
    background: #0d1117 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    backdrop-filter: none !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.hero-bg {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 81, 0, 0.15);
    border: 1px solid rgba(230, 81, 0, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 420px;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.card-icon { font-size: 1.6rem; }

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 5%; right: 5%; animation-delay: 1.5s; }
.card-3 { bottom: 25%; left: 5%; animation-delay: 3s; }
.card-4 { bottom: 10%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Section Header ── */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(230, 81, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ── Services ── */
.services {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

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

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(230, 81, 0, 0.1);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover { color: var(--primary-dark); }

/* ── About ── */
.about {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

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

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    padding: 32px 24px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:nth-child(2) { margin-top: 40px; }
.about-stat-card:nth-child(3) { margin-top: 20px; }

.about-stat-card:hover {
    background: var(--gradient);
    color: var(--white);
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-stat-card:hover .about-stat-number { color: var(--white); }

.about-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.about-stat-card:hover .about-stat-label { color: rgba(255,255,255,0.9); }

.about-text .section-tag { margin-bottom: 12px; }

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-2);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(230, 81, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Stats ── */
.stats {
    padding: 80px 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
    display: inline;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-top: 8px;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 12px; }

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 81, 0, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ── Contact Form ── */
.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

/* ── Footer ── */
.footer {
    background: transparent;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ── Shop Grid ── */
.shop-hero {
    padding: 40px 0 60px;
    background: transparent;
    text-align: center;
    color: var(--white);
}

.shop-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.shop-hero p {
    color: var(--white);
    font-size: 1.1rem;
}

.shop-filters {
    padding: 100px 0 16px;
    background: transparent;
    border-bottom: none;
}

.shop-filters .container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    background: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 48px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}

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

.product-image {
    height: 300px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; background:#12161c;
}

.product-thumbnails {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: var(--light);
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 2px;
}

.product-thumbnails img {
    width: 48px;
    height: 48px;
    object-fit: contain; background:#12161c;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.product-thumbnails img:hover {
    border-color: var(--primary);
}

.product-info {
    padding: 24px;
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230, 81, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    cursor: pointer;
}

.product-info h3:hover {
    color: var(--primary);
}

.product-info p {
    font-size: 0.875rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 16px;
    cursor: pointer;
}

.product-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
}

.product-uvp {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 6px;
}

.product-discount {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 6px;
}

.product-promo-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add-cart {
    padding: 10px 20px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

/* ── Cart Sidebar ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.cart-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 4px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-image {
    width: 72px;
    height: 72px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-info .cart-item-price {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px;
    margin-top: 4px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--gray);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* ── Login Page (quer / Landscape) ── */
.login-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
}

.login-body > .login-container {
    flex: 1 0 auto;
    width: min(920px, calc(100% - 32px));
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 16px 32px;
    display: flex;
    align-items: center;
}

.login-body > .site-footer {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
}

.login-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
    color: #0f172a;
    overflow: hidden;
    backdrop-filter: none;
}

.login-card-aside {
    background:
        linear-gradient(160deg, rgba(196,92,38,0.92) 0%, rgba(15,23,42,0.88) 100%),
        url('../assets/bg.jpg?v=upload1') center / cover no-repeat;
    color: #f4f1ea;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.login-card-aside .login-logo {
    justify-content: flex-start;
    margin-bottom: 24px;
    color: #fff;
}

.login-card-aside .brand-logo-full {
    filter: brightness(1.05);
}

.login-aside-copy h2 {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #fff;
}

.login-aside-copy p {
    margin: 0;
    color: rgba(244,241,234,0.88);
    font-size: 0.95rem;
    line-height: 1.55;
}

.login-aside-meta {
    margin-top: 28px;
    font-size: 0.82rem;
    color: rgba(244,241,234,0.75);
}

.login-card-main {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 36px;
}

.login-logo .logo-icon {
    background: var(--gradient);
    color: var(--white);
}

.login-card h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    text-align: left;
    margin-bottom: 8px;
}

.login-subtitle {
    text-align: left;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

@media (max-width: 820px) {
    .login-card {
        grid-template-columns: 1fr;
    }
    .login-card-aside {
        min-height: auto;
        padding: 28px 24px;
    }
    .login-card-main {
        padding: 28px 24px 32px;
    }
    .login-card h1,
    .login-subtitle {
        text-align: center;
    }
}

.login-error {
    display: none;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.login-error.visible { display: block; }

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.login-form .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: var(--transition);
    outline: none;
}

.login-form .form-group input::placeholder { color: #94a3b8; }
.login-form .form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
    background: #ffffff;
}

.password-wrapper { position: relative; }

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #64748b;
    padding: 4px;
    transition: var(--transition);
}

.toggle-password:hover { color: #0f172a; }

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #334155;
    cursor: pointer;
}

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

.forgot-link {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover { color: var(--primary-dark); }

.login-btn {
    padding: 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.login-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.login-footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.login-footer a:hover { color: var(--primary); }

/* ── Admin Page ── */
.admin-body {
    background: #f4f5f7;
    min-height: 100vh;
    padding-top: 72px;
}

.admin-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0d1117;
    border-bottom: 1px solid rgba(244,241,234,0.12);
    padding: 0 24px;
    height: 72px;
}

.admin-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.admin-nav .logo { color: #f4f1ea; }

.admin-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4f1ea;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-logout {
    padding: 8px 20px;
    background: var(--light);
    color: var(--dark);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-logout:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

.admin-main {
    padding: 32px 24px;
}

.admin-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
}

/* ── Sidebar ── */
.admin-sidebar {
    position: sticky;
    top: 104px;
    align-self: start;
}

.sidebar-menu {
    list-style: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.sidebar-item:hover {
    background: var(--light);
    color: var(--primary);
}

.sidebar-item.active {
    background: rgba(230, 81, 0, 0.08);
    color: var(--primary);
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
}

/* ── Admin Content ── */
.admin-tab { display: none; }
.admin-tab.active { display: block; }

.admin-welcome {
    margin-bottom: 28px;
}

.admin-welcome h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.admin-welcome p {
    color: var(--gray);
    font-size: 0.9rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.admin-card {
    background: rgba(18, 22, 28, 0.92);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.admin-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-card-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}

.admin-card-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

/* ── Products Table ── */
.products-table-wrap { overflow-x: auto; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th {
    text-align: left;
    padding: 14px 16px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary);
    vertical-align: middle;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--dark-2);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(230, 81, 0, 0.02);
}

.editable-cell {
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.editable-cell:hover {
    background: rgba(230, 81, 0, 0.08);
    outline: 1.5px dashed var(--primary);
}

.btn-edit {
    padding: 8px 18px;
    border: none;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit:hover {
    background: #c44100;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

.btn-delete {
    padding: 8px 18px;
    border: none;
    border-radius: 50px;
    background: #dc2626;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-delete:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ── Product Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    padding: 4px;
}

.image-url-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.image-url-row input {
    flex: 1;
}

.btn-remove-url {
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-remove-url:hover {
    background: #dc2626;
}

/* ── Settings ── */
.settings-form {
    max-width: 480px;
}

.settings-form .form-group {
    margin-bottom: 18px;
}

.settings-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.settings-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.settings-form .form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10000;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.toast.visible {
    transform: translateX(-50%) translateY(0);
}

/* ── Billbee Panel ── */
.billbee-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.billbee-panel h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.billbee-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.billbee-status.connected {
    background: #dcfce7;
    color: #16a34a;
}

.billbee-status.disconnected {
    background: #fee2e2;
    color: #dc2626;
}

.billbee-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.billbee-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.billbee-log {
    margin-top: 24px;
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 16px;
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--dark-3);
}

.log-entry { padding: 2px 0; }
.log-entry.success { color: #16a34a; }
.log-entry.error { color: #dc2626; }
.log-entry.info { color: #2563eb; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.75rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container, .contact-container { gap: 40px; }
    .admin-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
    .sidebar-menu {
        display: flex;
        overflow-x: auto;
    }
    .sidebar-item { white-space: nowrap; padding: 12px 16px; font-size: 0.8rem; }
    .sidebar-item.active::before { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .nav-links.active { right: 0; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.25rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .about-text h2, .section-header h2, .contact-info h2 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .admin-welcome h1 { font-size: 1.4rem; }
    .admin-main { padding: 20px 16px; }
    .billbee-actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.85rem; }
    .stat-number, .stat-suffix { font-size: 2.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .login-card-main { padding: 24px 20px 28px; }
    .login-card-aside { padding: 24px 20px; }
    .cart-sidebar { width: 100vw; }
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ── Search Bar ── */
.search-bar {
    display: flex;
    max-width: 400px;
    margin: 0 auto 24px;
}

.search-bar input {
    flex: 1;
    padding: 12px 18px;
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.search-bar input:focus {
    border-color: var(--primary);
}

.search-bar button {
    padding: 12px 20px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-weight: 600;
}

/* ── Checkout Form ── */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.checkout-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.checkout-form h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    align-self: start;
    position: sticky;
    top: 104px;
}

.checkout-summary h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 16px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
}


/* Globeks redesign polish */
.logo { letter-spacing: -0.03em; }
.navbar, .navbar.scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: #0d1117 !important; border-bottom: 1px solid rgba(244,241,234,0.12); }
.hero-brand {
    font-family: 'Syne', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 8vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #f4f1ea;
    margin: 0 0 1rem;
    animation: riseIn 0.8s ease both;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-brand span { color: var(--primary-light); }
.hero-clean {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
}
.hero-clean .lede {
    max-width: 34rem;
    color: rgba(244,241,234,0.78);
    font-size: 1.15rem;
    margin: 0 0 2rem;
    animation: riseIn 0.9s ease 0.08s both;
}
.hero-clean .cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; animation: riseIn 1s ease 0.14s both; }
.btn-primary { border-radius: 999px; box-shadow: none; }
.btn-primary:hover { filter: brightness(1.06); box-shadow: none; transform: translateY(-1px); }
.btn-ghost-clean {
    display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 999px;
    border: 1px solid rgba(244,241,234,0.28); color: #f4f1ea; text-decoration: none; font-weight: 600;
    transition: var(--transition);
}
.btn-ghost-clean:hover { border-color: var(--primary-light); color: #fff; }
.section-new .section-head .tag { border-radius: 6px; }
.cat-card, .stat-box, .hero-feat, .vis-card, .partner-card, .contact-new .c-form {
    border-width: 1px !important;
    border-color: rgba(244,241,234,0.16) !important;
    border-radius: 14px !important;
    background: rgba(13, 17, 23, 0.88) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.cat-card:hover, .hero-feat:hover, .partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196,92,38,0.55) !important;
    background: rgba(18, 24, 32, 0.94) !important;
}
.stat-box .stat-number,
.stats-new .stat-number {
    display: inline !important;
    font-size: 2.6rem !important;
    vertical-align: baseline;
}
.stats-new .stat-suffix {
    display: inline !important;
    font-size: 2.2rem !important;
    color: var(--primary-light) !important;
    font-weight: 800;
    margin-left: 2px;
}
.stats-new .stat-txt {
    display: block;
    margin-top: 0.55rem;
    color: rgba(244,241,234,0.85) !important;
}
.cat-card h3, .cat-card p, .section-new .section-head h2, .section-new .section-head p {
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.cat-card a { color: var(--primary-light) !important; font-weight: 700; }
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.paywall-locked .product-price, .paywall-locked .cart-item-price { filter: blur(5px); user-select: none; }


/* Brand logo */
.brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #f4f1ea !important;
}
.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(244,241,234,0.12);
  padding: 2px;
}
.brand-logo-full {
  width: auto;
  height: 96px;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
}
.brand-logo-text {
  font-family: 'Syne', 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.login-logo.brand-logo { color: #0f172a !important; }
.login-logo .brand-logo-text { color: #0f172a !important; }
.login-logo .brand-logo-full { height: 120px; }

/* Clean site footer */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(244,241,234,0.1);
  background: rgba(8, 11, 16, 0.72);
  backdrop-filter: blur(12px);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2.5rem;
  padding: 2.5rem 24px;
}
.site-footer-brand p {
  color: rgba(244,241,234,0.65);
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.55;
}
.site-footer-mail { margin-top: 0.85rem !important; }
.site-footer-mail a { color: var(--primary-light); text-decoration: none; font-weight: 600; }
.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.site-footer-cols h4 {
  margin: 0 0 0.75rem;
  color: #f4f1ea;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer-cols a {
  display: block;
  color: rgba(244,241,234,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.2rem 0;
}
.site-footer-cols a:hover { color: var(--primary-light); }
.site-footer-bottom {
  border-top: 1px solid rgba(244,241,234,0.08);
  padding: 1rem 0 1.25rem;
  color: rgba(244,241,234,0.45);
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer-cols { grid-template-columns: 1fr 1fr; }
}


/* NAVBAR SOLID */
.navbar,
.navbar.scrolled,
nav.navbar {
  background: var(--nav-bg) !important;
  background-color: var(--nav-bg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .navbar a,
html[data-theme="light"] .nav-links a,
html[data-theme="light"] .brand-logo-text {
  color: #0f172a !important;
}
html[data-theme="light"] .nav-links a { color: #334155 !important; }
html[data-theme="light"] .nav-links a:hover { color: var(--primary) !important; }
html[data-theme="light"] .hero-brand,
html[data-theme="light"] .hero-clean .lede,
html[data-theme="light"] .section-new .section-head h2,
html[data-theme="light"] .section-new .section-head p,
html[data-theme="light"] .cat-card h3,
html[data-theme="light"] .cat-card p,
html[data-theme="light"] .stat-txt,
html[data-theme="light"] .about-split-text h2,
html[data-theme="light"] .about-split-text p,
html[data-theme="light"] .check-list li,
html[data-theme="light"] .partner-card span,
html[data-theme="light"] .contact-new .c-info h2,
html[data-theme="light"] .contact-new .c-info > p {
  color: #0f172a !important;
}
html[data-theme="light"] .hero-clean .lede { color: #334155 !important; }
html[data-theme="light"] .btn-ghost-clean {
  border-color: rgba(15,23,42,0.25);
  color: #0f172a;
}
html[data-theme="light"] .nav-toggle span { background: #0f172a; }


/* nav-links mobile solid */
@media (max-width: 768px) {
  .nav-links {
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
  }
}

/* ADMIN – helles Theme (weiß) */
body.admin-body {
  background: #f4f5f7 !important;
  background-image: none !important;
  color: #0f172a !important;
}
body.admin-body::before,
body.admin-body::after {
  display: none !important;
  content: none !important;
}
body.admin-body .admin-nav {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
body.admin-body .admin-table th {
  background: #f1f5f9 !important;
  color: #334155 !important;
  border-bottom: 2px solid var(--primary) !important;
}
body.admin-body .admin-table thead {
  background: #f1f5f9 !important;
}
body.admin-body .admin-nav .brand-logo-text,
body.admin-body .admin-nav .logo,
body.admin-body .admin-user,
body.admin-body #adminName {
  color: #0f172a !important;
}
body.admin-body .admin-sidebar,
body.admin-body .admin-card,
body.admin-body .settings-form,
body.admin-body .settings-panel,
body.admin-body .account-row {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
}
body.admin-body .sidebar-item { color: #334155 !important; }
body.admin-body .sidebar-item.active,
body.admin-body .sidebar-item:hover {
  color: #0f172a !important;
  background: #fff7ed !important;
}
body.admin-body h1, body.admin-body h2, body.admin-body h3,
body.admin-body label, body.admin-body p, body.admin-body td,
body.admin-body th, body.admin-body span, body.admin-body strong {
  color: #0f172a !important;
}
body.admin-body .muted,
body.admin-body .panel-desc,
body.admin-body .admin-card-label {
  color: #64748b !important;
}
body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e2e8f0 !important;
}
body.admin-body .account-row.pending {
  background: #fffbeb !important;
  border-color: #fdba74 !important;
}
body.admin-body .badge-ok { background:#dcfce7; color:#166534 !important; }
body.admin-body .badge-wait { background:#ffedd5; color:#9a3412 !important; }
body.admin-body .badge-no { background:#fee2e2; color:#991b1b !important; }


/* LIGHT MODE SURFACES */
html[data-theme="light"] .cat-card,
html[data-theme="light"] .stat-box,
html[data-theme="light"] .hero-feat,
html[data-theme="light"] .partner-card,
html[data-theme="light"] .vis-card,
html[data-theme="light"] .contact-new .c-form {
  background: rgba(255,255,255,0.94) !important;
  border-color: rgba(15,23,42,0.12) !important;
  color: #0f172a !important;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}
html[data-theme="light"] .form-dark input,
html[data-theme="light"] .form-dark textarea,
html[data-theme="light"] .form-dark select {
  background: #fff !important;
  color: #0f172a !important;
  border-color: #e2e8f0 !important;
}
html[data-theme="light"] .site-footer {
  background: #0f172a !important;
}
html[data-theme="light"] body.admin-body {
  background: #f4f5f7 !important;
}
html[data-theme="dark"] body.admin-body {
  background: #f4f5f7 !important; /* Admin bleibt hell/lesbar */
  color: #0f172a !important;
}


/* Baustelle Hinweis-Popup */
body.baustelle-open { overflow: hidden; }
.baustelle-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 11, 16, 0.78);
  animation: baustelleFade 0.2s ease both;
}
.baustelle-overlay.is-closing { opacity: 0; transition: opacity 0.18s ease; }
.baustelle-card {
  width: min(640px, 100%);
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 28px 56px rgba(0,0,0,0.4);
  animation: baustelleUp 0.28s ease both;
  border-top: 5px solid var(--primary);
}
.baustelle-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.baustelle-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0;
}
.baustelle-schild {
  display: block;
  width: 210px;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}
.baustelle-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #c45c26;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.baustelle-card h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.baustelle-text {
  margin: 0 auto 1.6rem;
  max-width: 34rem;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.6;
}
.baustelle-btn {
  width: min(100%, 320px);
  border: none;
  cursor: pointer;
  border-radius: 12px !important;
  padding: 1rem 1.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}
@media (max-width: 560px) {
  .baustelle-card { padding: 1.5rem 1.15rem 1.25rem; }
  .baustelle-logo { width: 140px; }
  .baustelle-schild { width: 160px; }
  .baustelle-text { font-size: 0.98rem; }
}
@keyframes baustelleFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes baustelleUp { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
