/* =============================================================
   VDOMA site-wide theme — header.twig/footer.twig now use the
   exact same decorative header/footer as the landing page itself
   (logo, custom nav from Лендінг сторінка → Header, book-a-table
   button / logo, tagline, social, hours, address, contacts from
   Лендінг сторінка → Footer). No cart, search, OpenCart category
   menu, currency/language/blog-menu bar, or account dropdown —
   removed entirely per request. Loaded on every page via
   header.twig, after the shop's own stylesheet.css.

   NOTE: this site's own stylesheet.css repeatedly wins specificity
   fights against unprefixed rules (container width, text color on
   <p>, product card borders all got silently overridden earlier),
   so every color/background/font/border declaration below uses
   !important on purpose — not stylistic preference, a fix for a
   real recurring conflict on this install.
   ============================================================= */
:root{
	--vdoma-cream:#F3EFE7;
	--vdoma-cream-dark:#EAE4D8;
	--vdoma-black:#181511;
	--vdoma-line:#D9D2C4;
	--vdoma-radius-pill:999px;
	--vdoma-container:1360px;
}

body.vdoma-theme{
	background:var(--vdoma-cream) !important;
	font-family:'Manrope', Arial, sans-serif !important;
	color:var(--vdoma-black) !important;
}
body.vdoma-theme h1, body.vdoma-theme h2, body.vdoma-theme h3,
body.vdoma-theme h4, body.vdoma-theme h5, body.vdoma-theme h6{
	font-family:'Unbounded', 'Manrope', Arial, sans-serif !important;
	font-weight: 400 !important;
}
body.vdoma-theme h1.lp-catalog-title {
	text-align: center;
}
body.vdoma-theme .container,
body.vdoma-theme .container-fluid{
	max-width:var(--vdoma-container) !important;
}

/* ---------- header ---------- */
body.vdoma-theme .vdoma-header{
	border: none !important;
  box-shadow: none !important;
  padding: 5px 0 5px !important;
  position: relative;
  z-index: 50;
  background: var(--vdoma-cream-dark) !important;
  position: sticky;
  top: 0;
  z-index: 999;
}
body.vdoma-theme .vdoma-header-inner{
	display:flex !important; align-items:center !important; justify-content:space-between !important;
}
body.vdoma-theme .vdoma-logo{
	font-family:'Unbounded', sans-serif !important; font-weight:500 !important; font-size:22px !important;
	color:var(--vdoma-black) !important; text-decoration:none !important;
	display:flex !important; align-items:center !important; gap:6px;
}
body.vdoma-theme .vdoma-logo img{height: 70px !important;}

body.vdoma-theme .vdoma-nav{
	display:flex !important; align-items:center !important; gap:32px; list-style:none !important; margin:0 !important; padding:0 !important;
}
body.vdoma-theme .vdoma-nav li{list-style:none !important;}
body.vdoma-theme .vdoma-nav a{
	font-size:13px !important; font-weight:500 !important; letter-spacing:.06em !important; text-transform:uppercase !important;
	color:var(--vdoma-black) !important; text-decoration:none !important; background:transparent !important;
}
body.vdoma-theme .vdoma-nav a:hover{opacity:.6;}

body.vdoma-theme .vdoma-header-right{display:flex !important; align-items:center !important; gap:14px;}

