/* Import Proxima Nova A Cond Black */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondBlack/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondBlack/font.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}  

/* Import Proxima Nova A Cond Bold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondBold/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondBold/font.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Import Proxima Nova A Cond Extrabld */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondExtrabld/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondExtrabld/font.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

/* Import Proxima Nova A Cond Medium */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondMedium/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondMedium/font.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* Import Proxima Nova A Cond Regular */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondRegular/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondRegular/font.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Import Proxima Nova A Cond Semibold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNovaACondSemibold/font.woff2') format('woff2'),
         url('../fonts/ProximaNovaACondSemibold/font.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Proxima Nova', sans-serif;
    background: linear-gradient(to bottom, #223E98, #3437B5);
    color: #fff;
    width: 100%;
    overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 0 0 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 25%, rgba(100,160,255,.3) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Hero animation: initial states ──────────────── */
.hero-wand {
    opacity: 0;
    animation: wandPulse 1.4s ease-out 0.2s forwards;
}

.magic-powder {
    opacity: 0;
    animation: powderAppear 2.2s ease-out 0.7s forwards;
}

.hero-hat {
    opacity: 0;
    animation: hatPulse 0.8s ease-out 1.4s forwards;
}

.hero-logo-aniversar {
    display: none;
}

.hero-logo {
    opacity: 0;
    animation: fadeScaleIn 0.6s ease-out 2.0s forwards;
}

.hero-anni {
    opacity: 0;
    animation: fadeScaleIn 0.6s ease-out 2.3s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeUp 0.5s ease-out 2.7s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.5s ease-out 3.0s forwards;
}

/* ── Keyframes ───────────────────────────────────── */
/* Wand: 2 pulses (scale up/down) */
@keyframes wandPulse {
    0%   { opacity: 0; transform: scale(0.7); }
    15%  { opacity: 1; transform: scale(1.1); }
    30%  { opacity: 1; transform: scale(0.95); }
    50%  { opacity: 1; transform: scale(1.12); }
    70%  { opacity: 1; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* Powder: fade in then fade out */
@keyframes powderAppear {
    0%   { opacity: 0; transform: translateX(-50%) scale(0.5); }
    25%  { opacity: .85; transform: translateX(-50%) scale(1); }
    70%  { opacity: .85; transform: translateX(-50%) scale(1.05); }
    100% { opacity: 0; transform: translateX(-50%) scale(1.1); }
}

/* Hat: single pulse */
@keyframes hatPulse {
    0%   { opacity: 0; transform: scale(0.8); }
    50%  { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

/* Logo / 25 ani: scale in */
@keyframes fadeScaleIn {
    0%   { opacity: 0; transform: scale(0.5); }
    60%  { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Title / subtitle: slide up */
@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    position: relative;
    z-index: 4;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-logo img {
    width: 180px;
    padding-top: 65px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    line-height: 44px;
    letter-spacing: 0px;
    margin: 10px 0 0;
    text-transform: uppercase;
}

.hero-title span {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-subtitle {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    line-height: 22.72px;
    letter-spacing: 0px;
}

.hero-hat {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.hero-hat img {
    width: 100%;
    max-width: 370px;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
}

.hero-wand {
    position: absolute;
    top: 80px;
    left: 0px;
    z-index: 4;
    width: 55%;
    max-width: 220px;
}

.hero-wand img {
    width: 300px;
    /* filter: drop-shadow(0 4px 12px rgba(0,0,80,.4)); */
    margin-top: -75px;
}

.magic-powder {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.magic-powder img {
    width: 100%;
}

.hero-anni {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: -10px;
}

.hero-anni img {
    width: 155px;
}

/* ── PROMO CAROUSELS ───────────────────────────────── */
.promo-wrap {
    padding: 20px 0 0;
}

/* Tabs */
.promo-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
    padding: 0 16px;
}

.promo-tab {
    flex: 1;
    max-width: 260px;
    background: rgba(255,255,255,.12);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 12px 10px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-tab img {
    height: 65px;
    object-fit: contain;
}

.promo-tab.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* Carousel wraps */
.promo-carousel-wrap {
    display: none;
    position: relative;
}

.promo-carousel-wrap.active {
    display: block;
}

/* Custom Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0 16px;
    touch-action: pan-y;
}

.carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.carousel-arrow:hover {
    opacity: 1;
}
.carousel-arrow img {
    width: 100%;
    height: auto;
}
.carousel-arrow--left {
    margin-top: -35px;
    left: 5px;
}
.carousel-arrow--right {
    margin-top: -35px;
    right: 5px;
}
@media (min-width: 1024px) {
    .promo-carousel-wrap .carousel-arrow,
    .oferte-carousel-wrap .carousel-arrow {
        display: block;
    }
}
@media (min-width: 1360px) {
    .promo-carousel-wrap .carousel-arrow--left,
    .oferte-carousel-wrap .carousel-arrow--left {
        left: -50px;
    }
    .promo-carousel-wrap .carousel-arrow--right,
    .oferte-carousel-wrap .carousel-arrow--right {
        right: -50px;
    }
    .promo-carousel-wrap,
    .oferte-carousel-wrap {
        overflow: visible;
    }
}

.carousel-track {
    display: flex;
    align-items: flex-start;
    transition: transform .35s cubic-bezier(.25,.1,.25,1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 0 6px;
    transition: opacity .35s ease, transform .35s ease;
    opacity: .4;
    transform: scale(.9);
    display: block;
    text-decoration: none;
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Desktop: no scale on inactive, just opacity fade */
@media only screen and (min-width: 1024px) {
    .carousel-slide {
        transform: none;
        opacity: .35;
        padding: 0 12px;
        margin: 0 8px;
        height: 440px;
    }
    .carousel-slide.active {
        opacity: 1;
        transform: none;
    }
    .carousel-slide--1plus1 {
        height: 420px;
        overflow: hidden;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 120px;
    }
}

/* ── 1+1 GRATIS slide layout ─────────────────────── */
.carousel-slide--1plus1 {
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 420px;
}

.carousel-slide--1plus1 .slide-tag {
    position: static;
    align-self: flex-start;
    margin-bottom: 8px;
}

.carousel-slide--1plus1 .slide-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 22px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-slide--1plus1 .slide-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.carousel-slide--1plus1 .slide-bottom-left {
    flex: 1;
}

.carousel-slide--1plus1 .slide-combo-label {
    font-size: 18px;
    font-weight: 800;
    color: #e30613;
    line-height: 1.3;
    margin-bottom: 6px;
}

.carousel-slide--1plus1 .slide-price {
    display: flex;
    align-items: flex-start;
    color: #e30613;
    line-height: 1;
}

.carousel-slide--1plus1 .slide-price .price-int {
    font-size: 60px;
    font-weight: 900;
    line-height: .85;
}

.carousel-slide--1plus1 .slide-price .price-details {
    display: flex;
    flex-direction: column;
    margin-left: 3px;
    padding-top: 5px;
}

.carousel-slide--1plus1 .slide-price .price-dec {
    font-size: 24px;
    font-weight: 900;
    line-height: 0.95;
}

.carousel-slide--1plus1 .slide-price .price-currency {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.carousel-slide--1plus1 .slide-bottom img {
    width: 145px;
    height: auto;
    object-fit: contain;
    padding: 0;
}

/* ── -50% slide layout ────────────────────────────── */
.carousel-slide img {
    width: 100%;
    height: 322px;
    object-fit: contain;
    display: block;
    padding: 75px 16px 16px;
}

/* Tag rosu */
.slide-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e30613;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 18px;
}

.slide-tag--blue {
    background: #e30613;
}

/* Cart icon on slides */
.slide-cart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #e30613;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, transform 0.2s;
}
.slide-cart svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.carousel-slide:hover .slide-cart {
    background: #c00510;
    transform: scale(1.1);
}

/* Info sub imagine (-50%) */
.slide-info {
    background: #fff;
    padding: 12px 14px 16px;
    text-align: center;
}

.slide-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

/* Pret simplu (1+1) */
.slide-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e30613;
    line-height: 1;
}

.slide-price sup {
    font-size: .7rem;
    font-weight: 700;
    vertical-align: super;
}

.slide-price sub {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: baseline;
}

/* Preturi -50% (vechi | nou) */
.slide-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slide-prices .price-old,
.slide-prices .price-new {
    display: flex;
    align-items: flex-start;
    color: #e30613;
    line-height: 1;
}

.slide-prices .price-old {
    position: relative;
    opacity: 0.5;
}

.slide-prices .price-old::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent calc(50% - 2px), #e30613 calc(50% - 1px), #e30613 calc(50% + 2px), transparent calc(50% + 2px));
    pointer-events: none;
}

.slide-prices .price-old .price-int,
.slide-prices .price-new .price-int {
    font-size: 2.2rem;
    font-weight: 900;
}

.slide-prices .price-old .price-details,
.slide-prices .price-new .price-details {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
    padding-top: 2px;
}

.slide-prices .price-old .price-currency,
.slide-prices .price-new .price-currency {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.slide-prices .price-old .price-dec,
.slide-prices .price-new .price-dec {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.slide-prices .price-divider {
    width: 2px;
    height: 28px;
    background: #ccc;
    display: inline-block;
}

.promo-footer-text {
    font-size: .7rem;
    color: #FFF;
    text-align: center;
    padding: 12px 14px;
    line-height: 1.5;
    margin: 0 16px;
    border-radius: 12px;
}

/* ── STAR DECORATION ──────────────────────────────── */
.star-decoration {
    position: relative;
    width: 120px;
    margin: -20px 0 -20px;
}

.star-decoration::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse at center, transparent 55%, #2c3ba3 100%); */
    pointer-events: none;
    opacity: 0.7;
}

.star-decoration img {
    width: 100%;
    display: block;
    margin-top: -20px;
    margin-bottom: -90px;
}

/* ── MAGIC TAGLINE ────────────────────────────────── */
.magic-tagline {
    text-align: center;
    padding: 60px 20px 0;
    margin-bottom: -120px;
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: .2px;
}

.magic-wand-section {
    text-align: right;
    padding: 0 0 20px;
    position: relative;
}

.wand-mirrored {
    transform: scaleX(-1);
    width: 70%;
    max-width: 300px;
    margin-bottom: -150px;
}

.afg-logo {
    width: 80px;
    margin: 0 auto 20px;
    display: block;
}

/* ── TOMBOLA ──────────────────────────────────────── */
.tombola {
    padding: 55px 16px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tombola-left {
    display: none;
}

.tombola-right {
    /* on mobile, just flows naturally */
}

.tombola-hat {
    display: none;
}

.tombola-wand {
    display: none;
}

.tombola-left-frame {
    display: none;
}

.tombola::before {
    content: '';
    position: absolute;
    top: 0%;
    bottom: 45%;
    left: 0px;
    width: 120px;
    background: radial-gradient(ellipse at center left, rgba(131,185,238,.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

.tombola-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,224,102,.15);
    border: 1px solid #ffe066;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.tombola-title {
    font-size: 1.55rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    color: #fff;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.tombola-title em {
    color: #fff;
    font-style: normal;
}

.tombola-subtitle {
    font-size: .78rem;
    color: #fff;
    margin-bottom: 18px;
}


.car-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 25px;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(.25,.1,.25,1), opacity 0.5s ease;
}

.car-img-wrapper {
    position: relative;
    display: inline-block;
}

.car-img-wrapper::after,
.car-img-wrapper::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,220,1) 0%, rgba(255,255,180,.6) 40%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

/* Left headlight — adjust top/left to move it */
.car-img-wrapper::before {
    top: 35%;
    left: 30.5%;
}

/* Right headlight — adjust top/right to move it */
.car-img-wrapper::after {
    top: 31%;
    right: 20.5%;
}

.car-img-wrapper.animate-in::before,
.car-img-wrapper.animate-in::after {
    animation: headlightPulse 1.8s ease-in-out 1.3s forwards;
}

@keyframes headlightPulse {
    0%   { opacity: 0; transform: scale(0.5); }
    10%  { opacity: 1; transform: scale(1.2); }
    20%  { opacity: 0; transform: scale(0.8); }
    35%  { opacity: 1; transform: scale(1.4); }
    50%  { opacity: 0; transform: scale(0.8); }
    65%  { opacity: .9; transform: scale(1.6); }
    80%  { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1); }
}

.car-img.animate-in {
    animation: carDrive 1.2s ease-out forwards;
}

@keyframes carDrive {
    0%   { opacity: 0; transform: translateX(-30px); }
    40%  { opacity: 1; transform: translateX(15px); }
    70%  { opacity: 1; transform: translateX(-5px); }
    100% { opacity: 1; transform: translateX(0); }
}

.prizes-wrapper {
    border: 2px solid #fff;
    border-radius: 14px;
    padding: 16px 12px;
    margin-bottom: 22px;
}

.prizes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.prize-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.prize-qty {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
}

.prize-item img {
    width: 110px;
    height: auto;
}

.tombola-desc {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    line-height: 22.72px;
    letter-spacing: 0;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 4px;
    text-align: center;
}

.tombola-desc strong {
    color: #fff;
}

/* ── APP DOWNLOAD ─────────────────────────────────── */
.app-section {
    text-align: center;
    padding: 28px 20px;
}

.download-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #4A3AFF;
    border-radius: 16px;
    padding: 14px 24px;
    text-decoration: none;
}

.download-app-btn img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.download-app-btn span {
    font-family: 'ProximaNovaACondBold', sans-serif;
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    line-height: 22.72px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ── COVERFLOW CAROUSEL ────────────────────────────── */
.oferte-section {
    padding: 16px 14px 24px;
}

.oferte-carousel-wrap {
    position: relative;
}

.oferte-carousel {
    position: relative;
    overflow: hidden;
}

.oferte-carousel .carousel-track {
    display: flex;
}

/* ── Oferte slide — fully independent from .carousel-slide ── */
.oferte-slide.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    overflow: visible;
    height: auto;
    transition: none;
}

.oferte-slide.carousel-slide.active {
    opacity: 1;
    transform: none;
}

@media only screen and (min-width: 1024px) {
    .oferte-slide.carousel-slide {
        flex: 0 0 28%;
        max-width: 28%;
        opacity: .35;
        padding: 0 12px;
        margin: 0 8px;
        height: auto;
        transition: opacity .35s ease;
        overflow: visible;
    }
    .oferte-slide.carousel-slide.active {
        opacity: 1;
    }
    .oferte-slide .oferte-card {
        height: auto;
    }
    .oferte-slide .oferte-card-img {
        height: auto;
        max-height: 465px;
        object-fit: contain;
    }
}

.oferte-slide .oferte-card-img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    object-fit: unset;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 115px), 0 calc(100% - 25px));
}

.coverflow {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.coverflow-stage {
    position: relative;
    width: 100%;
    height: 420px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.coverflow-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(.25,.1,.25,1);
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    filter: brightness(.7);
}

.coverflow-item.active {
    z-index: 10;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    filter: brightness(1);
}

.coverflow-item.prev {
    z-index: 5;
    opacity: .7;
    transform: translate(calc(-50% - 200px), -50%) scale(.82) rotateY(25deg);
    pointer-events: auto;
    filter: brightness(.75);
}

.coverflow-item.next {
    z-index: 5;
    opacity: .7;
    transform: translate(calc(-50% + 200px), -50%) scale(.82) rotateY(-25deg);
    pointer-events: auto;
    filter: brightness(.75);
}

.coverflow-item.far-prev {
    z-index: 2;
    opacity: .3;
    transform: translate(calc(-50% - 350px), -50%) scale(.65) rotateY(35deg);
    pointer-events: none;
    filter: brightness(.6);
}

.coverflow-item.far-next {
    z-index: 2;
    opacity: .3;
    transform: translate(calc(-50% + 350px), -50%) scale(.65) rotateY(-35deg);
    pointer-events: none;
    filter: brightness(.6);
}

.oferte-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(80,130,255,.5);
    background: #1840c0;
    padding-bottom: 76px;
    box-shadow: none;
}

.coverflow-item.active .oferte-card {
    box-shadow: none;
}

/* oferte-card img styles moved to .oferte-card-img */

/* Blue overlay — not needed; padding-bottom handles the gap */
.oferte-card::after {
    display: none;
}

/* Blue line over image */
.oferte-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 76px;
    height: 2px;
    background: lch(100% 0.01 296.81 / 0.507);
    z-index: 3;
}

.btn-oferte {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #e30613;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 18px;
    padding: 16px 10px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    display: block;
    box-shadow: 0 4px 18px rgba(227,6,19,.65);
    transition: transform .15s, box-shadow .15s;
    z-index: 4;
}

.btn-oferte:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(227,6,19,.8);
}

/* Arrows */
.coverflow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.coverflow-arrow:hover {
    background: rgba(255,255,255,.3);
    transform: translateY(-50%) scale(1.1);
}

.coverflow-prev { left: calc(50% - 140px - 22px); }
.coverflow-next { right: calc(50% - 140px - 22px); }

/* Dots */
.coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.coverflow-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.coverflow-dots .dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* ── Desktop coverflow ───────────────────────────── */
@media only screen and (min-width: 1024px) {
    .coverflow-stage {
        height: 520px;
    }
    .coverflow-item {
        width: 434px;
    }
    .coverflow-item.prev {
        transform: translate(calc(-50% - 340px), -50%) scale(.78) rotateY(30deg);
    }
    .coverflow-item.next {
        transform: translate(calc(-50% + 340px), -50%) scale(.78) rotateY(-30deg);
    }
    .coverflow-item.far-prev {
        transform: translate(calc(-50% - 580px), -50%) scale(.6) rotateY(40deg);
    }
    .coverflow-item.far-next {
        transform: translate(calc(-50% + 580px), -50%) scale(.6) rotateY(-40deg);
    }
    .btn-oferte {
        font-size: 16px;
        padding: 16px 14px;
    }
    .coverflow-arrow {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    .coverflow-prev { left: calc(50% - 217px - 26px); }
    .coverflow-next { right: calc(50% - 217px - 26px); }
}

/* ── OFERTE SINGLE (temporary, non-carousel) ──────── */
.oferte-single {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(80,130,255,.5);
    background: #1840c0;
    padding-bottom: 76px;
    max-width: 100%;
    margin: 0 auto;
}

.oferte-single img {
    width: 100%;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 115px), 0 calc(100% - 25px));
}

.oferte-single::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 76px;
    height: 2px;
    background: lch(100% 0.01 296.81 / 0.507);
    z-index: 3;
}

