/* ============================================================
   Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=MedievalSharp&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Backgrounds */
  --color-bg-primary:     #120A06;
  --color-bg-secondary:   #1E1008;
  --color-bg-card:        #2C1A0E;
  --color-bg-footer:      #0A0604;

  /* Brand accents */
  --color-black: #120A06;
  --color-white: white;
  --color-gold:           #C9A542;
  --color-gold-hover:     #B8932E;
  --color-gold-light:     #E8C96A;
  --color-green:       #246B1B;
  --color-green-hover: #2b7421;
  --color-green-leaf:     #2D5A27;



  /* Text */
  --color-text-primary:   #F2E4C4;
  --color-text-body:      #D4C4A0;
  --color-text-muted:     #8A7560;

  /* UI */
  --color-border:         rgba(201, 165, 66, 0.18);
  --color-border-strong:  rgba(201, 165, 66, 0.40);
  --color-overlay:        rgba(18, 10, 6, 0.70);
  --color-overlay-soft:   rgba(18, 10, 6, 0.50);

  /* Typography */
  --font-display:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Lato', 'Inter', system-ui, -apple-system, sans-serif;
  --font-italic:   'Cormorant Garamond', Georgia, serif;
  --font-medieval: 'MedievalSharp', 'Playfair Display', serif;

  --fs-display: 72px;
  --fs-h1:      56px;
  --fs-h2:      40px;
  --fs-h3:      28px;
  --fs-h4:      20px;
  --fs-lg:      18px;
  --fs-body:    15px;
  --fs-sm:      13px;
  --fs-caption: 12px;
  --fs-eyebrow: 11px;

  --lh-tight:   1.1;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.6;

  --tracking-eyebrow: 0.30em;
  --tracking-button:  0.12em;
  --tracking-caption: 0.18em;

  /* Spacing — 4px base */
  --space-1:    4px;
  --space-2:    8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   48px;
  --space-8:   64px;
  --space-9:   96px;
  --space-10: 128px;

  /* Radii — no pills */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  /* Shadows */
  --shadow-card:      0 4px 24px rgba(0, 0, 0, 0.50);
  --shadow-card-hi:   0 8px 32px rgba(0, 0, 0, 0.60);
  --shadow-gold-glow: 0 0 0 1px var(--color-gold), 0 8px 32px rgba(0, 0, 0, 0.60);

  /* Motion */
  --ease-out:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:  160ms;
  --dur:       240ms;
  --dur-slow:  400ms;
  --dur-image: 600ms;

  /* Layout */
  --container: 1280px;
  --gutter-d:  32px;
  --gutter-m:  20px;
}

/* ============================================================
   Container universal
   ============================================================ */
.vlads-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-d);
  padding-right: var(--gutter-d);
}

.vlads-section {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.vlads-section--sm {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

@media (max-width: 767px) {
  .vlads-container {
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }
  .vlads-section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }
  .vlads-section--sm {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }
}

/* ============================================================
   Base resets
   ============================================================ */
html,
body {
  background-color: transparent;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-black);
  font-weight: 600;
  letter-spacing: -0.005em;
}

h1 { 
  font-size: clamp(56px, 8vw, 92px);
  line-height: 1.02;
  margin: 0;
  margin-bottom: 22px;
  color: var(--color-black);
}
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }

p { margin: 0 0 var(--space-4); }

a {
  color: var(--color-black);
  text-decoration: none;
  background-image: linear-gradient(var(--color-green), var(--color-green));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color var(--dur) var(--ease-out),
              background-size var(--dur) var(--ease-out);
}
a:hover {
  color: var(--color-green);
  background-size: 100% 1px;
}

*:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

::selection {
  background: var(--color-green);
  color: var(--color-bg-primary);
}

:root :where(.wp-element-button:focus, .wp-block-button__link:focus) {
  outline: 0;
}
:root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover) {
  text-decoration: none;
}
a.wp-block-navigation-item__content {
  outline: 0;
}
:where(.wp-site-blocks :focus) {
  outline: 0 !important;
}