body.vdoma-theme .vdoma-btn{
	display:inline-flex !important; align-items:center !important; justify-content:center !important;
	padding:14px 28px !important; border-radius:var(--vdoma-radius-pill) !important;
	font-size:12px !important; font-weight:500 !important; letter-spacing:.06em !important; text-transform:uppercase !important;
	white-space:nowrap; text-decoration:none !important; border:1px solid var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-btn--solid{background:var(--vdoma-black) !important; color:#fff !important;}
body.vdoma-theme .vdoma-btn--solid:hover{background:#000 !important; color:#fff !important;}

body.vdoma-theme .vdoma-burger{
	width:44px; height:44px; border-radius:50% !important; border:1px solid var(--vdoma-line) !important;
	display:none; align-items:center; justify-content:center; cursor:pointer; background:transparent !important;
}
body.vdoma-theme .vdoma-burger span{
	display:block; width:16px; height:2px; background:var(--vdoma-black) !important;
}
body.vdoma-theme #vdoma-mobile-nav{padding:16px 0 !important; background:var(--vdoma-cream) !important;}
body.vdoma-theme .vdoma-mobile-nav-list{list-style:none !important; margin:0 !important; padding:0 !important;}
body.vdoma-theme .vdoma-mobile-nav-list li{padding:10px 0 !important; border-bottom:1px solid var(--vdoma-line) !important; list-style:none !important;}
body.vdoma-theme .vdoma-mobile-nav-list a{color:var(--vdoma-black) !important; text-decoration:none !important;}

@media (max-width: 991px){
	body.vdoma-theme .vdoma-nav{display:none !important;}
	body.vdoma-theme .vdoma-burger{display:flex !important;}
}

/* ---------- footer ---------- */
body.vdoma-theme .vdoma-footer{
	background:var(--vdoma-cream-dark) !important;
	border:none !important;
	box-shadow:none !important;
	padding:60px 0 40px !important;
	color:var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-footer h5{
	font-family:'Unbounded', sans-serif !important; font-weight: 400 !important;
	font-size:11px !important; letter-spacing:.12em !important; text-transform:uppercase !important;
	color:#8A8474 !important;
	margin-bottom:14px !important;
}
body.vdoma-theme .vdoma-footer a{color:var(--vdoma-black) !important; text-decoration:none !important;}
body.vdoma-theme .vdoma-footer p{margin:0 0 6px !important; color:var(--vdoma-black) !important;}
body.vdoma-theme .vdoma-footer-brand{padding-bottom:0;}
body.vdoma-theme .vdoma-footer-logo{
	font-family:'Unbounded', sans-serif !important; font-weight:500 !important; font-size:20px !important;
	color:var(--vdoma-black) !important; margin-bottom:8px !important;
}
body.vdoma-theme .vdoma-footer-logo img{height: 56px !important;}
body.vdoma-theme .vdoma-footer-tagline{
	font-size:11px !important; font-weight:500 !important; letter-spacing:.14em !important; text-transform:uppercase !important;
	color:#8A8474 !important; margin-bottom:16px !important;
}
body.vdoma-theme .vdoma-footer-social{display:flex !important; gap:8px; list-style:none !important; padding:0 !important; margin:0 !important;}
body.vdoma-theme .vdoma-footer-social a{
	width:32px !important; height:32px !important; border-radius:50% !important; border:1px solid var(--vdoma-line) !important;
	display:inline-flex !important; align-items:center !important; justify-content:center !important; font-size:13px !important;
	background:transparent !important;
}
body.vdoma-theme .vdoma-footer-social a:hover{
	background:var(--vdoma-black) !important; color:#fff !important; border-color:var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-footer-link{
	display:inline-block; margin-top:6px !important; font-size:12px !important; font-weight:500 !important; letter-spacing:.04em !important;
	text-transform:uppercase !important; color:var(--vdoma-black) !important;
	border-bottom:1px solid currentColor !important; padding-bottom:2px !important;
}

@media (max-width: 767px){
	body.vdoma-theme .vdoma-header-inner{flex-wrap:wrap; gap:12px;}
	body.vdoma-theme .vdoma-footer .row > div{margin-bottom:28px;}
}

/* ---------- category pills, horizontal scroll (product/category.twig,
   scoped to category_id=97 "Кафе" only — see the twig for the condition) ---------- */
body.vdoma-theme .vdoma-category-scroll-wrap{margin: 30px 0 40px;}
body.vdoma-theme .vdoma-category-scroll{
	display:flex; gap:10px; overflow-x:auto; padding-bottom:12px;
	scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
}
body.vdoma-theme .vdoma-category-scroll::-webkit-scrollbar{height:6px;}
body.vdoma-theme .vdoma-category-scroll::-webkit-scrollbar-thumb{background:var(--vdoma-line); border-radius:4px;}
body.vdoma-theme .vdoma-category-pill{
	flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  text-decoration: none !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  background: #eae4d8 !important;
  border: 1px solid var(--vdoma-line) !important;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vdoma-black) !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
body.vdoma-theme .vdoma-category-pill:hover{
	background:var(--vdoma-black) !important; color:#fff !important; border-color:var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-category-pill--active{
	background:var(--vdoma-black) !important; color:#fff !important; border-color:var(--vdoma-black) !important;
}

/* ---------- breadcrumbs (product/category.twig etc) ---------- */
body.vdoma-theme .vdoma-breadcrumb{
	list-style:none !important; display:flex !important; flex-wrap:wrap; align-items:center; justify-content:center;
	gap:0; padding:0 !important; margin:20px 0 10px !important; background:transparent !important;
}
body.vdoma-theme .vdoma-breadcrumb li{
	list-style:none !important; display:flex; align-items:center;
	font-size:12px !important; font-weight:500 !important; letter-spacing:.08em; text-transform:uppercase;
}
body.vdoma-theme .vdoma-breadcrumb li a{
	color:#8A8474 !important; text-decoration:none !important;
}
body.vdoma-theme .vdoma-breadcrumb li:last-child a{color:var(--vdoma-black) !important;}
body.vdoma-theme .vdoma-breadcrumb li a:hover{color:var(--vdoma-black) !important;}
body.vdoma-theme .vdoma-breadcrumb li + li::before{
	content:'/'; margin:0 10px; color:var(--vdoma-line);
}
body.vdoma-theme .vdoma-category-title{
	text-align:center; font-family:'Unbounded', sans-serif !important; font-weight:400 !important;
}

/* ---------- product listing (product/category.twig) — same card
   language as the homepage "Пропозиції" section ---------- */
body.vdoma-theme .vdoma-product-toolbar{display:flex; justify-content:flex-end; margin:10px 0 24px;}

/* custom sort dropdown (replaces the native <select>) */
body.vdoma-theme .vdoma-sort{position:relative; width:100%; max-width: 220px;}
body.vdoma-theme .vdoma-sort-trigger{
	display:flex !important; align-items:center; gap:8px; width:100%;
	background:#fff !important; border:1px solid var(--vdoma-line) !important; border-radius:999px !important;
	padding:12px 18px !important; cursor:pointer; font-size:14px !important;
	transition:border-color .2s ease, box-shadow .2s ease;
}
body.vdoma-theme .vdoma-sort--open .vdoma-sort-trigger,
body.vdoma-theme .vdoma-sort-trigger:hover{
	 box-shadow:0 0 0 3px rgba(24,21,17,.06);
}

body.vdoma-theme .vdoma-sort-label{
	display: none;
	font-size:11px; text-transform:uppercase; letter-spacing:.04em; color:#8A8474; white-space:nowrap;
}
body.vdoma-theme .vdoma-sort-current{
	flex:1; text-align:left; font-weight:500; color:var(--vdoma-black); overflow:hidden;
	text-overflow:ellipsis; white-space:nowrap;
}
body.vdoma-theme .vdoma-sort-arrow{
	font-size:11px; color:#8A8474; transition:transform .25s ease; flex:0 0 auto;
}
body.vdoma-theme .vdoma-sort--open .vdoma-sort-arrow{transform:rotate(180deg);}

body.vdoma-theme .vdoma-sort-menu{
	position:absolute; top:calc(100% + 8px); left:0; right:0; z-index:50;
	background:#fff !important; border:1px solid var(--vdoma-line) !important; border-radius:16px !important;
	box-shadow:0 14px 32px rgba(24,21,17,.12); overflow:hidden;
	display:flex; flex-direction:column;
	max-height:0; opacity:0; visibility:hidden; pointer-events:none;
	transform:translateY(-6px);
	transition:max-height .25s ease, opacity .2s ease, transform .2s ease, visibility 0s linear .25s;
}
body.vdoma-theme .vdoma-sort--open .vdoma-sort-menu{
	max-height:320px; opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
	transition:max-height .25s ease, opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
body.vdoma-theme .vdoma-sort-option{
	display:block !important; padding:12px 18px !important; font-size:14px !important;
	color:var(--vdoma-black) !important; text-decoration:none !important;
	border-bottom:1px solid var(--vdoma-line);
}
body.vdoma-theme .vdoma-sort-option:last-child{border-bottom:none;}
body.vdoma-theme .vdoma-sort-option:hover{background:var(--vdoma-cream) !important;}
body.vdoma-theme .vdoma-sort-option--active{
	background:var(--vdoma-black) !important; color:#fff !important; font-weight:600;
}

body.vdoma-theme .vdoma-product-grid{
	display:grid !important; grid-template-columns:repeat(5, 1fr) !important; gap:20px !important;
	margin:0 0 30px !important; padding:0 !important; list-style:none !important;
}
body.vdoma-theme .vdoma-product-card{
	display:block !important; text-decoration:none !important; background:#fff !important;
	border:1px solid var(--vdoma-line) !important; border-radius:16px !important; overflow:hidden !important;
}
body.vdoma-theme .vdoma-product-card .vdoma-product-image{aspect-ratio:300/250; overflow:hidden;}
body.vdoma-theme .vdoma-product-card .vdoma-product-image img{
	width:100% !important; height:100% !important; object-fit:cover !important; object-position:center !important;
	transition:transform .3s ease;
}
body.vdoma-theme .vdoma-product-card:hover .vdoma-product-image img{transform:scale(1.08);}
body.vdoma-theme .vdoma-product-info{
	padding:14px 16px !important; display:flex !important; align-items:center; justify-content:space-between; gap:8px;
}
body.vdoma-theme .vdoma-product-name{
	font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-product-price{font-size:13px !important; font-weight: 600 !important; white-space:nowrap; color:var(--vdoma-black) !important;}
body.vdoma-theme .vdoma-price-new{color:var(--vdoma-black) !important; font-weight:400;}
body.vdoma-theme .vdoma-price-old{color:#8A8474 !important; text-decoration:line-through; font-weight:400 !important; font-size:12px !important;}

@media (max-width: 1200px){
	body.vdoma-theme .vdoma-product-grid{grid-template-columns:repeat(3, 1fr) !important;}
}
@media (max-width: 767px){
	body.vdoma-theme .vdoma-product-grid{grid-template-columns:repeat(2, 1fr) !important; gap:14px !important;}
	body.vdoma-theme .vdoma-product-toolbar{justify-content:flex-start; justify-content: flex-end;}
}

/* ---------- single product page (product/product.twig) — one column ---------- */
body.vdoma-theme .vdoma-product-single-wrap{padding:10px 0 60px;}
body.vdoma-theme .vdoma-product-single{max-width:640px; margin:0 auto; display:flex; flex-direction:column; gap:14px;}
body.vdoma-theme .vdoma-product-single-image{
	border:1px solid var(--vdoma-line) !important; border-radius:16px !important; overflow:hidden;
	background:#fff;
}
body.vdoma-theme .vdoma-product-single-image img{width:100%; height:auto; display:block;}
body.vdoma-theme .vdoma-product-single-title{
	font-family:'Unbounded', sans-serif !important; font-weight:500 !important; font-size:28px !important;
	color:var(--vdoma-black) !important; margin:6px 0 0 !important; text-align:center;
}
body.vdoma-theme .vdoma-product-single-meta{
	margin-bottom: 5px;
  margin-top: 5px;display:flex; flex-wrap:wrap; justify-content:center; gap:16px; font-size:13px; color:#8A8474; text-align:center;
}
body.vdoma-theme .vdoma-product-single-price{
	font-family:'Unbounded', sans-serif !important; font-weight:500 !important; font-size:22px !important;
	color:var(--vdoma-black) !important; text-align:center;
}
body.vdoma-theme .vdoma-product-single-price .vdoma-price-old{
	color:#8A8474 !important; text-decoration:line-through; font-weight:400 !important; font-size:16px !important; margin-right:8px;
}
body.vdoma-theme .vdoma-product-single-buy{
	display:flex; flex-wrap:wrap; align-items:flex-end; gap:14px;
	border-top:1px solid var(--vdoma-line); border-bottom:1px solid var(--vdoma-line);
	padding:20px 0; margin:4px 0;
}
body.vdoma-theme .vdoma-product-single-options{width:100%; display:flex; flex-direction:column; gap:12px;}
body.vdoma-theme .vdoma-product-single-qty{display:flex; flex-direction:column; gap:6px; width:100px;}
body.vdoma-theme .vdoma-product-single-qty label{
	font-size:11px; text-transform:uppercase; letter-spacing:.04em; color:#8A8474; margin:0;
}
body.vdoma-theme .vdoma-product-single-qty .form-control{
	border-radius:10px !important; border:1px solid var(--vdoma-line) !important; box-shadow:none !important;
}
body.vdoma-theme .vdoma-product-single-buy-btn{border:none !important; cursor:pointer;}
body.vdoma-theme .vdoma-product-single-description{font-size:15px; line-height:1.6; color:var(--vdoma-black);}

@media (max-width: 480px){
	body.vdoma-theme .vdoma-product-single-buy{flex-direction:column; align-items:stretch;}
	body.vdoma-theme .vdoma-product-single-qty{width:100%;}
}

.lp-banners .swiper-wrapper .swiper-slide .lp-banner-image,
.lp-banners .swiper-wrapper .swiper-slide .lp-banner-split {
 border-radius: 18px;
}
.lp-banners .swiper-wrapper .swiper-slide:first-child .lp-banner-split {
	border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
body.vdoma-theme .vdoma-sort-option--active:hover {
    background: #222 !important;
}
@media (max-width: 767px) {
	.container {
  width: 100%;
  padding: 0 15px;
}
.vdoma-theme .lp .lp-container {
	padding: 0 15px;
}
body.vdoma-theme .vdoma-logo img {
  height: 40px !important;
}
body.vdoma-theme .vdoma-btn {
  padding: 8px 15px !important;
  font-size: 12px !important;
}
body.vdoma-theme .vdoma-header {
  padding: 10px 0 !important;
}
================ ЗНАЙТИ (старе, видалити) ================

body.vdoma-theme .vdoma-burger{
	width:44px; height:44px; border-radius:50%; border:1px solid var(--vdoma-line) !important;
	display:none; align-items:center; justify-content:center; cursor:pointer; background:transparent !important;
}
body.vdoma-theme .vdoma-burger span{
	display: block;
    width: 16px;
    height: 2px;
    background: var(--vdoma-black) !important;
    margin: 2px;
}
body.vdoma-theme #vdoma-mobile-nav{
	padding: 16px 20px !important;
    background: #e3ded0 !important;
}
body.vdoma-theme .vdoma-mobile-nav-list{list-style:none !important; margin:0 !important; padding:0 !important;}
body.vdoma-theme .vdoma-mobile-nav-list li{padding:0 !important; border-bottom:1px solid var(--vdoma-line) !important; list-style:none !important;}
body.vdoma-theme .vdoma-mobile-nav-list a{color:var(--vdoma-black) !important; text-decoration:none !important;}

@media (max-width: 991px){
	body.vdoma-theme .vdoma-nav{display:none !important;}
	body.vdoma-theme .vdoma-burger{display:flex !important;}
}

================ ЗАМІНИТИ НА (нове) ================

body.vdoma-theme .vdoma-burger{
	width:44px; height:44px; border-radius:50% !important; border:1px solid var(--vdoma-line) !important;
	display:none; align-items:center; justify-content:center; flex-direction:column; gap:4px;
	cursor:pointer; background:transparent !important; position:relative;
}
body.vdoma-theme .vdoma-burger-line{
	display:block; width:18px; height:2px; background:var(--vdoma-black) !important;
	transition:transform .3s ease, opacity .2s ease;
}
body.vdoma-theme .vdoma-burger--open .vdoma-burger-line:nth-child(1){transform:translateY(6px) rotate(45deg);}
body.vdoma-theme .vdoma-burger--open .vdoma-burger-line:nth-child(2){opacity:0;}
body.vdoma-theme .vdoma-burger--open .vdoma-burger-line:nth-child(3){transform:translateY(-6px) rotate(-45deg);}


@media (max-width: 991px){
	body.vdoma-theme .vdoma-nav{display:none !important;}
	body.vdoma-theme .vdoma-burger{display:flex !important; flex-direction: column;}
}

/* right-side slide-in drawer + затемнення фону */
body.vdoma-theme .vdoma-drawer-overlay{
	position:fixed; inset:0; background:rgba(24,21,17,.5); z-index:990;
	opacity:0; visibility:hidden; transition:opacity .3s ease, visibility 0s linear .3s;
}
body.vdoma-theme .vdoma-drawer-overlay--visible{
	opacity:1; visibility:visible; transition:opacity .3s ease, visibility 0s linear 0s;
}
body.vdoma-theme .vdoma-drawer{
	position:fixed; top: 64px; right:0; bottom:0; width:80%; max-width:340px;
	background:var(--vdoma-cream) !important; z-index:1000;
	box-shadow:-10px 0 30px rgba(0,0,0,.15);
	transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
	padding:80px 32px 32px; display:flex; flex-direction:column; gap:28px;
	overflow-y:auto;
}
body.vdoma-theme .vdoma-drawer--open{transform:translateX(0);}
body.vdoma-theme .vdoma-drawer-close{
	display: none;
	position:absolute; top:22px; right:22px; width:40px; height:40px; border-radius:50% !important;
	border:1px solid var(--vdoma-line) !important; background:transparent !important; font-size:22px; line-height:1;
	cursor:pointer; color:var(--vdoma-black) !important;
}
body.vdoma-theme .vdoma-mobile-nav-list{list-style:none !important; margin:0 !important; padding:0 !important; display:flex; flex-direction:column; gap:4px;}
body.vdoma-theme .vdoma-mobile-nav-list li{list-style:none !important; border-bottom:1px solid var(--vdoma-line);}
body.vdoma-theme .vdoma-mobile-nav-list a{
	display: block;
    padding: 13px 4px;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    letter-spacing: .02em;
    color: var(--vdoma-black) !important;
    text-decoration: none !important;
 }
body.vdoma-theme .vdoma-drawer-book-btn{width:100%; text-align:center; margin-top:auto; display: none !important;}
body.vdoma-theme .vdoma-category-scroll-wrap {
  margin: 30px 0 30px;
}
body.vdoma-theme .vdoma-product-info {
	flex-direction: column;
}
body.vdoma-theme .vdoma-footer {
  background: var(--vdoma-cream-dark) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 30px 0 20px !important;
}
body.vdoma-theme .vdoma-footer .row > div {
    margin-bottom: 28px;
    text-align: center;
  }
  body.vdoma-theme .vdoma-footer-social {
  	justify-content: center;
  }
  .lp-catalog-grid .lp-banner-text {
  	align-items: center;
  }
  .lp-catalog-grid .lp-banner-link {
  	padding-top: 5px;
  }
  .lp-catalog-grid .lp-banner-title {
  font-size: 26px;
}
body.vdoma-theme .vdoma-category-scroll-wrap {
 margin: 30px 0 20px;
}
body.vdoma-theme .vdoma-product-single-wrap {
  padding: 10px 15px 60px;
}
body.vdoma-theme .vdoma-product-toolbar {
  margin: 10px 0 20px;
}
body.vdoma-theme .vdoma-sort-trigger {
	padding: 10px 15px !important;
}
body.vdoma-theme .vdoma-sort {
	max-width: 180px;
}
}

@media (min-width: 991px) {
body.vdoma-theme #vdoma-mobile-nav {
	display:none !important;
}
}