/**
Theme Name: Colostrum
Theme URI: https://
Author: Tular Techna
Description: Autorinė "Tular Techna" WordPress tema.
Version: 1.0
Text Domain: colostrum
**/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0
}
a {
    text-decoration: none;
}
ul, li {
    margin:0;
    padding:0;
    list-style-type:none;
}

/* ======= PAŠALINTI RODYKLES CHROME, SAFARI, EDGE ======= */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ======= PAŠALINTI RODYKLES FIREFOX ======= */
input[type=number] {
    -moz-appearance: textfield;
}

/* ======= 🖼️ DISPLAY ======= */
.b {
    display: block}
.ib {
    display: inline-block;
}
.i {
    display: inline;
}
.f {
    display: flex;
}
.g {
    display: grid;
}
.h {
    display: none;
}

/* ======= 📏 WIDTH & HEIGHT ======= */
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.max-w {
    max-width: 1400px;
    margin: 0 auto;
} 

/* ======= CENTRUOTI TURINĮ ======= */

/* ======= 📍 POSITIONING ======= */
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
.fix {
    position: fixed;
}
.sticky {
    position: sticky;
}

/* ======= 🏗️ FLEXBOX ======= */
.f-c {
    display: flex;
    flex-direction: column;
}
.f-r {
    display: flex;
    flex-direction: row;
}
.jc-c {
    justify-content: center;
}
.jc-sb {
    justify-content: space-between;
}
.ai-c {
    align-items: center;
}
.gp {
    gap:10px}
.gp2 {
    gap:20px}

/* ======= 🖋️ TEXT ALIGNMENT & STYLE ======= */
.c {
    text-align:center}
.l {
    text-align:left}
.r {
    text-align:right}
.bold {
    font-weight: bold;
}
.upper {
    text-transform: uppercase;
}

/* ======= 📦 MARGIN & PADDING ======= */
.m-0 {
    margin: 0;
}
.m-auto {
    margin: auto;
}
.p-0 {
    padding: 0;
}
.p-5 {
    padding: 5px;
}
.p-10 {
    padding: 10px;
}
.p-20 {
    padding: 20px;
}

