@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:           hsl(40,33%,96%);
  --fg:           hsl(30,10%,15%);
  --card:         hsl(40,30%,98%);
  --card-fg:      hsl(30,10%,15%);
  --primary:      hsl(142,28%,32%);
  --primary-fg:   hsl(40,33%,96%);
  --secondary:    hsl(30,30%,88%);
  --secondary-fg: hsl(30,10%,15%);
  --muted:        hsl(40,20%,92%);
  --muted-fg:     hsl(30,10%,40%);
  --accent:       hsl(30,50%,45%);
  --accent-fg:    hsl(40,33%,96%);
  --border:       hsl(30,20%,85%);
  --earth:        hsl(25,35%,30%);
  --earth-fg:     hsl(40,33%,96%);
  --warm:         hsl(30,50%,45%);
  --warm-light:   hsl(30,40%,70%);
  --radius:       0.5rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, sans-serif;
  --container:    1200px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:    0 4px 24px rgba(0,0,0,.13);
  --tr:           0.25s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--bg);color:var(--fg);line-height:1.7;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);line-height:1.25;color:var(--fg)}
a{color:var(--primary);text-decoration:none;transition:color var(--tr)}
a:hover{color:var(--accent)}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
button,input,textarea,select{font-family:var(--font-body);font-size:1rem}
p{margin:0}

/* ============================================================
   LAYOUT
   ============================================================ */
.container{max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.site-wrapper{display:flex;flex-direction:column;min-height:100vh}
.site-main{flex:1}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(249,246,240,.97);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:.875rem 1.5rem;
  max-width:var(--container);margin:0 auto;
}
.site-logo{display:none;flex-shrink:0}
.site-logo img{height:48px;width:auto;transition:transform var(--tr)}
.site-logo:hover img{transform:scale(1.04)}
.site-logo-text{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--primary)}

.custom-logo{width: 150px}

@media(max-width:480px){.custom-logo{width: 130px}}

/* Desktop nav */
.main-nav{display:none;align-items:center;gap:.125rem}
@media(min-width:1024px){.main-nav{display:flex}}
.main-nav ul{display:flex;align-items:center;gap:.125rem;list-style:none;margin:0;padding:0}
.main-nav li{margin:0}
.main-nav a{
  display:block;padding:.5rem .8rem;
  border-radius:var(--radius);
  font-size:.875rem;font-weight:500;
  color:var(--fg);white-space:nowrap;
  transition:background var(--tr),color var(--tr);
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a{background:var(--primary);color:var(--primary-fg)}

/* Header actions */
.header-actions{display:flex;align-items:center;gap:.5rem;flex-shrink:0}

/* Cart */
.cart-link{
  position:relative;display:inline-flex;align-items:center;gap:.375rem;
  padding:.5rem .875rem;border-radius:var(--radius);
  background:var(--primary);color:var(--primary-fg);
  font-size:.875rem;font-weight:600;transition:background var(--tr);
  white-space:nowrap;
}
.cart-link:hover{background:hsl(142,28%,26%);color:var(--primary-fg)}
.cart-link svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.cart-count{
  position:absolute;top:-6px;right:-6px;
  min-width:18px;height:18px;padding:0 4px;
  border-radius:9px;background:var(--accent);color:#fff;
  font-size:.65rem;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1;
}

/* Mobile toggle */
.mobile-menu-toggle{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border:1px solid var(--border);border-radius:var(--radius);
  background:transparent;cursor:pointer;
  transition:background var(--tr);
  -webkit-tap-highlight-color:transparent;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus{background:var(--secondary);outline:none}
.mobile-menu-toggle svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@media(min-width:1024px){.mobile-menu-toggle{display:none}}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  background:var(--bg);
  padding:.75rem 1.5rem 1rem;
  max-height:calc(100vh - 70px);
  overflow-y:auto;
}
.mobile-nav.open{display:block}
.mobile-nav ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.25rem}
.mobile-nav li{margin:0}
.mobile-nav a{
  display:block;padding:.75rem 1rem;
  border-radius:var(--radius);
  font-size:.95rem;font-weight:500;
  color:var(--fg);transition:background var(--tr);
}
.mobile-nav a:hover,.mobile-nav .current-menu-item > a{background:var(--primary);color:var(--primary-fg)}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--earth);color:var(--earth-fg);padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:640px){.footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}}
@media(min-width:768px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr}}
@media(min-width:1024px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem}}
.footer-brand .footer-logo{height:52px;width:auto;filter:brightness(1.1);margin-bottom:1rem}
.footer-brand p{font-size:.875rem;opacity:.8;line-height:1.7}
.footer-col h4{font-family:var(--font-display);font-size:1.05rem;font-weight:600;margin-bottom:.875rem;color:var(--earth-fg)}
.footer-links{display:flex;flex-direction:column;gap:.4rem}
.footer-links a{font-size:.875rem;opacity:.8;color:var(--earth-fg);transition:opacity var(--tr)}
.footer-links a:hover{opacity:1}
.footer-contact-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.875rem;opacity:.8;margin-bottom:.75rem}
.footer-contact-item svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-hours{display:flex;flex-direction:column;gap:.4rem;font-size:.875rem;opacity:.8}
.footer-hours-row{display:flex;justify-content:space-between;gap:1rem}
.footer-bottom{border-top:1px solid rgba(249,246,240,.15);text-align:center;padding:1.25rem 1.5rem;margin-top:3rem;font-size:.875rem;opacity:.6}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.625rem 1.25rem;border-radius:var(--radius);
  font-family:var(--font-body);font-weight:600;font-size:.9rem;
  cursor:pointer;border:2px solid transparent;
  transition:all var(--tr);text-decoration:none;line-height:1.4;
  -webkit-tap-highlight-color:transparent;white-space:nowrap;
}
.btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.btn-primary{background:var(--primary);color:var(--primary-fg)}
.btn-primary:hover{background:hsl(142,28%,26%);color:var(--primary-fg)}
.btn-secondary{background:var(--secondary);color:var(--secondary-fg)}
.btn-secondary:hover{background:hsl(30,30%,82%);color:var(--secondary-fg)}
.btn-outline{background:transparent;border-color:var(--border);color:var(--fg)}
.btn-outline:hover{background:var(--secondary);color:var(--secondary-fg)}
.btn-lg{padding:.875rem 1.75rem;font-size:1rem}
.btn-sm{padding:.375rem .875rem;font-size:.8rem}

/* ============================================================
   SECTION
   ============================================================ */
.section{padding:5rem 0}
.section-sm{padding:3rem 0}
.section-header{text-align:center;margin-bottom:3.5rem}
.section-eyebrow{display:block;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--primary);margin-bottom:.5rem}
.section-title{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:700}
.bg-secondary-section{background:var(--secondary)}
.bg-muted-section{background:var(--muted)}

/* ============================================================
   CSS-BACKGROUND PLACEHOLDER IMAGES
   (Used instead of broken img references)
   ============================================================ */
.card-img-aed{
  background: linear-gradient(135deg, hsl(120,30%,52%) 0%, hsl(100,35%,40%) 100%);
  display:flex;align-items:center;justify-content:center;
}
.card-img-woodwork{
  background: linear-gradient(135deg, hsl(30,40%,55%) 0%, hsl(25,45%,40%) 100%);
  display:flex;align-items:center;justify-content:center;
}
.card-img-produce{
  background: linear-gradient(135deg, hsl(48,65%,55%) 0%, hsl(35,60%,45%) 100%);
  display:flex;align-items:center;justify-content:center;
}
.card-img-hero{
  background: linear-gradient(135deg, hsl(120,25%,42%) 0%, hsl(100,30%,32%) 100%);
}
.hero-bg-fallback{
  position:absolute;inset:0;
  background: linear-gradient(135deg, hsl(120,25%,32%) 0%, hsl(100,20%,22%) 50%, hsl(140,28%,35%) 100%);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;overflow:hidden;min-height:520px;display:flex;align-items:center}
.hero>.container{width:100%;align-self:stretch;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg[style*="background-image"]{background-size:cover;background-position:center}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(60,38,18,.85),rgba(60,38,18,.55) 55%,rgba(60,38,18,.1))}
.hero-content{position:relative;padding:6rem 0 7rem;max-width:580px;z-index:1}
.hero-eyebrow{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.16em;color:var(--warm-light);margin-bottom:1rem;display:block}
.hero h1{font-size:clamp(2rem,5vw,3.25rem);font-weight:700;color:var(--earth-fg);line-height:1.15;margin-bottom:1.25rem}
.hero h1 em{font-style:italic}
.hero-desc{font-size:1.1rem;color:rgba(249,246,240,.85);max-width:420px;margin-bottom:2rem;line-height:1.7}
.hero-buttons{display:flex;flex-wrap:wrap;gap:.875rem}

