/*
Theme Name: Blocksy VinArt Child
Theme URI: https://vinart.example
Description: Lightweight Blocksy child theme prewired for VinArt branding and GSAP animations.
Author: VinArt
Author URI: https://vinart.example
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-vinart-child
*/

/* =================== TOKENS / RESET =================== */

:root {
  --vinart-bg: #fff1de;
  --vinart-ink: #111111;
  --vinart-wine: #7A0E2E;
  --vinart-rose: #C7486A;
  --vinart-gold: #C49A6C;
  --vinart-radius: 1.25rem;
  --vinart-gap: 1.25rem;
  --vinart-shadow: 0 10px 24px rgba(0,0,0,.08);
}



body {
  background-color: var(--vinart-bg);
  color: var(--vinart-ink);
  background-image:
    url("assets/img/paper-texture.png"),
    radial-gradient(at 20% 30%, rgba(0,0,0,0.025) 0, transparent 60%),
    radial-gradient(at 80% 70%, rgba(0,0,0,0.03) 0, transparent 55%);
  background-repeat: repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  background-size: 70px 70px, cover, cover;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Antonio', sans-serif;
  font-weight: 100;
  letter-spacing: 0.02em;
}

a { color: var(--vinart-wine); }
a:hover { color: var(--vinart-rose); }

/* =================== BUTTONS & BADGES =================== */

.button,
.wp-block-button__link,
button,
input[type="submit"] {
  border-radius: var(--vinart-radius);
  box-shadow: var(--vinart-shadow);
}

.ct-cart-trigger .ct-label,
.add_to_cart_button,
.single_add_to_cart_button {
  background: var(--vinart-wine);
}

.ct-cart-trigger .ct-label:hover,
.add_to_cart_button:hover,
.single_add_to_cart_button:hover {
  background: var(--vinart-rose);
}

.vinart-btn {
  display: inline-block;
  background: var(--vinart-wine);
  color: #fff !important;
  border-radius: var(--vinart-radius);
  padding: .8rem 1.4rem;
  box-shadow: var(--vinart-shadow);
  transition: background .25s ease, transform .2s ease;
}
.vinart-btn:hover { background: var(--vinart-rose); transform: translateY(-1px); }

.badge--vinart,
.vinart-badge {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--vinart-gold);
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
}

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

.vinart-front .ct-header {
  background: transparent;
  border-bottom: none;
}

.header-sticky .ct-header {
  backdrop-filter: blur(8px);
  background: rgba(244, 237, 228, 0.88);
  border-bottom: 1px solid rgba(122, 14, 46, 0.25);
}

.ct-header .menu > li > a {
  font-family: 'Antonio', sans-serif;
  font-weight: 200;
  text-transform: none !important;
  letter-spacing: 0.03em;
  font-size: 1.5rem;
  color: #7A0E2E;
  position: relative;
  padding: 0.5rem 0.8rem;
  transition: color 0.35s ease;
}

.ct-header .menu > li > a:hover,
.ct-header .menu > li.current-menu-item > a {
  color: #C7486A;
}

.ct-header .menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #C7486A;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.ct-header .menu > li > a:hover::after,
.ct-header .menu > li.current-menu-item > a::after {
  width: 100%;
}

.ct-cart-trigger {
  color: #7A0E2E;
  transition: color 0.25s ease;
}
.ct-cart-trigger:hover { color: #C7486A; }

.ct-mobile-menu {
  background: #f7eccf;
  font-family: 'Cormorant Garamond', serif;
}
.ct-mobile-menu .menu > li > a {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  color: #111111;
}
.ct-mobile-menu .menu > li > a:hover { color: #7A0E2E; }

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

#post-85 .entry-header{
display: none;}

.hero-vinart {
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  color: #111;
}

.hero-vinart.wp-block-cover {
  min-height: 100svh !important;
  background-color: var(--vinart-bg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  padding-block: 0;
  width: 80vw;
  max-width: 80vw !important;
  margin-left: calc(-50vw + 50%);
}

.hero-vinart.wp-block-cover img {
  width: 80%;
  height: auto;
  text-align: center;
}

.hero-vinart .wp-block-cover__inner-container {
  display: grid;
  gap: 1rem;
  justify-items: center;
align-self: flex-start;
}

.hero-vinart .hero-text {
  width: 400px;
  margin-right: 5%;
  margin-left: auto;
}

.hero-vinart h1 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-buttons .btn-main {
  display: inline-block;
  background: #7A0E2E;
  color: #fff !important;
  padding: 0.9rem 1.6rem;
  border-radius: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  text-align: center;
  transition: background .25s ease, transform .2s ease;
}
.hero-buttons .btn-main:hover { background: #C7486A; transform: translateY(-2px); }
.hero-buttons .btn-secondary {
  display: inline-block;
  color: #7A0E2E;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease;
  text-align: center;
}
.hero-buttons .btn-secondary:hover { color: #C7486A; }

/* =================== HOME: NAGLÓWKI / SEPARATORY =================== */

.home h2 {
  font-family: "Antonio", sans-serif;
  color: var(--vinart-wine);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  margin: 2.2rem auto 1.2rem;
}

.home .vinart-sep {
  width: min(1100px, 92%);
  height: 1px;
  margin: 1.2rem auto 1.6rem;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.25), transparent);
}

/* =================== WOOCOMMERCE: LISTA PRODUKTÓW =================== */

/* /wina (strona sklepu) + /wina/kategoria (product_cat) */
body.woocommerce.archive:is(.post-type-archive-product, .tax-product_cat)
  #main-container .site-main{
  margin-top: 80px !important;      /* glówne */
  margin-block-start: 80px !important; /* fallback dla logiki blokowej */
}
.pierwszy-akapit{margin-right: 20vw!important;}
}