/* ============================================================
  Page 
  ============================================================ */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
main .wp-block-group {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

main .wp-block-group .entry-content {
  padding-left: 0;
  padding-right: 0;
}



.page h1.wp-block-post-title {
  display:  none;
}

.vlads-hours {
  display: flex;
  justify-content: center;
  padding: 0 25px;
}

@media screen and (max-width:992px) {
  .vlads-hours {
    text-align: center;

  }
}

.home-social-buttons {
  margin-top: 10px;
  padding-bottom: 0px;
}

header {
  position: fixed;
  overflow-x: hidden;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
.price-category {
  width: max-content;
  padding: 8px;
  color: var(--color-white);
  background-color: var(--color-green);
}
html main {
  margin-top: 70px !important;
}

.header-social-instagram {
  position: relative;
  display: flex;
  color: transparent;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' aria-hidden='true' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:4049:96:5' style=' fill: %23D4C4A0;%0A'%3E%3Crect x='3' y='3' width='18' height='18' rx='4' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:4224:97:7'%3E%3C/rect%3E%3Ccircle cx='12' cy='12' r='4' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:4281:98:7'%3E%3C/circle%3E%3Ccircle cx='17.5' cy='6.5' r='0.9' fill='currentColor' stroke='none' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:4320:99:7'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.header-social-facebook {
  position: relative;
  display: flex;
  color: transparent;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='currentColor' aria-hidden='true' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:3656:88:5' style=' fill: %23D4C4A0;%0A'%3E%3Cpath d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.78-3.89 1.09 0 2.24.2 2.24.2v2.46h-1.26c-1.24 0-1.63.77-1.63 1.56V12h2.77l-.44 2.89h-2.33v6.99A10 10 0 0 0 22 12Z' data-om-id='jsx:/https:/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0.claudeusercontent.com/v1/design/projects/55127f6c-7a6d-4f77-8cc7-eb567b42d0c0/serve/ui_kits/website/Primitives.jsx:3754:89:7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.header-social-facebook a,
.header-social-instagram a {
  position: absolute;
  color: transparent !important;
  width: 14px;
  height: 14px;
}

.header-menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  height: 76px;
  padding-inline: 15px;
  background-color: var(--color-black);
}
.header-menu > .wp-block-navigation {
  flex-wrap: nowrap;
  margin-top: 0;
}
.header-menu > .wp-block-navigation  .vlads-header-langs {
  display: flex;
  gap: 1.2rem;
}
.wp-block-site-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.custom-logo-link {
  width: 72px;
  height: 72px;
  margin-right: auto;
}
/* ============================================================
   Footer
   ============================================================ */

footer {
  border-top: 1px solid var(--color-green);
  padding-top: 10px;
}

footer .wp-block-group {
  margin-top: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 15px !important;
}
footer .wp-block-group  .wp-block-paragraph {
  text-align: center;
}

.wp-block-social-links {
  margin-top: 25px;
}

/* ============================================================
  Hero 
  ============================================================ */

.main-hero-background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: unset;
}

.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 37vh;
  width: 100%;
  max-width: unset;
}

.has-global-padding {
  padding-left: 0;
  padding-right: 0;
}