/* HERO SLIDER */
.hero-slider{position:absolute;inset:0}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease-in-out}
.hero-slide.active{opacity:1}
.hero-slide .hero-bg{position:absolute;inset:0}

/* Per-slide text crossfade */
.hero-content-slide{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:column;justify-content:center;padding:6rem 0 7rem;max-width:580px;z-index:1;opacity:0;transition:opacity .8s ease-in-out .2s;pointer-events:none}
.hero-content-slide:first-of-type{position:relative}
.hero-content-slide.active{opacity:1;pointer-events:auto}

/* Slide indicators — pinned to very bottom of hero section */
.hero-indicators{position:absolute;bottom:.75rem;left:50%;transform:translateX(-50%);display:flex;gap:.5rem;z-index:3}
.hero-indicator{width:2.5rem;height:3px;border:none;padding:0;cursor:pointer;background:rgba(255,255,255,.3);border-radius:2px;overflow:hidden;transition:background .3s}
.hero-indicator:hover{background:rgba(255,255,255,.5)}
.hero-indicator .hero-indicator-fill{display:block;height:100%;width:0;background:rgba(255,255,255,.9);border-radius:2px}
.hero-indicator.active .hero-indicator-fill{animation:indicatorProgress var(--hero-interval,6s) linear forwards}

/* PAGE HERO */
.page-hero{padding:3.5rem 0;background:var(--primary);text-align:center}
.page-hero h1{font-size:clamp(1.875rem,4vw,3rem);font-weight:700;color:var(--primary-fg);margin-bottom:.5rem}
.page-hero p{color:rgba(249,246,240,.82);font-size:1.05rem}

/* IMAGE HERO */
.image-hero{position:relative;overflow:hidden}
.image-hero img{width:100%;height:340px;object-fit:cover;display:block}
.image-hero-overlay{position:absolute;inset:0;background:rgba(60,38,18,.68)}
.image-hero-content{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center;padding:1.5rem}
.image-hero-content h1{font-size:clamp(1.875rem,4vw,3rem);font-weight:700;color:var(--earth-fg);margin-bottom:.5rem}
.image-hero-content p{color:rgba(249,246,240,.82);font-size:1.05rem}

/* ============================================================
   CARDS
   ============================================================ */
.card{background:var(--card);border:1px solid var(--border);border-radius:.75rem;overflow:hidden;transition:box-shadow var(--tr),transform var(--tr)}
.card:hover{box-shadow:var(--shadow-lg)}
.card-image{overflow:hidden}
.card-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.card:hover .card-image img{transform:scale(1.05)}
.card-image.ratio-43{aspect-ratio:4/3}
.card-image.ratio-sq{aspect-ratio:1}
.card-body{padding:1.375rem}
.card-eyebrow{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);margin-bottom:.375rem;display:block;padding: 0rem 1.25rem;}
.card-title{font-family:var(--font-display);font-size:1.05rem;font-weight:600;color:var(--card-fg);margin-bottom:.375rem}
.card-text{font-size:.875rem;color:var(--muted-fg);line-height:1.65}
.card-price{font-family:var(--font-display);font-size:1.25rem;font-weight:700;color:var(--fg)}
.card-footer{display:flex;align-items:center;justify-content:space-between;margin-top:1rem}


/* ============================================================
   GRIDS
   ============================================================ */
.grid-cols-3{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:600px){.grid-cols-3{grid-template-columns:1fr 1fr 1fr}}
@media(min-width:1024px){.grid-cols-3{grid-template-columns:1fr 1fr 1fr}}
.grid-cols-4{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:600px){.grid-cols-4{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.grid-cols-4{grid-template-columns:1fr 1fr 1fr 1fr}}
.grid-cols-2{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:1024px){.grid-cols-2{grid-template-columns:1fr 1fr}}

/* TWO-COL */
.two-col{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center}
@media(min-width:1024px){.two-col{grid-template-columns:1fr 1fr}}
.two-col-img{border-radius:.75rem;overflow:hidden}
.two-col-img img{width:100%;height:320px;object-fit:cover;border-radius:.75rem}
.two-col-img-bg{border-radius:.75rem}
.two-col-text .section-eyebrow{text-align:left}
.two-col-text h2{font-size:clamp(1.625rem,3vw,2.25rem);font-weight:700;margin-bottom:1.25rem;line-height:1.2}
.two-col-text p{color:var(--muted-fg);margin-bottom:.875rem;line-height:1.75}

/* ICON BLOCKS */
.icon-block{text-align:center;padding:1rem}
.icon-block-icon{display:inline-flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:50%;background:rgba(74,117,70,.12);margin-bottom:1rem}
.icon-block-icon svg{width:28px;height:28px;color:var(--primary);stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.icon-block h3{font-size:1.05rem;font-weight:600;margin-bottom:.375rem}
.icon-block p{font-size:.875rem;color:var(--muted-fg)}

/* CTA */
.cta-section{background:var(--primary);padding:5rem 1.5rem;text-align:center}
.cta-icon{width:40px;height:40px;margin:0 auto 1rem;opacity:.7;color:var(--primary-fg);stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cta-section h2{font-size:clamp(1.625rem,3.5vw,2.5rem);color:var(--primary-fg);margin-bottom:.75rem}
.cta-section p{color:rgba(249,246,240,.82);max-width:400px;margin:0 auto 2rem;line-height:1.7}

/* ============================================================
   BLOG
   ============================================================ */
.blog-list{display:flex;flex-direction:column;gap:1.75rem;max-width:1000px;margin:0 auto}
.blog-card{background:var(--card);border:1px solid var(--border);border-radius:.75rem;overflow:hidden;display:flex;flex-direction:column;transition:box-shadow var(--tr)}
.blog-card:hover{box-shadow:var(--shadow-lg)}
@media(min-width:640px){.blog-card{flex-direction:row}}
.blog-card-image{flex-shrink:0;overflow:hidden;background:var(--muted)}
.blog-card-image img{width:100%;height:200px;object-fit:cover;transition:transform .5s ease}
.blog-card:hover .blog-card-image img{transform:scale(1.05)}
@media(min-width:640px){.blog-card-image{width:260px}.blog-card-image img{height:100%;min-height:160px}}
.blog-card-body{padding:1.375rem;display:flex;flex-direction:column;justify-content:center}
.blog-card-meta{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:var(--muted-fg);margin-bottom:.625rem}
.blog-card-meta svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.blog-card-title{font-family:var(--font-display);font-size:1.15rem;font-weight:700;color:var(--card-fg);margin-bottom:.5rem;line-height:1.3}
.blog-card-excerpt{font-size:.875rem;color:var(--muted-fg);line-height:1.65;margin-bottom:1rem}
.blog-read-more{display:inline-flex;align-items:center;gap:.25rem;font-size:.875rem;font-weight:600;color:var(--primary);margin-top:auto}
.blog-read-more:hover{text-decoration:underline;color:var(--primary)}
.blog-read-more svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* SINGLE POST */
/* ===================================================
   SINGLE POST – LUXURY CRAFT EDITORIAL STYLE
=================================================== */

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

.single-post-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.single-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.single-post-hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsl(120,25%,32%),
        hsl(100,20%,22%)
    );
}

/* Craft-style depth overlay */
.single-post-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(35,25,15,0.15) 0%,
            rgba(35,25,15,0.25) 40%,
            rgba(35,25,15,0.45) 75%,
            rgba(35,25,15,0.65) 100%
        );
}

/* Elegant bottom fade */
.single-post-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 60%,
        var(--bg) 100%
    );
    pointer-events: none;
}

/* ===== HEADER (Hero alt floating card) ===== */

.single-post-header {
    max-width: 1000px;
    margin: -100px auto 0;
    padding: 2.75rem 2.25rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,.08);
    position: relative;
    z-index: 5;
}
/* @media(max-width:640px){.single-post-header{max-width: 700px}} */

.single-post-back {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: opacity .2s ease;
}

.single-post-back:hover {
    opacity: .7;
}

.single-post-back svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.single-post-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--fg);
    letter-spacing: -0.01em;
    margin-bottom: .75rem;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .85rem;
    color: var(--muted-fg);
}

.post-meta svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== CONTENT ===== */

.post-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted-fg);
}