.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .ct-image-container img,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link img {
  height: 280px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: #FFF1DE;
  padding: 8px;
  border-radius: 12px;
}

.woocommerce ul.products li.product .ct-image-container {
  min-height: 300px;
  display: grid;
  place-items: center;
  background: #FFF1DE;
  border-radius: 12px;
}
[data-products] .product {align-items: center;}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
background: none!important;
box-shadow: none!important;}

/* =================== ART & WINE SECTION =================== */

.vinart-artwine {
  margin-inline: auto;
  padding-block: clamp(24px, 5vw, 48px);
}

.vinart-artwine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
}

.vinart-artwine__text {
  text-align: right;
}
.vinart-artwine__text h2 {
  margin: 0 0 .5rem 0;
  font-weight: 700;
  text-align: right;
}
.vinart-artwine__text p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.vinart-artwine__img {
  margin: 0;
  justify-self: center;
}
.vinart-artwine__img img {
  height: 350px;
  max-height: 350px;
  width: auto;
  object-fit: contain;
  display: block;
  justify-self: center;
}

.page-description.ct-hidden-sm {
display: inline-block!important;
}


/* =================== PASEK WINNIC (SCROLLER) =================== */

.vinart-brands-wrap {
  position: relative;
  margin-inline: auto;
  max-width: min(1100px, 92%);
  padding-block: clamp(16px, 3vw, 24px);
}

.vinart-brands-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: clamp(12px, 2vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px;
  background: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vinart-brands-scroller::-webkit-scrollbar { display: none; }

.vinart-brand {
  scroll-snap-align: center;
  text-decoration: none;
  color: inherit;
}
.vinart-brands-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  box-shadow: var(--vinart-shadow);
  background: #fff;
  color: #7A0E2E;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}
.vinart-brands-prev{ left: -48px; }
.vinart-brands-next{ right: -48px; }

.vinart-winnice {text-align: center; }

/* =================== KAFELKI PRODUCENTÓW =================== */

.vinart-brand__inner {
  display: grid;
  place-items: center;
  aspect-ratio: 3/2;
  border-radius: 14px;
  box-shadow: var(--vinart-shadow);
  transition: transform .2s ease, box-shadow .2s ease, filter .3s ease;
  background: var(--tile-bg, #FFF1DE);
  filter: brightness(120%) saturate(40%);
}
.vinart-brand__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.1);
  filter: brightness(100%) saturate(100%);
}


.vinart-brand img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .9;
  transition: opacity .2s ease, filter .2s ease;
}
.vinart-brand__inner:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =================== PODSTRONY =================== */

/* Upewnij sie, ze glówna kolumna ma kontekst pozycjonowania */
body.page .site-main,
body.page .ct-container, 
body.page article { position: relative; }

/* Owijka w prawym górnym rogu */
.page-corner-illustration-wrap{
  position: absolute;
  top: -80px;
  right: 0;
  z-index: 0;
  pointer-events: none; /* ilustracja nie zaslania linków/tekstów */
  /* odstep od krawedzi (dopasuj do layoutu Blocksy) */
  margin: 1.2rem 1.2rem 0 0;
}

