
.aromat-list {
    padding: 60px 0 80px;
}
.aromat-list__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}
.aromat-list__title {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.aromat-list__subtitle {
    font-size: 16px;
    color: #0C0C0C;
    line-height: 1.4;
}
.aromat-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}
.aromat-card {
    position: relative;
}
.aromat-card__inner {
    position: relative;
    overflow: hidden;
    height: 460px;
}
.aromat-card__imglink {
    position: absolute;
    inset: 0;
    display: block;
}
.aromat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.aromat-card:hover .aromat-card__img {
    transform: scale(1.04);
}
.aromat-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: #FEFEFE;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
    pointer-events: none;
}
.aromat-card__overlay a {
    pointer-events: auto;
    color: #FEFEFE;
    font-size: 20px;
}
.aromat-card__tags {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.aromat-card__tags a {
    transition: opacity .2s ease;
}
.aromat-card__tags a:hover {
    text-decoration: underline;
    opacity: .85;
}
.aromat-card__tags i {
    font-style: normal;
    opacity: .8;
}
.aromat-card__overlay a.aromat-card__btn {
    margin-top: 20px;
    background: #0C0C0C;
    color: #fff;
    padding: 12px 22px;
    font-size: 14px;
    transition: background .25s ease;
    border-radius: 4px;
}
.aromat-card:hover .aromat-card__btn {
    background: #2B2A29;
}
.aromat-list__empty {
    text-align: center;
    color: #777;
}

.aromat-single__hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #1c1c1c;
}
.aromat-single__head {
    text-align: center;
    margin: 30px auto 40px;
}
.aromat-single__title {
    font-size: 28px;
    line-height: 1.4;
    color: #0C0C0C;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.aromat-single__desc-band{
    padding: 28px;
    background: #F4F3F3;
}

.aromat-single__tags {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 20px;
    color: #766D6C;
}
.aromat-single__tags i {
    font-style: normal;
    opacity: .7;
}
.aromat-single__tabs {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 15px;
}
.aromat-single__tabs i {
    font-style: normal;
    color: #999;
}
.aromat-single__tab {
    color: #888;
    font-size: 20px;
    transition: color .2s ease;
}
.aromat-single__tab:hover {
    color: #333;
}
.aromat-single__tab.active {
    color: #1c1c1c;
    font-weight: 600;
}
.aromat-single__desc {
    max-width: 1280px;
    margin: 0 auto 0px;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    color: #0C0C0C;
}

.aromat-card__overlay a.aromat-card__name {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.aromat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 34px;
}
.aromat-tabs__btn {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #1c1c1c;
    padding: 12px 26px;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
}
.aromat-tabs__btn:hover {
    border-color: #1c1c1c;
}
.aromat-tabs__btn.active {
    background: #1c1c1c;
    border-color: #1c1c1c;
    color: #fff;
}

.aromat-pane {
    display: none;
}
.aromat-pane.active {
    display: block;
}
.aromat-products {
    display: flex;
    flex-wrap: wrap;
}
.aromat-products .relate__item {
    width: 33.33%;
}
.aromat-pane__empty {
    text-align: center;
    color: #777;
    padding: 30px 0;
}

.aromat-others {
    margin-top: 60px;
    padding: 0px 0 20px;
}
.aromat-others__title {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #0C0C0C;
    font-weight: 400;
}
.aromat-others__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.aromat-others__card {
    position: relative;
    display: block;
    overflow: hidden;
    height: 400px;
}
.aromat-others__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.aromat-others__card:hover img {
    transform: scale(1.05);
}
.aromat-others__name {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    background: #FEFEFE;
    color: #0C0C0C;
    padding: 6px 10px;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .aromat-products .relate__item { width: 50%; }
}
@media (max-width: 900px) {
    .aromat-list__grid { grid-template-columns: repeat(2, 1fr); }
    .aromat-others__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .aromat-list{
        padding-top: 41px;
    }
    .aromat-card__inner{
        height: 252px;
    }
    .aromat-list__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .aromat-others__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .aromat-products .relate__item { width: 50%; }
    .aromat-single__hero { height: 160px; }
    .aromat-list__title { font-size: 20px; }
    .aromat-list__subtitle { font-size: 16px; }
    .aromat-single__title { font-size: 20px; margin-bottom: 20px}
    .aromat-card__overlay .aromat-card__tags a{
        font-size: 14px !important;
    }
    .aromat-single__head{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .aromat-card__tags{
        gap: 16px;
    }
    .aromat-card__overlay{
        padding: 14px;
    }
    .aromat-card__overlay a.aromat-card__btn{
        font-size: 12px;
        line-height: 1;
        padding: 12px;
    }
    .aromat-card__overlay a.aromat-card__name { font-size: 18px; }
    .aromat-card__btn { padding: 10px 16px; font-size: 13px; }
    .aromat-tabs__btn { padding: 10px 18px; font-size: 14px; }
    .aromat-single__tab{
        font-size: 16px;
    }
    .aromat-single__tabs{
        gap: 20px;
    }
    .aromat-single__desc{
        font-size: 16px;
    }
    .aromat-single__desc-band{
        padding: 20px;
    }
    .aromat-others__title{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .aromat-others{
        margin-top: 20px;
    }
    .aromat-others__card{
        height: 120px;
    }
    .aromat-others__name{
        font-size: 12px;
        line-height: 1;
        padding: 6px 8px;
        bottom: 12px;
    }

    .aromat-others .container{
        padding-left: 4px;
        padding-right: 4px;
    }

    .aromat-single >.container{
        padding-left: 0;
        padding-right: 0;
    }

    .aromat-single__desc-band>.container{
        padding-left: 0;
        padding-right: 0;
    }
}