.post-content h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin: 2.5rem 0 .9rem;
    color: var(--fg);
    letter-spacing: -.01em;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.8rem 0 .7rem;
    color: var(--fg);
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: .4rem;
}

.post-content strong {
    color: var(--fg);
}

.post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.post-content img {
    border-radius: .75rem;
    margin: 2rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--muted-fg);
}

/* ===== TAGS ===== */

.post-tags {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.post-tags a {
    font-size: .8rem;
    padding: .4rem .75rem;
    background: var(--muted-bg);
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted-fg);
    transition: background .2s ease;
}

.post-tags a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== RELATED POSTS ===== */

.related-posts-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--fg);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .single-post-hero {
        height: 480px;
    }

    .single-post-header {
        max-width: 700px;
		margin-top: -70px;
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }

    .post-content {
        max-width: 700px;
		padding: 2.5rem 1.25rem 3rem;
        font-size: 1rem;
    }
	
	.single-post-title {
    font-size: 25px;
	}
}

@media (max-width: 380px) {
	.single-post-title {
    font-size: 18px;
	}
}


/* ============================================================
   GALLERY (FooGallery overrides)
   ============================================================ */
.gallery-page-content{margin-bottom:1rem}
.gallery-page-content h2{font-family:var(--font-display);font-size:1.5rem;font-weight:700;margin:0 0 1rem}
.gallery-page-content p{color:var(--muted-fg);margin-bottom:1.5rem}
.foogallery-container .fg-item .fg-thumb{border-radius:.5rem;overflow:hidden}
.foogallery-albums-grid .fg-album-wrapper,
div.fg-album-wrapper{border:1px solid var(--border)!important;border-radius:.75rem!important;overflow:hidden!important;background:var(--card)!important;box-shadow:none!important;transition:box-shadow var(--tr)!important}
.foogallery-albums-grid .fg-album-wrapper:hover,
div.fg-album-wrapper:hover{box-shadow:var(--shadow-lg)!important}
.fg-album-name{font-family:var(--font-display)!important;color:var(--card-fg)!important;font-weight:600!important}
.fg-album-desc{font-size:.875rem!important;color:var(--muted-fg)!important}
/* Gallery section headers */
.gallery-section h2{font-family:var(--font-display);font-size:1.5rem;font-weight:700;margin-bottom:1.25rem;border-bottom:2px solid var(--border);padding-bottom:.75rem}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{display:grid;grid-template-columns:1fr;gap:3rem;max-width:920px;margin:0 auto}
@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-info h2,.contact-form h2{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem}
.contact-item{display:flex;align-items:flex-start;gap:.875rem;margin-bottom:1.25rem}
.contact-icon{width:40px;height:40px;border-radius:.5rem;background:rgba(74,117,70,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:20px;height:20px;color:var(--primary);stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.contact-item-label{font-weight:600;font-size:.9rem;color:var(--fg);margin-bottom:.125rem}
.contact-item-value{font-size:.875rem;color:var(--muted-fg)}
.form-group{margin-bottom:.875rem}
.form-group label{display:block;font-size:.875rem;font-weight:600;color:var(--fg);margin-bottom:.375rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:520px){.form-row{grid-template-columns:1fr}}
.form-input,.form-textarea{
  width:100%;padding:.625rem .875rem;
  border:1.5px solid var(--border);border-radius:var(--radius);
  background:var(--card);color:var(--fg);font-size:.9rem;
  transition:border-color var(--tr),box-shadow var(--tr);font-family:var(--font-body);
}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(74,117,70,.15)}
.form-textarea{resize:vertical;min-height:140px}

/* ============================================================
   GARDEN
   ============================================================ */
.season-card{background:var(--card);border:1px solid var(--border);border-radius:.75rem;padding:1.375rem}
.season-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .8rem;border-radius:100px;font-size:.78rem;font-weight:700;margin-bottom:.875rem}
.season-badge svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.season-badge.spring{background:rgba(74,117,70,.12);color:var(--primary)}
.season-badge.summer{background:rgba(175,108,54,.14);color:var(--accent)}
.season-badge.autumn{background:rgba(192,80,70,.12);color:hsl(5,55%,52%)}
.season-badge.winter{background:var(--secondary);color:var(--secondary-fg)}
.season-months{font-size:.78rem;color:var(--muted-fg);margin-bottom:.75rem}
.season-tasks{display:flex;flex-direction:column;gap:.425rem}
.season-task{display:flex;align-items:flex-start;gap:.4rem;font-size:.85rem;color:var(--fg);line-height:1.5}
.season-task::before{content:'•';color:var(--primary);flex-shrink:0;margin-top:1px;font-weight:700}
.tip-card{display:flex;gap:1rem;padding:1.375rem;border:1px solid var(--border);background:var(--card);border-radius:.75rem}
.tip-icon{width:40px;height:40px;min-width:40px;border-radius:50%;background:rgba(74,117,70,.1);display:flex;align-items:center;justify-content:center}
.tip-icon svg{width:20px;height:20px;color:var(--primary);stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tip-card h3{font-size:.95rem;font-weight:600;margin-bottom:.25rem}
.tip-card p{font-size:.85rem;color:var(--muted-fg);line-height:1.65}

/* WOODWORK */
.woodwork-card{background:var(--card);border:1px solid var(--border);border-radius:.75rem;overflow:hidden;transition:box-shadow var(--tr)}
.woodwork-card:hover{box-shadow:var(--shadow-lg)}
.woodwork-card-image{aspect-ratio:4/3;overflow:hidden;background:linear-gradient(135deg,hsl(30,40%,55%),hsl(25,45%,42%))}
.woodwork-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.woodwork-card:hover .woodwork-card-image img{transform:scale(1.05)}
.woodwork-card-body{padding:1.25rem}
.woodwork-card-title{font-family:var(--font-display);font-size:1rem;font-weight:600;display:flex;align-items:center;gap:.5rem;color:var(--card-fg)}
.woodwork-card-title svg{width:15px;height:15px;color:var(--accent);stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.woodwork-card-desc{font-size:.85rem;color:var(--muted-fg);margin-top:.25rem}

/* ============================================================
   WOOCOMMERCE
   ============================================================ */
ul.products{margin:0!important;padding:0!important;list-style:none!important}
ul.products::before{display:none!important;content:""!important}
ul.products::after{display:none!important;content:""!important}
ul.products.columns-3{display:grid!important;grid-template-columns:1fr!important;gap:1.5rem!important}
@media(min-width:600px){ul.products.columns-3{grid-template-columns:1fr 1fr!important}}
@media(min-width:1024px){ul.products.columns-3{grid-template-columns:1fr 1fr 1fr!important}}
ul.products li.product{background:var(--card)!important;border:1px solid var(--border)!important;border-radius:.75rem!important;overflow:hidden!important;transition:box-shadow var(--tr)!important;margin:0!important;float:none!important;width:auto!important;clear:none!important}
ul.products li.product:hover{box-shadow:var(--shadow-lg)!important}
ul.products li.product a img{width:100%!important;height:220px!important;object-fit:cover!important;transition:transform .5s ease!important;border-radius:0!important}
ul.products li.product:hover a img{transform:scale(1.05)!important}
ul.products li.product .woocommerce-loop-product__title{font-family:var(--font-display)!important;font-size:1.05rem!important;font-weight:600!important;color:var(--card-fg)!important;padding:1rem 1.25rem .25rem!important}
ul.products li.product .price{font-family:var(--font-display)!important;font-size:1.15rem!important;font-weight:700!important;color:var(--fg)!important;padding:0 1.25rem!important;display:block!important}
ul.products li.product .button{display:block!important;margin:.75rem 1.25rem 1.25rem!important;padding:.5rem 1rem!important;background:var(--primary)!important;color:var(--primary-fg)!important;border:none!important;border-radius:var(--radius)!important;font-weight:600!important;font-size:.875rem!important;cursor:pointer!important;text-align:center!important;transition:background var(--tr)!important;font-family:var(--font-body)!important}
ul.products li.product .button:hover{background:hsl(142,28%,26%)!important}
.woocommerce-breadcrumb{font-size:.85rem!important;color:var(--muted-fg)!important;margin-bottom:2rem!important;padding:1rem 0 0!important}
.woocommerce-breadcrumb a{color:var(--primary)!important}
.woocommerce div.product .entry-title{font-family:var(--font-display)!important;font-size:2rem!important;font-weight:700!important;color:var(--fg)!important;margin-bottom:.5rem!important}
.woocommerce div.product p.price,.woocommerce div.product span.price{font-family:var(--font-display)!important;font-size:1.75rem!important;font-weight:700!important;color:var(--fg)!important;margin:1.25rem 0!important}
.woocommerce div.product .woocommerce-product-details__short-description{color:var(--muted-fg)!important;line-height:1.75!important;margin-bottom:1.5rem!important}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{background:var(--primary)!important;color:var(--primary-fg)!important;border-radius:var(--radius)!important;font-family:var(--font-body)!important;font-weight:600!important;font-size:.95rem!important;padding:.75rem 1.5rem!important;border:none!important;transition:background var(--tr)!important}
.woocommerce div.product form.cart .button:hover,.woocommerce a.button:hover,.woocommerce button.button:hover{background:hsl(142,28%,26%)!important}
.woocommerce div.product .woocommerce-tabs ul.tabs{border-bottom:2px solid var(--border)!important;padding:0!important;margin:0 0 1.5rem!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li{border:none!important;background:transparent!important;border-radius:0!important;margin:0!important;padding:0!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{font-family:var(--font-display)!important;font-weight:600!important;color:var(--muted-fg)!important;padding:.75rem 1.25rem!important;border-bottom:2px solid transparent!important;transition:all var(--tr)!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:var(--primary)!important;border-bottom-color:var(--primary)!important}
.woocommerce-message,.woocommerce-info,.woocommerce-error{border-top-color:var(--primary)!important;background-color:var(--card)!important;border-radius:0 var(--radius) var(--radius) 0!important}
.woocommerce nav.woocommerce-pagination ul{border:none!important}
.woocommerce nav.woocommerce-pagination ul li{border:none!important}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{border:1px solid var(--border)!important;border-radius:var(--radius)!important;color:var(--fg)!important;background:var(--card)!important;font-family:var(--font-body)!important;transition:all var(--tr)!important}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current{background:var(--primary)!important;color:var(--primary-fg)!important;border-color:var(--primary)!important}
.woo-shop-filters{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2.5rem;justify-content:center}
.woo-filter-btn{padding:.4rem .875rem;border-radius:var(--radius);border:1.5px solid var(--border);background:transparent;font-size:.85rem;font-weight:600;cursor:pointer;transition:all var(--tr);font-family:var(--font-body);color:var(--fg);text-decoration:none;display:inline-block}
.woo-filter-btn:hover,.woo-filter-btn.active{background:var(--primary);color:var(--primary-fg);border-color:var(--primary)}

.wc-block-components-product-badge.wc-block-components-product-low-stock-badge {
	display: none !important;
}

.wc-block-checkout__pickup-options .wc-block-components-local-pickup-rates-control .wc-block-components-radio-control .wc-block-components-radio-control__input, .wp-block-woocommerce-checkout-pickup-options-block .wc-block-components-local-pickup-rates-control .wc-block-components-radio-control .wc-block-components-radio-control__input {
    top: 15px;
    transform: none;
    left: -10px !important;
}

@media(max-width:480px){.wc-block-checkout__pickup-options .wc-block-components-local-pickup-rates-control .wc-block-components-radio-control .wc-block-components-radio-control__input, .wp-block-woocommerce-checkout-pickup-options-block .wc-block-components-local-pickup-rates-control .wc-block-components-radio-control .wc-block-components-radio-control__input {
    top: 23px;
}}

.wp-block-woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__input {
    top: 15px;
    transform: none;
    left: -10px !important;
}

@media(max-width:480px){.wp-block-woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__input {
    top: 23px;
}}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes indicatorProgress{from{width:0}to{width:100%}}
.animate-fade-in{animation:fadeIn .5s ease forwards}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center{text-align:center}
.max-w-3xl{max-width:1000px;margin-left:auto;margin-right:auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.alignnone{margin:5px 20px 20px 0}
.aligncenter,div.aligncenter{display:block;margin:5px auto 5px auto}
.alignright{float:right;margin:5px 0 20px 20px}
.alignleft{float:left;margin:5px 20px 20px 0}
.wp-caption{max-width:100%;font-size:.875rem;color:var(--muted-fg);text-align:center}
.wp-block-image img{border-radius:.5rem}
.wp-block-code code,.gallery-page-content code{background:var(--muted);padding:.2em .4em;border-radius:.25rem;font-size:.875em;font-family:monospace}

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================================ */
@media(max-width:1023px){
  .hero-content{padding:4.5rem 0 5.5rem}
  .hero-content-slide{padding:4.5rem 1rem 5.5rem}
  .hero-content-slide:first-of-type{padding:4.5rem 0 5.5rem}
  .hero h1{font-size:clamp(1.75rem,6vw,2.5rem)}
  .hero-desc{font-size:1rem}
  .section{padding:3.5rem 0}
  .section-header{margin-bottom:2.5rem}
  .container{padding:0 1rem}
}
@media(max-width:639px){
  .hero{min-height:420px}
  .hero-content{padding:3.5rem 0 4rem}
  .hero-content-slide{padding:3.5rem 1rem 4rem}
  .hero-content-slide:first-of-type{padding:3.5rem 0 4rem}
  .hero-indicators{bottom:.5rem}
  .hero h1{font-size:1.875rem}
  .hero-buttons{flex-direction:column;align-items:flex-start}
  .hero-buttons .btn{width:100%;justify-content:center}
  .section{padding:2.75rem 0}
  .two-col-text h2{font-size:1.625rem}
  .cta-section{padding:3.5rem 1rem}
  .footer-grid{grid-template-columns:1fr}
  .post-content{padding:2rem 1rem}
  .single-post-hero{height:260px}
  .image-hero img{height:260px}
  .blog-card-body{padding:1rem}
  .card-body{padding:1rem}
}
@media(max-width:480px){
  .header-inner{padding:.75rem 1rem}
  .site-logo img{height:40px}
  .btn-lg{padding:.75rem 1.25rem;font-size:.95rem}
  .page-hero{padding:2.5rem 0}
  .page-hero h1{font-size:1.75rem}
}

/* ============================================================
   PATCH v3.1 — all fixes
   ============================================================ */

/* 1. HERO — left-aligned, not centred */
.hero-content {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
.hero-buttons {
  justify-content: flex-start !important;
}

/* 2. CONTACT FORM — match React original */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
@media(min-width:1024px){
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: var(--fg);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: .5rem;
  background: rgba(74,117,70,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--fg);
  margin-bottom: .125rem;
}
.contact-item-value {
  font-size: .875rem;
  color: var(--muted-fg);
  display: block;
  text-decoration: none;
}
a.contact-item-value:hover { color: var(--primary); }

/* Contact form inputs */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media(max-width:520px){
  .contact-form .form-row { grid-template-columns: 1fr; }
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form .form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: .375rem;
}
.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--fg);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74,117,70,.14);
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 140px;
}
/* CF7 overrides */
.cf7-wrap .wpcf7-form-control-wrap input,
.cf7-wrap .wpcf7-form-control-wrap textarea,
.cf7-wrap .wpcf7-form-control-wrap select {
  width: 100% !important;
  padding: .625rem .875rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--card) !important;
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
  color: var(--fg) !important;
  transition: border-color var(--tr), box-shadow var(--tr) !important;
}
.cf7-wrap .wpcf7-form-control-wrap input:focus,
.cf7-wrap .wpcf7-form-control-wrap textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(74,117,70,.14) !important;
}
.cf7-wrap .wpcf7-submit {
  width: 100% !important;
  justify-content: center !important;
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: .875rem 1.75rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: background var(--tr) !important;
}
.cf7-wrap .wpcf7-submit:hover { background: hsl(142,28%,26%) !important; }
.contact-success {
  display: flex; align-items: center; gap: .625rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(74,117,70,.1);
  color: var(--primary);
  font-weight: 500;
  margin-top: 1rem;
}
.contact-success svg { width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round }
.contact-error {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(200,50,50,.08);
  color: hsl(0,60%,45%);
  margin-top: 1rem;
}

/* 3. FOOTER — footer menu via wp_nav_menu */
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-links li { margin: 0; }
.footer-links a, .footer-links ul li a {
  font-size: .875rem;
  opacity: .8;
  color: var(--earth-fg);
  transition: opacity var(--tr);
  text-decoration: none;
}
.footer-links a:hover, .footer-links ul li a:hover { opacity: 1; color: var(--earth-fg); }
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--earth-fg);
}
/* Footer contact links */
.footer-contact-item a {
  color: var(--earth-fg);
  opacity: .8;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity var(--tr);
}
.footer-contact-item a:hover { opacity: 1; color: var(--earth-fg); }