/* Sam obrazek – bez ucinania i bez rozciagania */
.page-corner-illustration{
  display: block;
  width: clamp(160px, 18vw, 420px);
  height: auto;
  object-fit: contain;
  object-position: top right;
  /* ewentualnie lekka przezroczystosc/drukarska faktura tla niech przebija */
  /* opacity: .98; */
}
.category-corner-illustration-wrap{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  margin: 1.2rem 1.2rem 0 0;
}

/* Sam obrazek */
.category-corner-illustration{
  display: block;
  width: clamp(160px, 24vw, 420px);
  height: auto;
  object-fit: contain;
  object-position: top right;
}

/* Dajemy kontekst pozycjonowania dla archiwów Woo */
.archive.post-type-archive-product .site-main,
.archive.post-type-archive-product .ct-container,
.archive.tax-product_cat .site-main,
.archive.tax-product_cat .ct-container {
  position: relative;
}

/* Wrapper /sklep */
.shop-corner-illustration-wrap{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  margin: 1.2rem 1.2rem 0 0;
}

.woo-listing-top {
margin-top: 70px;}


/* Obrazek /sklep */
.shop-corner-illustration{
  display: block;
  width: clamp(160px, 24vw, 420px);
  height: auto;
  object-fit: contain;
  object-position: top right;
}


.vinart-hero-thumb .ct-media-container{
    position: absolute;
    top: 5vh;
    right: -70vw;
    z-index: 1;
    pointer-events: none;
    margin: 1.2rem 1.2rem 0 0;
}

.page-id-170 .vinart-hero-thumb .ct-media-container{
top: -5vh;}


.vinart-hero-thumb .ct-media-container img{
display: block;
    width: clamp(160px, 24vw, 420px);
    height: auto;
max-height: 300px;
    object-fit: contain;
    object-position: top right;}

.tax-pwb-brand .page-corner-illustration-wrap{
top: 0;}





/* ===============================
   VINART — RZEDY POZIOME
   /winnice ? .winery-row
   /wina    ? .wine-row
   =============================== */

/* Sekcje */
.winery-row,
.wine-row{
  position: relative;
  margin-block: 2.2rem;
}

/* Tytul sekcji (z linkiem do archiwum) */
.winery-row__title,
.wine-row__title{
  margin: 0 0 .8rem;
  line-height: 1.2;
}
.winery-row__title a,
.wine-row__title a{
  text-decoration: none;
}
.winery-row__title a:hover,
.wine-row__title a:hover{
  opacity: .85;
}

/* Lista produktów jako pasek przewijany w bok */
.winery-row ul.products,
.wine-row   ul.products{
  display: flex;
  gap: 1.2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Kafle produktów — szerokosc minimalna, zeby ukladaly sie w rzad */
.winery-row ul.products li.product,
.wine-row   ul.products li.product{
  min-width: 240px;        /* desktop */
  flex: 0 0 auto;
  scroll-snap-align: start;
}

@media (max-width: 980px){
  .winery-row ul.products li.product,
  .wine-row   ul.products li.product{
    min-width: 200px;
  }
}
@media (max-width: 600px){
  .winery-row ul.products li.product,
  .wine-row   ul.products li.product{
    min-width: 75vw;        /* duzy kafel na mobile */
  }
}

/* Efekt Vinartu: lekkie przygaszenie + rozswietlenie na hover */
.winery-row li.product a img,
.wine-row   li.product a img{
  filter: saturate(.8) contrast(.95);
  transition: filter .25s ease, transform .25s ease;
}
.winery-row li.product a:hover img,
.wine-row   li.product a:hover img{
  filter: none;
  transform: translateY(-2px);
}

/* Tytul i cena troche mocniej */
.winery-row .woocommerce-loop-product__title,
.wine-row   .woocommerce-loop-product__title{
  font-weight: 600;
}
.winery-row .price,
.wine-row   .price{
  font-weight: 600;
}

/* Pasek przewijania – subtelny (opcjonalnie) */
.winery-row ul.products::-webkit-scrollbar,
.wine-row   ul.products::-webkit-scrollbar{
  height: 8px;
}
.winery-row ul.products::-webkit-scrollbar-thumb,
.wine-row   ul.products::-webkit-scrollbar-thumb{
  border-radius: 8px;
}

/* ===============================
   STRZALKI — POZYCJONOWANIE
   (wyglad przyjdzie z klas z HOME
   po podpieciu w JS)
   =============================== */

.winery-row .is-wine-arrow,
.wine-row   .is-wine-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;      /* pokazujemy tylko na desktopie */
  z-index: 2;
}