/* ======= 🎨 BACKGROUND & BORDERS & COLORS ======= */
.bw {
    background-color: #fff;
}
.bb {
    background-color: #000;
}
.border {
    border: 1px solid #ddd;
}
.rad {
    border-radius: 5px;
}
.fcw {
    color:#fff}
.fcb {
    color:#1e1e1e}
.fcc {
    color: #ccc}
.blc {
    color:black;
}
style {
    display: none;
}

.logo, .logo a {
    color: #000;
    font-size:50px;
    text-align: left;
    margin-right: 35px;
    width: 20%;
}
#navigacija div ul {
    display: flex;
    flex-direction: row;
}
nav {
    margin: 0px 0;
}.logo a span {
    color: #c15a00;
}
nav ul li a {
    display: block;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #000;
}
nav ul li a:hover {
    color: #00498a;
}
.add-to-wishlist.added .fa {
    font-weight: 800;
}
.comp.ajax-compare-button.added {
    color: green;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 46%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #dbdbdb;
    border-bottom: 2px solid #dbdbdb;
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: none;
    /* ======= NELEIDŽIA SPAUSTI ANT RODYKLĖS – SPAUDŽIA VISĄ A ======= */
}

.menu-item-has-children.open > a .submenu-toggle {
    top: 59%;
    transform: translateY(-50%) rotate(225deg);
}

.sub-menu {
    display: none;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.menu-item-has-children.open > .sub-menu {
    display: block;
    position: absolute;
    border-top: 1px solid #ffffff;
    top: 51px;
    background: rgb(152 196 66 / 90%);
    z-index: 2;
}

@media (min-width: 768px) {
    #bgs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 63%);
    z-index: 14;
}
.menu-btn {
    display: none;
}
.fonas {
    background:#e4e4e4;
}
}

.searche {
    max-width: 500px;
    width: 100%;
    padding: 30px 0;
    margin: 0px;
}

.searche form {
    display: flex;
    width: 100%;
    max-width: 800px;
    /* ======= DIDESNIS NEI ANKSČIAU ======= */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.searche input[type="search"] {
    width: 100%;
    flex: 1;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    outline: none;
}

.searche button {
    padding: 0 18px;
    background-color: #5e6583;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.searche button:hover {
    background-color: #3f425d;
}

.searche i.fa-search {
    font-size: 18px;
}
.bgsas {
    background: #f2f2f2;
}
.user-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 200px;
    position: absolute;
    right: 10px;
    top: 37%;
    color:#000;
    text-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.user-desktop div {
    margin: 0px 5px}
.user-desktop div i.fa {
    font-size:23px}
.menu-bar {
    display:none;
} 
.term-description {
    font-size: 18px;
    line-height: 1.5;
    padding: 10px;
}

/* ======= BLOGAS ======= */

main h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e1e1e;
    font-weight: 600;
}

/* ======= RESPONSIVE GRID ======= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* ======= CARD STYLING ======= */
article.artic {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artic:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.artic a {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.artic a img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ======= TITLE ======= */
.artic a h2 {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
}

.artic:hover h2 {
    color: #9b6c4a;
    /* ======= VELVET AKCENTAS ======= */
}

/* ======= EXCERPT ======= */
.the_excerpt {
    padding: 0 1.2rem 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.newsas img.attachment-colostrum-article-thumb.size-colostrum-article-thumb.wp-post-image {
    float: right;
    margin: 0 25px 25px 20px;
    max-width: 100%;
    height: auto;
}

/* ======= PREKE ======= */
nav.woocommerce-breadcrumb {
    background: #f2f2f2;
    color: #757575 !important;
    min-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: flex-start;
    padding-left: 24px !important;
}
.widget.woocommerce.widget_products {
    background: #f8f8f8;
    padding: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

.widget.woocommerce .widget-title {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
background: #e4e4e4;
    color: #000000;
}

.product_list_widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.product_list_widget li {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 15px;
    text-align: center;
}
.product_list_widget li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product_list_widget li img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.product_list_widget li .product-title {
    display: block;
    font-size: 15px;
    margin: 10px 8px 5px;
    font-weight: 500;
    color: #222;
}
.product_list_widget li .woocommerce-Price-amount {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #5e6583;
    margin-top: 5px;
}
.woocommerce ul.product_list_widget li img {
    width: 70px;
}
.cbuy {
    width: 80%;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #7fb239;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.cbuy:hover {
    background-color: #3f425d;
    transform: translateY(-2px);
    cursor: pointer;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    color: #757575;
}
span.product-brand {
    color: #54595F;
}
span.product-brand a {
    color: #1e1e1e;
}
.rr2 {
    display: flex;
    position: relative;
}
.gnd {
    flex: 1;
    width:65%}
.product-gallery {
    width: 100%;
    padding-right: 45px;
    display: flex;
    gap: 10px;
}
.woocommerce div.product div.summary {
    margin-bottom: 2em;
    width:35%;
    flex: 1;
}
.swiper-container {
    overflow: hidden;
}
.thumbnail {
    outline:0;
    cursor: pointer;
    padding: 5px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
.thumbnail:hover {
    outline:0;
    -webkit-transform: scale3d(0.86, 0.86, 0.86);
    transform: scale3d(0.86, 0.86, 0.86);
    border: 1px solid #bbb;
    height: 100% !important;
    margin-right: -1px;
    margin-left: -1px;
}
.swiper-backface-hidden .swiper-slide {
    max-height: 131px;
}
.swiper-backface-hidden .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 120px;
    height: auto;
    -webkit-transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
    transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
}
.swiper-slide-active {
    border: 1px solid #bbb;
    height: 100% !important;
}
.big-image {
    flex-grow: 1;
    position: relative}
.big-image img {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transform: translateX(0);
    opacity: 1;
}
.big-image img.fade-out {
    transform: translateX(-20px);
    opacity: 0;
}
.big-image img.fade-in {
    transform: translateX(0);
    opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.comic {
    margin-top: 30px;
    max-width: 94%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    background-color: #F3F4FC;
    margin-bottom: 15px;
    border-radius: 3px;
    border: 1px solid #DEE3F2;
    font-weight: 500;
    color: #47486F;
    text-align: center;
}
.br {
    border-right: 1px solid #dee3f2;
    border-left: 1px solid #DEE3F2;
    padding: 20px;
    text-align: center;
    width: 33%;
}
h1.product_title.entry-title {
    color: #000;
    font-weight: 400;
    font-size:45px;
    text-align: left;
    margin-top:20px;
}
div#primary {
    flex: 3}
.summary.entry-summary:after {
    clear: both;
    content: "";
    display: table;
}
.kaina .f-r span {
    font-size:18px}
.offer-regular-price span {
    text-decoration: line-through;
    font-size: 14px !important;
}
.offer-price span.price {
    text-decoration: none;
    font-size: 30px !important;
    font-weight: bold;
    color: #e6005c !important;
}
.short-description {
    margin: 30px 0 30px 0;
    color: #54595F;
}
.woocommerce div.product form.cart::after, .woocommerce div.product form.cart::before {
    content: " ";
    display: block !important;
    clear: none !important;
}
.pirkti {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
}
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #93bf3d;
    border-radius: 5px;
    width: fit-content;
    padding: 5px;
}
.quantity button {
    background: none;
    border: none;
    font-size:20px;
    padding: 5px 10px;
    cursor: pointer;
}
.quantity input.qty {
    width: 1.6em !important;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    background: none;
}
.woocommerce div.product div.summary form.cart .button {
    height:45px;
    color: #fff;
    background: linear-gradient(to right, #c94500, #ff8a00, #ff6a00);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
    margin: 0 0 0;
    display: inline-block;
    border-radius:0;
}
.scf {
    padding:0 25px 025px 0;
    border-bottom:solid 1px #f5f5f5;
    margin-bottom: 15px;
}
.scf div i {
    font-size: 21px;
    margin-right:7px;
    font-weight: normal;
}
.scf div.share i {
    font-weight: 900;
}
.scf div {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.5px;
}
.scf div i.fa {
    color: #c15a00;
}
.askusmodalbg, .askusmodal {
    display:none;
}
.askusmodalbg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.askusmodal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 300px;
    text-align: center;
}
.askusmodalcontent {
    text-align: left;
    position: relative;
}
.close-modal {
    position: absolute;
    top: -20px;
    right: -10px;
    cursor: pointer;
    font-size: 30px;
    color: #333;
}
.m-kontaktas a[href^="tel:"]:before {
    content: "\f095";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 700;
    transform: rotateZ(94deg);
    color: black;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.m-kontaktas a[href^="mailto:"]:before {
    padding-right: 15px;
    content: "\f0e0";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 700;
    color: black;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.m-kontaktas a {
    display: block;
    border-bottom: 1px solid silver;
    padding: 10px;
    text-align: left;
    color: #000000;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
    display:none !important;
}
.gspa {
    align-items: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 400;
    border-radius: .25rem;
    background: #f5f5f5;
}
.gspa img {
    max-width:80%;
    height: auto;
}
.gspa i.fas {
    font-size: 85px !important;
    color: #c15a00;
    -webkit-text-stroke: 1px rgb(255 255 255);
}
.secu {
    padding: 15px;
}
.infus {
    text-align: center;
    display: flex;
    flex-direction: row;
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.swiper-vertical>.swiper-wrapper, .swiper-horizontal>.swiper-wrapper {
    flex-direction: row !important;
    display: inline-flex;
    max-width: 130px;
    height: 100%;
}

.product-gallery {
    padding-right: 25px;
    flex-direction: column-reverse;
}
.product div aside#woocommerce-sidebar {
    width: 260px;
    padding:0 !important;
    background: #ffffff;
    flex: none;
    box-shadow: 2px 2px 9px 0px #ededed;
}
h2.wp-block-heading {
    margin: 0;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
background: #e4e4e4;
    color: #000000;
}
.woocommerce-tabs ul.tabs li.active a {
    background:  transparent !important;
    font-size: 24px;
    font-weight: 400 !important;
    position: relative;
}
c15a00
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 35px;
    padding-bottom: 20px;
    border-bottom: 0px solid  transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    box-shadow: none;
    border:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid  red !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0px solid #c15a00;
    background-color: transparent !important;
    color: #000000;
}
div#tab-description, .newsas {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    font-family: Arial, sans-serif;
    text-align: left;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #ffffff;
}
.related h2 {
    font-weight: 400;
}
ul.products {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
header.woocommerce-products-header {
    background: transparent;
    color: #000;
    box-shadow: none;
    font-weight: 300;
    border-bottom: 1px solid #96c240;
}
h1.woocommerce-products-header__title.page-title {
    font-weight: 400;
    text-align: center;
}
ul.products::before
ul.products li.product {
    list-style: none;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}
ul.products li.product .woocommerce-loop-product__title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 10px !important;
    height: 170px;
}

/* ======= UŽTIKRINAME, KAD KAINA IR MYGTUKAS VISADA BŪTŲ APAČIOJE ======= */
ul.products li.product .price,
ul.products li.product .add_to_cart_button {
    margin-top: auto;
}
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    position: relative;
    transition: padding 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link:hover {
    opacity: 0.7;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-size: 23px !important;
    color: #000 !important;
}
.woocommerce ul.products li.product .price del {
    color: #000;
    opacity: .5;
    display: block;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    text-align: center;
    height: 70px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price del span.amount bdi {
    color: #000000;
    font-size: 14px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price span.amount bdi {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}
span.onsales {
    position: absolute;
    top: 0;
    left: 0;
    background: #c15a00;
    color: #000000;
    padding: 7px;
}
.woocommerce-ordering {
    display: none;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #a7cd4a;
    ;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background: #a6cc4a;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-color: #0000003d;
    color: #000000;
    outline: 0;
    display: flex;
    width: 100%;
    text-align: center;
}
li.woocommerce-MyAccount-navigation-link a {
    color: #000;
    display: block;
}
nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}
.woocommerce-ordering select:focus + .woocommerce-ordering::after {
    color: #5f4e3b;
} 
button.wp-block-button__link.wp-element-button.add_to_cart_button.wc-block-components-product-button__button {
    border-radius: 0;
    width: 100%;
}

/* ======= SIDEBAR ======= */
#woocommerce-sidebar {
    flex: 1;
    padding: 20px;
    color: #000;
    margin-right: 10px;
}
#woocommerce-sidebar .widget {
    margin-bottom: 5px;
    padding: 0px;
}

ul.wc-block-product-categories-list,
ul.wc-block-product-categories-list ul {
    display: block !important;
    padding-left: 0;
    margin: 0;
}
ul.wc-block-product-categories-list li.wc-block-product-categories-list-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
ul.wc-block-product-categories-list li ul li {
    display: block;
    padding: 5px 0;
    border: none;
    color: #5a5244;
}
.product-cat-menu li.cat-item, .product-cat-menu li.cat-item ul.children {
    margin-top: 10px;
}
ul.wc-block-product-categories-list li a {
    display: block;
    color: #608f06;
    width: 100%;
    transition: background 0.4s ease, color 0.4s ease;
    padding: 10px 7px 10px 15px;
    border-bottom: 1px solid #f7f2f2;
}
ul.wc-block-product-categories-list li a:hover {
    background: rgba(145, 189, 59, 0.62);
    color: black;
}
span.wc-block-product-categories-list-item-count {
    width: 34px;
    text-align: center;
}

/* ======= ORDER ======= */
div#customer_details {
    display: block;
    width: 100%;
}
form.checkout.woocommerce-checkout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
h3#order_review_heading {
    display: none;
}
div#order_review {
    display: flow-root;
    width: 70%;
}
tr.cart_item:hover {
    background: #efefef;
}
body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
}
.woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 32px;
    height: auto;
}

