/*
Theme Name: Электронный Звонарь
Theme URI: https://zvonar-russia.ru
Author: Электронный Звонарь
Author URI: https://zvonar-russia.ru
Description: Профессиональная тема для сайта электронных звонарей. Поддерживает ACF и Contact Form 7.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bell-ringer
Tags: church, orthodox, bells, russian
*/

/* ==========================================================================
   CSS DESIGN TOKENS
   ========================================================================== */

:root {
    --color-burgundy:    #5C1E2C;
    --color-burgundy-dk: #3D1220;
    --color-burgundy-xd: #2B0A12;
    --color-gold:        #C9963A;
    --color-gold-dk:     #b08130;
    --color-cream:       #F7F3EE;
    --color-stone:       #EDE9E3;
    --color-charcoal:    #1A1A1A;
    --color-grey:        #8A8178;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background: var(--color-cream);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

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

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

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

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

.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1.2;
}
.section-subtitle {
    color: var(--color-grey);
    font-size: 18px;
    margin-top: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.badge--gold   { background: var(--color-gold); color: #fff; }
.badge--light  { background: rgba(201,150,58,.15); color: var(--color-gold); border: 1px solid rgba(201,150,58,.3); }

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

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-stone);
    box-shadow: 0 1px 12px rgba(0,0,0,.07);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.site-logo__icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}
.site-logo__icon svg { width: 22px; height: 22px; }

.site-logo__name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-burgundy);
    letter-spacing: .03em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.primary-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-charcoal);
}
.primary-nav a:hover,
.primary-nav a.current { color: var(--color-burgundy); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-burgundy);
    font-weight: 700;
    font-size: 15px;
}
.header-phone svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: .3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-burgundy-xd) 0%, var(--color-burgundy-dk) 50%, #1A0A0E 100%);
}

.hero__bg-bell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .07;
    pointer-events: none;
}
.hero__bg-bell svg { width: 700px; height: 700px; color: var(--color-gold); }

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 24px;
	    margin: 0px auto;
}

.hero__label {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(201,150,58,.15);
    color: var(--color-gold);
    border: 1px solid rgba(201,150,58,.35);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--color-stone);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 680px;
    margin-inline: auto;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    color: var(--color-stone);
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.hero__trust-item svg {
    width: 20px; height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(237,233,227,.6);
    animation: bounce 2s infinite;
}
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
    padding: 36px 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-stone);
}
.trust-bar__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: 20px;
}
.trust-bar__clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 48px;
    opacity: .6;
    filter: grayscale(1);
}
.trust-bar__client {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how-it-works {
    padding: 96px 0;
    background: var(--color-stone);
}
.how-it-works__header { text-align: center; margin-bottom: 64px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: 960px; margin-inline: auto; }

.step {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.step__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.step__icon--burgundy { background: rgba(92,30,44,.1); color: var(--color-burgundy); }
.step__icon--gold     { background: rgba(201,150,58,.1); color: var(--color-gold); }
.step__icon svg { width: 32px; height: 32px; }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step__text  { color: var(--color-grey); font-size: 15px; }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.products-section {
    padding: 96px 0;
    background: var(--color-cream);
}
.products-section__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}
.products-section__all {
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.products-section__all:hover { color: var(--color-gold-dk); }

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.14); transform: translateY(-3px); }