.winery-row .is-wine-arrow.prev,
.wine-row   .is-wine-arrow.prev{ left: -10px; }

.winery-row .is-wine-arrow.next,
.wine-row   .is-wine-arrow.next{ right: -10px; }

@media (min-width: 1024px){
  .winery-row .is-wine-arrow,
  .wine-row   .is-wine-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Stan brzegów (JS dodaje .is-disabled) */
.winery-row .is-wine-arrow.is-disabled,
.wine-row   .is-wine-arrow.is-disabled{
  opacity: .35;
  pointer-events: none;
}

/* ===============================
   (opcjonalnie) delikatne wygaszenie
   krawedzi listy, by zasugerowac scroll
   =============================== */
/*
.winery-row::before, .winery-row::after,
.wine-row::before,   .wine-row::after{
  content: "";
  position: absolute; top: 0; bottom: 0; width: 56px;
  pointer-events: none;
}
.winery-row::before, .wine-row::before{
  left: 0;  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}
.winery-row::after, .wine-row::after{
  right: 0; background: linear-gradient(to left,  #fff 0%, rgba(255,255,255,0) 100%);
}
*/

/* --- RZEDY /winnice i /wina: wymus „kafelki”, nie liste pelnej szerokosci --- */
.winery-row ul.products,
.wine-row   ul.products{
  display: flex !important;       /* nadpisz ewentualne grid/list z motywu */
  gap: 1.2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  grid-template-columns: none !important; /* na wszelki wypadek, jesli motyw uzywa grid */
}

/* Klucz: zabierz szerokosc 100% z motywu i nadaj staly „kafelek” */
.winery-row ul.products li.product,
.wine-row   ul.products li.product{
  /* NIE pelna szerokosc: */
  width: auto !important;          /* nadpisuje width:100%/calc(...) z motywu */
  max-width: none;                 /* zeby nie blokowal sie na 100% */
  margin: 0;                       /* wyrównaj odstepy, gap robi robote */

  /* Kafelek w rzedzie: */
  flex: 0 0 260px;                 /* baza kafla na desktopie */
  min-width: 260px;
  scroll-snap-align: start;
}

/* Jesli motyw nadaje layout „list view” kartom – sprowadz je do bloku w naszych rzedach */
.winery-row ul.products li.product .ct-woo-card,
.wine-row   ul.products li.product .ct-woo-card{
  display: block;                  /* zneutralizuj ewentualny uklad poziomy listy */
}

/* Responsywka – zwez kafelek na mniejszych szerokosciach */
@media (max-width: 1180px){
  .winery-row ul.products li.product,
  .wine-row   ul.products li.product{
    flex-basis: 230px;
    min-width: 230px;
  }
}
@media (max-width: 980px){
  .winery-row ul.products li.product,
  .wine-row   ul.products li.product{
    flex-basis: 200px;
    min-width: 200px;
  }
}
@media (max-width: 600px){
  .winery-row ul.products li.product,
  .wine-row   ul.products li.product{
    flex-basis: 80vw;              /* duzy kafel na mobile */
    min-width: 80vw;
  }
}

/* Estetyka obrazka i hover (opcjonalnie) */
.winery-row li.product a img,
.wine-row   li.product a img{
  width: 100%;                     /* obrazek wypelnia kafelek, ale juz nie ekran */
  height: auto;
  filter: saturate(.8) contrast(.95);
  transition: filter .25s ease, transform .25s ease;
}
.winery-row li.product a:hover img,
.wine-row   li.product a:hover img{
  filter: none;
  transform: translateY(-2px);
}

/* Strzalki – tylko pozycjonowanie */
.winery-row,
.wine-row{ position: relative; }

.winery-row .is-wine-arrow,
.wine-row   .is-wine-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  display: none; z-index: 2;
}
.winery-row .is-wine-arrow.prev,
.wine-row   .is-wine-arrow.prev{ left: -10px; }
.winery-row .is-wine-arrow.next,
.wine-row   .is-wine-arrow.next{ right: -10px; }

@media (min-width: 1024px){
  .winery-row .is-wine-arrow,
  .wine-row   .is-wine-arrow{ display: flex; align-items: center; justify-content: center; }
}

.is-wine-arrow.is-disabled{ opacity: .35; pointer-events: none; }


/* Tylko strony marek (/winnice): wrapper ilustracji ma byc relative */
.tax-pwb-brand .page-corner-illustration-wrap,
.tax-product_brand .page-corner-illustration-wrap,
.tax-yith_product_brand .page-corner-illustration-wrap {
  position: relative;
  z-index: 1;
margin: 50px auto;
 width: fit-content;       /* wrapper kurczy sie do zawartosci */
  margin-inline: auto;
align-self: center;
}

