/* ==========================================
   SECȚIUNEA PRINCIPALĂ
   ========================================== */
.oferte-section {
    width: 100%;
    padding: 40px 5% 50px 5%;
    background: linear-gradient(135deg, #cbd5e1 0%, #93c5fd 50%, #60a5fa 100%);   
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .oferte-section { padding: 35px 4% 45px 4%; }
}

/* ==========================================
   HEADER SECȚIUNE
   ========================================== */
.oferte-header {
    text-align: center;
    margin-bottom: 28px;
}

.oferte-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.oferte-title span {
    background: linear-gradient(to right, #2563eb, #3b82f6, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oferte-subtitle {
    font-size: 0.85rem;
    color: #334155;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 700;
}

@media (min-width: 768px) {
    .oferte-title { font-size: 2rem; }
    .oferte-subtitle { 
        font-size: 1.1rem;
        font-weight: 700;
    }
}

/* ==========================================
   CONTAINER CARUSEL + GRID
   ========================================== */
.oferte-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .promo-grid {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding: 16px 8px;
        width: 100%;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .promo-grid::-webkit-scrollbar { display: none; }
    
    .promo-box {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
}

/* ==========================================
   PROMO BOX - EFECT 3D PREMIUM
   ========================================== */
.promo-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 2px solid rgba(0, 51, 153, 0.4);
    border-radius: 24px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 28px rgba(0, 51, 153, 0.2);
    padding: 28px 22px 20px 22px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.promo-box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 51, 153, 0.7);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 35px rgba(0, 51, 153, 0.3);
}

.promo-kitchen, .promo-bathroom { 
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.12) 100%); 
}

.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    border-radius: 24px;
}

.promo-box:hover::before {
    left: 100%;
}

/* ==========================================
   ELEMENTE INTERNE CARD
   ========================================== */
.promo-counter {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.05em;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(0, 51, 153, 0.15);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    margin-top: 4px;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #fbbc04;  
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

@media (min-width: 768px) {
    .star-icon {
        width: 18px;
        height: 18px;
    }
}

.promo-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.container-price { margin-bottom: 14px; }

.promo-price {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 900;
    color: #000000;
    padding: 5px 18px;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid #000000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promo-box p {
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 700;
}

.promo-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #2563eb;
    font-weight: 800;
    font-size: 0.8rem;
    border-top: 1px solid rgba(0, 51, 153, 0.15);
    padding-top: 14px;
    margin-top: auto;
    transition: all 0.2s ease;
}

.promo-box:hover .promo-card-action {
    color: #1d4ed8;
    gap: 10px;
}

.promo-card-action svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* ==========================================
   SĂGEȚI CARUSEL
   ========================================== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-arrow:hover {
    background: #1e293b;
    border-color: #3b82f6;
    transform: translateY(-50%) scale(1.05);
}

.arrow-left { left: -16px; }
.arrow-right { right: -16px; }

@media (max-width: 768px) {
    .carousel-arrow { display: flex; }
    .arrow-left { left: -12px; }
    .arrow-right { right: -12px; }
}