/* 4. FOOTER mobile — links & contact side by side */
@media(max-width:639px){
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-hours {
    grid-column: 1 / -1;
  }
}
@media(max-width:380px){
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-brand { grid-column: auto; }
  .footer-col-hours { grid-column: auto; }
}

/* 5. LOGO SIZE defaults (overridden by Customizer inline CSS) */
.site-logo img,
.site-logo .custom-logo {
  height: 52px;
  width: auto;
}
@media(max-width:1023px){
  .site-logo img,.site-logo .custom-logo { height: 44px; }
}
@media(max-width:480px){
  .site-logo img,.site-logo .custom-logo { height: 38px; }
}

/* 6. BLOG ARCHIVE — hide excerpt on grid cards */
.grid-cols-3 .card .card-text { display: none; }
/* Keep excerpt visible in blog-list (archive.php) */
.blog-card .blog-card-excerpt { display: none !important; }

/* 7. GALLERY — FooGallery 2 columns on mobile */
.foogallery-albums-grid,
.foogallery-albums {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
}
@media(min-width:640px){
  .foogallery-albums-grid,
  .foogallery-albums { grid-template-columns: repeat(3, 1fr) !important; }
}
@media(min-width:1024px){
  .foogallery-albums-grid,
  .foogallery-albums { grid-template-columns: repeat(4, 1fr) !important; }
}
/* FooGallery: fix album title showing beside image */
.fg-album-wrapper .fg-album-inner { display: flex !important; flex-direction: column !important; }
.fg-album-wrapper .fg-album-thumb { width: 100% !important; }
.fg-album-wrapper .fg-album-info,
.fg-album-wrapper .fg-album-caption { width: 100% !important; padding: .75rem !important; text-align: left !important; }
/* ── FooGallery single album view ── */
/* back link + album title: stack vertically */
.foogallery-wrapper .fg-gallery-name,
.entry-title.fg-gallery-name,
h2.fg-gallery-name,
.foogallery-album-back {
  display: block !important;
  float: none !important;
  width: 100% !important;
}
.foogallery-album-back,
a.foogallery-album-back,
p.foogallery-album-back {
  display: block !important;
  margin-bottom: .5rem !important;
}
.foogallery-album-back + h2,
.foogallery-album-back + .fg-gallery-name {
  clear: both !important;
  display: block !important;
}
/* Album page header wrapper — ensure stacked */
.foogallery-page-title,
.fg-album-page-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: .375rem !important;
  margin-bottom: 1.5rem !important;
}