.btn-oferte {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #e30613;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 18px;
    letter-spacing: 0px;
    padding: 16px 10px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    display: block;
    box-shadow: 0 4px 18px rgba(227,6,19,.65);
    transition: transform .15s, box-shadow .15s;
}

.btn-oferte:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(227,6,19,.8);
}

.campanie-period {
    font-size: 28px;
    color: #fff;
    margin-top: 14px;
    text-align: center;
}

.campanie-period .mobile-br {
    display: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .25s;
}

.carousel-dots .dot.active {
    background: #fff;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
    background: #29018C;
    text-align: center;
    padding: 40px 30px 60px;
}

.footer-reg {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 28px;
}

.footer-reg a {
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    background: #4dd9c0;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .7px;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
}

.social-icons a svg {
    width: 36px;
    height: 36px;
}

.footer-copy {
    font-size: .85rem;
    color: #fff;
    line-height: 1.5;
}

/* ── ANIMATII ─────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate {
    opacity: 0;
}

.animate.visible {
    animation: fadeUp .55s ease forwards;
}

/* ── RESPONSIVE ───────────────────────────────────── */

@media only screen and (max-width: 767px) {
    .campanie-period .mobile-br {
        display: inline;
    }
}

/* 350px and below (small mobile) */
@media only screen and (max-width: 350px) {
    .hero-logo img {
        width: 140px;
    }
    .hero-hat img {
        max-width: 280px;
    }
    .hero-wand img {
        width: 220px;
    }
    .hero-anni img {
        width: 120px;
    }
    .hero-title {
        font-size: 30px;
        line-height: 34px;
    }
    .hero-subtitle {
        font-size: 13px;
        line-height: 18px;
    }
    .promo-tab {
        max-width: 130px;
        padding: 10px 8px;
    }
    .promo-tab img {
        height: 65px;
    }
    .carousel-slide {
        flex: 0 0 80%;
        max-width: 80%;
    }
    .carousel-slide--1plus1 {
        height: 320px;
        padding: 12px;
    }
    .carousel-slide--1plus1 .slide-tag {
        font-size: 14px;
        padding: 4px 10px;
    }
    .carousel-slide--1plus1 .slide-title {
        font-size: 13px;
        line-height: 17px;
        -webkit-line-clamp: 2;
    }
    .carousel-slide--1plus1 .slide-bottom {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 90px;
    }
    .carousel-slide--1plus1 .slide-combo-label {
        font-size: 13px;
    }
    .carousel-slide--1plus1 .slide-price .price-int {
        font-size: 40px;
    }
    .carousel-slide--1plus1 .slide-price .price-dec {
        font-size: 16px;
    }
    .carousel-slide--1plus1 .slide-price .price-currency {
        font-size: 12px;
    }
    .carousel-slide img {
        height: 240px;
        padding: 50px 12px 12px;
    }
    .slide-tag {
        font-size: 14px;
        padding: 4px 10px;
    }
    .slide-info h3 {
        font-size: .75rem;
    }
    .slide-prices .price-old .price-int,
    .slide-prices .price-new .price-int {
        font-size: 1.8rem;
    }
    .magic-tagline {
        font-size: 1rem;
    }
    .wand-mirrored {
        max-width: 200px;
    }
    .tombola-title {
        font-size: 1.3rem;
    }
    .car-img {
        max-width: 280px;
    }
    .prize-item img {
        width: 80px;
    }
    .prize-qty {
        font-size: .9rem;
    }
    .tombola-desc {
        font-size: 13px;
        line-height: 19px;
    }
    .download-app-btn {
        padding: 12px 16px;
        gap: 8px;
    }
    .download-app-btn img {
        width: 36px;
        height: 36px;
    }
    .download-app-btn span {
        font-size: 20px;
    }
    .btn-oferte {
        font-size: 18px;
        padding: 16px 10px;
    }
    .footer {
        padding: 30px 20px 50px;
    }
    .footer-reg {
        font-size: .95rem;
    }
    .btn-secondary {
        font-size: .85rem;
        padding: 14px 28px;
    }
    .social-icons a svg {
        width: 30px;
        height: 30px;
    }
}

