/* ============================================
   HERO SLIDER
   ============================================ */

.awb-hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--awb-bg-primary, #FFF8FB);
}

.awb-hero-slides {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.awb-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
    z-index: 1;
}

.awb-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.awb-hero-slider[data-transition="slide"] .awb-hero-slide {
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.awb-hero-slider[data-transition="slide"] .awb-hero-slide.active {
    transform: translateX(0);
}

.awb-hero-slider[data-transition="slide"] .awb-hero-slide.active-old {
    transform: translateX(-40px);
    opacity: 0;
}

.awb-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.awb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.awb-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--awb-max-width, 1280px);
    margin: 0 auto;
    padding: 120px 24px;
}

.awb-hero-content-inner {
    max-width: 620px;
    padding: 0;
}

.awb-hero-label {
    display: inline-block;
    font-family: var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--awb-primary, #D81B60);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

.awb-hero-slide.active .awb-hero-label {
    opacity: 1;
    transform: translateY(0);
}

.awb-hero-heading {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--awb-text, #1C1C1C);
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.35s;
}

.awb-hero-slide.active .awb-hero-heading {
    opacity: 1;
    transform: translateY(0);
}

.awb-hero-description {
    font-family: var(--awb-body-font, 'DM Sans'), sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--awb-text-light, #666666);
    margin: 0 0 32px 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.5s;
}

.awb-hero-slide.active .awb-hero-description {
    opacity: 1;
    transform: translateY(0);
}

.awb-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.65s;
}

