/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/
/*    background: #cdb6d4; */

/* Общие настройки */
:root {
  --main-color: #1F1F1F;
  --hover-color: #807b82;
  --btn-color: #1F1F1F;
  --btn-hover: #2F2F2F;
}

body {
  margin: 0;
  padding: 0;
}
a {
    text-decoration: none !important;
    color: inherit;
}
a:hover{
    color: inherit;
}
.ast-woocommerce-container{
     padding-left: 30px;
    padding-right: 30px;

}
.reviews-btn,
.hero-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button
{
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  background-color: #3B82F6 !important;
  color: #fff !important;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}
#ast-scroll-top {
  background-color: #3B82F6 !important;
  color: #fff !important;
}
.reviews-btn:hover,
.hero-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.checkout-button:hover 
.woocommerce nav.woocommerce-pagination ul li a {
  background: #2563EB !important;
  color: #fff !important;
}
.menu a,
.woocommerce-loop-product__title {
  color: var(--main-color);
}

.menu a:hover,
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title {
  color: var(--hover-color);
}
.woocommerce-js ul.products li.product a.ast-loop-product__link {
text-decoration: none;
}
/* Верхняя полоса */
.top-bar {
  font-size: 14px;
  color: #FFFFFF;
  background-color: #0F172A;
}

/* Логотип */
.logo a {
  font-size: 24px;
  font-weight: 700;
   color: #FFFFFF;
  text-decoration: none;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    height: 50px;
    width: auto;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
.site-name {
    font-size: 24px;
    font-weight: 700;
     color: #FFFFFF;
}

.site-header {
    background: #1E293B;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Меню */
.menu {
  margin: 0;
  padding: 0;
}

.menu li {
  list-style: none;
}

.site-header .navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler-icon{
    background-color: #3B82F6;
}
.site-header .navbar-nav {
    list-style: none;
}

@media (max-width: 991px) {

    .site-header .navbar-collapse {
        background:  rgba(24,24,24,.92);
        padding: 1rem;
        margin-top: 1rem;
    }

    .site-header .navbar-nav {
        flex-direction: column;
        gap: 12px;
    }

}
.site-header .navbar-nav a {
    position: relative;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
}

.site-header .navbar-nav a:hover {
    color: #FFFFFF !important;
}

.site-header .current-menu-item > a,
.site-header .current-menu-parent > a {
    color: #FFFFFF !important;
}

.site-header .navbar-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #3B82F6;
    transition: width .3s ease;
}

.site-header .navbar-nav a:hover::after,
.site-header .current-menu-item > a::after,
.site-header .current-menu-parent > a::after {
    width: 100%;
}
/* Иконки поиска и корзины */
.header-actions .btn-link {
    text-decoration: none;
    color:#fff !important;
    transition:.25s;
   
}

.header-actions i {
  font-size: 1.3rem; 
}


.header-actions .btn-link:hover{
    color:#2563EB !important;
}
.bg-dark{
    background-color: #3B82F6 !important;
    color:#fff;
}
.btn-dark{
      background-color: #3B82F6 !important;
    color:#fff;  
}
@media (max-width: 991px) {

    /* скрываем логотип */
    .logo {
        display: none;
    }

    /* скрываем поиск */
    .search-wrapper {
        display: none;
    }

    /* скрываем телефон */
    .top-bar .container span:last-child {
        display: none;
    }

    /* email по центру */
    .top-bar .container {
        justify-content: center !important;
    }

    /* убираем средний отступ Bootstrap */
    .header-main {
        padding: 12px 0;
    }

    /* первая колонка (логотип) исчезает */
    .header-main .col-lg-3:first-child,
    .header-main .col-md-3:first-child {
        display: none;
    }

    /* меню занимает левую половину */
    .header-main .col-lg-6,
    .header-main .col-md-6 {
        width: 50%;
    }

    /* корзина занимает правую половину */
    .header-main .col-lg-3:last-child,
    .header-main .col-md-3:last-child {
        width: 50%;
    }

    /* гамбургер слева */
    .navbar {
        justify-content: flex-start;
    }

    /* корзина справа */
    .header-actions {
        justify-content: flex-end !important;
    }

    /* выпадающее меню */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background:  rgba(24,24,24,.92);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
        z-index: 1000;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
.navbar-nav .menu-item-has-children {
    position: relative;
}

.navbar-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(24,24,24,.92);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    z-index: 999;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.navbar-nav .sub-menu li a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
}
.menu-item-has-children > a::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}
.cart-toggle,
.search-toggle,
.navbar-toggler,
.cart-toggle:hover,
.search-toggle:hover,
.navbar-toggler:hover,
.cart-toggle:focus,
.search-toggle:focus,
.navbar-toggler:focus,
.cart-toggle:active,
.search-toggle:active,
.navbar-toggler:active
{
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
}