/* 351px–375px (small-medium mobile) */
@media only screen and (min-width: 351px) and (max-width: 375px) {
    .hero-logo img {
        width: 155px;
    }
    .hero-hat img {
        max-width: 310px;
    }
    .hero-wand img {
        width: 250px;
    }
    .hero-anni img {
        width: 135px;
    }
    .hero-title {
        font-size: 34px;
        line-height: 38px;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    .promo-tab {
        max-width: 140px;
        padding: 10px 8px;
    }
    .promo-tab img {
        height: 36px;
    }
    .carousel-slide {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .carousel-slide--1plus1 {
        height: 340px;
        padding: 14px;
    }
    .carousel-slide--1plus1 .slide-tag {
        font-size: 15px;
        padding: 5px 12px;
    }
    .carousel-slide--1plus1 .slide-title {
        font-size: 14px;
        line-height: 18px;
        -webkit-line-clamp: 2;
    }
    .carousel-slide--1plus1 .slide-bottom {
        bottom: 14px;
        left: 14px;
        right: 14px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 100px;
    }
    .carousel-slide--1plus1 .slide-combo-label {
        font-size: 14px;
    }
    .carousel-slide--1plus1 .slide-price .price-int {
        font-size: 44px;
    }
    .carousel-slide--1plus1 .slide-price .price-dec {
        font-size: 18px;
    }
    .carousel-slide--1plus1 .slide-price .price-currency {
        font-size: 13px;
    }
    .carousel-slide img {
        height: 260px;
        padding: 60px 14px 14px;
    }
    .slide-tag {
        font-size: 15px;
        padding: 5px 12px;
    }
    .slide-info h3 {
        font-size: .8rem;
    }
    .slide-prices .price-old .price-int,
    .slide-prices .price-new .price-int {
        font-size: 1.9rem;
    }
    .magic-tagline {
        font-size: 1.1rem;
    }
    .wand-mirrored {
        max-width: 220px;
    }
    .tombola-title {
        font-size: 1.4rem;
    }
    .car-img {
        max-width: 310px;
        padding-top: 25px;
    }
    .prize-item img {
        width: 90px;
    }
    .tombola-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .download-app-btn {
        padding: 12px 18px;
        gap: 10px;
    }
    .download-app-btn img {
        width: 40px;
        height: 40px;
    }
    .download-app-btn span {
        font-size: 22px;
    }
    .btn-oferte {
        font-size: 18px;
        padding: 16px 10px;
    }
    .footer {
        padding: 35px 24px 55px;
    }
    .footer-reg {
        font-size: 1rem;
    }
    .social-icons a svg {
        width: 32px;
        height: 32px;
    }
}

@media only screen and (min-width: 375px) and (max-width: 430px) {
    .prize-item img {
        width: 90px;
    }
    .prizes {
        gap: 14px;
    }
    .prizes-wrapper {
        padding: 14px 10px;
    }
    .prize-qty {
        font-size: 1rem;
    }
    .btn-oferte {
        font-size: 12px;
        padding: 14px 8px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 115px;
    }
    .magic-tagline {
        top: -20px;
    }
    .download-app-btn span {
        font-size: 22px;
    }
    .wand-mirrored {
        margin-bottom: -120px;
    }
}

/* 768px+ (Tablet) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        font-size: 15px;
    }
    .hero {
        min-height: 500px;
        padding: 0 0 30px;
    }
    .hero-hat img {
        max-width: 420px;
    }
    .hero-wand {
        max-width: 200px;
        top: 60px;
    }
    .hero-wand img {
        width: 380px;
        margin-top: -120px;
    }
    .hero-logo img {
        width: 200px;
    }
    .hero-anni img {
        width: 170px;
    }
    .hero-title {
        font-size: 46px;
        line-height: 50px;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .magic-powder {
        max-width: 450px;
    }
    .promo-tabs {
        gap: 14px;
    }
    .promo-tab {
        max-width: 180px;
        padding: 14px 16px;
    }
    .promo-tab img {
        height: 48px;
    }
    .carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .carousel-slide--1plus1 {
        height: 440px;
        padding: 18px;
    }
    .carousel-slide--1plus1 .slide-title {
        font-size: 16px;
        line-height: 22px;
        -webkit-line-clamp: 3;
    }
    .carousel-slide--1plus1 .slide-bottom {
        bottom: 18px;
        left: 18px;
        right: 18px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 160px;
    }
    .carousel-slide--1plus1 .slide-combo-label {
        font-size: 16px;
    }
    .carousel-slide--1plus1 .slide-price .price-int {
        font-size: 54px;
    }
    .carousel-slide--1plus1 .slide-price .price-dec {
        font-size: 22px;
    }
    .carousel-slide--1plus1 .slide-price .price-currency {
        font-size: 16px;
    }
    .slide-info h3 {
        font-size: .9rem;
    }
    .star-decoration {
        width: 140px;
    }
    .magic-tagline {
        font-size: 1.6rem;
    }
    .wand-mirrored {
        max-width: 260px;
    }
    .tombola {
        padding: 32px 40px;
    }
    .tombola-title {
        font-size: 1.8rem;
    }
    .car-img {
        max-width: 450px;
    }
    .prizes-wrapper {
        max-width: 500px;
        margin: 0 auto 22px;
    }
    .prize-item img {
        width: 120px;
    }
    .tombola-desc {
        font-size: 17px;
        line-height: 24px;
        max-width: 550px;
    }
    .oferte-section {
        padding: 20px 40px 28px;
    }
    .oferte-card {
        max-width: 100%;
        margin: 0 auto;
    }
    .oferte-single {
        max-width: 500px;
    }
    .btn-oferte {
        font-size: 16px;
        padding: 16px 14px;
    }
    .btn-oferte {
        font-size: 16px;
        padding: 16px 14px;
    }
    .download-app-btn {
        padding: 16px 32px;
    }
    .download-app-btn span {
        font-size: 28px;
    }
    .footer {
        padding: 50px 60px 70px;
    }
    .footer-reg {
        font-size: 1.15rem;
    }
    .footer-reg br,
    .footer-copy br {
        display: none;
    }
    .social-icons a svg {
        width: 40px;
        height: 40px;
    }
}

/* 1024px+ */
@media only screen and (min-width: 1024px) {
    body {
        font-size: 16px;
    }
    .hero {
        min-height: 620px;
        padding: 0 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 40px;
    }
    .hero-hat {
        position: absolute;
        top: 0;
        left: 26%;
        transform: translateX(-50%);
        right: auto;
        margin-top: 0;
        z-index: 2;
    }
    .hero-hat img {
        max-width: 480px;
        width: 100%;
    }
    .hero-wand {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-60%);
        width: auto;
        max-width: 280px;
        z-index: 5;
    }
    .hero-wand img {
        /* width: 100%; */
        width: 540px;
        margin-top: -320px;
    }
    .hero-logo-aniversar {
        display: block;
        position: relative;
        z-index: 5;
        text-align: center;
        opacity: 0;
        animation: fadeScaleIn 0.6s ease-out 2.0s forwards;
    }
    .hero-logo-aniversar img {
        width: 340px;
    }
    .hero-logo {
        display: none;
    }
    .hero-logo img {
        width: 200px;
        padding-top: 0;
    }
    .hero-anni {
        display: none;
    }
    .hero-anni img {
        width: 140px;
    }
    .hero-title {
        font-size: 48px;
        line-height: 52px;
        margin-top: 10px;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .magic-powder {
        max-width: 350px;
        top: 15%;
    }
    .promo-tabs {
        gap: 16px;
    }
    .promo-tab {
        max-width: 290px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 95px;
    }
    .magic-tagline {
        font-size: 44px;
        margin-bottom: 30px;
    }
    .star-decoration {
        display: none;
    }
    .magic-wand-section {
        text-align: right;
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    .wand-mirrored {
        display: none;
    }
    .afg-logo {
        width: 140px;
    }
    .tombola {
        display: flex;
        align-items: stretch;
        padding: 0;
        overflow: visible;
        position: relative;
        margin-bottom: 80px;
        max-width: 900px;
        margin: 0 auto;
        border-radius: 20px;
        background: #254bb5;
    }
    .tombola::before {
        display: none;
    }
    .tombola-left {
        display: flex;
        position: relative;
        width: 38%;
        min-height: 100%;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 20px 0 0 20px;
    }
    .tombola-left-frame {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 0 0 20px;
    }
    .tombola-left-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        width: 100%;
    }
    .tombola-left-content .tombola-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 16px;
    }
    .tombola-left-content .afg-logo {
        width: 100px;
    }
    .tombola-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 24px;
    }
    .tombola-hat {
        display: block;
        position: absolute;
        bottom: -5px;
        left: 20%;
        transform: translateX(-50%);
        z-index: 10;
        pointer-events: none;
    }
    .tombola-hat img {
        width: 200px;
    }
    .tombola-wand {
        display: block;
        position: absolute;
        top: 20%;
        left: 0;
        transform: translateY(-50%);
        z-index: 10;
        pointer-events: none;
    }
    .tombola-wand img {
        width: 225px;
        filter: drop-shadow(0 4px 12px rgba(0,0,80,.4));
    }
    .tombola-title {
        font-size: 2rem;
    }
    .car-img {
        max-width: 500px;
    }
    .car-img-wrapper::before {
        top: 35%;
        left: 30.5%;
        width: 15px;
        height: 15px;
    }
    .car-img-wrapper::after {
        top: 33.5%;
        right: 20.5%;
        width: 12px;
        height: 12px;
    }
    .prizes-wrapper {
        border: 2px solid #fff;
        border-radius: 14px;
        padding: 16px 12px;
        margin-bottom: 12px;
        max-width: 500px;
        width: 100%;
        box-sizing: border-box;
    }
    .prize-item img {
        width: 105px;
    }
    .tombola-desc {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 500px;
        text-align: center;
    }
    .oferte-section {
        padding: 24px 40px 32px;
        max-width: 1000px;
        margin: 0 auto;
    }
    .oferte-card {
        max-width: 100%;
        margin: 0 auto;
    }
    .oferte-slide .oferte-card-img {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
        object-fit: unset;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 65px), 0 calc(100% - 25px));
    }
    .oferte-single {
        max-width: 450px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 65px), 0 calc(100% - 25px));
    }
    .btn-oferte {
        font-size: 9px;
        padding: 16px 14px;
    }
    .footer {
        padding: 50px 60px 70px;
    }
    .footer-reg {
        font-size: 1.2rem;
    }
    .footer-reg br,
    .footer-copy br {
        display: none;
    }
    .social-icons a svg {
        width: 42px;
        height: 42px;
    }
    .promo-footer-text {
    font-size: 18px;
    color: #FFF;
    text-align: center;
    padding: 12px 14px;
    line-height: 1.5;
    margin: 0 16px;
    border-radius: 12px;
    }
    .slide-info h3 {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .slide-info {
        padding: 6px 14px 10px;
    }
    .slide-prices .price-old .price-int,
    .slide-prices .price-new .price-int {
        font-size: 2.6rem;
    }
    .slide-tag {
        font-size: 26px;
        padding: 10px 20px;
    }
    .carousel-slide--1plus1 .slide-tag {
        font-size: 22px;
        padding: 8px 18px;
    }
    .carousel-slide img {
        height: 440px;
        /* padding: 80px 18px 18px; */
    }
}
/* 1280px+ */
@media only screen and (min-width: 1280px) {
    .hero {
        min-height: 700px;
    }
    .hero-hat img {        
        max-width: 640px;
        
    }
    .hero-wand {        
        max-width: 310px;
    }
    .hero-wand img {        
        width: 650px;
        margin-top: -350px;
    }
    .magic-powder {
        max-width: 350px;
        top: 25%;
    }
}
/* 1360px+ */
@media only screen and (min-width: 1360px) {
    .hero {
        min-height: 700px;
    }
    .hero-hat img {
        max-width: 640px;
        margin-left: 2%;
    }
    .hero-wand {
        max-width: 310px;
    }
    .hero-wand img {
        width: 500px;
        margin-top: -300px;
    }
    .magic-powder {
        max-width: 350px;
        top: 23%;
    }
    .hero-logo-aniversar img {
        width: 360px;
    }
    .hero-title {
        font-size: 52px;
        line-height: 56px;
    }
    .hero-subtitle {
        font-size: 19px;
    }
    .promo-wrap {
        max-width: 1000px;
        margin: 0 auto;
    }
    .magic-tagline {
        font-size: 1.8rem;
    }
    .tombola {
        max-width: 950px;
    }
    .tombola-hat img {
        width: 220px;
    }
    .tombola-wand img {
        width: 220px;
    }
    .car-img {
        max-width: 520px;
    }
    .prizes-wrapper {
        max-width: 520px;
    }
    .car-img-wrapper::before {
        top: 35%;
        left: 30.5%;
        width: 16px;
        height: 16px;
    }
    .car-img-wrapper::after {
        top: 33.5%;
        right: 20.5%;
        width: 13px;
        height: 13px;
    }
    .oferte-card {
        max-width: 100%;
    }
    .oferte-single {
        max-width: 500px;
    }
    .footer {
        padding: 60px 80px 80px;
    }
    .promo-tab {
        max-width: 282px;
        padding: 17px 16px;
    }
    .promo-tab img {
        height: 85px;
    }
}