.woocommerce-billing-fields__field-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 10px 5px;
}
.woocommerce form .form-row {
    flex: 1 1 50%;
    padding: 7px;
    margin: 0px !important;
}
.woocommerce-billing-fields h3, .woocommerce-additional-fields h3 {
    font-weight: 400;
    font-size: 23px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    border: 1px solid #b3967e;
    background: #fff;
    padding: 15px;
    color: #000000;
    font-size: 16px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgb(135 76 98 / 0%);
    border-radius: 5px;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: block;
    border-bottom: 1px solid white;
    padding: 3px;
    color: black;
    margin: 0;
}
.woocommerce-info {
    border-top-color: #c15a00;
    background: #fbefe0;
}
button#place_order {
    background: green;
    display: block;
    width: 100%;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    height: 60px;
}
#cart-panel, #share-panel, #search-panel, #wishlist-panel {
    display:none;
}
a.page-numbers {
    padding: 10px 15px !important;
    color: #ffffff;
    background: rgb(112 35 64);
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    padding: 10px 15px !important;
    color: #000000;
    background: rgb(112 35 64 / 26%);
}
.related-products {
    margin-top: 3rem;
}
.related-products h3 {
    text-align:center;
    font-size: 1.5rem;
    font-weight:300;
    margin-bottom: 1.5rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 5px;
}
.product-card {
    border: 1px solid #d5d5d5;
    padding: 1rem;
    text-align: center;
}
.product-card img {
    max-width: 100%;
    height: auto;
}
.product-card h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    font-size: 1rem;
    font-weight:300;
    margin: 0.5rem 0;
}
.price {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}
.user-heart {
    font-weight: 600;
    font-size: 25px;
}