.product-card__image {
    height: 220px;
    background: linear-gradient(135deg, var(--color-charcoal), var(--color-burgundy-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-card__image svg {
    width: 90px; height: 90px;
    color: rgba(201,150,58,.55);
    transition: transform .5s;
}
.product-card:hover .product-card__image svg { transform: scale(1.12); }
.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

/* Use ACF thumbnail if available */
.product-card__image img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-card__desc { color: var(--color-grey); font-size: 14px; margin-bottom: 16px; flex: 1; }
.product-card__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 20px;
}
.product-card__price span { font-size: 14px; font-weight: 400; color: var(--color-grey); }
.product-card__actions { display: flex; gap: 12px; }
.product-card__actions .btn { flex: 1; }

/* ==========================================================================
   LEAD FORM SECTION
   ========================================================================== */

.lead-section {
    padding: 96px 0;
    background: var(--color-burgundy);
    position: relative;
    overflow: hidden;
}
.lead-section__bg-bell {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .08;
    pointer-events: none;
}
.lead-section__bg-bell svg { width: 500px; height: 500px; }

.lead-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lead-section__left h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.25;
    margin-bottom: 20px;
}
.lead-section__left p {
    color: rgba(237,233,227,.8);
    font-size: 17px;
    margin-bottom: 32px;
}

.testimonial-snippet {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(8px);
}
.testimonial-snippet__stars { color: var(--color-gold); margin-bottom: 8px; font-size: 18px; }
.testimonial-snippet__text { color: rgba(237,233,227,.9); font-style: italic; font-size: 14px; }

.lead-form-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lead-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

/* Contact Form 7 overrides */
.lead-form-card .wpcf7-form p { margin-bottom: 16px; }
.lead-form-card .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-grey);
    margin-bottom: 6px;
}
.lead-form-card .wpcf7-form input[type="text"],
.lead-form-card .wpcf7-form input[type="tel"],
.lead-form-card .wpcf7-form input[type="email"],
.lead-form-card .wpcf7-form textarea {
    width: 100%;
    background: var(--color-cream);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-charcoal);
    outline: none;
    transition: box-shadow .2s;
}
.lead-form-card .wpcf7-form input:focus,
.lead-form-card .wpcf7-form textarea:focus {
    box-shadow: 0 0 0 2px var(--color-gold);
}
.lead-form-card .wpcf7-form textarea { min-height: 100px; resize: vertical; }
.lead-form-card .wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    margin-top: 8px;
}
.lead-form-card .wpcf7-form input[type="submit"]:hover { background: var(--color-gold-dk); }
.lead-form-card .privacy-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-grey);
    margin-top: 12px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials { padding: 96px 0; background: var(--color-cream); }
.testimonials__header { text-align: center; margin-bottom: 60px; }

.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.testimonial-card__stars { color: var(--color-gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card__quote-icon {
    width: 40px; height: 40px;
    color: var(--color-stone);
    margin-bottom: 12px;
}
.testimonial-card__text {
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}
.testimonial-card__author { font-weight: 700; color: var(--color-burgundy); }
.testimonial-card__church  { font-size: 12px; color: var(--color-grey); margin-top: 4px; }

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */

.page-hero {
    padding: 48px 0 40px;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-stone);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-grey);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--color-burgundy); }
.breadcrumb__sep { color: var(--color-stone); }
.page-hero__title  { font-family: var(--font-serif); font-size: clamp(28px, 5vw, 48px); font-weight: 700; color: var(--color-burgundy); }
.page-hero__count  { color: var(--color-grey); font-size: 18px; margin-top: 8px; }

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 48px 0 80px;
    align-items: start;
}