/* Single album image grid */
.foogallery-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: .625rem !important;
}
@media(min-width:480px){
  .foogallery-container { grid-template-columns: repeat(3, 1fr) !important; gap:.75rem !important; }
}
@media(min-width:1024px){
  .foogallery-container { grid-template-columns: repeat(4, 1fr) !important; }
}
.foogallery-container .fg-item {
  width: auto !important;
  float: none !important;
  display: block !important;
  margin: 0 !important;
}
/* DO NOT force height/padding tricks — breaks FooGallery lazy loading */
.foogallery-container .fg-item .fg-thumb {
  border-radius: .5rem !important;
  overflow: hidden !important;
  display: block !important;
}
.foogallery-container .fg-item .fg-thumb img {
  width: 100% !important;
  height: auto !important;
  min-height: 80px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: .5rem !important;
}
/* Also allow real src to load */
.foogallery-container .fg-item .fg-thumb img[src*="svg"],
.foogallery-container .fg-item .fg-thumb img[src^="data"] {
  min-height: 120px !important;
  background: var(--muted) !important;
}
.foogallery-container .fg-item-caption { display: none !important; }

/* 8. SHOP (WooCommerce) — fix product card layout */
ul.products { display: grid !important; padding: 0 !important; margin: 0 !important; list-style:none !important; }
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-2,
ul.products.columns-1 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
}
@media(max-width:340px){
  ul.products.columns-3,
  ul.products.columns-4 { grid-template-columns: 1fr !important; }
}
@media(min-width:768px){
  ul.products.columns-3 { grid-template-columns: repeat(3, 1fr) !important; gap:1.25rem !important; }
}
@media(min-width:1024px){
  ul.products.columns-4 { grid-template-columns: repeat(4, 1fr) !important; }
}
ul.products li.product {
  float: none !important;
  width: auto !important;
  clear: none !important;
  margin: 0 !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: .75rem !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: box-shadow var(--tr) !important;
}
ul.products li.product:hover { box-shadow: var(--shadow-lg) !important; }
ul.products li.product a.woocommerce-loop-product__link { display: block !important; text-decoration: none !important; }
ul.products li.product a img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .5s ease !important;
  border-radius: 0 !important;
}
@media(max-width:480px){
  ul.products li.product a img { height:180px !important; }
}
/* sale badge */
ul.products li.product .onsale {
  position: absolute !important;
  top: .5rem !important;
  right: .5rem !important;
  left: auto !important;
  z-index: 2 !important;
  min-width: 2.2rem !important;
  min-height: 2.2rem !important;
  line-height: 2.2rem !important;
  padding: 0 .4rem !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-size: .7rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}
/* product link wraps image + badge — needs relative positioning */
ul.products li.product a.woocommerce-loop-product__link {
  position: relative !important;
  display: block !important;
}
/* rating + category — fix overflow */
ul.products li.product .star-rating {
  margin: 0 1.25rem .25rem !important;
  font-size: .75rem !important;
}
ul.products li.product .product-category-label {
  font-size: .65rem !important;
  padding: .25rem .625rem !important;
  margin: .625rem 1.25rem 0 !important;
  display: inline-block !important;
  background: var(--muted) !important;
  border-radius: 100px !important;
  color: var(--muted-fg) !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}
ul.products li.product:hover a img { transform: scale(1.05) !important; }
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--card-fg) !important;
  padding: 1rem 1.25rem .25rem !important;
  margin: 0 !important;
}
ul.products li.product .price {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--fg) !important;
  padding: 0 1.25rem .25rem !important;
  display: block !important;
}

@media(max-width:480px) {ul.products li.product .price {padding: 0 0.5rem .25rem !important;}}

/* Strikethrough price styling */
ul.products li.product .price del {
  color: var(--muted-fg) !important;
  font-size: .9rem !important;
}
ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--accent) !important;
}
ul.products li.product .button {
  display: block !important;
  margin: .5rem 1.25rem 1.25rem !important;
  padding: .5rem 1rem !important;
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: background var(--tr) !important;
  font-family: var(--font-body) !important;
  text-decoration: none !important;
}
ul.products li.product .button:hover { background: hsl(142,28%,26%) !important; }
/* Category filter tabs */
.woo-shop-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.woo-filter-btn {
  padding: .4rem .875rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-body);
  color: var(--fg);
  text-decoration: none;
  display: inline-block;
}
.woo-filter-btn:hover,.woo-filter-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* 9. SINGLE PRODUCT — gallery spacing + hide "Kirjeldus" heading */
/* Wider gallery images */
.woocommerce div.product.product {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
  align-items: flex-start !important;
}
.woocommerce div.product div.images {
  flex: 0 0 calc(48% - 1rem) !important;
  width: calc(48% - 1rem) !important;
  float: none !important;
}
.woocommerce div.product div.summary {
  flex: 0 0 calc(48% - 1rem) !important;
  width: calc(48% - 1rem) !important;
  float: none !important;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product #reviews {
  flex: 0 0 100% !important;
  width: 100% !important;
  clear: both !important;
}
/* Product gallery thumbnails */
.woocommerce div.product .woocommerce-product-gallery__wrapper {
  gap: .75rem !important;
}
.woocommerce div.product .flex-viewport {
  border-radius: .5rem !important;
  overflow: hidden !important;
}
.woocommerce div.product .woocommerce-product-gallery__trigger { display: none !important; }
/* Thumbnails */
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .5rem !important;
  margin-top: .75rem !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs li {
  width: calc(25% - .375rem) !important;
  margin: 0 !important;
  float: none !important;
}
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img {
  border-radius: .375rem !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  border: 2px solid transparent !important;
  transition: border-color var(--tr) !important;
}
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img.flex-active,
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs img:hover {
  border-color: var(--primary) !important;
}
/* Description h2 handled via PHP filter: woocommerce_product_description_heading => '' */
/* Tab styling */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--border) !important;
  padding: 0 !important;
  margin: 0 0 1.5rem !important;
  display: flex !important;
  gap: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: .75rem 1.25rem !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  color: var(--muted-fg) !important;
  border-bottom: 2px solid transparent !important;
  transition: all var(--tr) !important;
  display: block !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--primary) !important;
  border-bottom-color: var(--primary) !important;
}
@media(max-width:767px){
  .woocommerce div.product.product {
    flex-direction: column !important;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    flex: 0 0 100% !important;
    width: 100% !important;
    float: none !important;
  }
}