/* Счетчик корзины */
.cart-wrapper .badge {
  font-size: 11px;
  vertical-align: top;
}

/* Выпадающий поиск */

#searchBox {
    width: 320px;
    z-index: 1050;
}
/* Выпадающая корзина */
#cartBox {
  min-width: 320px;
  z-index: 9999;
  border-radius: 8px;
}

/* Поле поиска */
#searchBox input[type="search"] {
  width: 100%;
}

/* WooCommerce мини-корзина */
.widget_shopping_cart {
  min-width: 280px;
}

/* Адаптив */
@media (max-width: 768px) {
  .logo {
    text-align: center;
    margin-bottom: 15px;
  }

  .header-actions {
    justify-content: center;
    margin-top: 15px;
  }

  .menu {
    justify-content: center;
  }
}
.hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;

    padding: 100px 0 60px;

    background-color: #111111;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

background:
linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.96) 35%,
    rgba(0,0,0,.80) 55%,
    rgba(0,0,0,.45) 75%,
    transparent 100%
);
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
font-size: 56px;
 margin-bottom: 20px;;

    color: #FFFFFF;

    word-wrap: break-word;
    overflow-wrap: break-word;

    max-width: 650px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;

    color: rgba(255, 255, 255, 0.82);

    max-width: 560px;
}


.hero-btn i {
  margin-left: 10px;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    flex-wrap: wrap;
}

.hero-benefits li {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    flex: 1;
    min-width: 200px;

    padding: 12px 12px;

    background: rgba(15, 23, 42, .82);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(59, 130, 246, .18);
    border-radius: 12px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .35);

    transition: all .3s ease;
    overflow: hidden;
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: #3B82F6;
}

.hero-benefits li:hover {
    transform: translateY(-8px);

    border-color: rgba(59,130,246,.5);

    box-shadow:
        0 18px 45px rgba(0,0,0,.45),
        0 0 18px rgba(59,130,246,.18);
}

.hero-benefits i {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(59,130,246,.15);
    color: #60A5FA;

    font-size: 26px;

    transition: .3s;
}
.hero-benefits li:hover i {
    transform: scale(1.08);

    background: #2563EB;
    color: #FFFFFF;
}
.benefit-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.benefit-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #CBD5E1;
}
.categories {
  padding: 80px 0;
}
.category-card-content {
  padding: 10px;
}

.category-card {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #E8EEFF;
  border-radius: 4px;
  overflow: hidden;
  transition:.35s;
}
.category-card:hover{
    transform: translateY(-10px);
}

.category-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    transition: transform .3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}
.category-card h3 {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
      color: #1F1F1F;

}
.category-description {
    margin-top: 10px;
    font-size: 14px;
    color: #1F1F1F;
    line-height: 1.5;
    padding: 20px;
}
.product-category .woocommerce-loop-category__title {
    margin-bottom: 10px;
}
.categories .carousel {
    padding: 0 70px;
}

