/* Single product: make content container 1450px wide */
@media(min-width: 1449px){
	body.single-product .site-main,
body.single-product.woocommerce .site-main{
  width: 100% !important;
  max-width: 1450px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  box-sizing: border-box !important;
}
}
/* Tablet: reduce the big side margins/padding */
@media (max-width: 1200px){
  body.single-product main#main.site-main{
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;   /* <- was too big */
    padding-right: 16px !important;  /* <- was too big */
  }
}

/* Even tighter on small tablets/large phones */
@media (max-width: 768px){
  body.single-product main#main.site-main{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


/*-----------------------------------------*/
/* Breadcrumbs on SINGLE PRODUCT pages only */
body.single-product .hm-breadcrumbs{
  display: block;
  width: 100%;
  padding: 10px 20px;       
  box-sizing: border-box;
}

/* Inner alignment to 1450px */
body.single-product .hm-breadcrumbs{
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}


body.single-product .hm-breadcrumbs-sep {
    color: #000;
}
body.single-product .hm-breadcrumbs span[aria-current="page"] {
    color: #000;
}
/*----------------------------------------------*/
/* SINGLE PRODUCT – LIGHT THEME */

:root{
  --hm-accent: #2190c2;
  --hm-border: rgba(0,0,0,.12);
  --hm-bg-soft: rgba(0,0,0,.03);
  --hm-bg-card: #ffffff;
  --hm-text: #111;
  --hm-muted: rgba(0,0,0,.70);
}

/* Main product layout spacing */
body.single-product div.product{
  margin-top: 10px;
}

/* Lighten gallery edges */
body.single-product .woocommerce-product-gallery{
  border-radius: 0px;
}

/* Summary card */
body.single-product div.product .summary{
  border-radius: 0px;
}

/* Title + price */
body.single-product .product_title{
  color: var(--hm-text);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

body.single-product div.product p.price,
body.single-product div.product span.price{
  color: var(--hm-accent) !important;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
}

/* Single product: remove strike-through and underline on prices */
.single-product div.product p.price ins{
  text-decoration: none !important;
}

/* Single product stock text color */
body.woocommerce:not(.woocommerce-uses-block-theme) div.product p.stock{
  color: #c22121 !important;
}




/* Short description typography */
body.single-product .woocommerce-product-details__short-description{
  color: var(--hm-text);
}
body.single-product .woocommerce-product-details__short-description p{
  color: var(--hm-muted);
  line-height: 1.6;
}
body.single-product .woocommerce-product-details__short-description h4,
body.single-product .woocommerce-product-details__short-description strong{
  color: var(--hm-text);
}
/* Bold "Gamintojas" line in short description */
body.single-product .woocommerce-product-details__short-description h5{
  font-weight: 700;
}



/* Keep the overall cart form normal (important for variable products) */
body.single-product form.cart{
  display: block;
  margin-top: 16px;
}

/* Flex row ONLY for the actual add-to-cart controls */
body.single-product form.cart,
body.single-product form.cart .woocommerce-variation-add-to-cart{
  /* nothing here – form stays block */
}

body.single-product form.cart > .quantity,
body.single-product form.cart > .single_add_to_cart_button,
body.single-product form.cart > .tinv-wraper{
  /* simple products: these are direct children; we’ll group them below */
}

/* Simple products: make only the immediate controls behave like a row */
body.single-product form.cart:not(.variations_form){
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Variable products: make only the variations button area a row */
body.single-product form.cart.variations_form .woocommerce-variation-add-to-cart{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

/* Optional: put Wishlist FIRST in the row (works for both simple + variable) */
body.single-product .tinv-wraper{ order: 1; }
body.single-product .quantity{ order: 2; }
body.single-product .single_add_to_cart_button{ order: 3; }

/* TInvWL: remove the "clear" blocks that can break flex alignment */
body.single-product .tinv-wishlist-clear{ display: none !important; }

/* Qty */
body.single-product .quantity .qty{
  height: 44px;
  width: 86px;
  border-radius: 0px;
  border: 1px solid var(--hm-border);
  background: #fff;
  color: var(--hm-text);
  padding: 0 10px;
  box-shadow: none;
}
body.single-product .quantity .qty:focus{
  outline: none;
  border-color: rgba(33,144,194,.7);
  box-shadow: 0 0 0 3px rgba(33,144,194,.18);
}

/* Add to cart button */
body.single-product .single_add_to_cart_button.button.alt{
  height: 44px;
  padding: 0 16px;
  border-radius: 0px;
  background: var(--hm-accent) !important;
  border: 1px solid var(--hm-accent) !important;
  color: #fff !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
body.single-product .single_add_to_cart_button.button.alt:hover,
body.single-product .single_add_to_cart_button.button.alt:focus{
  filter: brightness(.92);
  color: #fff !important;
  outline: none;
}

/* Wishlist button (TInvWL) */
body.single-product .tinvwl_add_to_wishlist_button{
  height: 44px;
  padding: 0 14px;
  margin-bottom: 0px !important;
  border-radius: 0px;
  border: 1px solid var(--hm-border);
  background: var(--hm-bg-soft);
  color: var(--hm-text) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  text-decoration: none !important;
}
body.single-product .tinvwl_add_to_wishlist_button:hover{
  border-color: rgba(33,144,194,.45);
  background: rgba(33,144,194,.10);
}

/*---------------------------*/
/* SKU / categories meta */
body.single-product .product_meta{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hm-border);
  color: var(--hm-muted);
}
body.single-product .product_meta a{
  color: var(--hm-accent);
  text-decoration: none;
}
body.single-product .product_meta a:hover{
  text-decoration: underline;
}

/* Single product: meta items on separate lines */
body.single-product .product_meta > span{
  display: block !important;
  width: 100%;
  margin: 8px 0 0;
}

/* optional: first one no top margin */
body.single-product .product_meta > span:first-child{
  margin-top: 0;
}

/*----------------------------*/


/*smaller gallery thumbnails */
body.single-product .woocommerce-product-gallery .flex-control-thumbs{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;        
  margin-top: 10px !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li{
  width: auto !important;     
  margin: 0 !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs img{
  width: 128px !important;     
  height: 128px !important;
  object-fit: cover !important; 
  border-radius: 0 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  opacity: .75;
  transition: opacity .15s ease, border-color .15s ease;
}

/* active thumb */
body.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active{
  opacity: 1;
  border-color: rgba(33,144,194,.55) !important;
}


/******************/
/*produkto paveikslelio dydis*/
/* Gallery height + center image (all devices) */
body.single-product{ --hm-gallery-h: 520px; } /* you can change later */

body.single-product .woocommerce-product-gallery .flex-viewport{
  height: var(--hm-gallery-h) !important;
  overflow: hidden;
}

/* Make every slide fill the viewport and center its content */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image{
  height: var(--hm-gallery-h) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Fit image inside WITHOUT breaking zoom */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a,
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img.wp-post-image{
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: var(--hm-gallery-h) !important;
  display: block;
  margin: 0 auto;
}

/* Keep zoom overlay unrestricted */
body.single-product .woocommerce-product-gallery img.zoomImg{
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	z-index: 1;
}
/*------------------------------*/
/*image slide arrows*/

  body.single-product{ --hm-gallery-h: 520px; }

  body.single-product .woocommerce-product-gallery{ position: relative; }

  /* position arrows centered over the main image area */
  body.single-product .woocommerce-product-gallery .flex-direction-nav{
    list-style: none;
    margin: 0;
    padding: 0;

    position: absolute;
    inset-inline: 0;
    top: calc(var(--hm-gallery-h) / 2);
    transform: translateY(-50%);
    z-index: 20;

    pointer-events: none; /* only buttons clickable */
  }

  body.single-product .woocommerce-product-gallery .flex-direction-nav li{
    position: absolute;
    top: 0;
  }
  body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev{ left: 12px; }
  body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next{ right: 12px; }

  /* clickable square area, no background */
  body.single-product .woocommerce-product-gallery .flex-direction-nav a{
    pointer-events: auto;
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    background: transparent;
    border: 0;
    box-shadow: none;

    overflow: hidden;
    text-indent: -9999px; /* hide "Previous/Next" text */
    position: relative;
  }

  /* arrow glyph */
  body.single-product .woocommerce-product-gallery .flex-direction-nav a::before{
    content: "‹";
    text-indent: 0;
    font-size: 30px;
    line-height: 1;
    color: #111;
  }
  body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-next::before{
    content: "›";
  }

  /* hover: arrow turns blue */
  body.single-product .woocommerce-product-gallery .flex-direction-nav a:hover::before{
    color: #2190C2;
  }

  /* focus ring for keyboard users */
  body.single-product .woocommerce-product-gallery .flex-direction-nav a:focus-visible{
    outline: 2px solid rgba(33,144,194,.55);
    outline-offset: 2px;
  }

.woocommerce .woocommerce-product-gallery__image img {
  height: auto !important;
  object-fit: contain !important;
}

/*-----------------------------------*/
/*aprasymas*/
/* =========================================================
   SINGLE PRODUCT – DESCRIPTION TAB (Aprašymas) – YOUR STYLE
   ========================================================= */

body.single-product .woocommerce-Tabs-panel--description#tab-description{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 0px;
  padding: 24px 24px 28px;
  margin-top: 18px;
}

/* Headings */
body.single-product .woocommerce-Tabs-panel--description#tab-description > h2{
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid #2190C2;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}

body.single-product .woocommerce-Tabs-panel--description#tab-description h3{
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

body.single-product .woocommerce-Tabs-panel--description#tab-description h4{
  margin: 18px 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

/* Paragraphs */
body.single-product .woocommerce-Tabs-panel--description#tab-description p{
  margin: 0 0 14px;
  color: rgba(0,0,0,.78);
  line-height: 1.7;
  font-size: 16px;
}

/* Strong */
body.single-product .woocommerce-Tabs-panel--description#tab-description strong{
  color: #111;
  font-weight: 600;
}

/* Links */
body.single-product .woocommerce-Tabs-panel--description#tab-description a{
  color: #2190C2;
  text-decoration: none;
  border-bottom: 1px solid rgba(33,144,194,.35);
}
body.single-product .woocommerce-Tabs-panel--description#tab-description a:hover{
  border-bottom-color: rgba(33,144,194,.75);
}

/* Images: centered, clean */
body.single-product .woocommerce-Tabs-panel--description#tab-description img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 14px auto 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f7f7f7;
}

/* If WP adds alignnone, keep it centered */
body.single-product .woocommerce-Tabs-panel--description#tab-description img.alignnone{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Lists */
body.single-product .woocommerce-Tabs-panel--description#tab-description ul,
body.single-product .woocommerce-Tabs-panel--description#tab-description ol{
  margin: 10px 0 16px 18px;
  padding: 0;
  color: rgba(0,0,0,.78);
  line-height: 1.7;
  font-size: 16px;
}

