/* ---------- PROMO (ГЛАВНАЯ) ---------- */
.promo {
    margin: 60px 0 80px;
}
.promo__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}
.promo__image-col {
    flex: 1.2;
    position: relative;
}
.promo__img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.promo__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}
.promo__blur-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 16px 24px;
    max-width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.promo__blur-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.promo__blur-arrow {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.2s;
}
.promo__blur-arrow i {
    font-size: 24px;
    color: #111;
}
.promo__content {
    flex: 1;
}
.promo__title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.promo__desc {
    font-size: 20px;
    line-height: 1.4;
    max-width: 530px;
    margin-bottom: 40px;
    color: #2c2c2c;
}
.promo__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn {
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn_dark {
    background: #111;
    color: white;
}
.btn_light {
    background: white;
    color: #111;
    border: 1px solid #ccc;
}
.btn_dark:hover,
.btn_light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* ---------- DIVIDER ---------- */
.divider {
    height: 1px;
    background: #111;
    margin: 80px 0 0;
}

/* ---------- PRODUCTS SECTION ---------- */
.section {
    margin: 120px 0;
}
.section__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}
.product-card {
    position: relative;
}
.product-card__sale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e33b3b;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
}
.product-card__img {
    width: 100%;
    aspect-ratio: 300 / 370;
    object-fit: cover;
    border-radius: 16px;
    background: #f0f0f0;
    margin-bottom: 20px;
}
.product-card__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.product-card__price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.product-card__btn {
    background: #111;
    color: white;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.product-card__btn:hover {
    transform: translateY(-2px);
    background: #2c2c2c;
}

/* ---------- SHOWCASE CAROUSEL (ГЛАВНАЯ) ---------- */
.showcase {
    margin: 160px auto;
}
.showcase__main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}
.showcase__arrow_white {
    left: 0;
    background: white;
    border: 1px solid #ddd;
    color: #111;
}
.showcase__arrow_black {
    right: 0;
    background: #111;
    color: white;
}
.showcase__slide-wrapper {
    position: relative;
    max-width: 700px;
    width: 100%;
}
.showcase__img {
    width: 100%;
    aspect-ratio: 700 / 895;
    object-fit: cover;
    border-radius: 32px;
}
.showcase__info {
    position: absolute;
    bottom: 100px;
    left: 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 12px 24px;
    color: black;
    text-align: left;
}
.showcase__name {
    font-size: 24px;
    font-weight: 700;
}
.showcase__price {
    font-size: 20px;
    font-weight: 600;
}
.showcase__btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: none;
    width: 250px;
    padding: 14px 0;
    font-size: 20px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
}
.dot_active {
    background: #111;
}

/* ---------- MEDIA QUERIES (ГЛАВНАЯ) ---------- */
@media (max-width: 1024px) {
    .showcase__arrow {
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 768px) {
    .promo__title {
        text-align: center;
    }
    .promo__grid {
        flex-direction: column;
    }
    .promo__blur-card {
        left: 10px;
    }
    .promo__buttons {
        justify-content: center;
    }
    .showcase__arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .showcase__info {
        bottom: 80px;
        left: 16px;
        padding: 8px 16px;
    }
    .showcase__name {
        font-size: 18px;
    }
    .showcase__btn {
        width: 200px;
        font-size: 16px;
    }
}