* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: 'Inter', sans-serif;

    background: #fff;
    color: #111;

}

.container {

    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 40px;

}


.related-title {

    font-size: 34px;

    font-weight: 500;

    letter-spacing: -1px;

    margin-bottom: 26px;

    margin-top: 80px;

}
.topbar {

    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    border-bottom: 1px solid #eee;

}

.header {

    height: 90px;

    border-bottom: 1px solid #eee;

    background: #fff;

}

.header-inner {

    height: 100%;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

}

.logo {

    color: #000;

    text-decoration: none;

    font-size: 48px;

    letter-spacing: 10px;

    font-weight: 600;

    justify-self: center;

}

.nav-left,
.header-right {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-left a,
.header-right a {

    color: #111;

    text-decoration: none;

    font-size: 14px;

    text-transform: uppercase;

}

.header-right {



    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;


    justify-content: flex-end;

}

.icon-link {

    position: relative;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    transition: .2s;

}

.icon-link i {

    font-size: 25px;

}

.icon-link:hover {

    background: #f5f5f5;

}

.cart-count {

    position: absolute;

    top: -8px;
    right: -10px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

}


.hero {

    padding: 0;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 720px;

}

.hero-left {

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 80px;

}

.hero-left h1 {

    font-size: 96px;

    letter-spacing: 8px;

    margin-bottom: 40px;

}
.home-products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}
.hero-left p {

    font-size: 34px;

    line-height: 1.4;

    margin-bottom: 50px;

}

.hero-btn {

    width: fit-content;

    color: #111;

    text-decoration: none;

    font-size: 15px;

    letter-spacing: 2px;

    border-bottom: 1px solid #111;

    padding-bottom: 8px;

}
.hero-right {

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;

    border-radius: 24px;

    padding: 30px;

}
.hero-right img {

    width: 100%;
    max-width: 560px;

    object-fit: contain;

}
.catalog-page {

    padding: 50px 0 100px;

}

.catalog-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 60px;

}

.filters {

    position: sticky;

    top: 20px;

    height: fit-content;

    max-height: calc(100vh - 40px);

    overflow-y: auto;

}

.filter-block {

    margin-bottom: 45px;

}

.filter-title {

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.filter-search {

    width: 100%;
    height: 52px;

    border: 1px solid #ddd;

    padding: 0 18px;

    font-size: 15px;

}

.filter-checkbox {

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    font-size: 14px;

    color: #444;

}

.filter-btn {

    width: 100%;
    height: 54px;

    border: none;

    background: #111;
    color: #fff;

    cursor: pointer;

    letter-spacing: 2px;

}

.catalog-head {

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 40px;

}

.catalog-head h1 {

    font-size: 52px;

    font-weight: 500;

}

.catalog-count {

    color: #777;

}

.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.product-card {

    text-decoration: none;

    color: #111;

    transition: .25s;

}

.product-card:hover {

    transform: translateY(-5px);

}

.product-image {

    aspect-ratio: 1/1.15;

    margin-bottom: 18px;

    border-radius: 24px;

    overflow: hidden;

    background: #111;

}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

.brand {

    font-size: 13px;

    color: #777;

    margin-bottom: 6px;

}

.name {

    font-size: 20px;

    margin-bottom: 6px;

}

.version {

    font-size: 14px;

    color: #777;

    margin-bottom: 10px;

}

.price {

    font-size: 16px;

}

.pagination {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 70px;

}

.pagination-btn {

    width: 46px;
    height: 46px;

    border: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #111;

    transition: .2s;

}


.mood-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin: 24px 0;

}

.mood-tag {

    padding: 8px 14px;

    border: 1px solid #e7e7e7;

    border-radius: 999px;

    background: #fafafa;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #111;

    line-height: 1;

    transition: 0.2s ease;

}

.mood-tag:hover {

    background: #111;
    color: #fff;

    border-color: #111;

}