/* ======= 📱 RESPONSIVE ======= */
@media (max-width: 1060px) {
    .user-desktop {
    flex-direction: column;
    background: #97c341;
    z-index: 15;
    padding: 10px;
    width: 45px;
    position: fixed;
    top: 40%;
}
ul.products,.grid, .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.logo, .logo a {
    margin: auto;
}
header .f-r {
    flex-wrap: wrap;
}
.ismobile {
    margin: auto;
}
}
.product-cat-menu {
    display:none}
.panel-content ul.woocommerce-mini-cart li {
    background: #ffffff;
    border-bottom: 1px solid #b7b7b7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.panel-content ul.woocommerce-mini-cart li a {
    display: flex;
	font-size: 16px;
    line-height: 21px;
    color: #000;
    font-weight: 100;
    align-items: center;
    padding: 3px 15px;
    justify-content: flex-start;
}
.panel-content ul.woocommerce-mini-cart li span.quantity {
    font-size: 10px;
    padding: 0px 5px 0px 2px;
    border: 0;
    color: #000;
    flex-direction: column;
}
.panel-content ul.woocommerce-mini-cart li span span.woocommerce-Price-amount.amount {
    font-size: 14px;
    color: #000;
}
.panel-content ul.woocommerce-mini-cart li a.remove.remove_from_cart_button {display:none;
    color: #f05a04;
    font-size: 40px;
    margin-left: 12px;
    margin-right: 0;
    font-weight: 100 !important;
    border:0;
}
.panel-content ul.woocommerce-mini-cart li a img {
    width: 50px;
    height: auto;
    margin: 10px;
    position: relative;
    transform: none;
}
.panel-content p a.button.wc-forward {
    margin: 10px;
    background: #71aa01;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    border-radius: 0;
    display: block;
    text-align: center;
}
p.woocommerce-mini-cart__total.total {
    text-transform: uppercase;
    margin: 15px 0px 30px 0;
    font-size: 18px;
}
.panel-content strong {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}
.panel-content ul.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mini_cart_item a.remove.remove_from_cart_button {
    width: 40px;
    height: 40px;
    padding: 8px 7px !important;
    align-items: baseline !important;
}
.mini_cart_item .quantity button {
    display:none}
