/* ═══════════════════════════════════════════
   MODENA — Design System
   ═══════════════════════════════════════════ */
:root {
    --primary: #1a1a1a;
    --accent: #c0392b;
    --accent-dark: #a93226;
    --bg: #ffffff;
    --bg-alt: #faf8f7;
    --bg-warm: #f5eeed;
    --text: #1a1a1a;
    --text-muted: #777777;
    --text-light: #999999;
    --border: #e8e6e3;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-body);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    background: none;
    overflow: hidden;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

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

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

/* ── Section Title ── */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 25px auto 0;
}

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.top-bar a:hover { color: #fff; }

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    vertical-align: middle;
}

.top-bar .material-symbols-outlined { font-size: 14px; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(26,26,26,0.97);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    color: rgba(255,255,255,0.85);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.header-actions a .material-symbols-outlined {
    font-size: 20px;
}

.header-actions a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* ── Mobile Menu ── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-toggle:hover {
    background: var(--bg-alt);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

.mobile-toggle.active span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav ul li {
    margin: 12px 0;
}

.mobile-nav ul li a {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--text);
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--accent);
}

.mobile-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.mobile-nav ul li a:hover::after {
    width: 60%;
}

.mobile-nav-contact {
    margin-top: 40px;
    text-align: center;
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    margin: 8px 0;
    transition: color 0.3s ease;
}

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

body.menu-open {
    overflow: hidden;
}

/* ═══════════════════════════════════════════
   PAGE HERO (for inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero .section-label {
    color: var(--accent);
}

.page-hero .section-title {
    color: #fff;
}

.page-hero .section-title::after {
    margin: 25px auto 0;
}

.breadcrumb {
    margin-top: 25px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

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

.breadcrumb span {
    margin: 0 8px;
}

/* ═══════════════════════════════════════════
   CATEGORY HERO (with background image)
   ═══════════════════════════════════════════ */
.category-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
}

.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
}

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

.category-hero .section-title {
    color: #fff;
}

.category-hero .category-desc {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-title a:hover {
    color: var(--accent);
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.blog-featured-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

/* ═══════════════════════════════════════════
   CART & CHECKOUT
   ═══════════════════════════════════════════ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 15px;
    border-bottom: 2px solid var(--border);
    text-align: left;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 14px;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-cell img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-product-cell a:hover {
    color: var(--accent);
}

.cart-qty {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
}

.cart-remove {
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.cart-remove:hover {
    color: var(--accent);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    margin-top: 40px;
    border: 1px solid var(--border);
    padding: 35px;
}

.cart-summary h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    border-top: 2px solid var(--border);
    margin-top: 10px;
    padding-top: 15px;
}

.coupon-field {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.coupon-field input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 13px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.checkout-summary {
    border: 1px solid var(--border);
    padding: 35px;
    position: sticky;
    top: 120px;
}

.checkout-summary h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.checkout-item:last-of-type {
    border-bottom: none;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.payment-option:hover {
    border-color: var(--accent);
}

.payment-option input {
    accent-color: var(--accent);
    margin-top: 3px;
}

.payment-option-label strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.payment-option-label span {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .cart-summary { max-width: 100%; }
}

@media (max-width: 768px) {
    .cart-table th:nth-child(4),
    .cart-table td:nth-child(4) { display: none; }
    .cart-actions { flex-direction: column; gap: 10px; }
}

/* ═══════════════════════════════════════════
   CONTACT / FORMS
   ═══════════════════════════════════════════ */
/* ── Quick Contact Strip ── */
.contact-quick-strip {
    padding: 50px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-quick-card {
    background: var(--bg);
    padding: 35px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: block;
}

.contact-quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.contact-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

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

.contact-quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.4s var(--ease);
}

.contact-quick-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--accent);
}

.contact-quick-card:hover .contact-quick-icon {
    background: var(--accent);
}

.contact-quick-card:hover .contact-quick-icon .material-symbols-outlined {
    color: #fff;
}

.contact-quick-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-quick-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-quick-hint {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s var(--ease);
    display: block;
}

.contact-quick-card:hover .contact-quick-hint {
    opacity: 1;
    transform: translateY(0);
}

/* ── Contact Layout ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
}

.contact-section-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-section-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ── Form Styles ── */
.contact-form-wrap {
    background: var(--bg);
}

.contact-form {
    background: var(--bg-alt);
    padding: 40px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.form-label-icon {
    font-size: 16px !important;
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

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

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

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 42px;
    font-size: 12px;
}

.form-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-light);
}

.form-trust-note .material-symbols-outlined {
    font-size: 14px;
}