.has-global-padding > .alignfull {
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   Category Page
   ============================================================ */
main.product-category-page {
  padding-top: 40px !important;
}

.product-category-page {
  display: flex;
  max-width: 1222px;
  padding: 0 15px;
  margin: 0 auto;
}

.categories-list-left {
  margin: 0 !important;
  width: 16.6666667%;
  padding-right: 15px;
  flex-shrink: 0;
}

.categories-list-left ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
  text-decoration: none;
} 
.categories-list-left ul li {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 5px;
  width: calc(100% - 40px);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.product-category-products {
  width: 100%;
  max-width: unset;
  margin: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0;
  padding-left: 15px;
}

.product-category-products-main {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  width: 100%;
  display: flex;
  max-width: unset;
}

.product-category-products-main ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
.product-category-products-main ul li {
  position: relative;
  width: 33%;
  margin: 0 !important;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 30px !important;
}
@media screen and (max-width: 992px) {
  .product-category-products-main ul li {
    width: 50%;
  }
  .header-menu > .wp-block-navigation > .vlads-header-langs {
    display: none;
  }
}

.product-category-products-main ul li .wc-block-product-categories-list-item__image {
  overflow: hidden;
}
.wc-block-product-categories-list-item .wc-block-product-categories-list {
  display: none;
}

.product-category-products-main ul li::before  {
  content: '';
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s;
}

.wc-block-components-product-button {
  display: none !important;
}

@media (hover: hover) {
  .product-category-products-main ul li:hover::before {
  z-index: 1;
  opacity: 0.2;
  }

  .product-category-products-main ul li:hover a .wc-block-product-categories-list-item__name {
    opacity: 0; 
  }
  .product-category-products-main ul li:hover img {
    scale: 1.1;
  }

  .product-category-products-main ul li:hover .wc-block-product-categories-list-item-count {
    z-index: 1;
    font-weight: bold;
    font-size: 20px;
  }
}

.product-category-products-main ul li img {
  transition: 0.2s;
}

.product-category-products-main ul li a .wc-block-product-categories-list-item__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-gold);
  color: var(--color-bg-primary);
  border-color: var(--color-gold);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: bold;
  text-align: center;
  transition: opacity 0.2s;
}

.product-category-products-main ul li .wc-block-product-categories-list-item-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.product-category-products-main ul li .wc-block-product-categories-list-item-count::before,
.product-category-products-main ul li .wc-block-product-categories-list-item-count::after {
  display: none;
}

.product-category-products-main ul .wc-block-product-categories-list-item__image {
  border: 0;
}

.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image {
  margin: 0;
  width: 100%;
  height: unset;
  aspect-ratio: 1;
}
.wc-block-product-categories-list--has-images .wc-block-product-categories-list-item__image img {
  width: 100%;
}
.wc-block-product-categories-list-item__image {
  max-width: unset !important;
}
main .woocommerce .woocommerce-breadcrumb {
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-green);
}

.wp-block-breadcrumbs {
  padding: 0 15px;
  margin-bottom: 15px;
}

.woocommerce-Price-amount.amount {
  font-weight: bold;
}
.wp-block-post-title a{
  font-weight: bold;
}

@media screen and (max-width:992px) {
    main .woocommerce .woocommerce-breadcrumb {
      text-align: center;
    }
    main .categories-list-left {
      display: none;
    }
    main .product-category-products {
      padding-left: 0;
    }
    .product-category-products-main ul li a .wc-block-product-categories-list-item__name {
      position: static;
      display: flex;
      justify-content: center;
      background-color: transparent;
      color: var(--color-black);
      font-weight: 700;
      font-size: 20px;
      text-align: center;
      transform: none;
      padding: 0;
    }
    .product-category-products-main ul li .wc-block-product-categories-list-item-count {
      position: static;
      transform: none;
      display: flex;
      justify-content: center;
    }
     .product-category-products-main ul li .wc-block-product-categories-list-item-count span[aria-hidden="true"] {
      display: none;
    }
    .product-category-products-main ul li .wc-block-product-categories-list-item-count  .screen-reader-text {
      width: max-content;
      height: max-content;
      position: static !important;
      clip-path: none;
    }
}
/* ============================================================
   TopBar
   ============================================================ */
.vlads-topbar p,
.vlads-topbar .wp-block-group {
  margin: 0;
  padding: 0;
}
.vlads-topbar__social p {
  line-height: 1;
  display: flex;
  align-items: center;
}

