/* ===================================
   CIRCULAREAT PROMO SECTION
   =================================== */

.circulareat-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    background-color: #000000;
    /* Black Only */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem 0;
    z-index: 20;
    align-items: flex-end;
}



/* Content Layout */
.ce-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0rem;
}

.mockup-wrapper {
    max-width: 500px;
    width: 90%;
    animation: phone-float 6s ease-in-out infinite;
}

/* Headline */
.ce-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Big and bold */
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: ce-fade-up 1s ease-out forwards;
}

/* Bag Image Container */
.ce-bag-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: ce-bag-float 6s ease-in-out infinite;
    opacity: 0;
    animation: ce-fade-in 1.2s ease-out 0.3s forwards, ce-bag-float 6s ease-in-out infinite;
}

.ce-bag-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    /* Depth shadow */
    transform-origin: bottom center;
}

@keyframes ce-bag-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* CTA Button */
.ce-cta {
    display: inline-block;
    margin-top: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    background-color: #facc15;
    /* Gold/Yellow from bag contents */
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: ce-fade-up 1s ease-out 0.6s forwards;
}

.ce-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: #eab308;
}

.ce-cta-logo {
    height: 1.2em;
    vertical-align: middle;
    margin-right: 0.5rem;
}



/* Entrance Animations */
@keyframes ce-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ce-fade-in {
    to {
        opacity: 1;
    }
}

/* Portfolio Hero Variant */
.portfolio-hero-ce {
    min-height: 700px;
    padding-top: 0;
}



.ce-hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    z-index: 10;
}

.ce-bag-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.ce-cta-hero {
    display: inline-block;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
    background-color: #1a1a10;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: -16rem;
    z-index: 10;
}

.ce-cta-hero:hover {
    transform: translateY(-5px);
    background-color: #2a2a1a;
}

.ce-bag-img-hero {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transform: translateY(10%);
    /* Slightly overlap bottom */
}

/* Responsive */
@media (max-width: 768px) {
    .ce-hero-headline {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }

    .ce-cta-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .ce-bag-hero-container {
        max-width: 80%;
    }
}

/* Phone Float Animation */
@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}