/* 1440px+ */
@media only screen and (min-width: 1420px) {
    .hero {
        min-height: 740px;
    }
    .hero-hat img {
        max-width: 670px;
        margin-left: 2%;
    }
    .hero-wand {
        max-width: 330px;
    }
    .hero-wand img {
        width: 668px;
        margin-top: -360px;
    }
    .hero-logo-aniversar img {
        width: 380px;
    }
    .magic-powder {
        max-width: 450px;
        top: 20%;
    }
    .hero-title {
        font-size: 54px;
        line-height: 58px;
    }
    .promo-wrap {
        max-width: 1100px;
    }
    .oferte-section {
        max-width: 1100px;
    }
    .promo-tab {
        max-width: 307px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 85px;
    }
    .tombola {
        max-width: 1000px;
    }
    .oferte-slide.carousel-slide {
        flex: 0 0 28%;
        max-width: 28%;
    }
    .oferte-card {
        max-width: 100%;
    }
    .oferte-slide .oferte-card-img {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
        object-fit: unset;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
    .oferte-single {
        max-width: 550px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
    .btn-oferte {
        font-size: 11px;
    }
    .app-section {
        padding: 40px 20px;
    }
    .download-app-btn {
        padding: 18px 32px;
    }
}

/* 1520px+ */
@media only screen and (min-width: 1520px) {
    .hero {
        min-height: 780px;
    }
    .hero-hat img {
        max-width: 700px;
        margin-left: 2%;
    }
    .hero-wand {
        max-width: 450px;
    }
    .hero-wand img {
        width: 740px;
        margin-top: -400px;
    }
    .hero-logo-aniversar img {
        width: 400px;
    }
    .hero-title {
        font-size: 56px;
        line-height: 60px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .magic-powder {
        max-width: 580px;
    }
    .promo-wrap {
        max-width: 1200px;
    }
    .oferte-section {
        max-width: 1200px;
    }
    .promo-tab {
        max-width: 337px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 95px;
    }
    .tombola {
        max-width: 1050px;
    }
    .tombola-left-content .tombola-title {
        font-size: 1.8rem;
    }
    .tombola-hat img {
        width: 240px;
    }
    .tombola-wand img {
        width: 240px;
    }
    .car-img {
        max-width: 540px;
    }
    .prizes-wrapper {
        max-width: 540px;
    }
    .car-img-wrapper::before {
        top: 36%;
        left: 30.5%;
        width: 16px;
        height: 16px;
    }
    .car-img-wrapper::after {
        top: 34%;
        right: 20.5%;
        width: 13px;
        height: 13px;
    }
    .oferte-card {
        max-width: 100%;
    }
    .oferte-slide .oferte-card-img {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
        object-fit: unset;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
    .oferte-single {
        max-width: 550px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
}

/* 1660px+ */
@media only screen and (min-width: 1660px) {
    .hero {
        min-height: 820px;
    }
    .hero-hat img {
        max-width: 540px;
        margin-left: 26%;
    }
    .hero-wand {
        max-width: 380px;
    }
    .hero-logo-aniversar img {
        width: 420px;
    }
    .hero-title {
        font-size: 60px;
        line-height: 64px;
    }
    .hero-subtitle {
        font-size: 21px;
    }
    .magic-powder {
        max-width: 620px;
    }
    .promo-wrap {
        max-width: 1300px;
    }
    .oferte-section {
        max-width: 1300px;
    }
    .promo-tab {
        max-width: 366px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 100px;
    }
    .magic-tagline {
        font-size: 2rem;
    }
    .tombola {
        max-width: 1150px;
    }
    .tombola-left-content .tombola-title {
        font-size: 2rem;
    }
    .tombola-hat img {
        width: 260px;
    }
    .tombola-wand img {
        width: 260px;
    }
    .car-img {
        max-width: 560px;
    }
    .prizes-wrapper {
        max-width: 560px;
    }
    .car-img-wrapper::before {
        top: 36%;
        left: 30.5%;
        width: 20px;
        height: 20px;
    }
    .car-img-wrapper::after {
        top: 35%;
        right: 20.5%;
        width: 13px;
        height: 13px;
    }
    .oferte-slide.carousel-slide {
        flex: 0 0 28%;
        max-width: 28%;
    }
    .oferte-card {
        max-width: 100%;
    }
    .oferte-slide .oferte-card-img {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
        object-fit: unset;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
    .oferte-single {
        max-width: 550px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 calc(100% - 25px));
    }
    .btn-oferte {
        font-size: 14px;
        padding: 18px 14px;
    }
    .footer {
        padding: 70px 100px 90px;
    }
    /* .btn-oferte {
        font-size: 12px;
        padding: 18px 14px;
    } */
}

/* 1920px+ */
@media only screen and (min-width: 1920px) {
    .hero {
        min-height: 900px;
    }
    .hero-hat img {
        max-width: 850px;
        margin-left: 12%;
    }
    .hero-wand {
        /* max-width: 420px; */
    }
    .hero-wand img {
        width: 1000px;
        margin-top: -500px;
    }
    .hero-logo-aniversar img {
        width: 460px;
    }
    .hero-title {
        font-size: 66px;
        line-height: 68px;
    }
    .hero-subtitle {
        font-size: 26px;
        line-height: 30px;
    }
    .magic-powder {
        max-width: 680px;
    }
    .promo-wrap {
        max-width: 1400px;
    }
    .oferte-section {
        max-width: 1400px;
    }
    .carousel-slide {
        height: 560px;
    }
    .carousel-slide--1plus1 {
        height: 560px;
        overflow: visible;
        padding: 24px;
    }
    .carousel-slide--1plus1 .slide-bottom {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }
    .carousel-slide--1plus1 .slide-title {
        font-size: 20px;
        line-height: 28px;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .carousel-slide--1plus1 .slide-combo-label {
        font-size: 22px;
    }
    .carousel-slide--1plus1 .slide-price .price-int {
        font-size: 76px;
    }
    .carousel-slide--1plus1 .slide-price .price-dec {
        font-size: 30px;
    }
    .carousel-slide--1plus1 .slide-price .price-currency {
        font-size: 22px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 220px;
    }
    .carousel-slide:not(.carousel-slide--1plus1) img {
        height: 440px;
    }
    .slide-prices .price-old .price-int,
    .slide-prices .price-new .price-int {
        font-size: 3rem;
    }
    .slide-info {
        padding: 2px 14px 8px;
    }
    .slide-info h3 {
        margin-bottom: 2px;
    }
    .promo-tab {
        max-width: 395px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 115px;
    }
    .magic-tagline {
        font-size: 3.2rem;
    }
    .tombola {
        max-width: 1250px;
    }
    .tombola-left-content .tombola-title {
        font-size: 2.2rem;
    }
    .tombola-left-content .afg-logo {
        width: 120px;
    }
    .tombola-hat img {
        width: 300px;
    }
    .tombola-wand img {
        width: 300px;
    }
    .tombola-right {
        padding: 40px 30px;
    }
    .car-img {
        max-width: 600px;
    }
    .prizes-wrapper {
        max-width: 600px;
    }
    .car-img-wrapper::before {
        top: 36%;
        left: 30.5%;
        width: 20px;
        height: 20px;
    }
    .car-img-wrapper::after {
        top: 35%;
        right: 20.5%;
        width: 15px;
        height: 15px;
    }
    .prize-item img {
        width: 126px;
    }
    .tombola-desc {
        font-size: 1.3rem;
        line-height: 1.6;
        max-width: 600px;
    }
    .coverflow-stage {
        height: 580px;
    }
    .coverflow-item {
        width: 500px;
    }
    .coverflow-item.prev {
        transform: translate(calc(-50% - 400px), -50%) scale(.78) rotateY(30deg);
    }
    .coverflow-item.next {
        transform: translate(calc(-50% + 400px), -50%) scale(.78) rotateY(-30deg);
    }
    .coverflow-item.far-prev {
        transform: translate(calc(-50% - 680px), -50%) scale(.6) rotateY(40deg);
    }
    .coverflow-item.far-next {
        transform: translate(calc(-50% + 680px), -50%) scale(.6) rotateY(-40deg);
    }
    .btn-oferte {
        font-size: 14px;
        padding: 18px 14px;
    }
    .oferte-slide.carousel-slide {
        flex: 0 0 28%;
        max-width: 28%;
    }
    .oferte-slide .oferte-card {
        height: auto;
    }
    .oferte-slide .oferte-card-img {
        height: auto;
        object-fit: unset;
    }
    .coverflow-prev { left: calc(50% - 250px - 26px); }
    .coverflow-next { right: calc(50% - 250px - 26px); }
    .oferte-single {
        max-width: 550px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 115px), 0 calc(100% - 25px));
    }
    .btn-oferte {
        font-size: 14px;
        padding: 18px 14px;
    }
    .footer {
        padding: 80px 120px 100px;
    }
    .footer-reg {
        font-size: 1.3rem;
    }
    .social-icons a svg {
        width: 48px;
        height: 48px;
    }
}

/* 2400px+ */
@media only screen and (min-width: 2400px) {
    .hero {
        min-height: 1050px;
    }
    .hero-hat img {
        max-width: 1050px;
        margin-left: 27%;
    }
    .hero-wand {
        max-width: 520px;
    }
    
    .hero-wand img {
        width: 1200px;
        margin-top: -600px;
    }
    .hero-logo-aniversar img {
        width: 520px;
    }
    .hero-title {
        font-size: 76px;
        line-height: 80px;
    }
    .hero-subtitle {
        font-size: 26px;
        line-height: 36px;
    }
    .magic-powder {
        max-width: 800px;
    }
    .promo-wrap {
        max-width: 1600px;
    }
    .oferte-section {
        max-width: 1600px;
    }
    .carousel-slide {
        height: 680px;
    }
    .carousel-slide--1plus1 {
        height: 680px;
        overflow: visible;
        padding: 30px;
    }
    .carousel-slide--1plus1 .slide-bottom {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .carousel-slide--1plus1 .slide-title {
        font-size: 24px;
        line-height: 32px;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .carousel-slide--1plus1 .slide-combo-label {
        font-size: 26px;
    }
    .carousel-slide--1plus1 .slide-price .price-int {
        font-size: 90px;
    }
    .carousel-slide--1plus1 .slide-price .price-dec {
        font-size: 36px;
    }
    .carousel-slide--1plus1 .slide-price .price-currency {
        font-size: 26px;
    }
    .carousel-slide--1plus1 .slide-bottom img {
        width: 240px;
    }
    .carousel-slide:not(.carousel-slide--1plus1) img {
        height: 560px;
    }
    .slide-prices .price-old .price-int,
    .slide-prices .price-new .price-int {
        font-size: 3.4rem;
    }
    .slide-info {
        padding: 0px 14px 6px;
        margin-top: -11px;
    }
    .slide-info h3 {
        margin-bottom: 5px;
    }
    .promo-tab {
        max-width: 450px;
        padding: 20px 16px;
    }
    .promo-tab img {
        height: 135px;
    }
    .magic-tagline {
        font-size: 2.5rem;
    }
    .tombola {
        max-width: 1500px;
    }
    .tombola-left-content .tombola-title {
        font-size: 2.6rem;
    }
    .tombola-left-content .afg-logo {
        width: 140px;
    }
    .tombola-hat img {
        width: 360px;
        bottom: -80px;
    }
    .tombola-wand img {
        width: 360px;
    }
    .tombola-right {
        padding: 50px 40px;
    }
    .car-img {
        max-width: 700px;
    }
    .prizes-wrapper {
        max-width: 700px;
    }
    .car-img-wrapper::before {
        top: 38.5%;
        left: 30.5%;
        width: 25px;
        height: 25px;
    }
    .car-img-wrapper::after {
        top: 36.5%;
        right: 20.5%;
        width: 22px;
        height: 22px;
    }
    .prize-item img {
        width: 147px;
    }
    .tombola-desc {
        font-size: 1.5rem;
        max-width: 700px;
    }
    .coverflow-stage {
        height: 680px;
    }
    .coverflow-item {
        width: 580px;
    }
    .coverflow-item.prev {
        transform: translate(calc(-50% - 480px), -50%) scale(.78) rotateY(30deg);
    }
    .coverflow-item.next {
        transform: translate(calc(-50% + 480px), -50%) scale(.78) rotateY(-30deg);
    }
    .coverflow-item.far-prev {
        transform: translate(calc(-50% - 800px), -50%) scale(.6) rotateY(40deg);
    }
    .coverflow-item.far-next {
        transform: translate(calc(-50% + 800px), -50%) scale(.6) rotateY(-40deg);
    }
    .btn-oferte {
        font-size: 18px;
        padding: 20px 16px;
    }
    .oferte-slide.carousel-slide {
        flex: 0 0 28%;
        max-width: 28%;
    }
    .oferte-slide .oferte-card {
        height: auto;
    }
    .oferte-slide .oferte-card-img {
        height: auto;
        object-fit: unset;
    }
    .coverflow-prev { left: calc(50% - 290px - 26px); }
    .coverflow-next { right: calc(50% - 290px - 26px); }
    .oferte-single {
        max-width: 550px;
    }
    .oferte-single img {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 135px), 0 calc(100% - 25px));
    }
    .footer {
        padding: 90px 140px 120px;
    }
    .footer-reg {
        font-size: 1.5rem;
    }
    .social-icons a svg {
        width: 54px;
        height: 54px;
    }
    .footer-copy {
        font-size: 1rem;
    }
}