/* ── Mobile toggle button — ensure full button is clickable ── */
.mobile-menu-toggle {
  cursor: pointer !important;
  position: relative !important;
}
.mobile-menu-toggle * { pointer-events: none !important; }

/* ============================================================
   PATCH v3.2 — targeted fixes
   ============================================================ */

/* HERO — ensure container fills width so content sits left */
.hero > .container {
  width: 100%;
  max-width: var(--container);
  position: relative;
}
/* Remove conflicting centering patch */
.hero-content {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.hero-content-slide {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* FOOTER MOBILE — 2-col (links + contact side by side) */
/* Overrides the base 1fr at <640px explicitly */
@media (max-width: 639px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem 1.25rem !important;
  }
  .site-footer .footer-brand {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }
  .site-footer .footer-col-links  { grid-column: 1 !important; }
  .site-footer .footer-col-contact { grid-column: 2 !important; }
  .site-footer .footer-col-hours  {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 340px) {
  .site-footer .footer-grid { grid-template-columns: 1fr !important; }
  .site-footer .footer-brand,
  .site-footer .footer-col-links,
  .site-footer .footer-col-contact,
  .site-footer .footer-col-hours { grid-column: auto !important; }
}

/* SHOP — product card image container needs position:relative for sale badge */
ul.products li.product {
  position: relative !important;
}
/* Make the product loop image wrapper relative too */
ul.products li.product a.woocommerce-loop-product__link {
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
/* Rating stars padding */
ul.products li.product .woocommerce-product-details__short-description,
ul.products li.product .product-loop-category {
  padding: 0 1.25rem !important;
  font-size: .8rem !important;
  color: var(--muted-fg) !important;
}

/* FooGallery single album — back link + title stacked */
.fg-back-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: .35rem !important;
  color: rgba(249,246,240,.8) !important;
  font-size: .875rem !important;
  margin-bottom: .625rem !important;
  text-decoration: none !important;
  transition: color var(--tr) !important;
}
.fg-back-link:hover { color: var(--primary-fg) !important; }
.fg-back-link svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
/* Album content images — full responsive grid */
.fg-album-content {
  width: 100%;
}
/* Reset any FooGallery default floats inside our template */
.fg-album-content .foogallery-container {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: .625rem !important;
  float: none !important;
  width: 100% !important;
}
@media(min-width:480px){
  .fg-album-content .foogallery-container {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: .75rem !important;
  }
}
@media(min-width:1024px){
  .fg-album-content .foogallery-container {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
  }
}
/* Individual images — NOT using padding-bottom trick (breaks lazy load) */
.fg-album-content .foogallery-container .fg-item {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: block !important;
}
.fg-album-content .foogallery-container .fg-item a,
.fg-album-content .foogallery-container .fg-item .fg-thumb {
  display: block !important;
  border-radius: .5rem !important;
  overflow: hidden !important;
}
.fg-album-content .foogallery-container .fg-item img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: .5rem !important;
}
@media(min-width:640px){
  .fg-album-content .foogallery-container .fg-item img { height: 200px !important; }
}
/* Show captions nicely when FooGallery renders them */
.fg-album-content .foogallery-container .fg-item-caption {
  display: none !important;
}
/* FooGallery default back link that renders on the page — override */
p.foogallery-album-back a,
.fg-album-back a {
  display: inline-flex !important;
  align-items: center !important;
  gap: .3rem !important;
  font-size: .875rem !important;
  color: var(--primary) !important;
  font-weight: 500 !important;
  margin-bottom: .75rem !important;
}
p.foogallery-album-back, .fg-album-back {
  display: block !important;
  margin-bottom: .5rem !important;
}
/* Gallery section inside the page (page-galerii.php content area) */
.gallery-section {
  margin-bottom: 3rem !important;
}
.gallery-section h2 {
  font-family: var(--font-display) !important;
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: .75rem !important;
  border-bottom: 2px solid var(--border) !important;
}

.foogallery-albums-grid::before,
.foogallery-albums-grid::after {display:none!important;content:""!important}

.foogallery-albums::before,
.foogallery-albums::after {display:none!important;content:""!important}

.foogallery-container::before,
.foogallery-container::after {display:none!important;content:""!important}

.wc-block-components-product-metadata__description {display: none!important}
.wc-block-components-product-name {font-size: 1rem!important;}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {display: none!important}

/* ============================================================
   IMPROVEMENT PATCH — warmer, homelier feel
   ============================================================ */

/* ── Subtle warm texture on page backgrounds ── */
body {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(175,140,80,.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,117,70,.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ── Page hero — warmer gradient instead of flat green ── */
.page-hero {
  background: linear-gradient(135deg, hsl(142,28%,30%) 0%, hsl(142,22%,36%) 40%, hsl(30,20%,32%) 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 !important;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(175,140,80,.08) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.page-hero p {
  position: relative;
}

/* ── Decorative leaf divider between sections ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem 0;
  opacity: .35;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border);
}
.section-divider svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ── Cards — warmer shadows and softer borders ── */
.card {
  border-color: rgba(175,140,80,.12) !important;
  box-shadow: 0 1px 4px rgba(100,70,30,.05), 0 0 0 1px rgba(175,140,80,.04);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(100,70,30,.12), 0 2px 8px rgba(100,70,30,.08) !important;
  transform: translateY(-2px);
}

/* ── Blog list — warmer, more spacious ── */
.blog-list {
  gap: 2rem !important;
}
.blog-card {
  border-color: rgba(175,140,80,.12) !important;
  box-shadow: 0 1px 4px rgba(100,70,30,.05);
  transition: box-shadow var(--tr), transform var(--tr) !important;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(100,70,30,.1), 0 2px 8px rgba(100,70,30,.06) !important;
}
.blog-card-body {
  padding: 1.5rem !important;
}
.blog-card-title a:hover {
  color: var(--primary) !important;
}
.blog-card-excerpt {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  transition: gap var(--tr), color var(--tr) !important;
}
.blog-read-more:hover {
  gap: .5rem !important;
  text-decoration: none !important;
}
/* Blog pagination styling */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: .375rem;
  margin-top: 3rem;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: .9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all var(--tr);
  text-decoration: none;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.blog-pagination .page-numbers svg {
  width: 16px;
  height: 16px;
}

/* ── Single blog post — warmer reading experience ── */
.post-content {
  padding: 3.5rem 1.5rem !important;
}
.post-content p {
  color: hsl(30,8%,35%) !important;
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
}
.post-content blockquote {
  border-left: 4px solid var(--warm) !important;
  background: rgba(175,140,80,.04);
  padding: 1.25rem 1.5rem !important;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0 !important;
}
/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.post-tags a {
  padding: .3rem .875rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--muted-fg);
  transition: all .2s;
  text-decoration: none;
}
.post-tags a:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* ── Related posts section ── */
.related-posts-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.related-posts-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Shop / WooCommerce — warmer product cards ── */
ul.products li.product {
  border-color: rgba(175,140,80,.12) !important;
  box-shadow: 0 1px 4px rgba(100,70,30,.04) !important;
  transition: box-shadow var(--tr), transform var(--tr) !important;
}
ul.products li.product:hover {
  box-shadow: 0 8px 28px rgba(100,70,30,.1), 0 2px 8px rgba(100,70,30,.06) !important;
  transform: translateY(-2px);
}
/* Product card add-to-cart button — warmer hover */
ul.products li.product .button {
  transition: background var(--tr), transform .15s ease !important;
}
ul.products li.product .button:hover {
  transform: scale(1.02) !important;
}

/* Shop category filters — pill style */
.woo-shop-filters {
  justify-content: center !important;
  gap: .625rem !important;
  margin-bottom: 2.5rem !important;
}
.woo-filter-btn {
  border-radius: 100px !important;
  padding: .5rem 1.125rem !important;
  font-size: .825rem !important;
  border-color: rgba(175,140,80,.2) !important;
  transition: all var(--tr), transform .15s ease !important;
}
.woo-filter-btn:hover {
  transform: translateY(-1px);
}

/* ── Sale badge — nicer ── */
ul.products li.product .onsale {
  border-radius: .375rem !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.3 !important;
  padding: .3rem .6rem !important;
  font-size: .7rem !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
}

.woocommerce span.onsale {
    border-radius: .375rem !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.3 !important;
  padding: .3rem .6rem !important;
  font-size: .7rem !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
}

/* ── Single product — improved breadcrumbs ── */
.woocommerce-breadcrumb {
  font-size: .8rem !important;
  padding: 1.25rem 0 !important;
  margin-bottom: 1.5rem !important;
  border-bottom: 1px solid var(--border) !important;
}
.woocommerce-breadcrumb a {
  transition: color var(--tr) !important;
}
.woocommerce-breadcrumb a:hover {
  color: var(--accent) !important;
}

/* ── Cart page — warmer styling ── */
.woocommerce-cart .woocommerce table.shop_table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden !important;
}
.woocommerce table.shop_table th {
  background: var(--muted) !important;
  font-family: var(--font-display) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  color: var(--fg) !important;
  padding: 1rem 1.25rem !important;
  text-transform: none !important;
  border-bottom: 1px solid var(--border) !important;
}
.woocommerce table.shop_table td {
  padding: 1rem 1.25rem !important;
  border-top: 1px solid var(--border) !important;
  vertical-align: middle !important;
}
.woocommerce table.shop_table img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover !important;
  border-radius: .375rem !important;
}
.woocommerce .cart_totals {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: .75rem !important;
  padding: 1.5rem !important;
}
.woocommerce .cart_totals h2 {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
}
.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}
/* Cart quantity input */
.woocommerce .quantity .qty {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: .375rem .5rem !important;
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
  width: 60px !important;
  text-align: center !important;
}
.woocommerce .quantity .qty:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(74,117,70,.14) !important;
}
/* Cart remove button */
.woocommerce a.remove {
  color: hsl(0,55%,55%) !important;
  font-size: 1.2rem !important;
  transition: color var(--tr), transform .15s ease !important;
}
.woocommerce a.remove:hover {
  background: transparent !important;
  color: hsl(0,60%,45%) !important;
  transform: scale(1.15) !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
    display: none !important;
}

