html{
    scroll-padding-top: 120px;
}

main > .container {
    padding: 100px 15px 20px;
    width: 91vw !important;
    max-width: 1920px;
}
.my-bar{
    height: 80px;
    padding: 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(rgb(255 255 255 / 96%), rgb(255 255 255 / 87%)) padding-box, radial-gradient(rgb(0 0 0 / 20%), rgb(237 237 237 / 0%)) border-box;
    backdrop-filter: blur(2px);
}
.my-bar .container{
    max-width: 90.6vw;
}
.navbar-brand{
    outline: none;
}
.navbar-collapse{
    justify-content: space-between;
    max-width: 55vw;
    margin-right: 25px;
}
.navbar-collapse .navbar-nav{
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 25px;

}
.logo{
    width: 200px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    position: relative;
}

#searchBtn{
    background: url("../../web/media/IMAGE(3).png") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}
#cartBtn{
    background: url("../../web/media/IMAGE(2).png") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}
.arrow{
    width: 12px;
}
#solBtn{
    color: rgb(0,0,0);
    font-size: 16px;
}
.nav-link{
    font-family: 'Manrope', sans-serif !important;
    color: black !important;
    font-size: 16px;
}
.nav-menu {
    display: flex;
    gap: 30px;
}

.icons-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
    position: relative;
}

.icon-btn:hover {
    color: #0078d4;
}

.dropdown-menu {
    position: absolute;
    align-items: center;
    top: 50vh;
    right: 50%;
    background-color: white;
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.25);
    width: 624px;
    z-index: 100;
    display: none;
    border-radius: 28px !important;
    border: none;
    padding: 0;
    transform: translate(50%, -50%);
    transition: display .6s ease-out !important;
    min-height: 400px;
}

.search-dropdown {
    width: 350px;
    min-height: 60px;
    transition: display .6s ease-out !important;
    overflow: hidden;
}

.cart-dropdown {
    flex-direction: column;
    transition: display .6s ease-out !important;
}

.cart-dropdown::before{
    position: absolute;
    content: 'Корзина';
    top: -55px;
    left: 7px;
    z-index: 101;
    font-family: 'Jost', sans-serif !important;
    color: white;
    font-size: 36px;
}
.search-dropdown::before{
    position: absolute;
    content: 'Поиск';
    top: -55px;
    left: 7px;
    z-index: 101;
    font-family: 'Jost', sans-serif !important;
    color: white;
    font-size: 36px;
}

.dropdown-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.search-input-container {
    display: flex;
    margin-bottom: 15px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: #0078d4;
}

.sort-section {
    margin-bottom: 20px;
    width: 100%;
}

