/* ============================================================
   H-Electronic Trade Kft — Main Stylesheet
   Dark Theme | Lexend + Figtree
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0B0F19;
    --bg-secondary: #111827;
    --bg-card: #1A2035;
    --bg-card-hover: #1F2847;
    --bg-input: #141B2D;
    --accent: #d3321f;
    --accent-hover: #b82a1a;
    --accent-glow: rgba(211, 50, 31, 0.15);
    --accent-secondary: #ff5a45;
    --text-primary: #E8ECF1;
    --text-secondary: #9CA3B4;
    --text-muted: #6B7280;
    --border: #1E293B;
    --border-light: #2A3550;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

/* --- 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: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #ffffff;
    transition: background var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
    animation: coinSpin 3s linear infinite;
    transform-style: preserve-3d;
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.15;
}

.logo-text span {
    color: #ffffff;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), #a52818);
    box-shadow: 0 2px 12px rgba(211, 50, 31, 0.3);
}

/* Header right side */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
}

.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    z-index: 899;
    padding: 32px 24px;
    overflow-y: auto;
}

.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav a {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 16px 20px;
    border-radius: 10px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
    background: var(--accent-glow);
    border-color: var(--border-light);
}

/* --- Language Switcher (Two circles) --- */
.lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
}

.lang-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,15,25,0.75) 0%, rgba(11,15,25,0.45) 50%, rgba(11,15,25,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid rgba(211, 50, 31, 0.25);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge img { width: 16px; height: 16px; }

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn img { width: 18px; height: 18px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #a52818);
    color: #fff;
    box-shadow: 0 4px 20px rgba(211, 50, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 50, 31, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-sm {
    font-size: 13px;
    padding: 10px 22px;
}

.btn-quote {
    background: var(--accent-glow);
    border: 1px solid rgba(211, 50, 31, 0.3);
    color: var(--accent);
    width: 100%;
}

.btn-quote:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* --- Section Defaults --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

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

.stat-item h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* --- Products Section --- */
.product-category {
    margin-bottom: 80px;
}

.product-category:last-child { margin-bottom: 0; }

.category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.category-title img { width: 28px; height: 28px; }

.category-title h2 {
    font-size: 1.6rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

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

.product-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-input);
}

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

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

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Reviews / Comments --- */
.reviews-section {
    margin-top: 32px;
}

.reviews-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.review-card {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
}

.review-card:last-child { margin-bottom: 0; }

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

.review-author {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars img { width: 14px; height: 14px; }

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- About Page --- */
.about-hero {
    padding-top: 115px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 { margin-bottom: 20px; }

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.value-item img { width: 28px; height: 28px; margin-bottom: 12px; }

.value-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Contact Page --- */
.contact-hero {
    padding-top: 115px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-wrap form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-wrap form .form-group:last-of-type {
    flex: 1;
}

.contact-form-wrap form textarea {
    flex: 1;
    min-height: 100px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-card img { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }

.contact-info-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-info-card a { color: var(--accent); }

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-row .form-group { margin-bottom: 0; }

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3B4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-status {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
}

.form-status--success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.form-status--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* --- Map --- */
.map-section {
    margin-top: 48px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: brightness(0.8) contrast(1.1) saturate(0.8);
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid #ffffff;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
}

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

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

.footer-col ul a {
    font-size: 14px;
    color: #ffffff;
    transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--accent); }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo .logo-img {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-text {
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #ffffff;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    padding-top: 115px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.page-hero h1 { margin-bottom: 12px; }

.page-hero p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Legal Pages --- */
.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--accent);
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border);
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); margin-bottom: 32px; font-size: 17px; }

/* --- Partners / Trust Bar --- */
.trust-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.trust-bar p {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trust-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(1) brightness(2);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 16px; }
    .hero-content { padding: 40px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 60px 0; }
    .footer-bottom { text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .header-inner { height: 64px; }
    .mobile-nav { top: 64px; }
    .page-hero { padding-top: 105px; }
    .about-hero { padding-top: 105px; }
    .contact-hero { padding-top: 105px; }
    .stat-item h3 { font-size: 1.8rem; }
}

/* ============================================================
   ADDITIONAL PAGE STYLES (about, products, contact compatibility)
   ============================================================ */

/* Page Banner — invisible spacer below fixed header */
.page-banner {
    padding-top: 72px;
    padding-bottom: 0;
    background: transparent;
    height: 0;
    overflow: hidden;
    margin: 0;
}

/* First section after hidden banner needs top padding */
.page-banner + .section {
    padding-top: 115px;
}

/* Section Label */
.section-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

/* Section Alt Background */
.section--alt {
    background: var(--bg-secondary);
}

/* About Page Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* About Values Grid */
.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.value-card img {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Button variants used in other pages */
.btn--primary {
    background: linear-gradient(135deg, var(--accent), #a52818);
    color: #fff;
    box-shadow: 0 4px 20px rgba(211, 50, 31, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 50, 31, 0.4);
    color: #fff;
}

.btn--accent {
    background: var(--accent-glow);
    border: 1px solid rgba(211, 50, 31, 0.3);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--accent:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn--sm {
    font-size: 13px;
    padding: 10px 22px;
}

/* Category Tabs */
.cat-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cat-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    transition: all var(--transition);
}

.cat-tab:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--accent), #a52818);
    border-color: var(--accent);
    color: #ffffff;
}

/* Product Cards (other pages version) */
.product-body {
    padding: 24px;
}

.product-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-footer {
    padding: 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.review-stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 6px;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Info Items (other pages version) */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-info-icon {
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-info-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-info-item a {
    color: var(--accent);
}

/* Contact Map (other pages version) */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    display: block;
    filter: brightness(0.8) contrast(1.1) saturate(0.8);
}

/* Responsive additions */
@media (max-width: 1024px) {
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .about-values { grid-template-columns: 1fr; }
    .cat-tabs { justify-content: center; }
    .values-4col { grid-template-columns: 1fr; }
}

/* About page 4-column values grid */
.values-4col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .values-4col { grid-template-columns: repeat(2, 1fr); }
}

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