.vlads-topbar {
  position: relative;
  background-color: var(--color-green);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter-d);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-green-hover);
  z-index: 100;
}

.vlads-topbar a {
  color: var(--color-text-primary);
  background-image: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.vlads-topbar a:hover {
  color: var(--color-green);
  background-size: 0;
}

.vlads-topbar__phones {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.vlads-topbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
}
/* .vlads-topbar__phone::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A542' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384'/></svg>");
} */

.vlads-topbar__address {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0;
}
.vlads-topbar__address::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A542' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0'/><circle cx='12' cy='10' r='3'/></svg>");
}

.vlads-topbar__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.vlads-topbar__social p {
  margin: 0;
  line-height: 1;
}
.vlads-topbar__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0;
  background-image: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.vlads-topbar__social-icon:hover {
  opacity: 0.75;
  background-size: 0;
}
.vlads-topbar__social-icon::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.vlads-topbar__social-icon--fb::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23F2E4C4'><path d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.78-3.89 1.09 0 2.24.2 2.24.2v2.46h-1.26c-1.24 0-1.63.77-1.63 1.56V12h2.77l-.44 2.89h-2.33v6.99A10 10 0 0 0 22 12Z'/></svg>");
}
.vlads-topbar__social-icon--ig::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F2E4C4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='4'/><circle cx='12' cy='12' r='4'/><circle cx='17.5' cy='6.5' r='0.9' fill='%23F2E4C4' stroke='none'/></svg>");
}
.vlads-nav-drawer__nav {
  flex: unset !important;
}
.vlads-nav-drawer__langs {
  padding: 8px 24px 32px !important;
}

@media (max-width: 767px) {
  .vlads-topbar {
    justify-content: center;
  }
  .vlads-topbar .vlads-topbar__address,
  .vlads-topbar .vlads-topbar__social  {
    display: none;
  }
}

/* ============================================================
   Utility classes
   ============================================================ */
.vlads-eyebrow {
  margin-top: 22px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold);
}

.vlads-gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-gold);
  margin: var(--space-5) 0;
}
.vlads-gold-divider::before,
.vlads-gold-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.7;
}

.vlads-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-button);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background-image: none;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}

.vlads-btn .wp-block-button__link {
  background-color: unset;
  padding: 0;
  background-size: 0;
}
.vlads-btn .wp-block-button__link:hover {
  background-size: 0;
}
.vlads-btn--gold {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  a {
    color: inherit;
  }
}
.vlads-btn--gold:hover {
  background: var(--color-green-hover);
  border-color: var(--color-green-hover);
  color: var(--color-bg-primary);
  background-size: 0;
  a {
    color: inherit;
  }
}
.vlads-btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  a {
    color: inherit;
  }
}
.vlads-btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-bg-primary);
  background-size: 0;
  a {
    color: inherit;
  }
}
.vlads-btn--burgundy {
  background: var(--color-green);
  color: var(--color-text-primary);
  border-color: var(--color-green);
  a {
    color: inherit;
  }
}
.vlads-btn--burgundy:hover {
  background: var(--color-green-hover);
  border-color: var(--color-green-hover);
  background-size: 0;
  a {
    color: inherit;
  }
}

/* ============================================================
   Hero Actions
   ============================================================ */
.vlads-hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-7);
}

@media screen and (max-width:1024px) {
  .vlads-hero-actions  {
    flex-direction: column !important;
  }
}

/* ============================================================
   Hours Table
   ============================================================ */
.vlads-hours-table {
  width: 100%;
  max-width: 480px;
  margin: var(--space-6) auto 0;
  border-collapse: collapse;
  font-size: var(--fs-body);
  color: var(--color-black);
}
.vlads-hours-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.vlads-hours-table td:last-child {
  text-align: right;
  color: var(--color-gold);
}

/* ============================================================
   Contact Strip
   ============================================================ */