.sort-title {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.sort-options {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.sort-btn {
    font-family: 'Jost', sans-serif !important;
    background-color: #ffffff;
    border: none;
    padding: 5px 9px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    border-bottom: #d1d1d1 2px solid;
}

.sort-btn:hover {
    background-color: #e9e9e9;
}

.sort-btn.active {
    background-color: #ffffff;
    color: #040404;
    border: none;
    border-bottom: gray 2px solid;
}

.cart-empty {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin: auto;
}
.cart-empty img{
    margin-right: 15px;
}

.cart-empty-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ccc;
    width: 60px;
}

.cart-empty-text {
    font-size: 16px;
    font-family: 'Jost', sans-serif !important;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

.close-btn:hover {
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: none;
    backdrop-filter: blur(3px);
}

.carousel-control-prev, .carousel-control-next{
    width: 5% !important;
}

/* слайдер */

.slider-container {
    border-radius: 32px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #dce5e2;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
}

.slide-image img {
    width: fit-content;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.slide-content {
    padding: 0 60px;
    max-width: 800px;
}
.slide-content h2{
    font-family: 'Jost', sans-serif !important;
    font-style: normal;
    font-weight: 500;
    font-size: 58px;
    width: 600px;
}

.slide-description {
    font-family: 'Jost', sans-serif !important;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    max-width: 610px;
}

.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 14px 55px;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.6s ease;
    border: black 2px solid;
    cursor: pointer;
    margin-top: 5px;
}

.explore-btn:hover {
    background: #000000;
    color: white;
    font-weight: 600;
    transform: translateY(-3px);
}

.explore-btn::after {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.explore-btn:hover::after {
    transform: translateX(5px);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 30px;
    z-index: 10;
    transform: translate(-50%, -50%);
    left: 50%;
}

.indicator-line {
    width: 220px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-line.active {
    background: #000000;
}

.indicator-line:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-nav {
    position: absolute;
    bottom: 50%;
    display: flex;
    gap: 15px;
    z-index: 10;
    width: 100%;
    justify-content: space-between;
    transform: translateY(50%);
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    color: #000000;
    border: none;
    background: none;
    font-size: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;

}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .slide-title {
        font-size: 2.8rem;
    }

    .slide-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 30px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-indicators,
    .slider-nav {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .slide-image {
        height: 400px;
    }

    .indicator-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .slide-image {
        height: 300px;
    }

    .explore-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .indicator-line {
        width: 30px;
    }
}

.slide.active .slide-title {
    animation: fadeInUp 0.8s ease;
}

.slide.active .slide-description {
    animation: fadeInUp 1s ease;
}

.slide.active .explore-btn {
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* категории */

.offers-section {
    width: 100%;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-description {
    font-family: 'Jost', sans-serif !important;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    width: 100%;
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition: all 0.6s ease;
    position: relative;
    cursor: pointer;
    height: 97%;
}

.category-card:hover {
    transform: translateY(-5px) !important;
    transition: all 0.3s ease;
}

.category-image {
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-content {
    padding: 25px;
    font-size: 34px;
}
.bl_1{
    gap: 70px;
}
/* первая*/

#categ-card-one .category-content{
    padding: 0 30px;
    text-align: end;
    display: flex;
    flex-direction: column;
}
#categ-card-one{
    height: 500px;
}
#categ-card-one .category-image{
    height: 385px;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
}
#categ-card-one .category-image img{
    width: 85%;
    height: auto;
}

/* вторая*/

#categ-card-two .category-content{
    padding: 0 30px;
    text-align: end;
    align-content: center;
}
#categ-card-two{
    height: 250px;
    display: flex;
    justify-content: space-between;
}
#categ-card-two .category-image{
    height: 415px;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
}
#categ-card-two .category-image img{
    width: 360px;
    height: auto;
    transform: translateY(-80px);
}

/* третья*/

#categ-card-three .category-content{
    padding: 0 30px;
    text-align: center;
    align-content: center;
}
#categ-card-three{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#categ-card-three .category-image{
    height: 55%;
}
#categ-card-three .category-image img{
    width: 450px;
    height: auto;
}

/* Четвертая */

#categ-card-four .category-content{
    padding: 0 30px;
    text-align: center;
    align-content: center;
}
#categ-card-four{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#categ-card-four .category-image{
    height: 60%;
}
#categ-card-four .category-image img{
    width: 500px;
    height: auto;
    transform: translateX(-80px);
}

.category-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.category-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.1;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

/* мостсейлед */

.top-products-section {
    width: 100%;
}

.top-products-header {
    margin-bottom: 60px;
    text-align: center;
}

.top-products-subtitle {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.2;
}

.top-products-title {
    font-family: 'Jost', sans-serif !important;
    color: #666;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.top-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 0.25fr));
    gap: 35px;
    margin-bottom: 60px;
    transition: .4s;
}

.top-product-item {
    background: white;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #ffffff;
    transition: transform 0.4s ease, border-bottom-color 0.5s ease-out, opacity 0.6s ease-out !important;
}

.top-product-item:hover {
    transform: scale(1.06) !important;
    border-bottom: 1px solid #c8c8c8;
}

.top-product-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.top-product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.top-product-name {
    font-family: 'Readex Pro', sans-serif !important;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.top-product-desc {
    font-family: 'Manrope', sans-serif !important;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px;
}

.top-product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: space-between;
}

.top-product-price {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
}

