.store-announcement {
    padding: 22px 0 0;
    background: #f7f3ee;
}

.store-announcement p {
    width: 100%;
    min-height: 62px;
    margin: 0;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(126, 94, 70, 0.24);
    border-radius: 18px;
    background: var(--announcement-background, #ebddd1);
    color: var(--announcement-text, #533d2f);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
    text-align: center;
    overflow-wrap: anywhere;
    box-shadow: 0 12px 30px rgba(64, 48, 37, 0.11);
}

.store-announcement + .featured-carousel-section {
    padding-top: 16px;
}

.featured-carousel-section {
    padding: 30px 0;
    background: #f7f3ee;
}

.featured-carousel {
    position: relative;
    min-height: clamp(500px, 52vw, 650px);
    overflow: hidden;
    border-radius: 24px;
    background: #181615;
    box-shadow: 0 18px 46px rgba(49, 40, 34, 0.2);
    isolation: isolate;
}

.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 1.1s ease, visibility 0.7s ease;
}

.featured-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.featured-slide-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.featured-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 9, 8, 0.3), rgba(10, 9, 8, 0.04) 58%),
        linear-gradient(0deg, rgba(10, 9, 8, 0.96), rgba(10, 9, 8, 0.08) 76%);
}

.featured-slide-content {
    position: absolute;
    right: clamp(58px, 7vw, 105px);
    bottom: clamp(58px, 7vw, 90px);
    z-index: 2;
    width: min(680px, calc(100% - 170px));
    color: #fff;
    text-align: right;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.featured-slide-category {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(20, 18, 16, 0.28);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.featured-slide-content h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.15;
}

.featured-slide-content p {
    display: -webkit-box;
    max-width: 650px;
    margin: 0 0 16px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.featured-slide-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    direction: ltr;
}

.featured-slide-price strong {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 46px);
}

.featured-slide-price del {
    color: rgba(255, 255, 255, 0.62);
    font-size: 18px;
}

.featured-slide-price span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    color: #5b4435;
    font-size: 13px;
    font-weight: 900;
    direction: rtl;
    text-shadow: none;
}

.featured-slide-content > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    padding: 10px 24px;
    border-radius: 12px;
    background: #fff;
    color: #3d3028;
    font-weight: 900;
    text-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.featured-slide-content > a:hover {
    background: #f5eee8;
    transform: translateY(-2px);
}

.featured-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 54px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(20, 17, 15, 0.58);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    direction: ltr;
    unicode-bidi: isolate;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.featured-carousel-prev { left: 18px; }
.featured-carousel-next { right: 18px; }

.featured-carousel-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.featured-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.featured-carousel-dot.is-active {
    width: 28px;
    background: #fff;
}

@media (max-width: 760px) {
    .store-announcement {
        padding: 12px 0 0;
    }

    .store-announcement p {
        min-height: 52px;
        padding: 12px 15px;
        border-radius: 14px;
        font-size: 13px;
    }

    .featured-carousel-section { padding: 14px 0 20px; }
    .featured-carousel-section .container { padding-inline: 12px; }

    .featured-carousel {
        min-height: 420px;
        border-radius: 18px;
    }

    .featured-slide-content {
        right: 24px;
        bottom: 48px;
        width: calc(100% - 48px);
    }

    .featured-slide-content h1 {
        margin-bottom: 6px;
        font-size: clamp(30px, 9vw, 42px);
    }

    .featured-slide-content p {
        margin-bottom: 9px;
        font-size: 14px;
        line-height: 1.55;
        -webkit-line-clamp: 3;
    }

    .featured-slide-price { margin-bottom: 10px; }
    .featured-slide-content > a { min-height: 42px; padding: 8px 18px; }

    .featured-carousel-arrow {
        top: 32%;
        width: 42px;
        height: 50px;
        font-size: 22px;
    }

    .featured-carousel-prev { left: 9px; }
    .featured-carousel-next { right: 9px; }
    .featured-carousel-dots { bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .featured-slide,
    .featured-carousel-dot {
        transition: none;
    }
}
