:root{
    --container-width:1400px;
    --side-padding:70px;
    --text-color:#212429;
    --swiper-theme-color: #f6b750 !important;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
    font-family:'Montserrat',sans-serif;
    background:#fff;
    color:var(--text-color);
}

a {
    text-decoration: none !important;
}

/* Container */
.header-container{
    width:100%;
    max-width:var(--container-width);
    padding:10px var(--side-padding);
    margin:0 auto;
}

.white {
    color: #fff !important;
}

/* Header */
.site-header{
    border-bottom:1px solid #eee;
    background:#fff;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:72px;
}

/* Logo */
.logo{
    width: 200px;
    padding: 10px 0;
}

.form-horizontal {
    border: 0px !important;
}

/* Navigation */
.main-nav{
    display:flex;
    gap:40px;
}

.main-nav a{
    text-decoration:none;
    font-size:16px;
    font-weight:400;
    color:var(--text-color);
    transition:opacity .2s ease;
}

.main-nav a:hover{
    opacity:.6;
}

/* Right icons */
.header-icons{
    display:flex;
    gap:20px;
}

.header-icons a{
    color:var(--text-color);
    font-size:18px;
    text-decoration:none;
}

/* Mobile */
.mobile-toggle{
    display:none;
    font-size:22px;
    background:none;
    border:none;
    cursor:pointer;
}

@media(max-width:992px){

    .main-nav{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .header-container{
        padding:0 20px;
    }

}

/* Mobile menu */
.mobile-menu{
    display:none;
    flex-direction:column;
    padding:20px;
    border-top:1px solid #eee;
}

.mobile-menu a{
    padding:10px 0;
    text-decoration:none;
    color:var(--text-color);
}

.mobile-menu.active{
    display:flex;
}

.cart-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    text-decoration:none;
    color:#212429;
    transition:all .25s ease;
}

.cart-button:hover{
    background:#f5f5f5;
}

.cart-icon{
    display:flex;
    align-items:center;
    justify-content:center;
}

.cart-badge{
    position:absolute;
    top:4px;
    right:2px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    font-size:11px;
    font-weight:600;
    background:#ffc107;
    color:#000;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Modal redesign */
#modal-cart .modal-content{
    border-radius:16px;
    border:none;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

#modal-cart .modal-header{
    border-bottom:1px solid #eee;
    padding:20px 30px;
}

#modal-cart .modal-title{
    font-weight:600;
    font-size:18px;
    color:#212429;
}

#modal-cart .modal-body{
    padding:25px 30px;
}

#modal-cart table{
    width:100%;
}

#modal-cart tbody tr{
    border-bottom:1px solid #f0f0f0;
    transition:background .2s ease;
}

#modal-cart tbody tr:hover{
    background:#fafafa;
}

#modal-cart td{
    vertical-align:middle;
    padding:15px 10px;
}

#modal-cart img{
    border-radius:8px;
    width:70px;
}

#modal-cart input[type="number"]{
    width:70px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:6px;
    text-align:center;
}

#modal-cart .btn-danger{
    background:#fff;
    border:1px solid #eee;
    color:#212429;
    border-radius:8px;
    transition:.2s;
}

#modal-cart .btn-danger:hover{
    background:#ff4d4d;
    color:#fff;
    border-color:#ff4d4d;
}

#modal-cart .btn-warning{
    background:#ffc107;
    border:none;
    color:#000;
    border-radius:8px;
}

#modal-cart .modal-footer{
    padding:20px 30px;
    border-top:1px solid #eee;
}

#modal-cart .btn-secondary{
    background:#f5f5f5;
    border:none;
    color:#212429;
    border-radius:8px;
    padding:10px 20px;
}

#modal-cart .btn-primary{
    background:#212429;
    border:none;
    border-radius:8px;
    padding:10px 20px;
    transition:.2s;
}

#modal-cart .btn-primary:hover{
    background:#000;
}


.header-icons{
    display:flex;
    gap:22px;
    align-items:center;
}