.vlads-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-bg-primary);
  padding: 0  15px!important;
  gap: 10px;
}
.vlads-contact-strip {
  background-color: transparent;
}

.vlads-contact-strip .vlads-contact-item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.vlads-contact-strip .vlads-contact-item:nth-child(1)::before{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A542' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' style='&%2310; stroke: %23246B1B;&%2310;'%3E%3Cpath d='M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384'/%3E%3C/svg%3E");
}
.vlads-contact-strip .vlads-contact-item:nth-child(2)::before{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill:%23246B1B'%3E%3Ctitle%3Eemail-outline%3C/title%3E%3Cpath d='M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6M20 6L12 11L4 6H20M20 18H4V8L12 13L20 8V18Z' /%3E%3C/svg%3E");}


.vlads-contact-item__label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-strong);
}

.vlads-contact-item__value {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
  background-image: none;
}
.vlads-contact-item__value:hover {
  color: var(--color-gold-hover);
  background-size: 0;
}

.vlads-contact-item__value--muted {
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .vlads-contact-strip {
    grid-template-columns: 1fr;
    padding: var(--space-7) var(--gutter-m);
  }
}

/* ============================================================
   Social Strip
   ============================================================ */
.vlads-social-strip {
  background: transparent;
  padding: var(--space-7) var(--gutter-d);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.vlads-social-strip__label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: var(--space-3);
}

.vlads-social-strip__link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  color: var(--color-black);
  background-image: none;
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.vlads-social-strip__link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background-size: 0;
}

/* ============================================================
   Hero Section
   ============================================================ */
.vlads-hero {
  position: relative;
  min-height: 640px;
  height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(rgb(42, 22, 12) 0%, rgb(18, 10, 6) 70%);
}

.vlads-hero__overlay-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 80, 30, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 75% 35%, rgba(107, 28, 42, 0.40) 0%, transparent 40%),
    radial-gradient(circle, rgba(201, 165, 66, 0.06) 0%, transparent 60%);
}

.vlads-hero__overlay-linear {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 10, 6, 0.50) 0%, rgba(18, 10, 6, 0.85) 100%);
}

.vlads-hero__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0.7;
}
.vlads-hero__corner--tl { top: 24px;    left: 24px;  transform: rotate(0deg); }
.vlads-hero__corner--tr { top: 24px;    right: 24px; transform: rotate(90deg); }
.vlads-hero__corner--bl { bottom: 24px; left: 24px;  transform: rotate(270deg); }
.vlads-hero__corner--br { bottom: 24px; right: 24px; transform: rotate(180deg); }

.vlads-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
}

.vlads-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-gold);
  font-size: 12px;
}

.vlads-hero__ornament-line {
  display: block;
  height: 1px;
  width: 50px;
  background: var(--color-gold);
  opacity: 0.7;
}

.vlads-hero__eyebrow {
  margin-top: 22px;
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-body);
}

.vlads-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 92px);
  line-height: 1.02;
  color: var(--color-text-primary);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  text-shadow: rgba(0, 0, 0, 0.60) 0px 4px 24px;
}

.vlads-hero__subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  color: var(--color-black);
  margin: 0 0 40px;
  line-height: 1.5;
}

.vlads-hero__subtitle.first_subtitle {
  margin-bottom: 0;
}

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

.vlads-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background-image: none;
  transition: all 240ms var(--ease-out);
  padding: 16px 36px;
  font-size: 12px;
  min-height: 52px;
  border: 1px solid transparent;
}

.vlads-hero__btn--gold {
  background: var(--color-gold);
  color: var(--color-bg-primary);
  border-color: var(--color-gold);
}
.vlads-hero__btn--gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: var(--color-bg-primary);
  background-size: 0;
}

.vlads-hero__btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.vlads-hero__btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-bg-primary);
  background-size: 0;
}

.vlads-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   Product Categories Mobile Drawer
   ============================================================ */