.product-description {

    margin-top: 20px;

    line-height: 1.8;
    color: #555;

}
.pagination-btn.active {

    background: #111;
    color: #fff;

    border-color: #111;

}

.product-page {

    padding: 80px 0;

}

.product-grid {

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 60px;

    align-items: start;

}

.main-image {

    border-radius: 28px;

    overflow: hidden;

    background: #f5f5f5;

    max-height: 760px;

}

.main-image img {

    width: 100%;

    height: 760px;

    object-fit: cover;

    display: block;

}

.product-right {

    position: sticky;

    top: 30px;

}

.product-brand {

    font-size: 14px;

    color: #777;

    margin-bottom: 10px;

}

.product-right h1 {

    font-size: 48px;

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 14px;

}

.product-version {

    color: #666;

    margin-bottom: 20px;

}

.product-description {

    margin-bottom: 35px;

    color: #666;

    line-height: 1.7;

}

.option-title {

    margin-bottom: 14px;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.volumes,
.bottles {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 28px;

}


.mood-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 25px 0;

}

.mood-tag {

    padding: 10px 16px;

    border: 1px solid #e5e5e5;

    border-radius: 999px;

    background: #fafafa;

    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #111;

    transition: 0.2s ease;

}

.mood-tag:hover {

    background: #111;
    color: #fff;

    border-color: #111;

}



.mood-tag.dark {
    background: #111;
    color: #fff;
}

.mood-tag.fresh {
    background: #eef7ff;
}

.mood-tag.luxury {
    background: #f6f1e7;
}

.volume-btn,
.bottle-btn {

    min-height: 46px;

    padding: 0 18px;

    border: 1px solid #ddd;

  color: #111;

    background: #fff;

    -webkit-appearance: none;

    appearance: none;

    cursor: pointer;

    transition: .2s;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    font-size: 14px;

}

.volume-btn.active,
.bottle-btn.active {

    background: #111;

    color: #fff;

    border-color: #111;

}

.add-to-cart.added {

    background: #1a1a1a;

    opacity: 0.85;

}

.product-price {

    font-size: 48px;

    font-weight: 600;

    letter-spacing: -2px;

    margin: 35px 0;

}

.add-to-cart {

    width: 100%;

    height: 62px;

    border: none;

    border-radius: 18px;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-size: 14px;

    letter-spacing: 2px;

}

.footer {

    margin-top: 100px;

    padding: 60px 0;

    border-top: 1px solid #eee;

}

.mobile-menu-btn,
.mobile-menu,
.mobile-filters-btn {

    display: none;

}

.mobile-menu-close {

    width: 42px;
    height: 42px;

    border: none;

    background: none;

    font-size: 34px;

    align-self: flex-end;

    cursor: pointer;

}

@media(max-width: 1100px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }
	.home-products-grid {

    grid-template-columns: repeat(2, 1fr);

}

}