body.single-product .woocommerce-Tabs-panel--description#tab-description li{
  margin: 8px 0;
}

/* Nice bullet style */
body.single-product .woocommerce-Tabs-panel--description#tab-description ul{
  list-style: none;
}
body.single-product .woocommerce-Tabs-panel--description#tab-description ul > li{
  position: relative;
  padding-left: 16px;
}
body.single-product .woocommerce-Tabs-panel--description#tab-description ul > li:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(33,144,194,.85);
  transform: translateY(-50%);
}

/* Horizontal rule */
body.single-product .woocommerce-Tabs-panel--description#tab-description hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0,.10);
  margin: 18px 0;
}

/* Blockquote */
body.single-product .woocommerce-Tabs-panel--description#tab-description blockquote{
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 3px solid #2190C2;
  background: rgba(33,144,194,.08);
  color: rgba(0,0,0,.78);
  border-radius: 12px;
}

/* Tables (if any appear in description) */
body.single-product .woocommerce-Tabs-panel--description#tab-description table{
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 15px;
}
body.single-product .woocommerce-Tabs-panel--description#tab-description th,
body.single-product .woocommerce-Tabs-panel--description#tab-description td{
  border: 1px solid rgba(0,0,0,.10);
  padding: 10px 12px;
  text-align: left;
}
body.single-product .woocommerce-Tabs-panel--description#tab-description th{
  background: rgba(33,144,194,.08);
  color: #111;
  font-weight: 600;
}