/* Sidebar */
.filter-sidebar {
    background: #fff;
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-md);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.filter-sidebar__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-stone);
    margin-bottom: 24px;
    color: var(--color-charcoal);
}
.filter-sidebar__title svg { width: 18px; height: 18px; color: var(--color-burgundy); }
.filter-group { margin-bottom: 28px; }
.filter-group__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; color: var(--color-grey); }
.filter-check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; margin-bottom: 10px; }
.filter-check input[type="checkbox"] { accent-color: var(--color-burgundy); width: 16px; height: 16px; cursor: pointer; }
.price-range { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.price-range input { width: 100%; background: var(--color-cream); border: 1px solid var(--color-stone); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 13px; }

/* Sort bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
}
.sort-bar__count { color: var(--color-grey); }
.sort-bar__select { background: transparent; border: none; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--color-charcoal); outline: none; }

.product-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }

.catalog-load-more { text-align: center; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-burgundy-dk));
    padding: 64px 0;
    text-align: center;
}
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: var(--color-stone); font-size: 17px; margin-bottom: 32px; max-width: 560px; margin-inline: auto; margin-bottom: 32px; }

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.product-hero-section {
    padding: 40px 0 60px;
    background: var(--color-cream);
}

.product-hero {
    background: #fff;
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-burgundy-dk) 60%, var(--color-burgundy-xd) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-main-image__badge { position: absolute; top: 16px; left: 16px; }
.product-main-image svg { width: 160px; height: 160px; color: rgba(201,150,58,.4); }
.product-main-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-main-image__caption {
    position: absolute; bottom: 16px; right: 16px;
    background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
    color: rgba(255,255,255,.8); font-size: 11px;
    padding: 6px 12px; border-radius: 4px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 16px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.product-rating__stars { color: var(--color-gold); font-size: 18px; }
.product-rating__score { font-weight: 600; }
.product-rating__count { font-size: 14px; color: var(--color-grey); text-decoration: underline; cursor: pointer; }

.product-intro { color: var(--color-grey); margin-bottom: 28px; line-height: 1.75; }

.specs-table {
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 28px;
    border: 1px solid var(--color-stone);
}
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-stone);
    font-size: 15px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row__label { color: var(--color-grey); }
.spec-row__value { font-weight: 600; }

.product-price-block { margin-bottom: 28px; }
.product-price-block__note { font-size: 12px; color: var(--color-grey); }
.product-price {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-top: 4px;
}

.product-actions { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 160px; }

.product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--color-stone);
}
.product-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.product-trust-item svg { width: 20px; height: 20px; color: var(--color-gold); }

/* Tabs */
.product-tabs-section {
    background: var(--color-cream);
    padding-bottom: 60px;
}
.product-tabs {
    background: #fff;
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--color-stone);
    background: var(--color-cream);
    padding: 0 16px;
}
.tabs-nav__item {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    text-decoration: none;
    display: block;
}
.tabs-nav__item:hover { color: var(--color-charcoal); }
.tabs-nav__item.active {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-burgundy);
    background: #fff;
}

.tab-content { padding: 40px; display: none; }
.tab-content.active { display: block; }
.tab-content h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--color-burgundy); margin-bottom: 16px; }
.tab-content p { color: var(--color-charcoal); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

.info-box {
    display: flex;
    gap: 16px;
    background: rgba(92,30,44,.05);
    border: 1px solid rgba(92,30,44,.2);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.info-box svg { width: 22px; height: 22px; color: var(--color-burgundy); flex-shrink: 0; margin-top: 2px; }
.info-box__title { font-weight: 700; color: var(--color-burgundy); margin-bottom: 4px; }
.info-box__text  { font-size: 14px; color: var(--color-charcoal); }

.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.feature-item svg { width: 20px; height: 20px; color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }

/* Related products */
.related-products { padding: 60px 0 80px; background: var(--color-cream); }
.related-products h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--color-burgundy); margin-bottom: 32px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--color-charcoal);
    color: var(--color-stone);
    padding: 72px 0 0;
    border-top: 4px solid var(--color-gold);
}

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

.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand .site-logo__name { color: #fff; }
.footer-brand p { font-size: 14px; color: var(--color-grey); line-height: 1.7; }

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--color-grey); }
.footer-col ul li a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-grey);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--color-grey);
}
.footer-bottom a { color: var(--color-grey); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
    .lead-section__inner { grid-template-columns: 1fr; gap: 40px; }
    .product-hero { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .product-grid-2 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .grid-3, .steps, .grid-2, .features-list { grid-template-columns: 1fr; }
    .product-grid-2 { grid-template-columns: 1fr; }
    .primary-nav { display: none; }
    .hamburger { display: flex; }
    .header-phone { display: none; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 340px; }
    .lead-section__inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .product-hero { padding: 24px; }
    .product-actions { flex-direction: column; }
    .tabs-nav { overflow-x: auto; }
}


@media (max-width: 768px) {
	
		#header-cta{ display: none; }

	}

/* ==========================================================================
   WP ALIGNMENT HELPERS
   ========================================================================== */

.wp-block-image { margin-bottom: 24px; }
.aligncenter { margin-inline: auto; }
.alignwide { max-width: 1280px; margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