.panel-footer button.close-panel {
    text-align: center;
    display: block;
    margin: auto;
    padding: 15px 15px;
    width: 100%;
    background: #f7f7f7;
    border: 1px solid #d2d2d2;
    font-size: 16px;
    text-transform: uppercase;
    color: red;
}
.wc-block-components-product-metadata {
    display: none;
}
.wc-block-cart-item__prices .price {
    text-align: left;
}
tr.wc-block-cart-items__row {
    background: #f9f9f9;
}
.is-large.wc-block-cart .wc-block-cart-items td {
    vertical-align: middle !important;
}
td.wc-block-cart-item__product {
    border-right: 1px solid #c9c9c9 !important;
}
a.wc-block-components-product-name {
    color: #000000;
    padding: 5px;
}
tr.wc-block-cart-items__row {
    background: #f7f7f7;
}.wc-block-components-quantity-selector {
    background: white;
}
.acc-link a {
    display: block;
    padding: 10px;
    background: #f7f7f7;
    color: black;
    margin-top: 5px;
    border-left: 3px solid green;
}
.panel-header button.close-panel {
    background: none;
    border: none;
    outline: 0;
}.trigger-panel {
    cursor: pointer;
}.trigger-panel:hover {
    color: #96c240;
}
#panel-lang button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    font-size: 16px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