/* Optional: highlight the very first paragraph as an intro */
body.single-product .woocommerce-Tabs-panel--description#tab-description > p:first-of-type{
  padding: 14px 16px;
  border: 1px solid rgba(33,144,194,.18);
  background: rgba(33,144,194,.06);
  border-radius: 12px;
  color: rgba(0,0,0,.82);
}

/* Responsive embeds */
body.single-product .woocommerce-Tabs-panel--description#tab-description iframe,
body.single-product .woocommerce-Tabs-panel--description#tab-description video{
  display: block;
  width: min(860px, 100%);
  margin: 16px auto 50px;
  aspect-ratio: 16 / 9;
  height: auto !important;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #000;
}
body.single-product #tab-description .wp-video{
  padding: 18px 0 !important;
  margin: 0 auto !important;
}

/* Mobile padding */
@media (max-width: 767px){
  body.single-product .woocommerce-Tabs-panel--description#tab-description{
    padding: 18px 16px 20px;
    border-radius: 14px;
  }
  body.single-product .woocommerce-Tabs-panel--description#tab-description > h2{
    font-size: 22px;
  }
  body.single-product .woocommerce-Tabs-panel--description#tab-description h3{
    font-size: 18px;
  }
}
/* =========================================================
   SINGLE PRODUCT – TABS: ADDITIONAL INFO + REVIEWS
   ========================================================= */