/* ── Contact Info Cards (redesigned) ── */
.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
    background: var(--bg);
}

.contact-info-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.contact-info-card--highlight {
    background: var(--bg-alt);
    border-color: var(--accent);
    border-width: 1px;
    position: relative;
}

.contact-info-card--highlight::after {
    content: 'Sediu principal';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    padding: 3px 12px;
}

.contact-info-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.contact-info-card-icon .material-symbols-outlined {
    font-size: 20px;
    color: var(--accent);
}

.contact-info-card:hover .contact-info-card-icon {
    background: var(--accent);
}

.contact-info-card:hover .contact-info-card-icon .material-symbols-outlined {
    color: #fff;
}

.contact-info-card-body {
    flex: 1;
}

.contact-info-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

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

/* Phone chips */
.contact-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.contact-phones a {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: var(--bg-warm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text) !important;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-phones a:hover {
    background: var(--accent);
    color: #fff !important;
}

/* Email list */
.contact-email-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-email-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: var(--bg-alt);
    font-size: 13px;
    transition: all 0.3s ease;
}

.contact-email-list a:hover {
    background: var(--bg-warm);
}

.contact-email-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(192, 57, 43, 0.08);
    padding: 2px 10px;
}

/* Schedule table */
.contact-schedule {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.contact-schedule-row:last-child {
    border-bottom: none;
}

.contact-schedule-time {
    font-weight: 600;
    color: var(--text);
}

.contact-schedule-closed {
    opacity: 0.5;
}

.contact-schedule-closed .contact-schedule-time {
    color: var(--accent);
}

/* Social links */
.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text) !important;
    transition: all 0.3s ease;
}

.contact-social-link svg {
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
    background: rgba(192, 57, 43, 0.04);
}

/* ── Map ── */
.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-quick-strip {
        margin-top: -30px;
    }
    .contact-quick-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .contact-quick-card {
        padding: 25px 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 24px;
    }
    .contact-phones {
        flex-direction: column;
    }
    .contact-social-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   PAGE CONTENT (for inner pages)
   ═══════════════════════════════════════════ */
.page-content {
    padding: 80px 0;
}

.page-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text);
}

.page-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text);
}

/* ═══════════════════════════════════════════
   HERO (homepage)
   ═══════════════════════════════════════════ */
.hero {
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 480px;
    line-height: 1.8;
}

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

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.6);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Hero animation */
.hero-content > * {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   USP STRIP
   ═══════════════════════════════════════════ */
.usp-strip {
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

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

.usp-item {
    text-align: center;
    padding: 15px;
}

.usp-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 15px;
}

.usp-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.usp-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════ */
.categories {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.category-item {
    position: relative;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease);
}

.category-item:hover img { transform: scale(1.08); }

.category-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    transition: background 0.6s ease;
}

.category-item:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    color: #fff;
    z-index: 2;
}

.category-count {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    background: var(--accent);
    padding: 5px 14px;
    line-height: 1.4;
}

.category-name {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 15px;
}

.category-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease);
}

.category-item:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link::after {
    content: '→';
    transition: transform 0.3s;
}

.category-item:hover .category-link::after {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.featured { padding: 100px 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    transition: transform 0.4s var(--ease);
}

.product-card:hover { transform: translateY(-5px); }

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-alt);
    aspect-ratio: 3/4;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 6px 14px;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-actions { transform: translateY(0); }

.product-actions a {
    flex: 1;
    background: rgba(26,26,26,0.92);
    color: #fff;
    text-align: center;
    padding: 14px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.product-actions a:hover { background: var(--accent); }

.product-vendor {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 500;
}

.product-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 13px;
    margin-right: 8px;
    font-weight: 400;
}

.products-cta {
    text-align: center;
    margin-top: 60px;
}

/* ═══════════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════════ */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 15px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--accent);
}

.product-info {
    padding-top: 10px;
}

.product-info .product-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.product-info-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.product-info-category a:hover {
    text-decoration: underline;
}

.product-info-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-info-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.product-info-price .old-price {
    font-size: 18px;
}

.product-info-short {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.product-actions-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.product-actions-bar .btn {
    flex: 1;
    justify-content: center;
}

.btn-favorite {
    flex: 0 0 auto !important;
    width: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.btn-favorite:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.product-meta {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 2;
}

.product-meta strong {
    color: var(--text);
    font-weight: 600;
}

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

.product-usps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.product-usp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.product-usp .material-symbols-outlined {
    font-size: 20px;
    color: var(--accent);
}

/* Product Tabs */
.product-tabs {
    margin-top: 80px;
}

.product-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.product-tabs-nav button {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
    transition: color 0.3s;
}

.product-tabs-nav button:hover,
.product-tabs-nav button.active {
    color: var(--text);
}

.product-tabs-nav button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.product-tab-content {
    display: none;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.product-tab-content.active {
    display: block;
}

.product-tab-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}

.product-tab-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.product-tab-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.product-tab-content table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 200px;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--bg-alt);
}