#panel-lang button:hover {
    background-color: #d0d0d0;
}
.footer-company-info {
    white-space: pre-line;
}
.kontaktai {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
}
.wpcf7 form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}
.form-row.double p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.double input {
    flex: 1 1 48%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #000;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 textarea::placeholder {
    opacity: 1;
    color: #888;
    transition: opacity 0.2s;
}

.wpcf7 input[type="text"]:focus::placeholder,
.wpcf7 input[type="tel"]:focus::placeholder,
.wpcf7 input[type="email"]:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0;
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background-color: #2d511f;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #3b6c2b;
}
/******************************************************************************************************************************************************************************************************************************************************************************************** mobile css ************************************************************** ***********************************************************************************************************************************************************************************************************************************************/
@media (max-width: 767px) {
	body.woocommerce-cart .woocommerce, body.woocommerce-checkout .woocommerce {
    flex-direction: column;}
    .woocommerce-message {
    border-top-color: #8fae1b;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
	.woocommerce-message a.button.wc-forward {
    display: block;
    background: #a1c647;
    color: white;
    border-left: 3px solid #000000;
}
	.swiper-backface-hidden .swiper-slide img {
    width: 80px;
}
	.swiper-backface-hidden .swiper-slide {
    width: 96px !important;
}
	h1.product_title.entry-title {
    font-size: 25px;
}
  #panel-menu {
    height: 100%;
    overflow-y: auto;
}

#panel-menu nav {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    height: 100%;
    position: relative;
    bottom: 70px;
    overflow-x: scroll;
}

.menu-item-has-children.open > .sub-menu {
    display: block;
    top: 0;
    position:relative;
    border-top: 1px solid #a2ca55;
    background: rgb(152 196 66 / 0%);
    padding-left: 0;
}
.menu-item-has-children.open > .sub-menu li {
    margin-top: 4px;
    border-left: 3px solid #a2ca55;
}
span.submenu-toggle {
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    margin-right: 14px;
}
aside#woocommerce-sidebar {
    display: none;
}
.everypay-wrapper .payment-method-options {
    display: flex;
    flex-direction: column;
}
#woocommerce-sidebar {
    order: 2;
    width: 100%;
    margin-top: 30px;
}
#primary.content-area {
    order: 1;
    width: 100%;
}