/* --- Shared panel card style (applies to these two tabs) --- */
body.single-product #tab-additional_information,
body.single-product #tab-reviews{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 24px 24px 28px;
  margin-top: 18px;
}

/* Panel headings */
body.single-product #tab-additional_information > h2,
body.single-product #tab-reviews .woocommerce-Reviews-title{
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid #2190C2;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}

/* =========================
   Additional information table
   ========================= */
body.single-product #tab-additional_information table.shop_attributes{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  margin: 0;
  font-size: 15px;
}

body.single-product #tab-additional_information table.shop_attributes tr + tr th,
body.single-product #tab-additional_information table.shop_attributes tr + tr td{
  border-top: 1px solid rgba(0,0,0,.08);
}

body.single-product #tab-additional_information table.shop_attributes th,
body.single-product #tab-additional_information table.shop_attributes td{
  padding: 12px 14px;
  vertical-align: top;
}

body.single-product #tab-additional_information table.shop_attributes th{
  width: 34%;
  background: rgba(33,144,194,.08);
  color: #111;
  font-weight: 600;
}

body.single-product #tab-additional_information table.shop_attributes td{
  background: #fff;
  color: rgba(0,0,0,.78);
}

body.single-product #tab-additional_information table.shop_attributes td p{
  margin: 0;
  line-height: 1.7;
}

/* Mobile: stack label/value */
@media (max-width: 767px){
  body.single-product #tab-additional_information table.shop_attributes,
  body.single-product #tab-additional_information table.shop_attributes tbody,
  body.single-product #tab-additional_information table.shop_attributes tr,
  body.single-product #tab-additional_information table.shop_attributes th,
  body.single-product #tab-additional_information table.shop_attributes td{
    display: block;
    width: 100%;
  }

  body.single-product #tab-additional_information table.shop_attributes tr{
    border-top: 1px solid rgba(0,0,0,.08);
  }

  body.single-product #tab-additional_information table.shop_attributes tr:first-child{
    border-top: 0;
  }

  body.single-product #tab-additional_information table.shop_attributes th{
    background: rgba(33,144,194,.08);
    border: 0;
    padding: 12px 14px 8px;
  }

  body.single-product #tab-additional_information table.shop_attributes td{
    padding: 0 14px 14px;
    border: 0;
  }
}

/* =========================
   Reviews tab
   ========================= */

/* No reviews message */
body.single-product #tab-reviews .woocommerce-noreviews{
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(33,144,194,.18);
  background: rgba(33,144,194,.06);
  border-radius: 12px;
  color: rgba(0,0,0,.78);
}

/* Form labels */
body.single-product #tab-reviews #respond label{
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  color: #111;
}

/* Inputs / textarea */
body.single-product #tab-reviews #respond input[type="text"],
body.single-product #tab-reviews #respond input[type="email"],
body.single-product #tab-reviews #respond input[type="url"],
body.single-product #tab-reviews #respond textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
}

