.summer-promo-admin-controls {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0 24px;
    margin: 18px 0 -16px;
    box-sizing: border-box;
}

.summer-promo-switch {
    padding: 8px 14px;
    border: 1px solid #d8dee9;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.08);
}

.summer-promo-switch:hover,
.summer-promo-switch:focus-visible {
    border-color: #f59e0b;
    color: #b45309;
    outline: none;
}

.summer-promo-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: none;
    margin: 28px 0 24px;
    padding: 28px clamp(34px, 5vw, 76px);
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.48) 0 5%, transparent 5.5%),
        linear-gradient(120deg, #fff4b8 0%, #ffd978 38%, #ff9f68 100%);
    color: #522d20;
    box-shadow: 0 18px 42px rgba(221, 113, 55, 0.22);
}

.summer-promo-banner::before,
.summer-promo-banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.summer-promo-banner::before {
    width: 220px;
    height: 220px;
    top: -132px;
    right: 11%;
    border: 28px solid rgba(255, 255, 255, 0.24);
}

.summer-promo-banner::after {
    width: 150px;
    height: 150px;
    right: -48px;
    bottom: -92px;
    background: rgba(255, 238, 176, 0.45);
}

.summer-promo-shine {
    position: absolute;
    z-index: 2;
    top: -55%;
    bottom: -55%;
    left: -35%;
    width: 18%;
    min-width: 90px;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.72) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    filter: blur(2px);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: summerPromoShine 4.5s ease-in-out infinite;
}

@keyframes summerPromoShine {
    0%, 16% {
        left: -35%;
        opacity: 0;
    }
    24% {
        opacity: 1;
    }
    48% {
        left: 118%;
        opacity: 1;
    }
    56%, 100% {
        left: 118%;
        opacity: 0;
    }
}

.summer-promo-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.summer-promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #b84c29;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.summer-promo-title {
    margin: 0;
    color: #4b291d;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.summer-promo-subtitle {
    margin: 9px 0 0;
    color: rgba(82, 45, 32, 0.76);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
}

.summer-promo-benefit {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    min-width: 190px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
    box-shadow: 0 12px 28px rgba(124, 58, 25, 0.13);
    backdrop-filter: blur(8px);
}

.summer-promo-benefit-label {
    display: block;
    margin-bottom: 2px;
    color: #c15a31;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.summer-promo-benefit-value {
    display: block;
    color: #e94f2b;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.summer-promo-benefit-value small {
    display: inline-block;
    margin-left: 9px;
    font-size: 17px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .summer-promo-admin-controls {
        width: 100%;
        padding: 0 12px;
        margin-top: 14px;
        margin-bottom: -8px;
    }

    .summer-promo-banner {
        width: 100%;
        margin: 18px 0 10px;
        padding: 22px;
        border-radius: 0;
    }

    .summer-promo-benefit {
        min-width: 148px;
        padding: 15px 16px;
    }

    .summer-promo-benefit-value {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .summer-promo-switch {
        padding: 7px 11px;
        font-size: 11px;
    }

    .summer-promo-banner {
        width: 100%;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        border-radius: 0;
    }

    .summer-promo-eyebrow {
        margin-bottom: 7px;
        font-size: 9px;
    }

    .summer-promo-title {
        font-size: 21px;
    }

    .summer-promo-subtitle {
        display: none;
    }

    .summer-promo-benefit {
        display: flex;
        min-width: 104px;
        padding: 12px 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .summer-promo-benefit-label {
        font-size: 10px;
    }

    .summer-promo-benefit-value {
        font-size: 27px;
    }

    .summer-promo-benefit-value small {
        margin-left: 6px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .summer-promo-shine {
        display: none;
        animation: none;
    }
}