@media(max-width: 900px) {

    .container {

        padding: 0 18px;

    }

    .topbar {

        font-size: 11px;

        text-align: center;

        padding: 0 15px;

    }

    .header {

        height: 74px;

    }

    .header-inner {

        grid-template-columns: auto 1fr auto;

        gap: 15px;
		position: relative;

    }

    .logo {

        font-size: 26px;

        letter-spacing: 4px;

    }

    .nav-left {

        display: none;

    }

    .header-right {

        gap: 10px;
		 position: relative;


    }

.mobile-menu-btn {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: transparent;

    border: none;

    color: #111;

    font-size: 28px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

}

   .mobile-menu {

    position: fixed;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100vh;

    background: #f8f8f6;

    z-index: 99999;

  padding: 90px 24px 40px;

    transition: .35s ease;

    display: flex;
    flex-direction: column;

    gap: 22px;

}

.mobile-menu.active {

    left: 0;

        display: flex;

    }

    .mobile-menu a {

        color: #111;

        text-decoration: none;

      

    font-size: 20px;

    font-weight: 500;

    letter-spacing: -0.3px;



    }
.mobile-menu-close {

    position: absolute;

    top: 34px;
    right: 28px;

    background: none;
    border: none;

     font-size: 32px;

    top: 24px;

    right: 22px;

    color: #111;

}
    .catalog-layout {

        grid-template-columns: 1fr;

    }
	
	.mobile-menu a {

    font-size: 30px;

    color: #111;

    text-decoration: none;

    font-weight: 500;

}

    .filters {

        position: relative;

        top: 0;

        max-height: none;

        overflow: visible;

        margin-bottom: 40px;

    }

    .mobile-filters-btn {

        width: 100%;
        height: 52px;

        border: 1px solid #ddd;

        background: #fff;
		color:#111;

        margin-bottom: 25px;

        display: block;

        font-size: 14px;

        letter-spacing: 2px;

    }

    #filtersForm {

        display: none;

    }

    #filtersForm.active {

        display: block;

    }

    .catalog-head {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .catalog-head h1 {

        font-size: 34px;

    }

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

    }

    .name {

        font-size: 16px;
		 line-height: 1.3;

    }

    .product-grid {

        grid-template-columns: 1fr;

       gap: 34px 18px;

    }

    .main-image img {

        height: auto;

        aspect-ratio: 1/1.15;

    }

    .product-right {

        position: static;

    }

    .product-right h1 {

        font-size: 36px;

    }

    .product-price {

        font-size: 38px;

    }

}

@media(max-width: 700px) {

    .products-grid {

   grid-template-columns: repeat(2, 1fr);

        gap: 26px 14px;

    }
	
	.home-products-grid {

    grid-template-columns: 1fr;

}

}


.section-heading {

    font-size: 42px;

    margin-bottom: 45px;

    letter-spacing: 2px;

}

.discover {

    padding: 100px 0;

}

.discover-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.discover-card {

    min-height: 260px;

    padding: 35px;

    background: #f7f7f7;

    text-decoration: none;

    color: #111;

    border-radius: 28px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    transition: .3s;

}

.discover-card:hover {

    transform: translateY(-5px);

    background: #111;

    color: #fff;

}

.discover-title {

    font-size: 30px;

    margin-bottom: 18px;

}

.discover-text {

    color: #666;

    line-height: 1.7;

}

.discover-card:hover .discover-text {

    color: rgba(255,255,255,.75);

}

.featured-products {

    padding: 40px 0 100px;

}

.atmosphere {

    padding-bottom: 120px;

}

.atmosphere-box {

    min-height: 340px;

    background: #111;

    color: #fff;

    border-radius: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px;

}

.atmosphere-text {

    max-width: 900px;

    text-align: center;

    font-size: 42px;

    line-height: 1.5;

}

@media(max-width: 1000px) {

    .discover-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width: 900px) {

    .atmosphere-text {

        font-size: 28px;

    }

}



.search-btn {

    background: transparent;

    border: none;

    padding: 0;

    width: auto;
    height: auto;
	color: #111 !important;

    -webkit-appearance: none;

}



.more-filters {

    margin-top: 20px;

}

.search-btn i {

    font-size: 20px;
	color: #111 !important;

}

.more-filters summary {

    cursor: pointer;

    font-size: 13px;
    letter-spacing: 1px;

    color: #777;

}

.more-filters-list {

    margin-top: 15px;

}

.filter-checkbox {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;
    margin: 0 8px 8px 0;

    border: 1px solid #ddd;

    border-radius: 999px;

    font-size: 13px;
    cursor: pointer;

    transition: 0.2s;

}

.filter-checkbox:hover {

    border-color: #000;

}

.filter-checkbox input {

    display: none;

}

.filter-checkbox.active {

    background: #000;
    color: #fff;
    border-color: #000;

}

.filters {

    width: 280px;
    min-width: 280px;

}