body.single-product #tab-reviews #respond textarea{
  min-height: 160px;
  resize: vertical;
}

/* Focus */
body.single-product #tab-reviews #respond input:focus,
body.single-product #tab-reviews #respond textarea:focus{
  border-color: rgba(33,144,194,.55);
  box-shadow: 0 0 0 3px rgba(33,144,194,.14);
}

/* Submit button */
body.single-product #tab-reviews #respond .form-submit .submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 18px;

  border-radius: 12px;
  border: 1px solid rgba(33,144,194,.55);
  background: rgba(33,144,194,.18);
  color: #111; /* if you prefer white text -> #fff */
  font-weight: 600;
  cursor: pointer;
}

body.single-product #tab-reviews #respond .form-submit .submit:hover{
  background: rgba(33,144,194,.26);
  border-color: rgba(33,144,194,.75);
}

/* Stars block: keep it clean (optional) */
body.single-product #tab-reviews #respond .comment-form-rating{
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: rgba(0,0,0,.02);
}

/* If you ever want to hide stars entirely, uncomment:
body.single-product #tab-reviews #respond .comment-form-rating{ display:none; }
*/


/* ===============================
   SINGLE PRODUCT: RELATED GRID
================================ */
/* Related products panel (like Description tab style) */
body.single-product section.related.products{
  background: #fff;
  color: #111;
  padding: 24px 24px 28px;
  margin-top: 18px;
	
	display: block;
  width: 100%;
  clear: both;
  position: relative; 
}


/* Title like your "Aprašymas" heading */
body.single-product section.related.products > h2{
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid #2190C2;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}

/* grid wrapper */
body.single-product .related.products ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
}

/* remove Woo clearfix pseudo elems */
body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after{
  content: none !important;
  display: none !important;
}

/* reset old float/width rules on items */
body.single-product .related.products ul.products li.product{
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  clear: none !important;
}

/* make images behave nicely inside grid */
body.single-product .related.products ul.products li.product a img{
  display: block;
  width: 100%;
  height: auto;
}

/* 2 columns on tablets */
@media (max-width: 1024px){
  body.single-product .related.products ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 column on phones */
@media (max-width: 460px){
  body.single-product .related.products ul.products{
    grid-template-columns: 1fr;
  }
}


/*-----------------------------*/
/* Share bar under .product_meta */
body.single-product .hm-share-bar{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.10);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

body.single-product .hm-share-bar__label{
  font-weight: 500;
  color: #111;
  margin-right: 6px;
}

body.single-product .hm-share-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  color: #111;

  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  background: #fff;
}

body.single-product .hm-share-btn svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body.single-product .hm-share-btn:hover{
  color: #2190C2;
  border-color: rgba(33,144,194,.45);
}
/*---------------------*/
/*teirautis button*/
/* Put wishlist + inquiry button on one row */
body.single-product .summary .tinvwl-woocommerce_single_product_summary,
body.single-product .summary .hm-inquiry-btn{
  display: inline-flex;
  vertical-align: middle;
}


body.single-product .summary .tinvwl-woocommerce_single_product_summary{
  margin: 0 !important;
}
body.single-product .summary .hm-inquiry-btn{
  margin: 0 !important;
}

/* Make the inquiry button blue like your theme buttons */
body.single-product .hm-inquiry-btn .elementor-button{
  background: #2190C2 !important;
  border: 1px solid #2190C2 !important;;
  color: #fff !important;;
  border-radius: 0px;
  padding: 10px 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: none;
  width: auto;           /* prevents full-width */
  min-height: 43px;      /* similar height to wishlist */
}

/* Hover */
body.single-product .hm-inquiry-btn .elementor-button:hover{
  background-color: #171717 !important;
  border: 1px solid #171717 !important;;
  color: #fff !important;;
}

/* Optional: on very small screens stack nicely */
@media (max-width: 480px){
  body.single-product .summary .tinvwl-woocommerce_single_product_summary,
  body.single-product .summary .hm-inquiry-btn{
    width: 100%;
  }
  body.single-product .summary .tinvwl-woocommerce_single_product_summary + .hm-inquiry-btn{
    margin-left: 0;
    margin-top: 10px;
  }
  body.single-product .hm-inquiry-btn .elementor-button{
    width: 100%;
  }
}

