/* =========================================
   DONE FOR YOU TRANSITION BAR
   Replicating the hero transition style
   ========================================= */

.dfy-bar {
    width: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #F2D381 50%, #D4AF37 100%);
    padding: var(--space-8) 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
    z-index: 5;
}

/* Shine Effect Animation (Shared style) */
.dfy-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine-sweep-dfy 8s infinite ease-in-out;
}

@keyframes shine-sweep-dfy {
    0% {
        left: -100%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.dfy-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-10);
    position: relative;
    z-index: 2;
}

/* Left Graphic: "Done for you" Badge */
.dfy-graphic {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(30, 11, 77, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    border: 4px solid var(--color-white);
    color: var(--color-white);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.dfy-graphic:hover {
    transform: rotate(0deg) scale(1.05);
}

.dfy-graphic-text {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.dfy-label-small {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 2px;
}

.dfy-label-large {
    font-size: 1.4rem;
    color: var(--color-gold);
}

/* Right Content: Text */
.dfy-content {
    flex: 1;
}

.dfy-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
}

.dfy-text span {
    color: rgba(30, 11, 77, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .dfy-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }

    .dfy-graphic {
        width: 120px;
        height: 120px;
        transform: rotate(0);
    }

    .dfy-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .dfy-bar {
        padding: var(--space-6) 0;
    }

    .dfy-text {
        font-size: 1.2rem;
    }
}