.filter-btn {

    width: 100%;
    margin-top: 25px;

}

.more-filters {

    margin-top: 20px;
}


.filter-search {

    width: 100%;
	color:#111111;

    height: 46px;

    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 14px;

    background: #fff;

    font-size: 14px;

    appearance: none;

    outline: none;

    transition: 0.2s;

}

.filter-search:focus {

    border-color: #000;

}


.filters select {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 14px center;

}

.filter-btn {

    width: 100%;

    height: 46px;

    border: none;
    border-radius: 14px;

    background: #111;
    color: #fff;

    font-size: 13px;
    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.2s;

}

.filter-btn:hover {

    background: #000;

}

.clear-filters {

    display: inline-block;

    margin-top: 14px;

    font-size: 13px;

    color: #777;

    text-decoration: none;

    transition: 0.2s;

}

.clear-filters:hover {

    color: #000;

}


@media (max-width: 768px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .hero-right {

        order: -1;

        padding: 20px;

    }

    .hero-right img {

        width: 100%;

        max-width: 100%;

        height: auto;

    }
	
	.logo {

        font-size: 34px;

        letter-spacing: 4px;

    }


}

@media (max-width: 768px) {

    .hero-left h1 {

        font-size: 64px;

        line-height: 0.95;

    }

}


@media (max-width: 768px) {

    .hero-left p {

        font-size: 18px;

        line-height: 1.5;

    }

}@media (max-width: 768px) {

    .container {

        padding: 0 20px;

    }

}
@media(max-width: 768px) {

    .hero-left {

        padding-right: 0;

    }

}


.page-section {

    padding: 80px 0;

}

.narrow-page {

    max-width: 760px;

}

.page-title {

    font-size: 48px;

    margin-bottom: 40px;

    font-weight: 500;

}

.page-text {

    display: flex;
    flex-direction: column;

    gap: 24px;

    font-size: 18px;

    line-height: 1.7;

    color: #333;

}

.page-text h2 {

    font-size: 24px;

    font-weight: 500;

    margin-top: 20px;

}

.contacts-list {

    display: flex;
    flex-direction: column;

    gap: 18px;

}

.contact-item {

    font-size: 20px;

    color: #111;

    text-decoration: none;

    border-bottom: 1px solid #eee;

    padding-bottom: 16px;

}


@media(max-width: 768px) {


    .add-to-cart {

    width: 100%;

    height: 62px;

    border-radius: 18px;

    font-size: 18px;

    letter-spacing: 2px;

}
}

@media(max-width:768px){

    .product-image img {

        aspect-ratio: 1 / 1.2;

        object-fit: cover;

    }

}

@media(max-width:768px){

    .related-title {

        font-size: 26px;

        margin-top: 60px;

        margin-bottom: 22px;

    }

}


@media(max-width:768px){

    .brand {

        font-size: 12px;

        margin-bottom: 4px;

    }

    .name {

        font-size: 15px;

        line-height: 1.35;

        margin-bottom: 8px;

        font-weight: 400;

    }

    .price {

        font-size: 15px;

    }

}



.promo-error {

    margin-top: 10px;

    color: #d40000;

    font-size: 13px;

}

.promo-success {

    margin-top: 10px;

    color: #0f8a32;

    font-size: 13px;

}

.search-box {

    position: absolute;

    top: 50%;

    right: 55px;

    transform: translateY(-50%);

    width: 0;

    opacity: 0;

    overflow: hidden;

    transition: .25s ease;

}

.search-box.active {

    width: 220px;

    opacity: 1;

}

.search-box input {

    width: 100%;

    height: 44px;

    border-radius: 14px;

    border: 1px solid #eee;

    padding: 0 16px;

    font-size: 14px;

    background: #fff;

}

@media(max-width: 768px){

    .logo {

        font-size: 22px;

        letter-spacing: 3px;

        line-height: 1;

        white-space: nowrap;

    }

}