/* ── Checkout page — polished ── */
.woocommerce-checkout .woocommerce-form-row input,
.woocommerce-checkout .woocommerce-form-row select,
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.wc-block-components-text-input input,
.wc-block-components-textarea textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 1rem .875rem 0rem .600rem !important;
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
  transition: border-color var(--tr), box-shadow var(--tr) !important;
}
.woocommerce-checkout .woocommerce-form-row input:focus,
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.wc-block-components-text-input input:focus,
.wc-block-components-textarea textarea:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(74,117,70,.14) !important;
}
/* Checkout section headings */
.woocommerce-checkout h3,
.wc-block-checkout__form h2,
.wc-block-components-checkout-step__heading {
  font-family: var(--font-display) !important;
  color: var(--fg) !important;
}
/* Checkout order summary card */
.woocommerce-checkout-review-order,
.wc-block-components-order-summary {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: .75rem !important;
  padding: 1.25rem !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__regular-individual-price {
	display: none !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-price {
	display: none !important;
}

/* Checkout place order button */
#place_order,
.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions_row .wc-block-components-button {
  background: var(--primary) !important;
  color: var(--primary-fg) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: .875rem 2rem !important;
  transition: background var(--tr), transform .15s ease !important;
  cursor: pointer !important;
}
#place_order:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions_row .wc-block-components-button:hover {
  background: hsl(142,28%,26%) !important;
  transform: scale(1.01) !important;
}
/* Checkout — WC blocks general styling */
.wc-block-components-totals-wrapper {
  border-color: var(--border) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
}
/* Payment method radio buttons */
.wc-block-components-radio-control__option,
.woocommerce-checkout .payment_methods li {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: .875rem 1rem !important;
  margin-bottom: .5rem !important;
  transition: border-color var(--tr), background var(--tr) !important;
}
.wc-block-components-radio-control__option:hover,
.woocommerce-checkout .payment_methods li:hover {
  border-color: var(--primary) !important;
  background: rgba(74,117,70,.03) !important;
}
/* WC notices — warmer */
.woocommerce-message {
  border-top-color: var(--primary) !important;
  background: rgba(74,117,70,.06) !important;
  color: var(--fg) !important;
}
.woocommerce-message::before {
  color: var(--primary) !important;
}
.woocommerce-info {
  border-top-color: var(--warm) !important;
  background: rgba(175,140,80,.06) !important;
}
.woocommerce-error {
  border-top-color: hsl(0,55%,55%) !important;
  background: rgba(200,50,50,.04) !important;
}

/* ── Gallery — improved hover and spacing ── */
.foogallery-container .fg-item .fg-thumb {
  transition: transform .4s ease, box-shadow .3s ease !important;
}
.foogallery-container .fg-item:hover .fg-thumb {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
}
/* Gallery album cards — warmer */
div.fg-album-wrapper {
  border-color: rgba(175,140,80,.12) !important;
  transition: box-shadow var(--tr), transform var(--tr) !important;
}
div.fg-album-wrapper:hover {
  transform: translateY(-2px) !important;
}
.fg-album-wrapper .fg-album-info {
  padding: 1rem 1.125rem !important;
}
.fg-album-name {
  font-size: 1.05rem !important;
  margin-bottom: .25rem !important;
}

/* ── Footer — subtle warmth ── */
.site-footer {
  background: linear-gradient(170deg, hsl(25,35%,28%) 0%, hsl(25,30%,24%) 100%) !important;
}
.footer-brand p {
  line-height: 1.8 !important;
}
.footer-bottom {
  border-top-color: rgba(249,246,240,.1) !important;
}

/* ── CTA section — richer gradient ── */
.cta-section {
/*   background: linear-gradient(135deg, hsl(142,28%,30%) 0%, hsl(142,22%,36%) 50%, hsl(25,30%,30%) 100%) !important; */
  position: relative !important;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(175,140,80,.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-section h2,
.cta-section p,
.cta-section .btn,
.cta-section .cta-icon {
  position: relative;
  z-index: 1;
}

/* ── Smooth scroll-to-top on mobile ── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: hsl(142,28%,26%);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Image hero — subtle parallax-like depth ── */
.image-hero {
  position: relative;
  overflow: hidden;
}
.image-hero img {
  transition: transform 8s ease-out !important;
}
.image-hero:hover img {
  transform: scale(1.03) !important;
}

/* ── Empty cart message ── */
.woocommerce-cart .cart-empty {
  text-align: center !important;
  padding: 4rem 1.5rem !important;
  font-size: 1.1rem !important;
  color: var(--muted-fg) !important;
}
.woocommerce-cart .return-to-shop {
  text-align: center !important;
  margin-top: 1.5rem !important;
}
.woocommerce-cart .return-to-shop .button {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
}

/* ── Mobile improvements ── */
@media(max-width:767px) {
  /* Blog cards — taller images on mobile */
  .blog-card-image img {
    height: 220px !important;
  }
  /* Single post hero — taller on mobile for more drama */
  .single-post-hero {
    height: 280px !important;
  }
  /* Contact grid — more spacing */
  .contact-grid {
    gap: 2.5rem !important;
  }
  /* Cart table — responsive */
  .woocommerce table.shop_table td {
    padding: .75rem .625rem !important;
  }
  .woocommerce table.shop_table img {
    width: 48px !important;
    height: 48px !important;
  }
}
@media(max-width:639px) {
  /* Hero buttons — stacked but full width looks better */
  .hero-buttons .btn {
    text-align: center !important;
  }
  /* Blog card on smallest screens */
  .blog-card-image img {
    height: 180px !important;
  }
  .blog-card-body {
    padding: 1.125rem !important;
  }
  .blog-card-title {
    font-size: 1.05rem !important;
  }
  /* Product cards — slightly taller images */
  ul.products li.product a img {
    height: 200px !important;
  }
  /* Gallery section heading */
  .gallery-section h2 {
    font-size: 1.2rem !important;
  }
  /* Footer — tighter spacing */
  .site-footer {
    padding-top: 3rem !important;
  }
}
@media(max-width:480px) {
  /* Page hero — compact */
  .page-hero {
    padding: 3rem 0 !important;
  }
  /* Shop filters scroll on very small screens */
  .woo-shop-filters {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .woo-shop-filters::-webkit-scrollbar { display: none; }
  .woo-filter-btn {
    flex-shrink: 0 !important;
  }
  /* Product card text tighter */
  ul.products li.product .woocommerce-loop-product__title {
    font-size: .9rem !important;
    padding: .75rem .75rem .25rem !important;
  }
  ul.products li.product .button {
    margin: .5rem .75rem 1rem !important;
    padding: .5rem .75rem !important;
    font-size: .8rem !important;
  }
  /* Back to top — smaller on phone */
  .back-to-top {
    width: 38px;
    height: 38px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ============================================================
   RECIPE TEMPLATE — Screen Styles
   ============================================================ */

/* Print-only elements hidden on screen */
.recipe-print-header,
.recipe-print-footer{display:none}

/* Recipe Hero */
.recipe-hero{position:relative;overflow:hidden;height:55vh;min-height:380px;max-height:550px}
.recipe-hero img,.recipe-hero-img{width:100%;height:100%;object-fit:cover}
.recipe-hero-fallback{height:100%;background:linear-gradient(135deg,hsl(120,25%,42%),hsl(80,20%,50%))}
.recipe-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(30,20,10,.85) 0%,rgba(30,20,10,.4) 50%,rgba(30,20,10,.15) 100%)}
.recipe-hero-content{position:absolute;bottom:0;left:0;right:0;padding-bottom:2.5rem;z-index:2}
.recipe-back-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.8rem;font-weight:600;color:rgba(255,255,255,.7);text-decoration:none;margin-bottom:1.25rem;transition:color .2s}
.recipe-back-link:hover{color:#fff}
.recipe-back-link svg{width:16px;height:16px}
.recipe-hero-badge{display:inline-flex;align-items:center;gap:.35rem;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);padding:.3rem .75rem;border-radius:999px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.9);margin-bottom:.75rem}
.recipe-hero-badge svg{width:14px;height:14px}
.recipe-title{font-size:clamp(1.75rem,4.5vw,3rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:.75rem}
.recipe-hero-meta{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:rgba(255,255,255,.65)}
.recipe-hero-meta svg{width:15px;height:15px}
.recipe-meta-sep{opacity:.4}

/* Info bar */
.recipe-info-bar{background:var(--card-bg);border-bottom:1px solid var(--border);padding:1.25rem 0}
.recipe-info-grid{display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap}
.recipe-info-item{display:flex;flex-direction:column;align-items:center;gap:.2rem;min-width:100px}
.recipe-info-icon{color:var(--primary);display:flex}
.recipe-info-icon svg{width:22px;height:22px}
.recipe-info-label{font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted-fg);font-weight:600}
.recipe-info-value{font-size:.95rem;font-weight:700;color:var(--fg)}

/* Print button */
.recipe-actions{padding:1.5rem 0;display:flex;justify-content:flex-end}
.recipe-print-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.6rem 1.25rem;border:1px solid var(--border);border-radius:.5rem;background:var(--card-bg);color:var(--fg);font-size:.85rem;font-weight:600;cursor:pointer;transition:all .2s}
.recipe-print-btn:hover{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Two-column layout */
.recipe-body{padding-bottom:3rem}
.recipe-layout{display:grid;grid-template-columns:320px 1fr;gap:2.5rem;align-items:start}

/* Ingredients sidebar */
.recipe-sidebar{position:sticky;top:5rem}
.recipe-ingredients-card{background:var(--card-bg);border:1px solid var(--border);border-radius:.75rem;padding:1.5rem;box-shadow:0 4px 24px rgba(0,0,0,.04)}
.recipe-section-title{font-size:1.1rem;font-weight:700;color:var(--fg);display:flex;align-items:center;gap:.5rem;margin-bottom:1rem;padding-bottom:.75rem;border-bottom:2px solid var(--primary)}
.recipe-section-icon{color:var(--primary);display:flex}
.recipe-section-icon svg{width:20px;height:20px}
.recipe-ingredient-group{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--primary);margin:1rem 0 .5rem;padding-top:.75rem;border-top:1px solid var(--border)}
.recipe-ingredients-list{list-style:none;padding:0;margin:0}
.recipe-ingredients-list li{display:flex;align-items:flex-start;gap:.6rem;padding:.45rem 0;border-bottom:1px solid rgba(0,0,0,.04);font-size:.9rem;line-height:1.5;color:var(--fg);cursor:pointer;transition:opacity .2s}
.recipe-ingredients-list li.checked{opacity:.45;text-decoration:line-through}
.recipe-checkbox{width:18px;height:18px;min-width:18px;border:2px solid var(--border);border-radius:4px;margin-top:2px;transition:all .2s;display:flex;align-items:center;justify-content:center}
.recipe-ingredients-list li.checked .recipe-checkbox{background:var(--primary);border-color:var(--primary)}
.recipe-ingredients-list li.checked .recipe-checkbox::after{content:'';display:block;width:5px;height:9px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg);margin-top:-2px}