@media (max-width: 1024px) {
    .product-page {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-gallery {
        position: static;
    }
    .product-usps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-info-title { font-size: 26px; }
    .product-info-price { font-size: 22px; }
    .product-actions-bar { flex-wrap: wrap; }
    .product-tabs-nav { overflow-x: auto; }
    .product-tabs-nav button { white-space: nowrap; padding: 12px 20px; }
}

/* ═══════════════════════════════════════════
   SHOP LAYOUT
   ═══════════════════════════════════════════ */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    border-right: 1px solid var(--border);
    padding-right: 40px;
}

.sidebar-section {
    margin-bottom: 35px;
}

.sidebar-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    transition: all 0.3s;
}

.sidebar-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.sidebar-list .count {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 2px 10px;
    border-radius: 10px;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.shop-count {
    font-size: 13px;
    color: var(--text-muted);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sort label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-muted);
}

.shop-sort select {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 15px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
}

.shop-sort select:focus {
    outline: none;
    border-color: var(--accent);
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-product-grid .product-image-wrapper {
    aspect-ratio: 4/3;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.shop-pagination a,
.shop-pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.shop-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.shop-pagination .active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 30px;
    }
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   EDITORIAL / ABOUT
   ═══════════════════════════════════════════ */
.editorial {
    display: flex;
    min-height: 550px;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.editorial-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.editorial-image::after {
    display: none;
}

.editorial-content {
    width: 50%;
    padding: 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.editorial-title {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.editorial-text {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CUSTOM ORDER BANNER
   ═══════════════════════════════════════════ */
.custom-banner {
    background: var(--bg-warm);
    padding: 70px 0;
}

.custom-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.custom-banner-text h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.custom-banner-text p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ═══════════════════════════════════════════
   SHOWROOMS / LOCATIONS
   ═══════════════════════════════════════════ */
.locations {
    padding: 100px 0;
}

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

.location-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.location-img-wrap {
    overflow: hidden;
    position: relative;
}

.location-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.location-card:hover .location-img {
    transform: scale(1.04);
}

.location-city {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
}

.location-body {
    padding: 25px 22px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-name {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
}

.location-address {
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.location-schedule {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.location-footer {
    display: flex;
    border-top: 1px solid var(--border);
}

.location-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    border-right: 1px solid var(--border);
}

.location-footer a:last-child {
    border-right: none;
}

.location-footer a:hover {
    background: var(--accent);
    color: #fff;
}

.location-footer a .material-symbols-outlined {
    font-size: 16px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.location-footer a:hover .material-symbols-outlined {
    color: #fff;
}

.location-phone {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-phone a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255,255,255,0.5);
    max-width: 320px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--accent);
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--accent);
}

.footer-contact-item a:hover { color: #fff; }

.footer-newsletter-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 35px 0;
    margin-top: 50px;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.newsletter-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    width: 400px;
    max-width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    padding: 14px 20px;
    background: var(--accent);
    border: none;
    border-radius: 0 6px 6px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent-dark);
}

.newsletter-btn .material-symbols-outlined {
    font-size: 20px;
}

@media (max-width: 768px) {
    .newsletter-inner { flex-direction: column; gap: 20px; text-align: center; }
    .newsletter-form { width: 100%; }
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.copyright a { color: var(--accent); }
.copyright a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-title { font-size: 48px; }
    .editorial-content { padding: 60px 50px; }
}

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-title { font-size: 42px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .editorial { flex-direction: column; min-height: auto; }
    .editorial-image { width: 100%; height: 400px; }
    .editorial-image::after { display: none; }
    .editorial-content { width: 100%; padding: 50px 30px; text-align: center; }
    .custom-banner-inner { flex-direction: column; text-align: center; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .top-bar { display: none; }
    .header-container { height: 65px; }
    .logo-img { height: 40px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .header-actions { gap: 4px; }
    .header-actions a { width: 36px; height: 36px; }
    .hero { height: 80vh; min-height: 500px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 14px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .section-title { font-size: 32px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-item { height: 350px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-card img { aspect-ratio: 3/4; }
    .usp-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .scroll-indicator { display: none; }
    .categories, .featured, .locations { padding: 70px 0; }
    .page-hero { padding: 60px 0 40px; }
    .page-content { padding: 50px 0; }
}

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