.carousel-control-prev,
.carousel-control-next{
    width:50px;
    height:50px;
    top:50%;
    transform:translateY(-50%);
    background:#3B82F6;
    border-radius:4px;
    opacity:1;
}

.carousel-control-prev i,
.carousel-control-next i{
    color:#fff;
    font-size:28px;
    line-height:1;
}
.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:active,
.carousel-control-next:active,
.carousel-control-prev:focus,
.carousel-control-next:focus  {
    background: #2563EB;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}
/*shop-card*/
.popular-products .woocommerce ul.products li.product {
    background: #FFFFFF;
    border: 1px solid #E8EEFF;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(31, 42, 90, 0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
       display: flex;
    flex-direction: column;
}
.woocommerce ul.products li.product img {
    height: 220px !important;
    object-fit: contain;
}
.woocommerce-loop-product__title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px !important;
}
.ast-woo-product-category {
    margin-bottom: 6px !important;
}

.price {
    margin-bottom: 12px !important;
}
.in-stock{
 padding-left: 15px;
    margin-bottom: 8px;
}
.astra-shop-summary-wrap{
        padding: 15px 18px 18px;
      display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.woocommerce ul.products li.product .button {
    margin-top: auto;
    width: fit-content;
   /* min-width: 140px;*/
    padding: 12px 20px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
        align-self: center;

}
.popular-products .ast-article-single.product {
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}

.popular-products .ast-article-single.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(31, 42, 90, 0.10);
}
/*how it works*/
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.step {
    position: relative;
    padding: 0 28px;
    background: transparent;
    border: none;
    text-align: left;
    transition: transform .3s ease;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 120px;
    background: #DDD7D1;
    transition: background .3s ease;
}
.step:hover:not(:last-child)::after {
    background: #3B82F6;
}
.step:hover {
    transform: translateY(-4px);
}

.step-number {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #8E8E8E;
}

.step-icon {
    display: block;
    margin-bottom: 20px;
    font-size: 34px;
    color: #2F2B28;
    transition: color .3s ease;
}

.step:hover .step-icon {
    color: #3B82F6;
}
.step h3 {
    margin: 0 0 12px;
    color: #2F2B28;
    font-size: 22px;
    font-weight: 600;
}

.step p {
    margin: 0;
    color: #6A625C;
    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 991px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .how-it-works h2 {
        font-size: 32px;
    }
}
/*delivery block*/


.info-section {
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    display: flex;
    background: #fff;
    border: 1px solid #ECE5DD;
    border-radius: 8px;
    overflow: hidden;
    min-height: 340px;
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.info-image {
    flex: 0 0 38%;
}

.info-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.info-content {
    flex: 1;
    padding: 38px;
    display: flex;
    flex-direction: column;
}

.info-content .section-subtitle {
    margin-bottom: 10px;
}

.info-content h3 {
    margin-bottom: 24px;
    font-size: 30px;
    color: #2F2B28;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #5E5650;
    line-height: 1.6;
}

.info-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #6B4F3B;
}

.info-content .hero-btn {
    margin-top: auto;
    width: fit-content;
}
@media (max-width: 768px) {

    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        flex-direction: column;
        min-height: auto;
    }

    .info-image {
        flex: none;
        width: 100%;
        height: 220px;
    }

    .info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info-content {
        padding: 24px;
    }

    .info-content h3 {
        font-size: 26px;
    }

}

/* TRUST */

.trust {
    padding: 100px 0;
}