/* Steps */
.recipe-steps-section{margin-bottom:2rem}
.recipe-steps{list-style:none;padding:0;margin:0;counter-reset:recipe-step}
.recipe-step{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid rgba(0,0,0,.06)}
.recipe-step:last-child{border-bottom:none}
.recipe-step-number{width:36px;height:36px;min-width:36px;border-radius:50%;background:var(--primary);color:#fff;font-weight:700;font-size:.85rem;display:flex;align-items:center;justify-content:center;margin-top:.1rem}
.recipe-step p{margin:0;line-height:1.7;color:var(--fg);font-size:.95rem}

/* Description */
.recipe-description{margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}
.recipe-description p{line-height:1.8;color:var(--fg);font-size:1rem}

/* Notes */
.recipe-notes{background:linear-gradient(135deg,hsl(85,30%,95%),hsl(100,25%,93%));border:1px solid hsl(100,20%,85%);border-radius:.75rem;padding:1.25rem 1.5rem;margin-top:1.5rem}
.recipe-notes-title{font-size:.95rem;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:.4rem;margin-bottom:.5rem}
.recipe-notes-title svg{width:18px;height:18px}
.recipe-notes p{margin:0;line-height:1.7;font-size:.9rem;color:var(--fg)}

/* Recipe responsive */
@media(max-width:860px){
  .recipe-layout{grid-template-columns:1fr;gap:1.5rem}
  .recipe-sidebar{position:static}
  .recipe-info-grid{gap:1.5rem}
}
@media(max-width:639px){
  .recipe-hero{height:45vh;min-height:300px}
  .recipe-title{font-size:1.5rem}
  .recipe-info-grid{gap:1rem}
  .recipe-info-item{min-width:80px}
}

/* ── Print styles (bonus) ── */
@media print {
  .site-header, .site-footer, .hero-buttons, .cta-section,
  .back-to-top, .mobile-menu-toggle, .cart-link, .hero-indicators,
  .no-print { display: none !important; }
  .post-content { padding: 0 !important; }
  body { background: white !important; }
}

/* ── Blogi kategooria filter ── */
/* BLOG FILTER */

.blog-filter{
display:flex;
flex-wrap:wrap;
gap:.6rem;
margin-bottom:2rem;
justify-content:center;
}

.blog-filter-btn{
padding:.45rem .9rem;
font-size:.8rem;
border-radius:999px;
border:1px solid var(--border);
background:var(--card-bg);
cursor:pointer;
transition:all .25s ease;
}

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

.blog-filter-btn.active{
background:var(--primary);
color:#fff;
border-color:var(--primary);
}

/*---------------------------------------------------------------------------------------------------*/
/*Kampaania bännerid - annuncher*/
p.estbanner, p.rusbanner {margin-bottom: 0!important;line-height: 1.1;padding-top: 4px;padding-bottom: 4px;}
.ancr-inner .rusbanner:lang(et) {display: none!important;}
.ancr-inner .estbanner:lang(ru) {display: none!important;}
.rusbanner:lang(et) {display: none!important;}
.estbanner:lang(ru) {display: none!important;}
.ancr-content a {text-decoration:underline!important;}
.ancr .ancr-content p {text-shadow: 1px 1px 1px #0000007d !important;}

/*Kampaania bännerid - annaouncher lpp*/

/*keeled EST JA RUS vormindus editoris*/
/* .rusbanner::before {
	content: "VENE sisu:";
	font-weight: 600;
	color: white;
	margin-right: 15px;
	background-color: #cb8484;
	padding: 10px;
}
.estbanner, .rusbanner {
	background-color: #f2f2f2;
	padding: 15px;
}
.estbanner::before
{
  content: "EESTI sisu:";
  font-weight: 600;
  color: white;
  margin-right: 15px;
  background-color: #468DD3;
  padding: 10px;
} */


.woocommerce a.added_to_cart {
    padding-top: 0!important;
    align-self: center!important;
    padding-bottom: .5em!important;
}