@media (max-width: 1200px) {
    .top-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-products-title {
        font-size: 2.2rem;
    }

    .top-products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .top-product-image {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .top-products-title {
        font-size: 1.8rem;
    }

    .top-product-name {
        font-size: 1.4rem;
    }

    .top-product-price {
        font-size: 1.5rem;
    }
}

/* лучшии*/

.best-products {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.best-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.best-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.best-subtitle {
    font-family: 'Jost', sans-serif !important;
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

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

.product-card {
    padding: 50px 40px;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    transition: background-color 0.6s ease, transform 0.4s ease-out, opacity 0.6s ease-out !important;

}

.best-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.best-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-badge {
    font-family: 'Jost', sans-serif !important;
    display: inline-block;
    color: #000000;
    font-weight: 500;
    margin-bottom: 40px;
    width: fit-content;
    text-align: center;
}

.products-grid:hover .product-card{
    transform: scale(0.95) !important;
    transition: transform 0.2s linear; !important;
}

.products-grid:hover .product-card:hover{
    transform: scale(1.05) !important;
    transition: background-color 0.6s ease, transform 0.2s linear; !important;
    background-color: white;
}


.product-title {
    font-size: 14px;
    font-family: 'Jost', sans-serif !important;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .best-title {
        font-size: 28px;
    }

    .product-card {
        padding: 20px;
    }
}

/* идеи*/

.ideas-section {
    margin: 60px 0;
    width: 100%;
}

.ideas-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ideas-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.ideas-subtitle {
    font-family: 'Jost', sans-serif !important;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 20px;
}

.ideas-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.ideas-image {
    width: 50%;
    height: 380px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

.ideas-image img{
    width: 100%;
    height: auto;
}

.ideas-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.idea-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 21px;
    font-weight: 450;
    margin: 8px 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
}
.ideas-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.see-all-link {
    font-family: 'Manrope', sans-serif !important;
    display: inline-flex;
    align-items: center;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 550;
    text-decoration: none;
}

@media (max-width: 900px) {
    .ideas-content {
        flex-direction: column;
        gap: 30px;
    }

    .ideas-image {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .ideas-title {
        font-size: 28px;
    }

    .idea-title {
        font-size: 16px;
    }
}

/* поиск */

.search-section {
    max-width: 800px;
    margin: 0 auto 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-header {
    text-align: center;
    margin-bottom: 20px;
}

.search-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.search-input{
    padding: 20px 70px;
    border: 0.1rem solid #C5C5C5;
    border-radius: 100px;
    font-size: 1rem;
    outline: none;
    width: 680px;
    background: url("../../web/media/search.svg") no-repeat 18px #F8F9FA;
    background-size: auto 52%;
    transition: all .6s ease-out;
}

.search-input:hover{
    transform: scale(1.03);
    transition: all .6s ease-out;
}

.search-input:focus{
    border-color: black !important;
    transition: all .6s ease-out;
}

.search-input::placeholder{
    color: black;
    font-family: 'Manrope', sans-serif !important;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 40px;
    width: 680px;
}

.search-tag {
    padding: 12px 24px;
    border: 1.3px solid #c3c3c3;
    border-radius: 50px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* рассылка */

.newsletter-section {
    background: #DCE5E2;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 45px 0 55px;
    text-align: center;
    border-radius: 16px;
}

.newsletter-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.newsletter-description {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    max-width: 300px;
    padding: 14px 30px;
    border: 0.1rem solid #000000;
    border-radius: 50px 0 0 50px !important;
    font-size: 14px;
    border-right: none;
    background: none;
}

.newsletter-input::placeholder{
    color: black;
}

.newsletter-input:focus {
    outline: none;
    border-color: #000000;
}

.newsletter-button {
    font-family: 'Manrope', sans-serif !important;
    padding: 14px 32px;
    background-color: #000000;
    color: #ffffff;
    border: 0.1rem solid #000000;
    border-left: none;
    border-radius: 0 50px 50px 0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-button:hover{
    background-color: rgba(255,255,255,0);
    color: black;
    transition: all .3s ease;
}


@media (max-width: 768px) {
    .search-title,
    .newsletter-title {
        font-size: 28px;
    }

    .search-tags {
        gap: 10px;
    }

    .search-tag {
        padding: 10px 18px;
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

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

    .newsletter-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .search-title,
    .newsletter-title {
        font-size: 24px;
    }

    .search-tag {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* футер */

.placeholder {
    text-align: center;
    color: #666;
    font-size: 18px;
}

.footer {
    background-color: #F8F9FA;
    padding: 60px 80px 30px;
    border-top: 1px solid #DCE5E2;
}

.footer-header {
    text-align: center;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.footer-subtitle {
    font-family: 'Manrope', sans-serif !important;
    font-size: 16px;
    line-height: 1.5;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.f-c-spec{
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h3 {
    font-family: 'Jost', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #000000;
    width: 100%;
    justify-content: space-between;
}
.copyright-item {
    font-family: 'Jost', sans-serif !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
    }
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer > .footer-columns{
    width: 91vw !important;
    max-width: 1920px;
}
footer > .footer-bottom{
    width: 91vw !important;
    max-width: 1920px;
}

/* фильтры */

.product-filters {

}

.filters-header {
    margin-bottom: 30px;
    text-align: left;
}

.filters-title {
    font-family: 'Jost', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.filters-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    text-align: left;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    justify-items: normal
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-family: 'Jost', sans-serif !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-left: 5px;
}

.filter-field {
    flex: 1;
}

.filter-select,
.filter-input {
    font-family: 'Manrope', sans-serif !important;
    width: 100%;
    padding: 14px 18px;
    border: 0.1rem solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    background: #ffffff;
    color: #333;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}

.filter-input {
    background: none;
    border-radius: 50px;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.filter-select:hover {
    border-color: #999;
}

.filter-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 12px;
    align-items: flex-end;
}

.filter-btn {
    font-family: 'Jost', sans-serif !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0.1rem black solid;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
}

.filter-btn-apply {
    background: none;
    color: #000000;
    width: 100%;
}

.filter-btn-apply:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

.filter-btn-reset {
    padding: 14px 18px;
    color: #000000;
}

.filter-btn-reset:hover {
    background: #000000;
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-filters {
        padding: 20px;
    }

    .filters-title {
        font-size: 1.5rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-buttons {
        flex-direction: row;
    }

    .filter-btn {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .filters-title {
        font-size: 1.3rem;
    }

    .filter-buttons {
        flex-direction: column;
    }
}

.product-index {
    padding: 20px 0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.product-count{
    margin-bottom: 20px;
}

.product-count h3{
    font-family: 'Jost', sans-serif !important;
}

/* покупка в 1клик */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.quick-buy-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    width: auto;
    max-width: 90vw;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Jost', sans-serif !important;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}
.modal-subtitle{
    font-family: 'Manrope', sans-serif !important;
    padding: 15px 30px 0;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 15px 30px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    height: 510px;
    overflow: auto;
}

.form-inputs{
    display: flex;
    flex-direction: column;
}
.product-info{
    width: 300px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.product-info h4 {
    font-family: 'Readex Pro', sans-serif !important;
    margin: 0;
    font-size: 1.8rem;
}

.product-info p {
    font-family: 'Manrope', sans-serif !important;
    margin: 0;
    font-size: 1.8rem;
}

.product-form{
    width: 100%;

    height: 100%;
}

.product-form form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group label{
    font-family: 'Jost',sans-serif !important;
    font-size: 1.2rem;
    padding-left: 13px;
}
.form-group input{
    border-radius: 50px;
}
.form-group textarea{
    border-radius: 23px;
}
.quick-buy-input{
    width: 100%;
    padding: 9px 13px;
    border: 0.1rem solid #c3c3c3;
    transition: all .4s ease-out;
}
.quick-buy-input:hover{
    border-color: gray;
    transition: all .4s ease-out;
}
.quick-buy-input:focus{
    border: black;
    transition: all .4s ease-out;
}
.help-block{
    font-family: 'Manrope',sans-serif !important;
    font-size: 0.8rem;
    letter-spacing: -0.5px;
    text-align: right;
    color: #c83333;
}
.form-control:focus {
    outline: none;
    border-color: #000000;
}

.form-errors {
    margin-bottom: 15px;
    padding: 10px;
    background: #ffebee;
    border-radius: 6px;
    border: 1px solid #ffcdd2;
}

.error-message {
    color: #c62828;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-actions {
    display: flex;
    gap: 10px;
}

.form-actions .btn {
    font-family: 'Jost', sans-serif !important;
    font-weight: 600;
    padding: 13px;
    border: none;
    border-radius: 30px !important;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.btn-primary {
    font-family: 'Jost', sans-serif !important;
    font-weight: 600;
    font-size: 0.8rem;
    background: white !important;
    color: #000 !important;
    padding: 10px 13px !important;
    border-radius: 30px !important;
    transition: all 0.6s ease;
    border: black 2px solid !important;
    cursor: pointer;
}

.btn-primary:hover{
    background: black !important;
    color: white !important;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}
#modalProductImage{
    background-size: contain !important;
    background-position: center !important;
    width: auto;
    height: 100%;
}

#modalProductPrice:before{
    content: '₽ ';
}


/* админка */

.login-form{
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: rgba(255,255,255, 0.4);
    backdrop-filter: blur(3px);
}
.login-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.panel-body p{
    font-family: 'Manrope', sans-serif !important;
}
.admin-title-1{
    font-family: 'Jost', sans-serif !important;
}

td a{
    text-decoration: none !important;
    color: #4a4a4a !important;
}
td a:hover{
    color: black !important;
}

tr th{
    font-family: 'Jost', sans-serif !important;
}

tr td{
    font-family: 'Manrope', sans-serif !important;
}

.orders-view{
    max-width: 600px;
    width: 95vw;
}

.orders-view .card{
    background: rgb(255 255 255 / 40%) !important;
    backdrop-filter: blur(3px);
}
.card-header h4{
    font-family: 'Jost', sans-serif;
}
.card-header span{
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
}
.info-card h5{
    font-family: 'Jost', sans-serif;
}
.info-content p{
    font-family: 'Manrope', sans-serif;
}
.orders-create{
    max-width: 600px;
    width: 95vw;
}
.orders-create .card{
    background: rgb(255 255 255 / 40%) !important;
    backdrop-filter: blur(3px);
}
.form-group{
    margin-bottom: 10px;
}
.form-control{
    padding: 8px 0 10px 15px !important;
}
.card{
    border-radius: 15px !important;
}

.card-body{
    padding: 15px !important;
}
.orders-update{
    width: 600px;
    max-width: 100%;
}
#ordersform-product_id{
    border-radius: 50px !important;
    min-width: 100% !important;
}

.btn-group a{
    border-radius: 30px !important;
}

.card-footer{
    background: none !important;
    padding: 0 !important;
}
.form-group .btn-group{
     width: 100%;
    margin: 0;
}
.btn-group{
    display: flex;
    gap: 10px;
}
.btn-toolbar .btn-group a{
    border-radius: 10px !important;
}
.btn-toolbar{
    padding-top: 15px !important;
}
input:hover{
    border-color: #9c9c9c !important;
}
input:focus{
    border-color: black !important;
    box-shadow: none !important;
}
select:hover{
    border-color: #9c9c9c !important;
}
select:focus{
    border-color: black !important;
    box-shadow: none !important;
}
textarea:hover{
    border-color: #9c9c9c !important;
}
textarea:focus{
    border-color: black !important;
    box-shadow: none !important;
}

select{
    border-radius: 50px !important;
}
/* продукты  */

.card-header div h4{
    font-family: 'Jost', sans-serif;
}
.card-header div span{
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
}

.admin-product-image{
    border: 1px solid #d3d3d3;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(3px);
}

.product-info-content{
    font-family: 'Jost', sans-serif;
    border-top: 1px solid #c5c5c5;
    background: none;
}

.products-view .card{
    width: 700px;
    background: rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(3px);
    border-radius: 20px 20px 30px 30px   !important;
}

.modal-image-body{
    padding: 15px;
}
.products-update{
    width: 610px;
}
.products-update .card{
    background: rgb(255 255 255 / 40%) !important;
    backdrop-filter: blur(3px);
}

.product-create{
    width: 600px;
}
.product-create .card{
    background: rgb(255 255 255 / 40%) !important;
    backdrop-filter: blur(3px);
}

.admin-body{
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.8)), url("../../web/media/bg.png");
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    background-position-y: 60px;
}

.admin-bar{
    backdrop-filter: blur(0px);
    background: none;
}
.admin-card-header{
    font-family: 'Jost', sans-serif;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c1c1c1;
    padding: 10px 16px;
}

.admin-title{
    font-family: 'Jost', sans-serif !important;
    font-size: 1.4rem;
    font-weight: 500;
}

.admin-sub-text{
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 300;
}

.product-btn-toolbar{
    display: flex;
    padding: 15px;
}

.product-btn-toolbar .btn-group-2{
    width: auto;
    display: flex;
    gap: 10px;
}

.product-btn-toolbar .btn-group-2 .btn-primary{
    height: 48px;
    padding: 0 !important;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-body .products-form form{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 10px;
}
.form-group label{
    white-space: nowrap;
}

/* поиск */

.search-dropdown form{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 18px;
}
.search-dropdown form input{
    width: 100%;
    border: none;
}
.search-dropdown form button{
    border: none;
    box-shadow: none;
    background: none;
    font-size: 1.2rem;
}
.search-dropdown form input:focus{
    border: none !important;
    outline: none;
}