.tax-pwb-brand .page-corner-illustration-wrap img,
.tax-product_brand .page-corner-illustration-wrap img,
.tax-yith_product_brand .page-corner-illustration-wrap img{
max-height: 140px;
}


.wp-block-details summary, .wp-block-details strong {
    font-family: 'Antonio', sans-serif;
    font-weight: 100;
    letter-spacing: 0.02em;
color:#7A0E2E;}


/* =================== MEDIA QUERIES =================== */

@media (max-width: 1200px){
.hero-vinart .wp-block-cover__inner-container {
  width: 100%;
}

.hero-vinart .hero-text {
  width: 100%;
  }
}

@media (max-width: 980px) {

  .vinart-artwine__grid { grid-template-columns: 1fr; }
  .vinart-artwine__text { text-align: center; }
  .vinart-artwine__img { justify-self: center; }
  .vinart-artwine__img img { height: 280px; max-height: 280px;}
.vinart-artwine__text h2 {text-align: center; }
.vinart-winnice {text-align: center; }
[data-products] .product {align-items: center;}
.page-corner-illustration-wrap{
    margin: .8rem .8rem 0 0;
  }
  .page-corner-illustration{
    width: clamp(140px, 35vw, 260px);
  }
  .shop-corner-illustration-wrap{ margin: .8rem .8rem 0 0; }
  .shop-corner-illustration{ width: clamp(140px, 35vw, 260px); }
}

@media (max-width: 900px) {
  .hero-vinart { justify-content: center; text-align: center; }
  .hero-vinart .hero-text { margin: 0; }
  .hero-buttons { align-items: center; }
  .hero-vinart.wp-block-cover { background-size: 85%; }
  .home h2 { margin: 1.8rem auto 1rem; }
.hero-vinart.wp-block-cover {background-size: 100%; justify-content: end}

}

@media (max-width: 640px) {
  .vinart-brands-arrow { display: none; }
    .hero-vinart.wp-block-cover{ justify-content: center;
width: 100dvw;
max-width:100dvw!important;
  min-height: 90svh !important;
 }
.wp-block-cover .wp-block-cover__image-background {
width: 100%;
position: relative;
}
.hero-vinart.wp-block-cover img{
width: 100%;
}
  
}

@media (max-width: 600px) {
body.woocommerce.archive:is(.post-type-archive-product, .tax-product_cat) #main-container .site-main{
margin-top: 10px!important;}
  .woocommerce ul.products li.product a img { height: auto; }
  .woocommerce ul.products li.product .ct-image-container { min-height: 240px; }
.page-corner-illustration-wrap {    top: -80px;}
.page-corner-illustration{ width: 46vw; }
.shop-corner-illustration{ width: 46vw; }
.page-corner-illustration-wrap,
  .category-corner-illustration-wrap,
  .shop-corner-illustration-wrap{
    text-align: center;  
position: static;
  }
  .page-corner-illustration,
  .category-corner-illustration,
  .shop-corner-illustration{
    width: min(80vw); /* szerokosc pod mobile */
    height: auto;
    object-position: top center; /* wyrównanie do centrum */
    display: inline-block;
  }
.pierwszy-akapit{margin-right: auto !important; padding-right:0!important;}
.vinart-hero-thumb{
display: flex;
  justify-content: center;}
.vinart-hero-thumb .ct-media-container {
position: static;
right:0;
top:0;
width: auto;
}
.page-corner-illustration-wrap {
        top: 0px;
}
.tax-pwb-brand .page-corner-illustration-wrap img, .tax-product_brand .page-corner-illustration-wrap img, .tax-yith_product_brand .page-corner-illustration-wrap img {
width:75dvw;
height: auto;
max-height: 120px;
}
.vinart-hero-thumb .ct-media-container img{
width: 90dvw;}
.entry-header .page-title{
text-align: center;}
.woo-listing-top {
margin-top: 0px;}


}



.wc-block-components-checkbox__input:checked, .wc-block-components-radio-control__input:checked {
border-color: #7a0e2e !important;
}

.wc-block-components-checkbox__input:checked:before, .wc-block-components-radio-control__input:checked:before{
background: #7a0e2e !important;
}

.wc-block-components-checkbox__mark{
fill: #7a0e2e !important;
}
.product-data a{
color: #d7c3a9}

