/* ===== Bright Cider Custom Styles ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ===== BASE ===== */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #1c1917;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITIES ===== */
.bc-full-width { margin-left: calc(-50vw + 50%) !important; margin-right: calc(-50vw + 50%) !important; max-width: 100vw !important; width: 100vw !important; }
.bc-text-left,
.bc-dark h2.bc-text-left { text-align: left !important; }
.bc-text-center { text-align: center !important; }
.bc-bg-stone { background: #f5f5f4; padding-top: 3rem; }
.bc-container { max-width: 80rem; margin: 0 auto; padding: 0 2rem; }

/* ===== HEADER ===== */
.wp-block-site-title a {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #1c1917 !important;
  text-decoration: none !important;
}
header .wp-block-group.alignwide {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  padding-top: 1.1rem !important;
  padding-bottom: 1.1rem !important;
}
header .wp-block-group.alignwide > .wp-block-group { justify-content: center !important; }
header .wp-block-navigation { justify-content: center !important; }
header figure.wp-block-image {
  flex-shrink: 0 !important;
  min-width: fit-content !important;
  max-width: unset !important;
}
header figure.wp-block-image img {
  height: 75px !important;
  width: auto !important;
  max-width: unset !important;
}

/* Nav links - shared style for block nav and classic nav */
header .wp-block-navigation a,
.bc-nav-list li a {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #57534e;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
header .wp-block-navigation a:hover,
.bc-nav-list li a:hover { color: #1c1917; }
header .wp-block-navigation a[aria-current="page"],
.bc-nav-list li.current-menu-item a,
.bc-nav-list li.current_page_item a {
  color: #1c1917;
  border-bottom-color: #1c1917;
}
.bc-classic-nav { display: flex; justify-content: center; }
.bc-nav-list { list-style: none; display: flex; gap: 2rem; padding: 0; margin: 0; }

/* ===== HAMBURGER ===== */
.bc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.bc-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1c1917;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.bc-hamburger.bc-open { position: relative; z-index: 1001; }
.bc-hamburger.bc-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bc-hamburger.bc-open span:nth-child(2) { opacity: 0; }
.bc-hamburger.bc-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .bc-hamburger { display: flex; }

  /* Nav eltűnik, explicit grid elhelyezés megmarad */
  header .wp-block-group.alignwide {
    grid-template-columns: auto auto !important;
  }
  header .wp-block-group.alignwide > figure.wp-block-image {
    grid-column: 1;
    grid-row: 1;
  }
  header .wp-block-group.alignwide > .wp-block-group {
    grid-column: 2;
    grid-row: 1;
  }
  .bc-classic-nav { display: none; }

  /* Overlay */
  .bc-classic-nav.bc-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bc-classic-nav.bc-open .bc-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .bc-classic-nav.bc-open .bc-nav-list li a {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
}

/* ===== LANGUAGE SWITCHER ===== */
.bc-lang-switcher,
.bc-agegate-lang { display: flex; gap: 0.4rem; align-items: center; }
.bc-lang-switcher { margin-left: 1rem !important; }
.bc-agegate-lang { position: fixed; top: 1rem; right: 1rem; z-index: 999999; }
.bc-lang-flag,
.bc-agegate-lang a { display: flex; transition: transform 0.2s; }
.bc-lang-flag:hover,
.bc-agegate-lang a:hover { transform: scale(1.15); }
.bc-lang-flag img,
.bc-agegate-lang img { width: 28px; height: 19px; border-radius: 2px; }
.trp-floater-ls-wrap { display: none !important; }

/* ===== ICON CIRCLES ===== */
.bc-icon {
  width: 3rem; height: 3rem;
  background: #e7e5e4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bc-icon svg { width: 1.5rem; height: 1.5rem; stroke: #44403c; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* Larger icon inside feature cards */
.bc-feature-card .bc-icon { width: 4rem; height: 4rem; margin-bottom: 1.5rem; }
.bc-feature-card .bc-icon svg { width: 2rem; height: 2rem; }

/* ===== BUTTONS ===== */
.bc-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; font-size: 1rem; font-weight: 500; text-decoration: none !important; transition: all 0.2s; border: none; cursor: pointer; font-family: "Inter", sans-serif; }
.bc-btn-primary { background: #1c1917; color: #fff !important; }
.bc-btn-primary:hover { background: #292524; color: #fff !important; }
.bc-btn-outline { background: transparent; color: #1c1917 !important; border: 1px solid #1c1917; }
.bc-btn-outline:hover { background: #f5f5f4; color: #1c1917 !important; }
.bc-btn-light { background: transparent; color: #fafaf9 !important; border: 1px solid #fafaf9; }
.bc-btn-light:hover { background: rgba(255,255,255,0.1); color: #fff !important; }
.bc-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== HERO SECTION ===== */
.bc-hero { background: #f5f5f4; min-height: 80vh; display: flex; align-items: center; padding: 5rem 0; margin-top: 0 !important; }
.bc-hero-grid { max-width: 80rem; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .bc-hero-grid { grid-template-columns: 1fr; } }
.bc-hero h1 { font-size: clamp(3rem, 5vw, 4.5rem) !important; font-weight: 700 !important; line-height: 1.1 !important; color: #1c1917 !important; margin-bottom: 1.5rem !important; letter-spacing: -0.02em; font-family: "Inter", sans-serif !important; }
.bc-hero h1 span { color: #78716c !important; display: block; }
.bc-hero .bc-subtitle { font-size: 1.15rem; color: #57534e; line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
.bc-hero-img { width: 100%; height: auto; border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); filter: grayscale(30%); transition: filter 0.7s; }
.bc-hero-img:hover { filter: grayscale(0%); }

/* ===== SECTIONS ===== */
.bc-section { padding: 5rem 0; }
.bc-section-header { text-align: center; margin-bottom: 4rem; }
.bc-section-header p { font-size: 1.05rem; color: #78716c; font-weight: 300; max-width: 40rem; margin: 0 auto; }

/* ===== FEATURE CARDS ===== */
.bc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .bc-features { grid-template-columns: 1fr; } }
.bc-feature-card { background: #f5f5f4; padding: 2rem; border: 1px solid #e7e5e4; transition: box-shadow 0.3s; }
.bc-feature-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.bc-feature-card p { color: #57534e; font-weight: 300; line-height: 1.6; margin: 0; }

/* ===== DARK SECTION ===== */
.bc-dark { background: #1c1917; color: #f5f5f4; padding: 5rem 0; }
.bc-dark-grid { max-width: 80rem; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .bc-dark-grid { grid-template-columns: 1fr; } }
.bc-dark img { width: 100%; border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); filter: grayscale(30%); transition: filter 0.7s; }
.bc-dark img:hover { filter: grayscale(0%); }
.bc-dark p { color: #d6d3d1 !important; }

/* ===== ABOUT PAGE ===== */
.bc-about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
@media (max-width: 768px) { .bc-about-story { grid-template-columns: 1fr; } }
.bc-about-img { width: 100%; border-radius: 0.5rem; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.2); filter: grayscale(30%); transition: filter 0.7s; }
.bc-about-img:hover { filter: grayscale(0%); }
.bc-mission-text { max-width: 50rem; margin: 0 auto; padding: 0 2rem; text-align: center; margin-bottom: 3rem; }
.bc-about-gallery { max-width: 80rem; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 768px) { .bc-about-gallery { grid-template-columns: repeat(2, 1fr); } }
.bc-about-gallery-item { aspect-ratio: 3/4; overflow: hidden; border-radius: 0.5rem; background: #292524; }
.bc-about-gallery-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s, transform 0.5s; }
.bc-about-gallery-item img:hover { opacity: 1; transform: scale(1.05); }
.bc-about-mission { margin-bottom: 4rem; }
.bc-about-mission h2 { font-size: 2rem !important; margin-bottom: 1.5rem !important; }
.bc-about-mission p { margin-bottom: 1rem; }
.bc-lead { font-size: 1.15rem; margin-bottom: 2rem; }
.bc-about-mission-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 1.5rem; }
@media (max-width: 768px) { .bc-about-mission-cols { grid-template-columns: 1fr; } }
.bc-features-heading { font-size: clamp(1.5rem, 3vw, 2rem) !important; text-align: center !important; margin-bottom: 2rem !important; color: #1c1917 !important; }
.bc-about-gallery + .bc-mission-text { margin-top: 3rem; }
.bc-closing { padding: 5rem 2rem; text-align: center; }
.bc-closing-statement { font-family: Georgia, "Times New Roman", Times, serif !important; font-size: clamp(1.6rem, 3vw, 2.2rem) !important; font-weight: 700 !important; color: #1c1917 !important; max-width: 40rem; margin: 0 auto; line-height: 1.4; }

/* ===== SHIPPING PAGE ===== */
.bc-shipping-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 600px) { .bc-shipping-cards { grid-template-columns: 1fr; } }
.bc-shipping-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border: 1px solid #e7e5e4; border-radius: 6px; }
.bc-shipping-card strong { display: block; color: #1c1917; font-size: 1rem; margin-bottom: 0.2rem; }
.bc-shipping-card span { color: #78716c; font-size: 0.9rem; font-weight: 300; }
.bc-pricing-box { border: 1px solid #e7e5e4; border-radius: 6px; padding: 1.25rem; margin: 1rem 0 1.5rem; }
.bc-pricing-box > strong { display: block; margin-bottom: 0.75rem; color: #1c1917; }
.bc-pricing-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.95rem; color: #44403c; }
.bc-pricing-amount { font-weight: 600; color: #1c1917; }
.bc-shipping-note { color: #78716c !important; font-size: 0.9rem !important; margin-bottom: 2rem !important; }

/* ===== TYPOGRAPHY: HEADINGS IN PAGE CONTENT ===== */
/* Georgia serif headings (section headers, dark sections, feature cards, about) */
.bc-section-header h1,
.bc-section-header h2,
.bc-mission-text h2,
.bc-dark h2,
.bc-about-story h2,
.bc-about-mission h2,
.bc-features-heading,
.bc-feature-card h3 {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-weight: 700 !important;
  color: #1c1917 !important;
}
.bc-section-header h1 { font-size: clamp(2.5rem, 4vw, 3.5rem) !important; margin-bottom: 1rem !important; }
.bc-section-header h2,
.bc-mission-text h2 { font-size: clamp(2rem, 4vw, 3rem) !important; margin-bottom: 1rem !important; text-align: center !important; }
.bc-dark h2 { font-size: clamp(2rem, 4vw, 3rem) !important; color: #fff !important; margin-bottom: 1.5rem !important; text-align: center !important; }
.bc-about-story h2 { font-size: 2rem !important; }
.bc-feature-card h3 { font-size: 1.4rem !important; margin-bottom: 0.75rem !important; }

/* WP block heading defaults for content pages (ÁSZF, Szállítás, Adatvédelem) */
body.page .entry-content > h1:first-of-type,
body.page .entry-content > h1.wp-block-heading:first-of-type {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  padding: 2.5rem 0 1rem;
  margin: 0;
}
body.page .entry-content h2 { font-family: "Inter", sans-serif; font-size: 1.4rem; font-weight: 700; color: #1c1917; margin-top: 2rem; margin-bottom: 0.75rem; }
body.page .entry-content h3 { font-family: "Inter", sans-serif; font-size: 1.1rem; font-weight: 600; color: #1c1917; margin-top: 1.5rem; margin-bottom: 0.5rem; }
body.page .entry-content p { color: #44403c; font-weight: 400; line-height: 1.7; font-size: 1.2rem; }
body.page .entry-content ul,
body.page .entry-content ol { color: #44403c; font-weight: 400; line-height: 1.7; font-size: 0.95rem; }
body.page .entry-content a { color: #1c1917; text-decoration: underline; text-underline-offset: 2px; }
body.page .entry-content strong { color: #1c1917; font-weight: 600; }
body.page .entry-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
body.page .entry-content table th,
body.page .entry-content table td { border: 1px solid #e7e5e4; padding: 0.5rem 0.75rem; text-align: left; }
body.page .entry-content table th { background: #f5f5f4; font-weight: 600; color: #1c1917; }
body.page .entry-content .wp-block-columns { gap: 1.5rem; margin-bottom: 2rem; }

/* Content page layout */
body.page .wp-block-post-title { display: none !important; }
body.page .entry-content.is-layout-constrained {
  max-width: 64rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 2rem 0 !important;
  box-sizing: border-box !important;
}
body.page .entry-content.is-layout-constrained > * { max-width: none !important; }
body.page .entry-content > :last-child:not(.bc-dark) { margin-bottom: 3rem !important; }

/* ===== DARK FOOTER ===== */
.bc-footer-dark { background: #1c1917; color: #d6d3d1; padding: 0; }
.bc-footer-container { max-width: 80rem; margin: 0 auto; padding: 3rem 2rem 2rem; }
.bc-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 768px) { .bc-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bc-footer-grid { grid-template-columns: 1fr; } }
.bc-footer-brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 700; color: #e7e5e4; display: block; margin-bottom: 1rem; }
.bc-footer-desc { font-size: 0.875rem; font-weight: 300; color: #a8a29e; line-height: 1.6; }
.bc-footer-logo { height: 65px; width: auto; display: block; margin-bottom: 1rem; opacity: 0.85; }
.bc-footer-col h3 { font-size: 1rem !important; font-weight: 600 !important; color: #d6d3d1 !important; margin-bottom: 1rem !important; }
.bc-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bc-footer-col ul li { margin-bottom: 0.5rem; }
.bc-footer-col ul li a, .bc-footer-col a { color: #a8a29e !important; text-decoration: none !important; font-size: 0.875rem; font-weight: 300; transition: color 0.2s; }
.bc-footer-col ul li a:hover, .bc-footer-col a:hover { color: #fff !important; }
.bc-footer-contact li { font-size: 0.875rem; font-weight: 300; color: #a8a29e; }
.bc-footer-social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.bc-footer-social a { width: 2.5rem; height: 2.5rem; background: #292524; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d6d3d1 !important; transition: background 0.2s; }
.bc-footer-social a:hover { background: #44403c; color: #fff !important; }
.bc-footer-bottom { border-top: 1px solid #292524; margin-top: 3rem; padding-top: 2rem; text-align: center; }
.bc-footer-bottom p { color: #78716c !important; font-size: 0.875rem; font-weight: 300; }

/* ===== SHOP PAGE ===== */
body.home .wp-block-post-title { display: none; }
body.woocommerce-shop .wp-block-query-title,
body.woocommerce-shop .wc-block-breadcrumbs,
body.woocommerce-shop .wc-block-store-notices,
body.woocommerce-shop .wc-block-product-results-count,
body.woocommerce-shop .wc-block-catalog-sorting { display: none !important; }
.woocommerce-breadcrumb { display: none !important; }
body.woocommerce-shop .wp-block-woocommerce-product-collection { padding-bottom: 5rem; }

.bc-shop-header { text-align: center; padding: 1.5rem 2rem; max-width: 42rem; margin: 0 auto; }
.bc-shop-header h1 { font-family: Georgia, "Times New Roman", Times, serif !important; font-size: clamp(1.8rem, 3vw, 2.2rem) !important; font-weight: 700 !important; color: #1c1917 !important; margin-bottom: 0.5rem !important; }
.bc-shop-header p { font-size: 1.15rem; color: #78716c; font-weight: 300; line-height: 1.6; }
.bc-carton-info { font-size: 0.85rem; color: #78716c; margin-top: 0.5rem; }

/* ===== WC BLOCKS PRODUCT GRID ===== */
.wc-block-product-template,
ul.wc-block-product-template,
.wc-block-product-template__responsive.columns-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
}
@media (max-width: 768px) { .wc-block-product-template { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .wc-block-product-template { grid-template-columns: 1fr !important; } }

.wc-block-product-template > li.wc-block-product {
  background: #fff !important; border: 1px solid #e7e5e4 !important; border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.2s;
  overflow: hidden !important; padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: 100% !important;
  position: relative; display: flex !important; flex-direction: column !important;
}
.wc-block-product-template > li.wc-block-product:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
li.wc-block-product.is-layout-flow > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }

.wc-block-product .wc-block-components-product-image { margin: 0 !important; position: relative; }
.wc-block-product .wc-block-components-product-image img { border-radius: 6px 6px 0 0; width: 100%; aspect-ratio: 3/4; object-fit: cover; }

li.wc-block-product.featured .wc-block-components-product-image::before {
  content: "Limitált"; position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  background: rgba(28,25,23,0.85); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 2px;
}

.wc-block-product .wp-block-post-title {
  font-family: Georgia, "Times New Roman", serif !important; font-size: 1.1rem !important; font-weight: 700 !important;
  padding: 1rem 0.75rem 0.5rem !important; margin: 0 !important; text-align: left !important; flex-grow: 1 !important;
}
.wc-block-product .wp-block-post-title a { color: #1c1917 !important; text-decoration: none !important; }

.wc-block-product .wp-block-woocommerce-product-price {
  position: absolute !important; top: 0.75rem !important; right: 0.75rem !important; z-index: 2;
  padding: 0.3rem 0.75rem !important; margin: 0 !important; background: rgba(28,25,23,0.75); border-radius: 2px;
}
.wc-block-product .wc-block-components-product-price { color: #fff !important; font-weight: 500 !important; font-size: 0.8rem !important; }

.wc-block-product .wp-block-woocommerce-product-button { padding: 0.5rem 0.75rem 0 !important; margin: 0 0 0.75rem !important; text-align: left !important; }
.wc-block-product .wc-block-components-product-button__button {
  background: #1c1917 !important; color: #fff !important; border: none !important; border-radius: 3px !important;
  font-family: "Inter", sans-serif !important; font-size: 0.85rem !important; padding: 0.65rem 1rem !important;
  width: 100% !important; text-align: center !important; justify-content: center !important; margin-bottom: 0 !important;
}
.wc-block-product .wc-block-components-product-button__button:hover { background: #292524 !important; }

/* ===== SINGLE PRODUCT PAGE ===== */
.bc-product-full-desc { color: #1c1917; font-weight: 400; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.bc-product-full-desc p { margin-bottom: 0.5rem; }
.bc-product-attrs { margin-bottom: 1.5rem; }
.bc-product-attr { font-size: 0.9rem; color: #57534e; font-weight: 300; line-height: 1.8; }
.bc-attr-label { color: #1c1917; font-weight: 500; }
.bc-single-ribbon { position: absolute !important; top: 1rem; left: 1rem; z-index: 10; background: rgba(28,25,23,0.85); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 2px; }
.woocommerce-product-gallery { position: relative !important; }
.single-product main.wp-block-group { padding-bottom: 5rem !important; }
.single-product .product_meta,
.single-product .woocommerce-product-details__short-description,
.single-product .wc-tab-inner--description,
.single-product #tab-description,
.single-product .wc-tabs li.description_tab,
.single-product .wp-block-post-excerpt,
.single-product .taxonomy-product_cat,
.single-product .wp-block-post-terms,
.single-product .wc-block-breadcrumbs,
.single-product .woocommerce-breadcrumb { display: none !important; }
.single-product .product_title,
.single-product h1.wp-block-post-title {
  font-family: Georgia, "Times New Roman", serif !important; font-size: 2rem !important;
  font-weight: 700 !important; color: #1c1917 !important; margin-bottom: 1rem !important;
}
.single-product .single_add_to_cart_button {
  background: #1c1917 !important; color: #fff !important; border: none !important; border-radius: 0 !important;
  font-family: "Inter", sans-serif !important; font-size: 1rem !important; padding: 0.9rem 2rem !important; font-weight: 500 !important;
}
.single-product .single_add_to_cart_button:hover { background: #292524 !important; }
.single-product h2.wp-block-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

/* ===== CART & CHECKOUT ===== */
/* Cart page buttons */
.wc-block-cart .wp-element-button,
.wc-block-cart .wc-block-components-button { color: #fff !important; }

.wc-block-mini-cart__footer-subtotal { margin-bottom: 0.75rem !important; }
.wc-block-mini-cart__footer-actions { margin-top: 0.5rem !important; }
.bc-back-to-cart { margin: 0 !important; padding: 0 !important; }
.bc-back-to-cart a { color: #57534e; text-decoration: none; font-size: 0.9rem; font-weight: 400; }
.bc-back-to-cart a:hover { color: #1c1917; }
.bc-back-to-cart + .wp-block-woocommerce-checkout,
.bc-back-to-cart + .wc-block-checkout { margin-top: 0.5rem !important; }
.wc-block-components-product-metadata__description,
.wc-block-components-product-metadata__description p { font-size: 0.8rem !important; color: #78716c !important; line-height: 1.4 !important; }
.wc-block-components-order-summary-item__description .wc-block-components-product-name { margin-top: 0 !important; }
.wc-block-components-totals-coupon__button { padding: 12.5px 16px !important; }

/* ===== AGE GATE ===== */
.age-gate__wrapper { display: flex !important; align-items: center !important; justify-content: center !important; --ag-form-margin: 0 auto !important; --ag-button-gap: 0.75rem !important; --ag-remember-margin: 0 !important; }
.age-gate { background: #fff !important; border-radius: 16px !important; box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important; max-width: 400px !important; width: 90% !important; margin: 0 auto !important; padding: 1.75rem 2rem !important; text-align: center !important; height: auto !important; min-height: auto !important; max-height: none !important; overflow: visible !important; }
.age-gate__heading-title--logo { max-width: 200px !important; height: auto !important; margin: 0 auto 1.5rem !important; display: block !important; }
.age-gate__headline { font-family: Georgia, "Times New Roman", serif !important; font-size: 1.8rem !important; font-weight: 700 !important; color: #1c1917 !important; margin-bottom: 0.75rem !important; }
.age-gate__subheadline { font-size: 0.95rem !important; color: #78716c !important; line-height: 1.6 !important; margin-bottom: 0.75rem !important; }
.age-gate__buttons-label:empty { display: none !important; }
.age-gate__buttons { display: flex !important; gap: 0.75rem !important; justify-content: center !important; margin-top: 0 !important; margin-bottom: 0.75rem !important; }
.age-gate__form { padding: 0 !important; margin: 0 !important; gap: 0 !important; }
.age-gate__button--confirm { background: #1c1917 !important; color: #fff !important; border: none !important; border-radius: 3px !important; padding: 0.85rem 1.5rem !important; font-family: "Inter", sans-serif !important; font-size: 0.9rem !important; font-weight: 500 !important; cursor: pointer !important; transition: background 0.2s !important; }
.age-gate__button--confirm:hover { background: #292524 !important; }
.age-gate__button--deny { background: transparent !important; color: #1c1917 !important; border: 1px solid #d6d3d1 !important; border-radius: 3px !important; padding: 0.85rem 1.5rem !important; font-family: "Inter", sans-serif !important; font-size: 0.9rem !important; font-weight: 500 !important; cursor: pointer !important; transition: background 0.2s !important; }
.age-gate__button--deny:hover { background: #f5f5f4 !important; }
.age-gate__content { font-size: 0.75rem !important; color: #a8a29e !important; text-align: center !important; line-height: 1.5 !important; }
.age-gate__remember { display: none !important; }

/* ===== COOKIE BANNER (CookieYes) ===== */
.cky-consent-bar { padding: 0.75rem 1.5rem 1.5rem !important; }
.cky-title { margin-bottom: -10px !important; font-weight: 600 !important; }
.cky-notice-des { margin-bottom: -20px !important; }
.cky-notice-btn-wrapper { margin-right: 20px !important; }
.cky-banner-btn-close { top: 5px !important; right: 5px !important; }
.cky-banner-btn-close img { width: 15px !important; height: 15px !important; }

/* ===== LAYOUT: HEADER/CONTENT GAP ===== */
.wp-site-blocks { padding: 0 !important; gap: 0 !important; }
.wp-site-blocks > * { margin: 0 !important; }
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
main.wp-block-group, .wp-site-blocks main { margin-top: 0 !important; padding-top: 0 !important; }
main .wp-block-group { padding-top: 0 !important; padding-bottom: 0 !important; }
.wp-block-post-title { margin: 0 !important; padding: 0 !important; }
.entry-content, .wp-block-post-content { margin-top: 0 !important; padding-top: 0 !important; }
.wp-site-blocks > .wp-block-template-part { margin: 0 !important; padding: 0 !important; }