/*----------akcija---------------------*/
/* Make the product wrapper the positioning context */
body.single-product div.product{
  position: relative;
}

/* SINGLE PRODUCT: Sale badge (Akcija!) */
body.single-product div.product > span.onsale{
  position: absolute !important;
  top: 12px;
  left: 12px;
  z-index: 1 !important;

  margin: 0 !important;
  border-radius: 0 !important;
  background-color: rgba(33, 144, 194, .6) !important;

  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;

  min-height: 60px;
  padding: 0 6px 8px !important;
  line-height: 1 !important;
}

/*-------------*/
body.single-product{ --hm-gallery-h: 520px; }

/* Force viewport height (no jumping) */
body.single-product .woocommerce-product-gallery .flex-viewport{
  height: var(--hm-gallery-h) !important;
  overflow: hidden !important;
}

/* Make slide a fixed "stage" */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image{
  height: var(--hm-gallery-h) !important;
  position: relative !important;
}

/* Center the real image inside stage */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a{
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* IMPORTANT: contain portrait/landscape without stretching */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a > img:not(.zoomImg){
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Don't let zoom overlay affect layout */
body.single-product .woocommerce-product-gallery img.zoomImg{
  max-width: none !important;
  max-height: none !important;
  width: auto !important;
  height: auto !important;
  pointer-events: none;
}

/*------------------------------------*/
@media print {

  /* Hide global layout + widgets */
  header, footer,
  .elementor-location-header, .elementor-location-footer,
  .tpmm,
  #gt_float_wrapper, .gt_float_switcher,
  .hm-share-bar,
  .woocommerce-breadcrumb,
  .woocommerce-notices-wrapper,
  .hm-shop-bottom-template,

  /* Hide related/upsells/cross-sells + product grids */
  .related, .up-sells, .cross-sells,
  .products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce-product-related,
  .woocommerce-product-upsell,

  /* Hide admin/debug boxes (like WP Armour) */
  .wp-armor, .wp-armour, .wp_armour, .wpa,
  .elementor-message, .notice, .updated, .error {
    display: none !important;
  }

  /* Hide gallery UI (arrows/thumbs/zoom) */
  .woocommerce-product-gallery__trigger,
  .flex-direction-nav,
  .flex-control-nav,
  .woocommerce-product-gallery .flex-control-thumbs,
  .woocommerce-product-gallery .flex-control-paging {
    display: none !important;
  }

  /* Clean background */
  html, body { background: #fff !important; }

  /* Force single-column print layout */
  .single-product div.product,
  .single-product div.product .woocommerce-product-gallery,
  .single-product div.product .summary {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Image sizing */
  .single-product .woocommerce-product-gallery img {
    max-width: 420px !important; /* adjust */
    width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Typography */
  .single-product .product_title {
    font-size: 22px !important;
    margin: 0 0 10px !important;
  }
  .single-product .summary,
  .single-product .woocommerce-Tabs-panel {
    font-size: 12pt !important;
    line-height: 1.35 !important;
  }

  /* Avoid awkward page breaks */
  .single-product .summary,
  .single-product .woocommerce-Tabs-panel,
  .single-product table,
  .single-product ul,
  .single-product ol {
    page-break-inside: avoid;
  }

  /* Optional */
  .product_meta { display: none !important; }
}
/*zvaigzdutes*/
.woocommerce .star-rating span::before{
	color:#2190c2;
}


/*profilio nuotrauka atsiliepimuose*/
/* Hide avatar image in WooCommerce product reviews */
.woocommerce #reviews .commentlist li .avatar,
.woocommerce-page #reviews .commentlist li .avatar {
  display: none !important;
}
/* Single product reviews: remove left indent/gap */
.woocommerce div.product #reviews #comments ol.commentlist,
.woocommerce-page div.product #reviews #comments ol.commentlist {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
/* Optional: remove the left padding/margin reserved for the avatar */
.woocommerce #reviews .commentlist li .comment-text,
.woocommerce-page #reviews .commentlist li .comment-text {
  margin-left: 0 !important;
}