.product-categories-mobile{
  display: none;
}
.product-categories-mobile-wrapper .wc-block-product-categories {
  margin: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


@media screen and (max-width: 992px)  {
  .header-menu {
    justify-content: space-between;
  }
  .header-menu .trp-block-container {
    display: none;
  }
  body .vlads-nav-drawer__open {
    display: flex;
    padding-top: 0;
  }
  .header-menu .wp-block-navigation__responsive-container{
    display: none !important;
  }
}
.product-categories-mobile-opener {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--color-green);
    user-select: none;
    margin-left: 0px !important;
    padding-left: 0px !important;
}
.product-categories-mobile-opener::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 14px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14' %3E%3Crect y='0' width='20' height='2' rx='1' fill='%23246b1b'/%3E%3Crect y='6' width='20' height='2' rx='1' fill='%23246b1b'/%3E%3Crect y='12' width='20' height='2' rx='1' fill='%23246b1b'/%3E%3C/svg%3E");    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.product-categories-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.product-categories-mobile-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.woocommerce-ordering {
  display: none;
}

.map-home {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.product-categories-mobile-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    margin-top: 0;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 40px 24px 24px !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}
.product-categories-mobile.is-open .product-categories-mobile-wrapper {
    transform: translateX(0);
}

.product-categories-mobile-closer {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 20px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #eeeeee;
    user-select: none;
    width: 100%;
}
.product-categories-mobile-closer::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cline x1='1' y1='1' x2='15' y2='15' stroke='%23111111' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='15' y1='1' x2='1' y2='15' stroke='%23111111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.product-categories-mobile-wrapper .wc-block-product-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each top-level item row */
.product-categories-mobile-wrapper .wc-block-product-categories-list-item {
    position: relative;
}
.product-categories-mobile-wrapper .wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item {
    border-bottom: 1px solid #eeeeee;
}

/* Item link + toggle row */
.product-categories-mobile-wrapper .wc-block-product-categories-list-item > a {
    display: block;
    padding: 10px 36px 10px 0;
    color: #222222;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: color 0.2s;
}
.product-categories-mobile-wrapper .wc-block-product-categories-list-item > a:hover {
    color: var(--color-green);
}

/* Toggle chevron button */
.cat-tree-toggle {
    position: absolute;
    top: 6px;
    right: 0;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    transition: transform 0.25s ease;
}
.cat-tree-toggle::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #555555;
    border-bottom: 2px solid #555555;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}
.wc-block-product-categories-list-item.is-expanded > .cat-tree-toggle::before {
    transform: rotate(-135deg) translateY(-2px);
}

/* Subcategory list — animated collapse */
.product-categories-mobile-wrapper .wc-block-product-categories-list--depth-1 {
    padding-left: 12px;
    overflow: hidden;
    transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-categories-mobile-wrapper .wc-block-product-categories-list--depth-1 .wc-block-product-categories-list-item > a {
    font-size: var(--fs-sm);
    color: #444444;
    padding: 8px 0;
    border-bottom: none;
}

/* ============================================================
   Header Nav Drawer
   ============================================================ */

/* Hide WP's own responsive container — replaced by our drawer */
.wp-block-navigation__responsive-container.has-modal-open,
.wp-block-navigation__responsive-container.is-menu-open {
    display: none !important;
}
.wp-block-navigation__responsive-container-open {
    display: none !important;
}

/* Open button injected into header */
.vlads-nav-drawer__open {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 4px 0;
    margin: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--color-text-primary);
    user-select: none;
    flex-shrink: 0;
}
.vlads-nav-drawer__open svg {
    display: block;
    flex-shrink: 0;
}

/* Full-screen wrapper (overlay + panel) */
.vlads-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}
.vlads-nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

/* Backdrop */
.vlads-nav-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vlads-nav-drawer.is-open .vlads-nav-drawer__overlay {
    opacity: 1;
}