.header-icon{
    position:relative;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.25s ease;
    text-decoration:none;
}

.header-icon svg{
    width:20px;
    height:20px;
    fill:#212429;
    transition:.25s ease;
}

.header-icon:hover{
    background:#f4f4f4;
}

.header-icon:hover svg{
    fill:#000;
}

.cart-badge{
    position:absolute;
    top:4px;
    right:4px;
    min-width:17px;
    height:17px;
    font-size:10px;
    font-weight:600;
    background:#ffc107;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* HERO */
.hero-block{
    width:100%;
    display:flex;
    min-height:720px;
}

/* LEFT IMAGE — всегда 50% экрана */
.hero-left{
    width:48vw;
    position:relative;
    overflow:hidden;
}

.hero-left img{
    width:100%;
    height:100%;
    max-height: 900px;
    object-fit:cover;
    transition:transform 1.2s ease;
}

.hero-left:hover img{
    transform:scale(1.05);
}

/* RIGHT SIDE */
.hero-right{
    width:50vw;
    display:flex;
    justify-content:left;
    align-items: center;
    padding-left: 40px;
    background:#fff;
}

/* Контейнер 1400px */
.hero-container{
    width:100%;
    max-width:1400px;
    padding-left:70px;
    padding-right:70px;
    display:flex;
    align-items:center;
}

/* CONTENT */
.hero-content{
    max-width:650px;
}

.hero-content h1{
    font-family:'Montserrat', sans-serif;
    font-weight:400;
    font-size:100px;
    line-height:1.05;
    margin-bottom:35px;
}

.hero-content p{
    font-family:'Montserrat', sans-serif;
    font-weight:400;
    font-size:24px;
    margin-bottom:45px;
    color:#444;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* BUTTONS */
.btn-primary-hero{
    background:#f6b750;
    color:#000;
    font-family:'Montserrat';
    font-weight:500;
    font-size:16px;
    padding:16px 38px;
    border-radius:999px;
    text-decoration:none;
    transition:all .3s ease;
}

.btn-primary-hero:hover{
    background:#e6a63f;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(246,183,80,.35);
}

.btn-outline-hero{
    border:1px solid #000;
    color:#000;
    font-family:'Montserrat';
    font-weight:500;
    font-size:16px;
    padding:16px 38px;
    border-radius:999px;
    text-decoration:none;
    transition:all .3s ease;
}

.btn-outline-hero:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}


/* RESPONSIVE */
@media (max-width:1400px){
    .hero-content h1{
        font-size:72px;
    }
}

@media (max-width:992px){

    .hero-block{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left{
        height:400px;
    }

    .hero-container{
        padding:60px 30px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }
}



.advantages-section{
    width:100%;
    background:#f5f5f5;
    padding:50px 0;
}

.advantages-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 70px;

    display:flex;
    justify-content:space-between; /* распределяем равномерно */
    align-items:center;
}

.advantage-item{
    display:flex;
    align-items:center;
    gap:15px;
    flex:0 0 auto; /* НЕ растягивать */
}

/* Меньше иконки */
.advantage-item img{
    width:36px;
    height:36px;
    object-fit:contain;
    transition:transform .3s ease;
}

.advantage-text h4{
    font-family:'Montserrat';
    font-weight:500;
    font-size:18px;
    margin-bottom:4px;
}

.advantage-text p{
    font-family:'Montserrat';
    font-weight:400;
    font-size:15px;
    color:#666;
    margin:0;
}

/* Hover */
.advantage-item:hover img{
    transform:scale(1.1);
}

.advantage-item:hover{
    transform:translateY(-4px);
}

/* TABLET */
@media (max-width:992px){
    .advantages-container{
        flex-wrap:wrap;
        gap:30px;
        justify-content:center;
    }
}

/* MOBILE */
@media (max-width:576px){

    .advantages-container{
        flex-direction:column;
        align-items:flex-start;
        padding:0 25px;
    }

    .advantage-item{
        flex:unset;
        width:100%;
    }

    .advantage-item img{
        width:32px;
        height:32px;
    }

    .advantage-text h4{
        font-size:17px;
    }

    .advantage-text p{
        font-size:14px;
    }
    
    
    
}



/* ===== CATEGORY SLIDER ===== */

.home-categories-slider{
    padding: 70px 0 10px 0;
}

.categories-wrapper{
    max-width:1400px;
    margin:0 auto;
    padding:0 70px;
}

.categories-title{
    font-family:'Montserrat';
    font-size:40px;
    color: #212429;
    font-weight: 700 !important;
    margin-bottom:50px;
}

/* viewport */
.categories-slider{
    position:relative;
    overflow:hidden;
}

.categories-track{
    display:flex;
    transition:transform .4s ease;
    will-change:transform;
}

.category-circle{
    flex:0 0 calc(100% / 6);
    text-align:center;
}

/* круг */
.circle-bg{
    width:160px;
    height:160px;
    margin:0 auto 20px;
    background:#f0f0f0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.circle-bg img{
    max-width:120px;
    max-height:120px;
    object-fit:contain;
    transition:.3s;
}

.category-name{
    font-family:'Montserrat';
    font-size:16px;
    color:#212429;
}

.category-circle:hover .circle-bg{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.category-circle:hover img{
    transform:scale(1.05);
}

/* arrows */
.cat-arrow{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    z-index:5;
}

.cat-prev{ left:10px; }
.cat-next{ right:10px; }

.cat-arrow:hover{
    background:#000;
    color:#fff;
}

/* ===== ADAPTIVE ===== */

@media (max-width:1200px){
    .category-circle{ flex:0 0 calc(100% / 4); }
}

@media (max-width:992px){
    .category-circle{ flex:0 0 calc(100% / 3); }
}

@media (max-width:768px){
    .category-circle{ flex:0 0 calc(100% / 2); }
}

@media (max-width:480px){
    .categories-wrapper{ padding:0 25px; }
    .category-circle{ flex:0 0 100%; }
}


/* Ваши существующие стили остаются без изменений */
.featured-category-tabs {
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* ===== БАЗА ===== */
.featured-category-tabs {
    padding: 50px 0;
}

.featured-category-tabs .container{
    max-width:1400px;
    padding-left:70px;
    padding-right:70px;
    margin:0 auto;
    box-sizing:border-box;
}

/* Заголовок и кнопка */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.section-button {
    display: inline-block;
    font-family: 'Montserrat';
    padding: 16px 56px;
    color: #212429;
    text-decoration: none;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px #212429 solid;
}

.section-button:hover {
    background-color: #e6a63f;
    text-decoration: none;
    border: 1px #e6a63f solid;
}

/* Вкладки */
.category-tabs {
    margin-bottom: 80px;
    list-style: none;
    padding: 0;
}

.category-tabs > li {
    float: left;
    margin-bottom: -2px;
    list-style: none;
}

.category-tabs > li > a {
    display: block;
    font-family: 'Montserrat';
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tabs > li.active > a,
.category-tabs > li.active > a:hover,
.category-tabs > li.active > a:focus {
    color: #212429;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #212429;
    font-family: 'montserrat';
    font-size: 16px;
}

.category-tabs > li > a:hover {
    color: #4a6f8a;
    background-color: transparent;
    border-color: transparent;
}

/* Tab content */
.tab-content > .tab-pane {
    display: none;
}

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

.tab-pane {
    width: 100%;
}

/* Карточка товара - остальные стили без изменений */
.product-card {
    position: relative;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    background: #fff;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image {
    position: relative;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    /* aspect-ratio: 4 / 5; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    height: 450px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Кнопка избранного */
.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-wishlist:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.heart-icon {
    fill: transparent;
    stroke: #212429;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.btn-wishlist.active .heart-icon {
    fill: #212429;
    stroke: #212429;
    animation: heartPop 0.3s ease;
}

.product-image-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.product-image-link:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Кнопка "Дивитись" */
.btn-view {
    position: absolute;
    font-family: 'Montserrat';
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #212429;
    color: #fff;
    padding: 16px 65px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    display: flex;
    border: 0;
}

.add-to-cart-but-p {
  margin-top: 2px;
  width: 90px;
}

.product-card:hover .btn-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-view:hover {
    background-color: #e6a63f;
    color: #fff;
}

/* Цветовые опции */
.color-options {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 5px;
    background-color: #fff;
    justify-content: center;
    z-index: 5;
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    transition: all 0.2s ease;
}

.color-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #4a6f8a;
}

.color-circle.active {
    box-shadow: 0 0 0 2px #4a6f8a;
}

/* Информация о товаре */
.product-info {
    text-align: left;
    padding: 0 5px;
}

.product-name {
    font-size: 20px;
    line-height: 1.4;
    font-family: 'montserrat';
    font-weight: 400;
    margin-bottom: 2px;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover {
    color: #4a6f8a;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
        font-family: 'montserrat';

}

.price-old {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 8px;
}

.price-new {
    color: #e44d2e;
}

/* Слайдер */
.product-slider {
    position: relative;
    margin: 0 -10px;
}

.swiper-container {
    overflow: hidden;
    padding: 5px 0 0px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: calc(25% - 20px) !important;
    margin: 0 4px;
}

/* Стрелки навигации */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    background-color: #212429;
    border: 1px solid #212429;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 26px !important;
    color: #fff;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #f6b750;
    border-color: #f6b750;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #dbe5f1;
    border: 0px;
    opacity: 1 !important;
}

/* Адаптивность */
@media (max-width: 992px) {
    .swiper-slide {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .swiper-slide {
        width: calc(50% - 20px);
    }
    
    .product-slider {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: calc(100% - 20px);
    }
    
    .category-tabs > li > a {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.mb-0 {
    margin-bottom: 0px;
}

.custom-banners .container{
    max-width:1400px;
    padding:0 70px;
    margin:0 auto;
    box-sizing:border-box;
}

/* ===== GRID ===== */
.banners-grid {
    display: flex;
    gap: 20px;
}

/* ===== ITEM ===== */
.banner-item{
    width:100%;
}

/* ===== IMAGE WRAPPER ===== */
.banner-image{
    position:relative;
    width:100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;

}

/* ===== IMAGE ===== */
.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.banner-item:hover img{
    transform:scale(1.05);
}

/* ===== CAPTION ===== */
.banner-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:60px 24px;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:20px;
    font-weight:600;
    line-height:1.2;
    background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
    text-align: center;
}

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

@media(max-width:600px){
    .custom-banners .container{
        padding:0 20px;
    }
    .banners-grid{
        grid-template-columns:1fr;
    }
}

/* Стили для сетки */
.product-grid {
    margin: 0 -10px;
}

.product-grid .row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-grid [class*="col-"] {
    padding: 0 10px;
    margin-bottom: 30px;
}

/* Скрываем стрелки навигации в режиме сетки */
.display-grid .swiper-button-prev,
.display-grid .swiper-button-next {
    display: none;
}

/* Адаптивность для сетки */
@media (max-width: 992px) {
    .product-grid [class*="col-md-"] {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .product-grid [class*="col-sm-"] {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .product-grid [class*="col-xs-"] {
        width: 100%;
    }
}


.reviews-section{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.reviews-container{
    max-width:1200px;
    margin:auto;
}

.reviews-title{
    font-size:42px;
    font-weight:300;
    color:#555;
    margin-bottom:10px;
}

.reviews-subtitle{
    color:#999;
    margin-bottom:60px;
}

.reviews-carousel{
    position:relative;
    height:320px;
    perspective:1000px;
}

.review-card{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%) scale(.8);
    width:650px;
    background:white;
    border-radius:14px;
    padding:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    display:flex;
    gap:25px;
    align-items: flex-start;
    opacity:.4;
    transition:.6s cubic-bezier(.2,.8,.2,1);
}

.review-card.active{
    transform:translateX(-50%) scale(1);
    opacity:1;
    z-index:3;
}

.review-card.prev{
    transform:translateX(-120%) scale(.8);
    opacity:.3;
    z-index:1;
}

.review-card.next{
    transform:translateX(20%) scale(.8);
    opacity:.3;
    z-index:1;
}

.review-card.next .review-text, .review-card.prev .review-text{
    font-size: 14px;
}

.review-card.next .review-name, .review-card.prev .review-name{
    font-size: 20px;
}


.review-photo{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:6px;
}

.review-content {
    padding-left: 20px;
}

.review-card.next, .review-card.prev {
    width: 585px;
    font-size: 14px;
}

.review-text{
    color:#666;
    line-height:1.5;
    margin-bottom:10px;
    text-align: left;
    font-size: 16px;
}

.review-stars{
    color:#ff9d00;
    margin-bottom:12px;
    width: 77px;
    font-size: 20px;
}

.review-name{
    font-size:24px;
    color:#555;
    margin-top:5px;
    text-align: left;
}

.review-role{
    color:#999;
    font-size:14px;
    text-align: left;
}

.reviews-nav{
    margin-top:25px;
}

.rev-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:white;
    box-shadow:0 6px 14px rgba(0,0,0,.1);
    margin:0 6px;
    cursor:pointer;
    font-size:20px;
}

.line-review {
    height: 1px;
    margin-top: 20px;
    margin-bottom: 15px;
    width: 200px;
    background-color: #484848;
}

.site-footer { font-family: 'Montserrat', Arial, Helvetica, sans-serif; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* ==== container (fixed width 1400 + side safe zones 70px) ==== */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 70px;            /* EXACT side offsets as requested */
  box-sizing: border-box;
}

/* SUBSCRIBE */
.footer-subscribe {
  background: #ffffff;
  padding: 46px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.footer-subscribe .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* left text */
.subscribe-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1;
}
.subscribe-desc {
  color: #7a7a7a;
  margin-top: 6px;
  font-size: 14px;
}

/* subscribe form (rounded input + pill button) */
.footer-subscribe-form {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-subscribe-form .subscribe-input-wrap {
  background: transparent;
  border-radius: 40px;
  padding: 4px;
  display:flex;
  align-items:center;
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.08);
}
.footer-subscribe-form input[type="email"] {
  border: none;
  outline: none;
  width: 420px;
  height: 44px;
  padding: 0 18px;
  font-size: 15px;
  border-radius: 36px;
  background: transparent;
  color: #222;
  box-sizing: border-box;
}
.footer-subscribe-form input::placeholder { color: #9b9b9b; }
.footer-subscribe-form .subscribe-btn {
  background: #222326;
  color: #fff;
  border: none;
  height: 44px;
  padding: 0 26px;
  font-weight: 600;
  border-radius: 36px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.footer-subscribe-form .subscribe-btn:hover { opacity: 0.95; }

/* MAIN DARK FOOTER */
.footer-main {
  background: #1f2326; /* dark background */
  color: #c6c9cc;
  padding: 56px 0 40px;
}

/* features row */
.footer-features {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-feature {
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 180px;
}
.footer-icon {
  width:56px;
  height:56px;
  border-radius:50%;
  background: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #1f2326;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  font-size:20px;
}

.d-flex {
    display: flex !important;
}
.justify-content-between {
    justify-content: space-between;
}
.footer-feature-text { color:#e6e8ea; font-size:15px; }

.cart-item {
    position: relative;
}

/* columns grid */
.footer-columns {
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* column titles & links */
.footer-col h4 {
  margin: 0 0 18px 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}
.footer-links a {
  display:block;
  color: #b7bcc1;
  text-decoration:none;
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

/* social column specifics */
.footer-col-last .footer-social-icons { display:flex; gap:12px; margin-bottom:14px; }
.footer-col-last .footer-social-icons a { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:#2a3034; border-radius:50%; color:#fff; text-decoration:none; font-size:14px; transition: all 0.3s ease; }
.footer-col-last .footer-social-icons a:hover { background: var(--primary, #f6b750); transform: translateY(-3px); }
.footer-copy { color:#9da1a6; font-size:13px; margin-bottom:12px; }
.footer-payments img { max-width:160px; filter: grayscale(1) brightness(.96); }

/* small screens - responsiveness */
@media (max-width: 1200px) {
  .footer-container { padding: 0 40px; }
  .footer-columns { gap: 30px; }
  .footer-features { gap: 16px; }
}
@media (max-width: 992px) {
  .footer-subscribe .footer-container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-features { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .footer-container { padding: 0 18px; }
  .footer-columns { grid-template-columns: 1fr; gap: 18px; }
  .footer-features { gap: 12px; }
  .footer-subscribe-form { width:100%; display:flex; flex-direction:column; align-items:stretch; gap:10px; }
  .footer-subscribe-form input { width:100%; }
  .footer-subscribe-form .subscribe-btn { width: 160px; align-self:flex-end; }
  
  
  
  
  
  
  
  
  
  
  .hero-left {
      display: none;
  }
  
    .hero-right {
        padding: 85px 10px;
        background-image: 
            linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url("/image/photo_2026-02-17_23-20-22.jpg");
        background-size: cover;
        background-position: center;
    }
  
  .hero-content h1 {
              COLOR: #fff;
        font-weight: 400;
  }
  
  .hero-content p {
      color: #dedede;
      font-size: 16px;
  }
  
  .btn-primary-hero, .btn-outline-hero {
      text-align: center;
  }
  
  .btn-outline-hero {
      color: #fff;
      border: 1px #fff solid;
  }
  
  .hero-block {
      min-height: 100px;
  }
  
  .categories-title {
          font-size: 26px;
          text-align: center;
  }
  .container {
      width: 100%;
      padding: 0 10px !important;
  }
  
  .section-button{
      padding: 12px 45px;
      width: 100%;
      text-align: center;
  }
 .categories-wrapper {
             padding: 0 10px;
 }
  
  .circle-bg {
    width: 150px;
    height: 150px; 
      
  }
    .circle-bg img {
    max-width: 110px;
    max-height: 110px; 
        
    }
    .categories-title {
            margin-bottom: 30px;
    }
    
    .home-categories-slider {
            padding: 40px 0 10px 0;
    }
    .mb-0 {
        margin-bottom: 0px;
    }
    
    .product-grid [class*="col-"] {
    padding: 0 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    width: 50%; 
    }
    
    .product-image {
        height: 265px;
    }
    
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 15px;
    }
    .product-slider {
        padding: 0 10px;
    }
    
    .reviews-section{
            padding: 50px 10px;
    }
    
    .add-to-cart-btn {
        flex: none !important;
        height: 44px !important;
        min-width: 100px !important;
        width: calc(100% - 140px) !important;
        
    }
    
    .action-section {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
    }
    
        
    .btn-view {
        display: none !important;
    }
    
    #modal-cart .modal-body {
padding: 10px 5px;
}


.banners-grid {
    display: block;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 10px;
}

}

/* back-to-top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex !important;
  align-items:center;
  justify-content:center;
  z-index: 9999;
  background:#111;
  color:#fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: opacity .25s ease, transform .25s ease;
  opacity: 0;
  pointer-events: none;
  border: none;
}
.back-to-top.show { opacity:1; pointer-events:auto; transform: translateY(-4px); }
.back-to-top:hover { background: var(--primary, #f6b750); color: #fff; }

/* tiny accessibility improvements */
.footer-subscribe-form input:focus { box-shadow: 0 6px 20px rgba(34,34,34,0.06); outline: none; }

.add-to-cart-but-icon {
  margin-right: 8px
}

button:hover {
  cursor: pointer;
}