.product-cat-menu {
    display:block}
.infomenu, .rekvizitus {
    flex: 1 1 100%;
}
.divasas {
    flex-direction: column;
}
.thumbnails {
    overflow: scroll;
}
form.checkout.woocommerce-checkout {
    flex-direction: column;
}div#order_review {
    width: 100%;
}
.user-desktop, span.uzdarom, .m-hide {
    display: none;
} 

/* ======= PASLĖPTI MOBILIUOSIUOSE ======= */
.f-m-c {
    flex-direction: column;
} 

/* ======= MOBILE: FLEXBOX STULPELIU ======= */
.comp, .add-to-wishlist, .askus, .share {
    padding: 10px;
    background: #f1f1f1;
    color: #595959;
}
.panel-content form input[type="search"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #c15a00;
}
.comic {
    max-width: 100%;
}
.kaina {
    text-align: center;
    padding: 10px;
}
.product-gallery {
    padding-right: 0;
}
.gnd {
    flex: 1;
    width:100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}
.woocommerce div.product div.summary {
    width: 100%;
}
ul.products,.grid,  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
#primary.content-area,
#woocommerce-sidebar {
    flex: none;
    width: 100%;
}
form.cart {
    padding: 15px;
}
.menu-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* ======= BACKGROUND: LINEAR-GRADIENT(359DEG, #55240C, #B0747F);
    ======= */background: #c15a00;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 13;
    /* ======= BOX-SHADOW: 0PX -5PX 15PX RGBA(0, 0, 0, 0.4), 0PX 5PX 10PX RGBA(255, 255, 255, 0.2) INSET;
    ======= */}
.menu-btn {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    width: 50px;
    text-align: center;
}
.icon-outlined {
    padding: 5px 0 0 0;
    font-size: 35px;
    color: #000;
    -webkit-text-stroke: 1px rgb(255 255 255);
}
.close-icon {
    cursor: pointer;
    display: none;
}
.menu-panel {
    position: fixed;
    bottom: -70%;
    left: 0;
    width: 100%;
    height: 70%;
    background: white;
    transition: bottom 0.3s ease-in-out;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 12;
}
.slide-panel {
    position: fixed;
    bottom: -60%;
    left: 0;
    width: 100%;
    height: 60%;
    background: white;
    transition: bottom 0.3s ease-in-out;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    z-index: 12;
}
.menu-panel, .slide-panel {
    display: flex;
    flex-direction: column;
}
.menu-panel .panel-content, .slide-panel .panel-content, .search-bar .panel-content, .phone-bar .panel-content {
    flex: 1;
    color: black;
    overflow-y: auto;
    padding: 0 10px 60px 20px;
}
.slide-panel.active {
    bottom: 0;
}
.menu-panel.active {
    bottom: 0;
}

#cart-panel, #share-panel, #search-panel {
    display:block;
}
nav ul li a {
    color: #000;
    background: rgb(247 247 247);
    padding: 12px 10px;
}
.logo, .logo a {
    margin-right: auto;
    text-align:center;
    width: 100%;
}
nav.woocommerce-breadcrumb {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-x: scroll;
    padding: 6px !important;
    justify-content: flex-start;
}
.grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
article.artic {
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}
.artic a h2 {
    font-size: 1.2rem;
    text-align: left;
    padding: 0.5rem 0;
}
.the_excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
.artic a img {
    border-radius: 0.5rem;
}
.newsas img.attachment-colostrum-article-thumb.size-colostrum-article-thumb.wp-post-image {
    float: none;
    width: 100%;
}
main h1 {
    font-size: 1.5rem;
    font-weight: 400;
}
}
@media (max-width: 500px) {
    .comic {
    display: none;
}
.scf {
    flex-wrap: wrap;
    padding: 0;
}
.scf div {
    margin-bottom: 7px;
    display: inline-block;
    width: 49%;
}
}