.awb-hero-slide.active .awb-hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.awb-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.awb-hero-btn-primary {
    background: var(--awb-primary, #D81B60);
    color: #ffffff;
    border: none;
}

.awb-hero-btn-primary:hover {
    background: var(--awb-primary-hover, #C2185B);
    transform: scale(1.02);
    color: #ffffff;
}

.awb-hero-btn-secondary {
    background: transparent;
    color: var(--awb-text, #1C1C1C);
    border: 1.5px solid var(--awb-text, #1C1C1C);
}

.awb-hero-btn-secondary:hover {
    background: var(--awb-bg-secondary, #F8EEF3);
    color: var(--awb-text, #1C1C1C);
}

.awb-hero-btn .awb-btn-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.awb-hero-btn .awb-btn-icon svg {
    width: 1em;
    height: 1em;
}

/* --- Navigation Arrows --- */
.awb-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--awb-text, #1C1C1C);
    border-radius: 50%;
    cursor: pointer;
    color: var(--awb-text, #1C1C1C);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.awb-hero-arrow:hover {
    opacity: 1;
    background: #ffffff;
}

.awb-hero-arrow-prev {
    left: 24px;
}

.awb-hero-arrow-next {
    right: 24px;
}

.awb-hero-arrow svg {
    width: 20px;
    height: 20px;
}

/* --- Pagination Dots --- */
.awb-hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.awb-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--awb-primary, #D81B60);
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.awb-hero-dot.active {
    background: var(--awb-primary, #D81B60);
    transform: scale(1.2);
}

/* --- Floating Product Cards --- */
.awb-hero-floating-cards {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--awb-max-width, 1280px);
    height: 100%;
    padding: 0 24px;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

.awb-hero-floating-card {
    position: absolute;
    pointer-events: auto;
}

/* --- Card 1 (Top-Right, Back, Bigger) --- */
.awb-hero-float-top-right {
    top: 80px;
    right: 120px;
    z-index: 2;
}

.awb-hero-float-top-right .awb-hero-floating-card-inner {
    padding: 16px;
    border-radius: 12px;
    background: rgba(252, 249, 248, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(227, 189, 195, 0.2);
    box-shadow: 0 10px 40px -10px rgba(216, 27, 96, 0.08);
    animation: float 6s ease-in-out infinite;
}

.awb-hero-float-top-right .awb-hero-floating-card-img {
    width: 100%;
    height: 192px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.awb-hero-float-top-right .awb-hero-floating-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awb-hero-float-top-right .awb-hero-floating-card-cat {
    display: block;
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #756E72;
    line-height: 1;
}

.awb-hero-float-top-right .awb-hero-floating-card-title {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 20px;
    font-weight: 500;
    color: #1b1b1b;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.3;
}

.awb-hero-float-top-right .awb-hero-floating-card-price {
    display: block;
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b0004a;
    margin-top: 8px;
    line-height: 1;
}

/* --- Card 2 (Bottom-Right, Front, Smaller) --- */
.awb-hero-float-bottom-right {
    bottom: 80px;
    right: 40px;
    z-index: 3;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-inner {
    padding: 16px;
    border-radius: 12px;
    background: rgba(252, 249, 248, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(227, 189, 195, 0.2);
    box-shadow: 0 10px 40px -10px rgba(216, 27, 96, 0.08);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-cat {
    display: block;
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #756E72;
    line-height: 1;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-title {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 18px;
    font-weight: 500;
    color: #1b1b1b;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 1.3;
}

.awb-hero-float-bottom-right .awb-hero-floating-card-price {
    display: block;
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b0004a;
    margin-top: 8px;
    line-height: 1;
}

.awb-hero-float-middle-right {
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
    .awb-hero-heading {
        font-size: 48px;
    }

    .awb-hero-description {
        font-size: 16px;
    }

    .awb-hero-float-top-right {
        top: 60px;
        right: 60px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-inner {
        padding: 14px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-img {
        height: 140px;
    }

    .awb-hero-float-bottom-right {
        bottom: 60px;
        right: 0;
    }

    .awb-hero-float-bottom-right .awb-hero-floating-card-inner {
        padding: 12px;
    }

    .awb-hero-float-bottom-right .awb-hero-floating-card-img {
        height: 110px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-title {
        font-size: 17px;
    }

    .awb-hero-float-bottom-right .awb-hero-floating-card-title {
        font-size: 15px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-cat,
    .awb-hero-float-bottom-right .awb-hero-floating-card-cat {
        font-size: 10px;
    }
}

@media screen and (max-width: 768px) {
    .awb-hero-slides {
        min-height: 70vh;
    }

    .awb-hero-content {
        padding: 80px 16px 60px;
    }

    .awb-hero-content-inner {
        max-width: 100%;
        text-align: center;
    }

    .awb-hero-heading {
        font-size: 36px;
    }

    .awb-hero-description {
        font-size: 15px;
    }

    .awb-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .awb-hero-btn {
        padding: 14px 24px;
        font-size: 11px;
        width: 100%;
    }

    .awb-hero-overlay {
        background: linear-gradient(0deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0.2) 100%);
    }

    .awb-hero-float-top-right {
        top: 40px;
        right: 40px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-inner {
        padding: 12px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-img {
        height: 110px;
        margin-bottom: 10px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-title {
        font-size: 16px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-cat {
        font-size: 10px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-price {
        font-size: 10px;
        margin-top: 6px;
    }

    .awb-hero-float-bottom-right {
        display: none;
    }

    .awb-hero-arrow {
        width: 36px;
        height: 36px;
    }

    .awb-hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .awb-hero-arrow-prev {
        left: 8px;
    }

    .awb-hero-arrow-next {
        right: 8px;
    }

    .awb-hero-dots {
        bottom: 16px;
    }
}

@media screen and (max-width: 480px) {
    .awb-hero-heading {
        font-size: 28px;
    }

    .awb-hero-float-top-right {
        top: 24px;
        right: 24px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-inner {
        padding: 10px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-img {
        height: 80px;
        margin-bottom: 8px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-title {
        font-size: 13px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-cat {
        font-size: 9px;
    }

    .awb-hero-float-top-right .awb-hero-floating-card-price {
        font-size: 9px;
        margin-top: 4px;
    }
}
