/* Montserrat Armenian */
@font-face {
    font-family: 'Montserratarm';
    src: url('fonts/Montserratarm-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserratarm';
    src: url('fonts/Montserratarm-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserratarm';
    src: url('fonts/Montserratarm-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserratarm';
    src: url('fonts/Montserratarm-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


/* и так далее для всех вариаций шрифта */


.product-sku {
	margin-bottom:20px;
}
/* Reset & Base */
* { box-sizing: border-box; }


body {
    margin: 0;
    font-family: 'Montserratarm';
    background: #f8f9fc;
    color: #222;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top blue bar */
.header-top {
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    color: white;
    font-size: 13px;
    padding: 10px 0;
    font-weight: 500;
}

.header-top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.top-left {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 80px;
}

.phone {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-switcher select,
.lang-switcher a {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 13px;
}

.social-icons a {
    color: white;
    margin-left: 12px;
    font-size: 16px;
    text-decoration: none;
}

/* Main header */
.header-main {
    background: white;
    padding: 14px 0;
    position: relative;
    z-index: 100;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo img {
    width: auto;
}

/* Search — делаем более заметным */
.search-wrapper {
    flex: 1;
    max-width: 800px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input {
    width: 100%;
    padding: 20px 18px 20px 48px;
    border: 1px solid #7e00ff;
    border-radius: 10px;
    font-size: 15px;
    background: transparent;
    transition: all 0.2s;
    outline: 0;
}

.search-form input:focus {
    border-color: #7e00ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.search-form button {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
}

/* Right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.action-item {
    position: relative;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.action-item b{
    font-weight:normal;
}
.action-item:hover { color: #7e00ff; }

.action-item .icon {
    font-size: 26px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #7e00ff;
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
.menu-toggle {
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    .header-main-inner {
        flex-wrap: wrap;
    }
    .search-wrapper {
        order: 3;
        width: 100%;
        margin: 12px 0 0;
        max-width: none;
    }
    .header-actions { gap: 20px; }
}

@media (max-width: 767px) {
    .header-top-inner { justify-content: center; flex-direction: column; gap: 8px; text-align: center; }
    .top-right { flex-wrap: wrap; justify-content: center; }
    .search-wrapper { display: block; }
    .menu-toggle { display: block; order: 1; }
    .logo { order: 2; margin: 0 auto; }
    .header-actions { order: 4; width: 100%; justify-content: center; margin-top: 10px; }
}

.promo-circles {
    background: #fff;
    padding: 20px 0 30px;
    border-bottom: 1px solid #eee;
}

.container { /* уже есть у тебя */ }

.circles-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px 35px; /* расстояние между кругами */
    max-width: 100%;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none;
}

.circles-row::-webkit-scrollbar { display: none; }

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s;
    min-width: 150px;
}

.circle-item:hover {
    transform: translateY(-5px);
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed #7e00ff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}
.circle img, .circle .emoji {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.circle .emoji {
    font-size: 45px;
}

.circle .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3b3b;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
}

.circle.price {
    background: linear-gradient(135deg, #005eff, #3b82f6);
    color: white;
    border: none;
}

.circle.price span {
    font-size: 18px;
    font-weight: bold;
}

.circle.price .sub {
    font-size: 12px;
}

.circle-item span {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}
/* Мобильные */
@media (max-width: 768px) {
    .circles-row {
        gap: 20px 30px;
        justify-content: flex-start;
        padding: 0 15px 15px;
    }
    .circle {
        width: 80px;
        height: 80px;
    }
    .circle img, .circle .emoji { width: 50px; height: 50px; font-size: 40px; }
}

.products-slider {
    padding: 40px 0;
}
.products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: wrap;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    position: relative;
    scroll-snap-align: start;
    width: 18%;
    padding-bottom: 20px;
}
#ajax-products  .product-card  {
        width: 100%;

}

.product-image {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
}

.product-info {
   padding: 20px;
}
ins .woocommerce-Price-amount.amount {
    color: #7e00ff;
    font-size: 16px;
    font-weight: 700;
}
.product-price ins{
    text-decoration: none;
}
.added_to_cart.wc-forward{
    color: #000;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}
.product-title {
    color: #36373c;
    font-size: 16.16px;
    font-weight: 600;
    cursor: pointer;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 0;
        min-height: 90px;

}
.product-card a {
    color:#000;
    text-decoration:none;
}
.product-price  del .woocommerce-Price-amount.amount{
    font-weight: 500;
   
    font-size: 12px;
    color: #847e7b;
}
.add_to_cart_button {
    display: inline-block;
    background: linear-gradient(185deg, #a263ee, #7e00ff);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    width: 85%;
    text-align: center;
    margin: 0px auto;
    display: block;
}
.woocommerce .button.add_to_cart_button {
    margin-top: 10px;
    width: 100%;
}
.product-card .product-price {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-logo h2 {
    color: #fff;
    margin: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact p, .footer-copy p {
    margin: 5px 0;
}
.footer-social a {
    color: #ccc;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}
.footer-social a:hover {
    color: #fff;
}

/* Анимация корзины */
.cart.bump {
    animation: cart-bump 0.4s ease;
}

@keyframes cart-bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* Анимация счётчика */
.cart-count.flash {
    animation: count-flash 0.5s ease;
}

@keyframes count-flash {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.lang-switcher a{
    text-decoration:none;
}

.header-actions a:hover {
    color:#000 ;
}
.action-item.user{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: normal;
    border: 1px solid #ccc;
    padding: 9px 26px;
    border-radius: 44px;
}

/* Общие стили */
body {
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Обертка магазина */
.shop-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto;
}

/* FILTER */
.shop-filters {
    width: 270px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* GROUP */
.filter-group {
    margin-bottom: 25px;
}

/* TITLE */
.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.filter-title::after {
    content: "+";
    position: absolute;
    right: 0;
}

/* ITEMS */
.filter-items {
    display: block;
}

/* CHECKBOX STYLE */
.checkbox-label {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.checkbox-label input {
    display: none;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label:hover {
    background: #f3f0ff;
    border-color: #7e00ff;
}

.checkbox-label input:checked + span {
    color: #7e00ff;
    font-weight: 600;
}

.checkbox-label input:checked + span::before {
    content: "✔ ";
}

/* PRICE */
.price-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-inputs input {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.price-inputs input:focus {
    border-color: #7e00ff;
    box-shadow: 0 0 0 3px rgba(126,0,255,0.1);
}

/* RESET BUTTON */
.reset-filter {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: 0.2s;
}

.reset-filter:hover {
    background: #ddd;
}
.tax-product_cat .products-grid .product {
    position: relative;
}
.tax-product_cat .products-grid a{

    text-decoration: none;
}
/* PRODUCTS */
.products-container {
    flex: 1;
}
.tax-product_cat  .price .amount {
    color: #7e00ff;
    font-size: 16px;
    font-weight: 700;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.quantity input {
    width: 100% !important;
    text-align: center;
    border: none;
    padding: 13px;
}
.woocommerce-breadcrumb {
    margin-top: 50px;
}
.woocommerce-breadcrumb a {
    color: #000;
}
.products-grid .product {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.products-grid .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Слайдер цен */
.price-slider input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

/* Контейнер товаров */
.products-container {
    flex: 1;
}
.woocommerce .button.add_to_cart_button {
    margin-top: 10px;
    width: 100%;
    background: #7e00ff !important;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0;
    margin-top: 20px;
}
/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px;
}
/* Карточка товара */
.products-grid .product {
    list-style: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.products-grid .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Изображение и заголовок */
.products-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.products-grid h2 {
    font-size: 16px;
    padding: 10px;
    color: #333;
}

/* Цена */
.products-grid .price {
    padding: 0 10px 10px;
    font-size: 15px;
    color: #007bff;
}

.products-grid del {
    color: #999;
    margin-right: 5px;
}

/* Кнопка добавить в корзину */
.products-grid .add_to_cart_button {
    display: block;
    text-align: center;
    margin: 0 10px 10px;
    padding: 10px 0;
    background: #28a745;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.products-grid .add_to_cart_button:hover {
    background: #1e7e34;
}

/* Метка "Sale" */
.products-grid .onsale {
    position: absolute;
    background: #dc3545;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    top: 10px;
    left: 10px;
    border-radius: 5px;
}
/* --- Общие стили корзины --- */
.wp-block-woocommerce-cart {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: #f9f9f9;
}

/* --- Основная часть товаров --- */
.wc-block-cart__main {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
}

/* --- Таблица товаров --- */
.wc-block-cart-items {
    width: 100%;
    border-collapse: collapse;
}

.wc-block-cart-items th,
.wc-block-cart-items td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.wc-block-cart-items th {
    background: #f0f0f0;
    font-weight: 600;
    font-size: 14px;
}

.wc-block-cart-item__image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.wc-block-cart-item__product {
    font-size: 15px;
}

.wc-block-components-product-name {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    text-decoration: underline;
}

.wc-block-cart-item__prices del {
    color: #999;
    margin-right: 5px;
}
.cart-image img {
   
    height: 100% !important;
}
.wc-block-components-product-price__value {
    color: #007bff;
    font-weight: bold;
}

/* --- Кнопки + и − --- */
.wc-block-components-quantity-selector__input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px;
    margin: 0 5px;
}

.quantity button {
    display: none;
}
.cart-info a{
    color: #000;
    text-decoration: none;
}

.wc-block-components-quantity-selector__button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
}

.wc-block-components-quantity-selector__button:hover {
    background: #e0e0e0;
}

/* --- Кнопка удалить товар --- */
.wc-block-cart-item__remove-link {
    margin-top: 10px;
    display: inline-block;
    color: #dc3545;
    cursor: pointer;
    font-size: 14px;
}

.wc-block-cart-item__remove-link:hover {
    text-decoration: underline;
}

/* --- Боковая панель с итогами --- */
.wc-block-cart__sidebar {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: fit-content;
}

/* --- Заголовок Totals --- */
.wc-block-cart__totals-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* --- Итоговые суммы --- */
.wc-block-components-totals-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-block-components-totals-item__label {
    color: #555;
}

.wc-block-components-totals-item__value {
    font-weight: bold;
    color: #007bff;
}

/* --- Кнопка Proceed to Checkout --- */
.wc-block-cart__submit-button {
    display: block;
    text-align: center;
    padding: 12px 0;
    margin-top: 20px;
    background: #28a745;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.wc-block-cart__submit-button:hover {
    background: #1e7e34;
}

/* --- Sale Badge --- */
.wc-block-components-sale-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    margin-top: 5px;
}
.wc-block-components-sidebar-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 16px; 
    position: relative;
    width: 100%;
}
/* --- Адаптив --- */
@media(max-width: 900px) {
    .wp-block-woocommerce-cart {
        flex-direction: column;
    }

    .wc-block-cart__main {
        order: 2;
    }

    .wc-block-cart__sidebar {
        order: 1;
    }
}
.products-grid .add_to_cart_button,
.wc-block-components-button{
        background: #7e00ff !important;
        margin-top:20px
}
/* Общий контейнер */
.wc-block-checkout {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 0px;
}

/* Левая часть (форма) */
.wc-block-checkout__main {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}
.wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {

    color: #fff;
}
/* Правая часть (итог заказа) */
.wc-block-checkout__sidebar {
    background: #f9fafc;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Заголовки шагов */
.wc-block-components-checkout-step__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Инпуты */
.wc-block-components-text-input input,
.wc-blocks-components-select__select {
    border-radius: 12px !important;
    border: 1px solid #e3e6ed !important;
    padding: 14px !important;
    background: #f8f9fb !important;
    transition: 0.3s ease;
}

/* Фокус */
.wc-block-components-text-input input:focus,
.wc-blocks-components-select__select:focus {
    border-color: #5c7cfa !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(92,124,250,0.15);
}

/* Кнопка Place Order */
.wc-block-components-checkout-place-order-button {
    width: 100%;
    border-radius: 14px !important;
    padding: 18px !important;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #5c7cfa, #4c6ef5);
    border: none !important;
    transition: 0.3s ease;
}

.wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76,110,245,0.35);
}

/* Кнопка Return to cart */
.wc-block-components-checkout-return-to-cart-button {
    color: #5c7cfa;
    font-weight: 500;
}

/* Order summary */
.wc-block-components-checkout-order-summary__title {
    font-size: 20px;
    font-weight: 600;
}

/* Блок товара в summary */
.wc-block-components-order-summary-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* Итого */
.wc-block-components-totals-footer-item {
    font-size: 18px;
    font-weight: 700;
}

/* Адаптив */
@media (max-width: 768px) {
    .wc-block-checkout {
        margin: 30px auto;
    }

    .wc-block-checkout__main,
    .wc-block-checkout__sidebar {
        padding: 20px;
    }
}


/* HERO SLIDER */
.hero-slider {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}
.hero-slide {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height:600px;
    
}

.hero-slide:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #00000082;
    top: 0;
    left: 0;
}
.hero-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 9;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #7e00ff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
}


/* БАННЕРЫ */
.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
}
.banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.banner-content {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 9;
}
.btn-small {
    display: inline-block;
    margin-top: 10px;
    background: #7e00ff;
    padding: 8px 18px;
    border-radius: 8px;
    color: #fff;
}

/* ADAPTIVE */
@media(max-width: 768px) {
    .banners-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide img {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 28px;
    }
}



.home-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sale-badge {
    position: absolute;
    background: red;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.advantages {
    background: linear-gradient(135deg, #f8f9fc, #eef2ff);
    padding: 70px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.adv-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Gradient border effect */
.adv-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Hover effect */
.adv-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Icon */
.adv-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.adv-item:hover .adv-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Title */
.adv-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

/* Text */
.adv-item p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}


.reviews {
    background: linear-gradient(135deg, #f8f9fc, #eef2ff);
    padding: 70px 0;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Hover */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Top block */
.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Avatar */
.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* Name */
.review-card h4 {
    margin: 0;
    font-size: 16px;
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Text */
.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter {
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Glow circles (background effect) */
.newsletter::before,
.newsletter::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.newsletter::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.newsletter::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

/* Box */
.newsletter-box {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Title */
.newsletter-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* Subtitle */
.newsletter-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Form */
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Input */
.newsletter-form input {
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    width: 280px;
    font-size: 14px;
    transition: 0.3s;
}

/* Focus */
.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Button */
.newsletter-form button {
    padding: 16px 30px;
    border-radius: 50px;
    border: none;
    background: #fff;
    color: #7e00ff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.newsletter-form button:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 576px) {
    .newsletter-box h2 {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}
.faq {
    background: #f8f9fc;
    padding: 70px 0;
}

/* Item */
.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* Hover */
.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-item label {
    display: block;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

/* Arrow */
.faq-item label::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: 0.3s;
}

/* Content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

/* Text */
.faq-content p {
    padding: 10px 0 20px;
    color: #555;
    font-size: 14px;
}

/* Active */
.faq-item input:checked + label::after {
    content: "−";
}

.faq-item input:checked ~ .faq-content {
    max-height: 200px;
}

/* Responsive */
@media(max-width: 576px) {
    .faq-item label {
        font-size: 14px;
    }
}
.about-home {
    padding: 60px 0;
    text-align: center;
}

@media(max-width: 992px){
    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .advantages-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.bannerGirl{
    position: absolute;
    z-index: 9;
    right: 95px;
}

.banner:after{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #00000082;
    top: 0;
    left: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color:#fff !important;
}
.products-grid .add_to_cart_button,
.wc-block-components-button{
        background: #7e00ff !important;
        margin-top:20px
}


.product-card .product-image {
    width: 100%; /* занимает ширину карточки */
    overflow: hidden; /* обрезает лишнее */
    border-radius: 8px; /* можно закруглить */
}

.product-card .image-wrapper {
    width: 100%;
    height: 250px; /* фиксированная высота для всех товаров */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .image-wrapper img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center;
    margin-top: 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}
.logo a{
    font-size:24px;
    font-weight:bold;
    text-decoration:none;
    color:#000;
}

.header-menu .menu{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.header-menu .menu li a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: 0.3s;
}
.header-menu .menu li a:hover{
    color:#0073aa;
}

.header-menu {
    padding-top: 15px;
    padding-bottom: 15px;
}

.site-footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding-top: 60px;
}

/* Grid */
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Columns */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact */
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* Social */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #94a3b8;
}




.shop-wrapper { display: flex; gap: 20px; }
.shop-filters { width: 250px; padding: 20px; border: 1px solid #ddd; }
.products-container { flex: 1; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.price-inputs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.price-inputs input { width: 100%; padding: 10px; }

.checkbox-label { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; cursor: pointer; }

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.filter-buttons button {
    padding: 8px 12px;
    border: none;
    background: #7e00ff;
    color: #fff;
    cursor: pointer;
}

/* ===== PRODUCT PAGE ===== */

.product-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

/* LEFT / RIGHT */
.product-gallery { width: 45%; }
.product-summary { width: 50%; }

/* ZOOM */
.zoom-container {
    overflow: hidden;
    border-radius: 18px;
}

.zoom-container img {
    width: 100%;
    transition: 0.4s;
}

.zoom-container:hover img {
    transform: scale(1.2);
}

/* THUMBS */
.productThumbs {
    margin-top: 15px;
}

.productThumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}

.productThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* TITLE */
.woocommerce-Price-amount.amount {
	font-size:15px;
}
.woocommerce-shipping-totals.shipping {
	display:none;
}
.order-total th, .order-total td {
    font-weight: bold;
    font-size: 14px !important;
}

.qty-box input.qty {

    margin-bottom: 0;
}




.qty-btn.plus,
.qty-btn.minus{
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
}



/* PRICE */
.product-price {
    font-size: 24px;
    margin: 10px 0;
}

/* SHARE */
.product-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    padding: 8px 14px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
}

.fb { background:#1877f2; }
.tg { background:#229ED9; }
.wa { background:#25D366; }

/* QUANTITY */
.quantity {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.quantity input {
    width: 50px;
    text-align: center;
    border: none;
}

.quantity button {
    width: 40px;
    background: #eee;
    border: none;
}

/* BUTTON */
.single_add_to_cart_button {
    width: 100%;
    background: linear-gradient(135deg,#7e00ff,#3b82f6);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
}

/* RELATED */
.related-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}



.dashboard-container { max-width: 700px; margin:30px auto; font-family:Arial,sans-serif; }
.profile-card { text-align:center; background:#fff; padding:25px; border-radius:16px; box-shadow:0 10px 25px rgba(0,0,0,0.1); margin-bottom:20px; transition:0.3s; }
.profile-card:hover { transform:translateY(-5px); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.avatar { width:90px; height:90px; border-radius:50%; margin-bottom:15px; }

.dashboard-tabs { display:flex; justify-content:center; margin-bottom:25px; list-style:none; padding:0; border-bottom:2px solid #ddd; }
.dashboard-tabs li { padding:12px 25px; margin:0 5px; cursor:pointer; border-radius:8px 8px 0 0; background:#f5f5f5; font-weight:bold; transition:0.3s; }
.dashboard-tabs li.active { background:#0073aa; color:#fff; border-bottom:2px solid #0073aa; }

.tab-content { display:none; }
.tab-content.active { display:block; }

.card { background:#fff; padding:20px; border-radius:16px; box-shadow:0 10px 25px rgba(0,0,0,0.08); margin-bottom:20px; transition:0.3s; }
.card:hover { transform:translateY(-5px); box-shadow:0 20px 40px rgba(0,0,0,0.15); }
.card h3 { color:#0073aa; margin-bottom:15px; }
.card input { width:100%; padding:10px; margin-bottom:10px; border-radius:5px; border:1px solid #ddd; }
.card button { padding:10px 20px; background:#0073aa; color:#fff; border:none; border-radius:5px; cursor:pointer; transition:0.3s; }
.card button:hover { background:#111; }

.auth-box{ max-width:400px; width:100%; padding:40px; background:#fff; border-radius:16px; box-shadow:0 20px 40px rgba(0,0,0,0.1); text-align:center; margin:40px auto; }
.tabs{ display:flex; margin-bottom:20px; }
.tab-link{ flex:1; padding:12px 0; cursor:pointer; background:#eee; border:none; font-weight:bold; transition:.3s; }
.tab-link.active{ background:#0073aa; color:#fff; }
.tab-content{ display:none; }
.tab-content.active{ display:block; }
.auth-box input{ width:100%; padding:14px; margin-bottom:15px; border-radius:8px; border:1px solid #ddd; }
.auth-box button{ width:100%; padding:14px; border-radius:8px; background:#111; color:#fff; border:none; cursor:pointer; font-weight:bold; transition:.3s; }
.auth-box button:hover{ background:#0073aa; }


.my-account-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #f5f7fa;
    padding: 20px;
}




.thankyou-wrapper{
max-width:900px;
margin:80px auto;
padding:20px;
}

.thankyou-card{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.thankyou-card h1{
font-size:32px;
margin-bottom:10px;
}

.thankyou-text{
color:#666;
margin-bottom:40px;
}

.order-info{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:40px;
}

.order-box{
background:#f7f7f7;
padding:20px;
border-radius:8px;
}

.order-box span{
display:block;
color:#888;
font-size:14px;
}

.order-box strong{
font-size:18px;
}

.download-invoice{
display:inline-block;
background:#111;
color:#fff;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
}

.download-invoice:hover{
background:#333;
}

.woocommerce-terms-and-conditions-wrapper {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f7ff;
}

.woocommerce-terms-and-conditions-wrapper h3 {
    color: #7E00FF;
    margin-bottom: 15px;
}

.woocommerce-terms-and-conditions {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    margin-bottom: 15px;
}

.woocommerce-terms-and-conditions-wrapper label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7E00FF;
    cursor: pointer;
}

.review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.review-order-table th,
.review-order-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.review-order-table th {
    background: #f5f5f5;
}

.product-quantity {
    font-weight: bold;
    margin-left: 5px;
}

.order-total th,
.order-total td {
    font-size: 18px;
    font-weight: bold;
    background: #f0e6ff;
    color: #7E00FF;
}



.custom-payment-wrapper{
    max-width:800px;
    margin:40px auto;
    padding:20px;
    border:1px solid #eee;
    border-radius:10px;
    background:#fafafa;
    font-family:Arial, sans-serif;
}

.custom-payment-wrapper h2{
    font-size:28px;
    margin-bottom:25px;
}

.payment-methods{
    margin-bottom:30px;
}

.place-order-wrapper{
    text-align:right;
}

.place-order-btn{
    background:#7E00FF;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    font-size:16px;
    transition: all 0.3s;
}

.place-order-btn:hover{
    background:#5C00B2;
}


.custom-payment-method {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-payment-method:hover {
    border-color: #7E00FF;
    background: #f0e6ff;
}

.custom-payment-method input.input-radio {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    accent-color: #7E00FF;
    cursor: pointer;
}

.custom-payment-method label {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.payment-method-description {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}





.custom-order-verify-email-wrapper{
    max-width: 700px;
    margin: 40px auto;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.custom-order-verify-email-wrapper h2{
    font-size: 24px;
    margin-bottom: 20px;
}

.custom-order-verify-email-wrapper p{
    font-size: 16px;
    margin-bottom: 15px;
}

.verify-email-btn{
    display:inline-block;
    padding:12px 25px;
    background:#7E00FF;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:all 0.3s;
}

.verify-email-btn:hover{
    background:#5e00c1;
}
.custom-order-receipt-wrapper{
    max-width:800px;
    margin:40px auto;
    padding:25px;
    border:1px solid #eee;
    border-radius:10px;
    background:#fafafa;
    font-family:Arial, sans-serif;
    line-height:1.6;
}

.custom-order-receipt-wrapper h2{
    font-size:28px;
    margin-bottom:20px;
}

.custom-order-receipt-wrapper h3{
    font-size:22px;
    margin-bottom:15px;
}

.order-receipt-table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

.order-receipt-table th,
.order-receipt-table td{
    padding:12px;
    text-align:left;
    border-bottom:1px solid #ddd;
}

.order-receipt-table tfoot th,
.order-receipt-table tfoot td{
    font-weight:bold;
    border-top:2px solid #7E00FF;
}

.order-receipt-table th{
    background:#f5f5f5;
}

.order-receipt-table td{
    background:#fff;
}


.custom-shipping-wrapper{
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
}

.custom-shipping-wrapper h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: #7E00FF;
}

.woocommerce-shipping-fields__field-wrapper .form-row{
    margin-bottom: 15px;
}

.woocommerce-shipping-fields__field-wrapper input,
.woocommerce-shipping-fields__field-wrapper select,
.woocommerce-shipping-fields__field-wrapper textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.woocommerce-shipping-fields__field-wrapper input:focus,
.woocommerce-shipping-fields__field-wrapper select:focus,
.woocommerce-shipping-fields__field-wrapper textarea:focus{
    border-color: #7E00FF;
    outline: none;
    box-shadow: 0 0 5px rgba(126,0,255,0.3);
}
.custom-payment-wrapper{
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
}

.custom-payment-wrapper h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: #7E00FF;
}

.payment_methods{
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.payment_methods li{
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.payment_methods li label{
    font-weight: bold;
}

.form-pay-actions{
    text-align: right;
}

.pay-btn{
    background-color: #7E00FF;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.pay-btn:hover{
    background-color: #5a00b3;
}


/* common checkout style */
.cart-items  input,
.cart-items  select,
.cart-items  textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.cart-items  button,
.cart-items  input[type="submit"],
.cart-items #respond input#submit {
    background-color: #7E00FF;
    color: #fff;
    padding: 12px 25px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cart-items button:hover,
.cart-items input[type="submit"]:hover {
    background-color: #5a00b3;
}

/* quantity buttons + / - */
.qty-box {
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
}

.qty-btn {
    width:40px;
    height:40px;
    border:none;
    background:#7E00FF;
    color:#fff;
    font-weight:bold;
    font-size:18px;
    cursor:pointer;
}

.qty-btn:hover {
    background:#5a00b3;
}

.qty-box input.qty {
    width:60px;
    text-align:center;
    border:none;
    font-weight:bold;
}


.custom-form-errors {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.form-error {
    background-color: #ffe6ff;
    border-left: 4px solid #7E00FF;
    color: #333;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.form-error a {
    color: #7E00FF;
    font-weight: bold;
    text-decoration: underline;
}

.form-error a:hover {
    color: #5a00b3;
}

.form-success {
    background-color: #e6ffe6;
    border-left: 4px solid #00B200;
    color: #333;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.form-success a {
    color: #007700;
    font-weight: bold;
    text-decoration: underline;
}

.form-info {
    background-color: #e6f0ff;
    border-left: 4px solid #007BFF;
    color: #333;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.form-info a {
    color: #0056b3;
    font-weight: bold;
    text-decoration: underline;
}
.custom-coupon-wrapper{
    max-width: 800px;
    margin: 20px auto 40px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
}

.custom-coupon-wrapper h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #7E00FF;
}

.coupon-input-wrapper{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon-input-wrapper input.input-text{
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.coupon-input-wrapper input.input-text:focus{
    border-color: #7E00FF;
    outline: none;
}

.apply-coupon-btn{
    background-color: #7E00FF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-coupon-btn:hover{
    background-color: #5a00b3;
}

/* GENERAL */
.woocommerce-checkout{
font-family: system-ui, -apple-system, sans-serif;
}

.checkout-wrapper{
display:flex;
gap:50px;
max-width:1200px;
margin:80px auto;
padding:0 20px;
align-items:flex-start;
}

/* LEFT SIDE */

.checkout-left{
flex:2;
background:#fff;
padding:40px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.checkout-left h2,
.checkout-left h3{
font-size:22px;
margin-bottom:20px;
}

/* INPUTS */

.woocommerce form .form-row{
margin-bottom:18px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select{
width:100%;
padding:14px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
transition:all .2s;
background:#fafafa;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus{
border-color:#111;
background:#fff;
outline:none;
box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}

/* TWO COLUMNS NAME */

.form-row-first,
.form-row-last{
width:48%;
float:left;
}

.form-row-last{
float:right;
}

/* RIGHT SIDE */

.checkout-right{
flex:1;
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
position:sticky;
top:40px;
}

.checkout-right h2{
font-size:22px;
margin-bottom:20px;
}

/* ORDER TABLE */

.woocommerce-checkout-review-order-table{
width:100%;
border-collapse:collapse;
margin-bottom:20px;
}

.woocommerce-checkout-review-order-table th{
text-align:left;
font-weight:600;
padding-bottom:10px;
border-bottom:1px solid #eee;
}

.woocommerce-checkout-review-order-table td{
padding:12px 0;
border-bottom:1px solid #f1f1f1;
}

.product-total{
text-align:right;
}

.order-total th{
font-size:18px;
}

.order-total td{
font-size:18px;
font-weight:bold;
}

/* PAYMENT */

#payment{
margin-top:25px;
}

.payment_methods{
list-style:none;
padding:0;
margin:0;
}

.payment_methods li{
background:#f7f7f7;
padding:15px;
border-radius:8px;
margin-bottom:10px;
}

/* BUTTON */

#place_order{
width:100%;
padding:16px;
background:#111;
color:#fff;
font-size:16px;
border:none;
border-radius:10px;
cursor:pointer;
margin-top:20px;
transition:.3s;
}

#place_order:hover{
background:#333;
}

/* COUPON */

.checkout_coupon{
background:#f9f9f9;
padding:20px;
border-radius:10px;
margin-bottom:30px;
}

/* MOBILE */

@media(max-width:900px){

.checkout-wrapper{
flex-direction:column;
}

.checkout-right{
position:relative;
top:auto;
}

.form-row-first,
.form-row-last{
width:100%;
float:none;
}

}
/* Billing form */
.woocommerce-billing-fields h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.woocommerce-billing-fields button,
.woocommerce-billing-fields input[type="submit"] {
    background-color: #7E00FF;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce-billing-fields button:hover,
.woocommerce-billing-fields input[type="submit"]:hover {
    background-color: #5a00b3;
}

/* Cart Errors Styling */
.custom-cart-errors {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.cart-error {
    background-color: #ffe6ff; /* թեթև վարդագույն ֆոն՝ նկատելի but not aggressive */
    border-left: 4px solid #7E00FF; /* քո գլխավոր գույնը */
    color: #333;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cart-error a {
    color: #7E00FF;
    font-weight: bold;
    text-decoration: underline;
}

.cart-error a:hover {
    color: #5a00b3;
}


.custom-empty-cart{
max-width:700px;
margin:120px auto;
text-align:center;
padding:40px;
border:1px solid #eee;
border-radius:10px;
background:#fafafa;
}

.empty-title{
font-size:32px;
margin-bottom:15px;
}

.empty-text{
font-size:18px;
margin-bottom:25px;
color:#666;
}

.shop-button{
display:inline-block;
padding:14px 28px;
background:#111;
color:#fff;
text-decoration:none;
border-radius:6px;
font-size:16px;
}

.shop-button:hover{
background:#333;
}
.variation {
margin-top:5px;
font-size:14px;
color:#666;
}

.variation dt {
font-weight:600;
display:inline;
}

.variation dd {
display:inline;
margin-left:5px;
}
.cart-totals-wrapper{
    max-width:400px;
    margin-top:30px;
    padding:20px;
    border:1px solid #eee;
    border-radius:10px;
    background:#fafafa;
}

.cart-totals-title{
    font-size:24px;
    margin-bottom:20px;
    text-align:center;
}

.shop_table th, .shop_table td{
    padding:10px;
    font-size:16px;
}

.order-total th, .order-total td{
    font-weight:bold;
    font-size:18px;
}
.proceed-to-checkout {
    /* margin-top: 20px; */
    text-align: center;
    width: 100%;
    padding: 0;
    padding: 10px;
}
.proceed-to-checkout a.checkout-button{
    background:#111;
    color:#fff;
    padding:12px 30px;
    border-radius:6px;
    text-decoration:none;
}

.proceed-to-checkout a.checkout-button:hover{
    background:#333;
}
.custom-cart-wrapper{
    max-width:1200px;
    margin:60px auto;
    padding:20px;
}
.cart-title{
    font-size:32px;
    margin-bottom:30px;
}
.cart-item{
    display:flex;
    align-items:center;
    gap:20px;
    border:1px solid #eee;
    padding:20px;
    border-radius:10px;
    margin-bottom:15px;
    flex-wrap:wrap;
}
.cart-image img{
    width:100px;
    border-radius:8px;
}
.cart-info{
    flex:1;
    min-width:200px;
}
.cart-price{
    margin-top:5px;
    font-weight:bold;
}
.cart-subtotal{
    font-weight:bold;
    min-width:120px;
    text-align:center;
}
.cart-remove a{
    font-size:28px;
    color:red;
    text-decoration:none;
}
.qty-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
}
.qty-btn{
    width:40px;
    height:40px;
    border:none;
    background:#f5f5f5;
    font-size:20px;
    cursor:pointer;
}
.qty-btn:hover{
    background:#e5e5e5;
}
.qty-box input.qty{
    width:60px;
    text-align:center;
    border:none;
    font-weight:bold;
}
@media(max-width:700px){
    .cart-item{
        flex-direction:column;
        align-items:flex-start;
    }
    .cart-subtotal{
        text-align:left;
    }
}

.cross-sells-wrapper{
    margin-top:50px;
}
.cross-sells-title{
    font-size:24px;
    text-align:center;
    margin-bottom:25px;
}
.cross-sells-products{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}
.cross-sells-item{
    width:220px;
    border:1px solid #eee;
    padding:15px;
    border-radius:10px;
    text-align:center;
    background:#fff;
}
.cross-sells-item img{
    max-width:100%;
    border-radius:8px;
    margin-bottom:10px;
}
.cross-sells-item .product-name{
    font-size:16px;
    margin-bottom:8px;
}
.cross-sells-item .product-price{
    display:block;
    font-weight:bold;
    margin-bottom:10px;
}
.cross-sells-item .btn.add-to-cart{
    background:#111;
    color:#fff;
    padding:8px 15px;
    border-radius:5px;
    text-decoration:none;
    display:inline-block;
}
.cross-sells-item .btn.add-to-cart:hover{
    background:#333;
}

.mini-cart-items{
    list-style:none;
    margin:0;
    padding:0;
}
.mini-cart-item{
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom:1px solid #eee;
    padding:10px 0;
}
.mini-cart-thumb img{
    width:50px;
    border-radius:6px;
}
.mini-cart-details{
    flex:1;
}
.mini-cart-name{
    display:block;
    font-weight:600;
    font-size:14px;
    margin-bottom:3px;
    text-decoration:none;
    color:#111;
}
.mini-cart-quantity{
    font-size:13px;
    color:#555;
}
.mini-cart-remove{
    color:red;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    line-height:1;
}
.mini-cart-total{
    text-align:right;
    font-weight:bold;
    margin-top:10px;
}
.mini-cart-buttons{
    display:flex;
    gap:10px;
    justify-content:flex-end;
    margin-top:15px;
}
.mini-cart-buttons .btn{
    padding:8px 15px;
    border-radius:5px;
    text-decoration:none;
    color:#fff;
    background:#111;
}
.mini-cart-buttons .btn.checkout{
    background:#27ae60;
}
.mini-cart-buttons .btn:hover{
    opacity:0.9;
}
.mini-cart-empty{
    text-align:center;
    padding:15px;
    font-style:italic;
    color:#555;
}

.proceed-to-checkout-wrapper{
    margin-top:0px;
    text-align:right;
}
.shop_table {
    margin-bottom:30px;
}
.proceed-to-checkout{
    display:inline-block;
    padding:10px 20px;
    background:#7E00FF;
;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition: all 0.3s ease;
}

.proceed-to-checkout:hover{
    background:#7E00FF;
;
    color:#fff;
}

.custom-shipping-calculator{
    background:#fff;
    padding:15px 20px;
    border:1px solid #eee;
    border-radius:8px;
    margin-top:20px;
}
.custom-shipping-calculator h2{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}
.custom-shipping-calculator select,
.custom-shipping-calculator input{
    width:100%;
    padding:8px 10px;
    margin-bottom:10px;
    border:1px solid #ccc;
    border-radius:6px;
}
.custom-shipping-calculator .button{
    background:#27ae60;
    color:#fff;
    padding:8px 15px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
    transition:all 0.3s ease;
}
.custom-shipping-calculator .button:hover{
    background:#219150;
}













.docspisok .column  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.infoarea3, ..infoarea4 {
    margin-top: 0px !important;
    background-image: none !important;
    min-height: auto;
}

	.infoarea3	.varianty:first-child ,
	.infoarea3 .beftitle,
	.infoarea3  .blocktitle {
		display:none !important;
	}

	.infoarea4	.varianty:first-child ,
	.infoarea4 .beftitle,
	.infoarea4  .blocktitle {
		display:none !important;
	}
		.infoarea3  .varianty .items,
			.infoarea4  .varianty .items{
		padding-top:0px !important;
	}
	.infoarea4  .varianty:last-child {
    padding-bottom: 0px !important;
}
	
	.header .title {
    text-align: left;
    position: relative;
    margin: 0;
    z-index: 5;
    font-size: 80px;
    line-height: 86px;
    padding-top: 340px;
    font-weight: 600;
    color: #fff;
    font-family: '__PF Square Sans Pro_5';
}
	
	.whatsneed .items div:nth-child(3) img{
		    width: 43%;
	}
	
.textheaderttextg {
    padding-top: 35px;
    line-height: 32px;
    font-size: 27px;
    font-weight: 500;
    color: #fff;
    display: block;
    position: relative;
    z-index: 2;
}
	
	

@media only screen and (max-width: 600px) {

		.docspisok .column {

    flex-direction: column;
}
	
	
}



.b2b-page {
    background: #f6f7fb;
    padding: 60px 0;
}



/* HERO */
.b2b-hero {
    text-align: center;
    margin-bottom: 50px;
}

.b2b-hero h1 {
    font-size: 36px;
    font-weight: 700;
}

.b2b-hero p {
    font-size: 18px;
    color: #555;
}

/* CARDS */
.b2b-info {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.b2b-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.b2b-card h2 {
    margin-bottom: 10px;
}

/* PRICE */
.b2b-price {
    margin-top: 40px;
    text-align: center;
}

.price-box {
    background: linear-gradient(135deg,#7e00ff,#3b82f6);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
}

.price-extra {
    opacity: 0.9;
}

.price-total {
    margin-top: 10px;
    font-size: 20px;
}

/* CTA */
.b2b-cta {
    margin-top: 50px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #000;
}




/* ===== ABOUT PAGE ===== */

.about-page {
    background: #f6f7fb;
    padding: 60px 0;
}


/* HERO */
.about-hero {
    text-align: center;
    margin-bottom: 50px;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.about-hero p {
    font-size: 18px;
    color: #555;
}

/* CARDS */
.about-content {
    display: grid;
    gap: 20px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-card h2 {
    margin-bottom: 10px;
}

/* STATS */
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.stat {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
}

.stat h3 {
    font-size: 28px;
    color: #7e00ff;
}

/* CTA */
.about-cta {
    margin-top: 50px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: linear-gradient(135deg,#7e00ff,#3b82f6);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-stats {
        flex-direction: column;
    }
}











/* RESPONSIVE */
@media(max-width:768px){
    .b2b-info {
        grid-template-columns: 1fr;
    }
}




/* MOBILE */
@media(max-width:768px){
    .product-wrapper {
        flex-direction: column;
    }
}
.zoom-container img {

    height: auto;
}


/* Responsive */
@media(max-width: 992px) {
    .footer-inner {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.single_add_to_cart_button {
    width: 100%;
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    color: #fff;
    padding: 14px;
    margin-top: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 19px;
    border: 0;
    cursor: pointer;
}
.product-meta a {
    color: #000;
}
.product-share {

    align-items: center;
}

.quantity input {
  
    font-size: 18px;
}

/* Блок Related */
.related-products {
    margin-top: 50px;
}

.related.products {
    padding: 20px 0;
}

.related.products h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Сетка товаров */
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

/* Карточка товара */
.related.products li.product {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Картинка */
.related.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Название */
.related.products .woocommerce-loop-product__title {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 500;
}

/* Цена */
.related.products .price {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.related.products del {
    opacity: 0.6;
}

/* Кнопка */
.related-products .custom-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px;
    text-align: center;
    background: #7e00ff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.related-products .custom-btn:hover {
    background: #5c00b3;
}

.related.products .woocommerce-loop-product__title {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 500;
    color: #000;
    border: 0;
}

.related.products .price {
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
    display: block;
}

.related.products  .woocommerce-LoopProduct-link {
    text-decoration: none;
}

.related.products h2 {
    display: none;
}

.woocommerce-form-login-wrapper,
.custom-coupon-wrapper {
    display: none;
}


/* ===== КРАСИВАЯ ТАБЛИЦА ===== */
.option_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    font-size: 14px;
}

/* Header */
.option_table thead th {
    background: linear-gradient(135deg, #7e00ff, #3b82f6);
    color: #fff;
    text-align: left;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
}

/* Rows */
.option_table tbody tr {
    transition: 0.2s;
}

/* Zebra */
.option_table tbody tr:nth-child(even) {
    background: #f8f9fc;
}

/* Hover */
.option_table tbody tr:hover {
    background: #f3f0ff;
}

/* Cells */
.option_table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* First column (title) */
.option_table td:first-child {
    font-weight: 600;
    color: #555;
    width: 40%;
}

/* Value column */
.option_table td:last-child {
    font-weight: 500;
    color: #111;
}

/* Remove last border */
.option_table tbody tr:last-child td {
    border-bottom: none;
}

/* Text inside p */
.option_table p {
    margin: 0;
}

/* ===== MOBILE ===== */
@media(max-width: 600px) {
    .option_table thead {
        display: none;
    }

    .option_table,
    .option_table tbody,
    .option_table tr,
    .option_table td {
        display: block;
        width: 100%;
    }

    .option_table tr {
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .option_table td {
        display: flex;
        justify-content: space-between;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .option_table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #7e00ff;
    }
}

.header-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}





.filter-toggle {
    display: none;
}



@media only screen and (max-width: 600px) {
 
.header-top .social-icons {
    display: none;
}
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .search-wrapper {
        display: none;
    }
    .header-actions {
    
        width: 50%;
    }



    .header-menu {
        display: none; /* скрыто по умолчанию */
        background: white;
        padding: 15px;
        position: absolute;
        top: 60px; /* высота шапки */
        left: 0;
        right: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
  .header-menu.active {
        display: block;
        position: absolute;
        top: 0;
        z-index: 999;
    }
.menu-toggle {
        display: block;
        margin: 0px auto;
    }
.header-menu .menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

    .header-actions {
        width: 40%;
    }
.action-item b {
    font-weight: normal;
    display: none;
}
.action-item.user {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 18px;
    font-weight: normal;
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 44px;
}
    .hero-slide img {
        display: none;
    }
.hero-slide {

    min-height: 300px;
}
.circle-item {

    min-width: 44%;
}
.circle-item span {
    font-size: 15px;
}

.products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: wrap;
    flex-direction: column;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    position: relative;
    scroll-snap-align: start;
    width: 100%;
    padding-bottom: 20px;
}
.adv-item h3 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #111;
}
.shop-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}
.shop-filters {
    width: 100% !important;
    position: static;

}

/* Изначально фильтры видны на десктопе */
.shop-filters {
    display: block;
}

/* Кнопка фильтров */
.filter-toggle {
    display: none;
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #007cba;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

    .shop-filters {
        display: none; /* скрываем фильтры по умолчанию */
        position: relative;
        margin-bottom: 20px;
    }

    .filter-toggle {
        display: block; /* показываем кнопку */
        width: 100%;
    }

    .shop-filters.open {
        display: block; /* открываем фильтры при клике */
    }

    .filter-toggle {
        display: block;
        width: 100%;
        background: linear-gradient(135deg, #7e00ff, #3b82f6);
    }
.shop-wrapper {

    padding: 10px;
    box-sizing: border-box;
}
.order-total th, .order-total td {
    font-weight: bold;
    font-size: 12px !important;
}
.cart-image img {
    width: 100% !important;
    border-radius: 8px;
}
.checkout-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0px auto;
    padding: 10px;
    align-items: flex-start;
    box-sizing: border-box;
}
.dashboard-container {
    max-width: 100%;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}
.dashboard-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
    border-bottom: 2px solid #ddd;
    flex-wrap: wrap;
}
	.add_to_cart_button {
	width:100% !important;	
	}
	
	.product-share {
 
    display: none;
}
	
	.product-gallery {
    width: 100%;
}
	.product-summary {
    width: 100%;
}
	
	.quantity {

    margin-top: 20px;
}
	
	
	
	.related.products ul.products {
    grid-template-columns: repeat(1, 1fr);
 
}
	
	.option_table td:first-child {
    font-weight: 600;
    color: #555;
    width: 100%;
    text-align: center;
}
	    .option_table td {

        justify-content: center;
    }
	
	
	    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
	
	
	
	
	
	
	
	

}

.profile-card {
  
    align-items: center;
    display: flex;
    flex-direction: column;
}


/* 🔴 Error box */
.woocommerce-error {
    background: #fff5f5;
    border: 1px solid #ff4d4f;
    border-left: 5px solid #ff4d4f;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    list-style: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ❗ Title (optional եթե ավելացնես հետո) */
.woocommerce-error::before {
    content: "Խնդրում ենք լրացնել պարտադիր դաշտերը";
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #b30000;
}

/* 📄 List */
.woocommerce-error li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

/* ✔ Icon */
.woocommerce-error li::before {
    content: "⚠";
    margin-right: 8px;
    color: #ff4d4f;
    font-size: 14px;
}

/* 🔗 Link */
.woocommerce-error a {
    text-decoration: none;
    color: #b30000;
    transition: 0.2s;
}

/* hover effect */
.woocommerce-error a:hover {
    text-decoration: underline;
    color: #ff0000;
}

/* strong (field name) */
.woocommerce-error strong {
    font-weight: 600;
}

.woocommerce-NoticeGroup-checkout {
    width: 50%;
    margin: 0px auto;
    margin-top: 50px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .woocommerce-error {
        padding: 12px 14px;
    }
.woocommerce-NoticeGroup-checkout {
    width: 100%;
  
}
    .woocommerce-error li {
        font-size: 13px;
    }
}

.tooy {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.tooy a {
    color: #fff;
}




.woocommerce-checkout-review-order-table tfoot tr.shipping th {
    font-weight: 600;
    color: #333;
}

.woocommerce-checkout-review-order-table tfoot tr.shipping td {
    color: #000;
    font-weight: 500;
}

















.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.age-popup button {
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}