/* Slide-in panel */
.vlads-nav-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 300px;
    max-width: 85vw;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
}
.vlads-nav-drawer.is-open .vlads-nav-drawer__panel {
    transform: translateX(0);
}

/* Top bar with close button */
.vlads-nav-drawer__top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 24px 0;
    flex-shrink: 0;
}

.vlads-nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #eeeeee;
    padding: 0 0 16px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    user-select: none;
}
.vlads-nav-drawer__close svg {
    flex-shrink: 0;
}

/* Nav list */
.vlads-nav-drawer__nav {
    padding: 8px 24px 32px;
    padding-bottom: 0;
    flex: 1;
}

.vlads-nav-drawer__list,
.vlads-nav-drawer__sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vlads-nav-drawer__link--lang {
  font-size: 15px !important;
  color: #222222 !important;
}

/* Item row (link + optional toggle) */
.vlads-nav-drawer__row {
    display: flex;
    align-items: center;
}

.vlads-nav-drawer__item {
    border-bottom: 1px solid #eeeeee;
}
.vlads-nav-drawer__item--sub {
    border-bottom: none;
}

.vlads-nav-drawer__link {
    flex: 1;
    display: block;
    padding: 11px 0;
    color: #222222;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 500;
    background-image: none;
    transition: color 0.2s;
}
.vlads-nav-drawer__link:hover {
    color: var(--color-green-hover);
    background-size: 0;
}

.vlads-nav-drawer__link--sub {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: #444444;
    padding: 8px 0;
}
.vlads-nav-drawer__link--sub:hover {
    color: var(--color-gold);
}

.vlads-nav-drawer__link--lang {
    font-size: var(--fs-sm);
    color: #666666;
}
.vlads-nav-drawer__link--lang:hover {
    color: var(--color-gold);
}

/* Chevron toggle */
.vlads-nav-drawer__toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vlads-nav-drawer__toggle::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #555555;
    border-bottom: 2px solid #555555;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}
.vlads-nav-drawer__item.is-expanded > .vlads-nav-drawer__row > .vlads-nav-drawer__toggle::before {
    transform: rotate(-135deg) translateY(-2px);
}

/* Sublist animated collapse */
.vlads-nav-drawer__sublist {
    padding-left: 12px;
    overflow: hidden;
    transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Product Page
   ============================================================ */

@media screen and (max-width:992px) {
  .woocommerce .wp-block-woocommerce-product-image-gallery {
    max-width: unset;
  }

  h1.wp-block-post-title {
    font-size: 24px;
  }
  .wp-block-add-to-cart-form {
    display: none;
  }

  body.product .wp-block-breadcrumbs{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.woocommerce-Price-amount {
  display: inline-flex;
  padding: 8px;
  color: white;
  background-color: var(--color-green);
}

.restaurant-label-hero {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  margin-top: 0;
  color: var(--color-white);
  font-size: 32px;
}

.restaurant-label-hero a {
  color: inherit;
  text-transform: none;
  text-decoration: none;
}

.restaurant-label-hero a:hover {
  color: inherit;
  text-decoration: none;
  background-image: none;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.vlads-gallery-hero {
  margin: 0 !important;
}
.vlads-gallery-hero img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  margin: 0 !important;
}

.vlads-gallery.wp-block-gallery {
  gap: var(--space-3) !important;
}
.vlads-gallery.wp-block-gallery .wp-block-image img {
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  transition: transform var(--dur-image) var(--ease-out);
}
.vlads-gallery.wp-block-gallery .wp-block-image {
  overflow: hidden;
}
.vlads-gallery.wp-block-gallery .wp-block-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .vlads-gallery.wp-block-gallery.columns-3 .wp-block-image {
    flex-basis: calc(50% - var(--space-3)) !important;
    max-width: calc(50% - var(--space-3)) !important;
  }
}

.woocommerce div.product div.images {
  margin-bottom: 0 !important;

}

.vlads-category-intro {
      margin-bottom: 2rem;
  }