.trust h2 {
    font-size: 48px;
    color: #2F2B28;
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-grid > div {
    background: rgba(255,255,255,.8);
    padding: 35px;
    border: 1px solid #E8EEFF;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(31, 42, 90, 0.05);
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}
.trust-grid > div:hover{
     transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(31, 42, 90, 0.10);
}
.trust-grid h3 {
    font-size: 22px;
    color: #2F2B28;
    margin-bottom: 20px;
}

.trust-grid h3 i {
    margin-right: 10px;
}

.trust-grid p {
    color: #2F2B28;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* COMMON */

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {

    .returns-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .returns-content h2,
    .trust h2 {
        font-size: 36px;
    }

    .returns-icon {
        margin-top: 30px;
    }
}
/*reviews*/


.reviews-slider .glsr-review.active {
    display: flex !important;
}
.reviews-section {
    padding: 100px 0;
background:#2B3648;}

.reviews-wrapper {
    width: 100%;
}

.reviews-stats{
    background:#fff;
    border-radius:4px;
    padding:40px;
    text-align:center;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.reviews-stars{
    font-size:36px;
    color:#FFB800;
    line-height:1;
}

.reviews-rating{
    font-size:64px;
    font-weight:700;
    line-height:1;
    margin-top:15px;
}

.reviews-rating-text{
    font-size:16px;
    margin-top:10px;
}

.reviews-divider{
    width:100%;
    height:1px;
    background:#eee;
    margin:25px 0;
}



.reviews-section h2{
    color:#FFFFFF;
}

.reviews-number-text{
    margin-top:8px;
    font-size:15px;
}

.reviews-content .glsr {
    margin-top: 20px;
}

.reviews-content .glsr-review {
    display: none;
    background: #fff;
    padding: 36px;
    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.reviews-slider .glsr-review.active {
    display: flex !important;
    flex-direction: column;
        color:#000;
}
.glsr-review-rating {
    width: fit-content !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}
@media (max-width: 991px) {

    .reviews-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .reviews-image {
        order: -1;
    }
}
.reviews-slider .glsr-review{
    display:none;
}



.reviews-nav{
    display:flex;
    justify-content: left;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.reviews-prev,
.reviews-next{
    width:40px;
    height:40px;
    border:none;
    border-radius:4px;
    cursor:pointer;
    background:#3B82F6;
    color:#fff;
    font-size:20px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.reviews-prev:hover,
.reviews-next:hover,
.reviews-prev:focus,
.reviews-next:focus{
    background:#2563EB;
    color:#fff;
}

/*footer*/
.site-footer {
    background: #0F172A;
    color: #fff;
}

.site-footer h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.site-footer p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-menu {
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}

.copyright {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
}
/*contact page*/

.info-card {
    background: #ffffff;
    border: 1px solid #E8EEFF;
    border-radius: 12px;
    padding: 32px;
    min-height: 420px;
    margin-bottom: 30px;
}

.info-card h2,
.info-card h3 {
    color: #1F1F1F;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-card p {
    color: #1F1F1F;
    line-height: 1.8;
    margin-bottom: 16px;
}
/*form*/
.contact-form-card {
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.contact-form-card h2 {
    color: #1F1F1F;
    margin-bottom: 20px;
    font-weight: 700;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    border: 1px solid #d9d3ca;
    border-radius: 8px;
    padding: 12px 16px;
    background: #fff;
    transition: .2s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #0c1c35;
    box-shadow: 0 0 0 3px rgba(12,28,53,.08);
}
.wpcf7 textarea {
    height: 80px;
    min-height: 80px;
    resize: vertical;
}
.wpcf7-acceptance {
    display: block;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}
.wpcf7-submit{
  background-color: #3B82F6  !important;
  color: #fff;
}
.wpcf7-submit:hover{
  background: #2563EB !important;
  color: #fff;
}
ul.products li.product{
    width: 80% !important;
}
.glsr-button {
  background-color: #3B82F6  !important;
  color: #fff;
}
.glsr-button:hover {
  background: #2563EB !important;
  color: #fff;
}
/*contacts page*/
.about-intro {
    margin-bottom: 50px;
}

.about-intro h1 {
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
}

.stock.in-stock {
    color: #2e7d32;
    font-weight: 600;
}
.stock.out-of-stock {
    color: #c62828;
    font-weight: 600;
        text-decoration: none;

}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    z-index: 99999;
}

#cookie-banner p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
}

#accept-cookies {
    border: 0;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.single-product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
}




.single-product .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    display: block;
}
.single-product .woocommerce-product-gallery {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}


/*thumbnails*/


.single-product .flex-control-thumbs {
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-product .flex-control-thumbs li {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.single-product .flex-viewport {
    flex: 1;
    min-width: 0;
    height: auto !important;
    overflow: hidden;
}
.single-product .woocommerce-product-gallery__trigger {
    display: none !important;
}

@media (max-width: 768px) {

 
.single-product .woocommerce-product-gallery {
    margin-left: 0 !important;
    width: calc(100% - 0px) !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: block;

}
    .single-product .flex-viewport {
        width: 100% !important;
        flex: none;
    }

    .single-product .flex-control-thumbs {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 10px;
        margin-top: 15px;
    }

    .single-product .flex-control-thumbs li {
        width: 70px !important;
        float: none !important;
    }

    .single-product .flex-control-nav.flex-control-thumbs {
        order: 0;
    }

}
/**/
.product-delivery-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-delivery-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-delivery-info i {
    font-size: 18px;
}
.woocommerce-checkout .wc-block-components-country-input {
    margin-top: 16px !important;
}

.product-stock-status {
    margin: 10px 0;
    font-weight: 600;
    color: #198754;
}
.woocommerce-js #respond input#submit, .woocommerce-js a.button,
 .woocommerce-js button.button, .woocommerce-js input.button,
 .wc-block-components-button:not(.is-link) {
    margin-top: 10px;
    background-color: #3B82F6;
    color:#fff;
 }
.woocommerce-js #respond input#submit, .woocommerce-js a.button:hover,
 .woocommerce-js button.button, .woocommerce-js input.button:hover,
 .wc-block-components-button:not(.is-link):hover {
    margin-top: 10px;
    background-color: #2563EB;
 }
.woocommerce-product-gallery .flex-control-thumbs li:nth-child(n+4) {
    display: none;
}
.woocommerce-product-attributes tr:nth-child(n+8) {
    display: none;
}
.woocommerce-tabs.wc-tabs-wrapper {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
}
@media (max-width: 991px) {
    .woocommerce-tabs.wc-tabs-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
}
.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce nav.woocommerce-pagination .page-numbers.current {
    background: #2563EB !important;
    color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li a {
    background: #3B82F6;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #2563EB;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination .page-numbers.current {
    background: #2563EB;
    color: #fff;
    border: none;
}
.woocommerce-product-attributes tr th,
.woocommerce-product-attributes tr td {
    border-right: 1px solid #d9dee5;
}
.woocommerce-tabs ul.tabs li.active:before,
.woocommerce-tabs ul.tabs li.active:after {
    display: none !important;
}
.woocommerce-tabs ul.tabs li.active {
    border-top: 3px solid #1F1F1F !important;
}
#cartBox {
    max-height: 500px;
    overflow-y: auto;
}
.woocommerce-js table.shop_table .woocommerce-Price-amount, .woocommerce-page table.shop_table .woocommerce-Price-amount{
white-space: nowrap;
}
.product-delivery-info a{
    text-decoration: none;
    color:inherit;
    font-weight: 600;
}
.product-delivery-info a:hover {
    color: #4F4F4F;
    border-color: #4F4F4F;
}
.single_add_to_cart_button{
    margin-top: 0 !important;
}
.woocommerce div.product div.summary {
    margin-left: 0 !important;
}

.single-product .woocommerce-product-gallery {
    margin-left: 80px;
}
.wc-block-cart p a {
    color: #1F2A5A;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.wc-block-cart p a:hover {
    color: #2F2F2F;
}
.feature-card{
    padding: 20px;
     background: #fff;
    border: 1px solid #ECE5DD;
    border-radius: 8px;
    overflow: hidden;
    min-height: 340px;
    transition: .3s;
}
.feature-card:hover {
       transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
}