
/* =========================
   HERO - VARIANTA PREMIUM (CA ÎN POZĂ)
========================= */

.hero-wrapper {
    max-width: 1200px;
    margin: 20px auto 10px;
    padding: 0 20px;
}

.hero {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

/* imagine */
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* 🔥 IMPORTANT - mutăm focusul pe buchet */
    object-position: 75% 35%;

    display: block;
}

/* overlay cinematic */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(10,5,6,0.85) 0%,
        rgba(10,5,6,0.65) 30%,
        rgba(10,5,6,0.35) 55%,
        transparent 80%
    );

    z-index: 1;
}

/* =========================
   TEXT
========================= */
.hero-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);

    max-width: 480px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    z-index: 2;
}

/* titlu */
.hero-content h1 {
    font-size: 46px;
    line-height: 1.15;
    margin: 0;

    text-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* accent */
.hero-content h1 span {
    color: var(--accent-gold);
}

/* descriere */
.hero-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #e8dede;
}

/* =========================
   BENEFICII HERO (CURAT FIX)
========================= */
.hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* randuri */
.benefit-row {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 10px;
}

/* badge */
.benefit-row div {
    font-size: 13.5px;
    color: #fff;

    background: rgba(255,255,255,0.06);
    padding: 7px 14px;
    border-radius: 999px; /* 🔥 mai premium */

    display: flex;
    align-items: center;
    gap: 6px;
   font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;

    transition: all 0.25s ease;
}

/* icon */
.benefit-row i {
    color: var(--accent-gold);
}

/* hover premium subtil */
.benefit-row div:hover {
    background: rgba(255,140,170,0.15);
    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(255,140,170,0.25);
}

/* buton */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    border-radius: 999px;

    background: linear-gradient(135deg, #ff8caf, #ff5f8f);
    color: #fff;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;

    box-shadow: 0 12px 30px rgba(255,105,140,0.45);

    transition: 0.25s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255,105,140,0.6);
}
/* =========================
   CATEGORII PREMIUM
========================= */
.categories-premium {
    display: grid;
    margin-top: -40px;
position: relative;
z-index: 5; 
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* card */
.category-premium-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px;

    border-radius: 16px;

    background: rgba(30,15,20,0.85);
backdrop-filter: blur(10px);

    border: 1px solid rgba(255,140,170,0.2);

    text-decoration: none;
    color: #fff;

    transition: all 0.3s ease;
}

/* hover */
.category-premium-item:hover {
    transform: translateY(-5px);
    background: rgba(255,140,170,0.08);
    border: 1px solid rgba(255,140,170,0.35);

    box-shadow: 0 12px 30px rgba(255,105,140,0.25);
}

/* =========================
   ICON
========================= */
.category-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,140,170,0.08);

    box-shadow: 
        0 0 0 1px rgba(255,140,170,0.2),
        0 6px 20px rgba(255,105,140,0.15);

    flex-shrink: 0;

    transition: all 0.3s ease;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 50%; /* 🔥 ASTA E CHEIA */
    overflow: hidden; /* 🔥 obligatoriu */
    display: block;
}
/* hover icon */
.category-premium-item:hover .category-icon {
    transform: scale(1.08);

    box-shadow: 
        0 0 0 1px rgba(255,140,170,0.4),
        0 12px 30px rgba(255,105,140,0.35);
}


/* =========================
   TEXT
========================= */

.category-premium-item strong {
    display: block;
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 3px;
}

.category-premium-item span {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 12.5px;
    line-height: 1.35;
}

/* 🔥 TEXT HOVER */
.category-premium-item:hover strong {
    color: var(--primary);
}

@media (max-width: 900px) {
    .categories-premium {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -15px;
    }
}

@media (max-width: 500px) {
    .categories-premium {
        grid-template-columns: 1fr;
        margin-top: -10px;
    }


}
/* =========================
   TITLURI SECȚIUNI
========================= */
.section-title-center {
    text-align: center;
    color: #fff7f7;
    font-size: 36px;
    letter-spacing: 0.5px;
    margin: 60px 0 8px;
   
}

.section-title-center::after {
    content: "❤";
    display: block;
    color: #e05a86;
    font-size: 16px;
    margin-top: 4px;
}

.section-subtitle {
    text-align: center;
    color: #cdb9b9;
    max-width: 850px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 15px;
}

/* =========================
   GRID PRODUSE DARK
========================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center; /* 🔥 ASTA REZOLVĂ TOT */
    gap: 26px;
    max-width: 1200px;
    margin: auto;
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(60,42,42,0.95), rgba(37,27,27,0.96));
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
    transition: all 0.35s ease;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 28px 65px rgba(0,0,0,0.38);
    border-color: rgba(244,163,189,0.35);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12), transparent 70%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-img {
    height: 250px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-info {
    padding: 18px;
}

.product-title {
    font-size: 15px;
    color: #f8eeee;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
    min-height: 40px;
}

.product-price {
    color: #ff8caf;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

.product-link {
    font-size: 14px;
    color: #d4bbbb;
}

.product-card:hover .product-link {
    color: var(--primary);
}

/* =========================
   BENEFICII DARK
========================= */
.benefits-bar {
    margin: 34px 0 10px;
    background: rgba(39, 27, 27, 0.88);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.22);
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #eadede;
}

.benefit-icon {
    font-size: 28px;
    color: #ff8caf;
}

.benefit-item strong {
    display: block;
    color: #fff6f6;
    font-size: 14px;
}

.benefit-item span {
    display: block;
    color: #cdb9b9;
    font-size: 13px;
}

/* =========================
   RESPONSIVE SIMPLU
========================= */
@media (max-width: 900px) {
    .categories-premium,
    .benefits-bar {
        grid-template-columns: 1fr 1fr;
    }

    .product-page {
        flex-direction: column;
    }

    .gallery,
    .product-details {
        max-width: 100%;
    }
}
/* =========================
   OCAZII GRID
========================= */
.ocazii-grid {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}


/* =========================
   RECENZII
========================= */
.reviews-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: rgba(40, 28, 28, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    font-size: 13.5px;
    line-height: 1.5;
}

.review-card p {
    margin: 10px 0;
    color: #d8caca;
}

.review-card strong {
    color: var(--primary);
    font-size: 13px;
}

.stars {
    color: #ffcc66;
    font-size: 14px;
}

/* responsive */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CTA PREMIUM FINAL - STABIL
========================= */

.cta-premium {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cta-premium-inner {
    border-radius: 20px;
    overflow: hidden;

    background:
    linear-gradient(
        to right,
        rgba(180,50,90,0.98) 0%,
        rgba(180,50,90,0.92) 25%,
        rgba(180,50,90,0.75) 45%,
        rgba(180,50,90,0.45) 65%,
        rgba(180,50,90,0.15) 80%,
        rgba(180,50,90,0.05) 100%
    ),
    url('/images/cta-flowers.jpg');

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    min-height: 160px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}
.cta-premium-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255,120,150,0.15), transparent 60%);
    pointer-events: none;
}

/* =========================
   TEXT
========================= */
.cta-text h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;

    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.cta-text p {
    color: #ffe3ec;
    margin-bottom: 22px;
    font-size: 15px;

    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

/* =========================
   BUTTON PREMIUM
========================= */
.cta-btn {
    display: inline-block;

    background: linear-gradient(135deg, #ffffff, #ffe6ee);
    color: #c85078;

    padding: 14px 28px;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.25),
        0 2px 6px rgba(255,255,255,0.2) inset;

    transition: all 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);

    background: linear-gradient(135deg, #fff, #ffd6e3);

    box-shadow:
        0 14px 30px rgba(0,0,0,0.35),
        0 2px 8px rgba(255,255,255,0.25) inset;
}
.cta-btn {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,140,170,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255,140,170,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,140,170,0); }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .cta-premium-inner {
        background-size: 70%;
    }
}

@media (max-width: 600px) {
    .cta-content {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-premium-inner {
        background-size: cover;
        background-position: center;
    }
}

/* =========================
   GALERIE GRID PREMIUM
========================= */

.gallery-grid {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 14px;
}

/* item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* imagine */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* hover */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* forme diferite */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* buton */
.gallery-btn-wrapper {
    text-align: center;
    margin: 20px 0 50px;
}
.gallery-item:last-child {
    grid-column: span 2;
}
.cta-outline-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid #ff8caf;
    color: #ff8caf;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.cta-outline-btn:hover {
    background: #ff8caf;
    color: #fff;
}

/* responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   FAQ PREMIUM
========================= */

.faq-container {
    max-width: 1100px;
    margin: 30px auto 60px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: rgba(40, 28, 28, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;

    transition: 0.25s;
}

.faq-item:hover {
    border-color: rgba(255,179,201,0.3);
}

/* întrebare */
.faq-question {
    padding: 16px 18px;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
    color: #fff;

    font-size: 14.5px;
}

/* plus */
.faq-question span {
    font-size: 20px;
    color: #ff8caf;
}

/* răspuns */
.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 18px;

    color: #d8caca;
    font-size: 14px;
    line-height: 1.5;

    transition: all 0.3s ease;
}

/* activ */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 12px 18px 16px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* responsive */
@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}
/* =========================
   WHY US PREMIUM (MODEL)
========================= */

.why-us {
    max-width: 1200px;
    margin: 50px auto 40px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* ITEM */
.why-item h3 {
    color: #fff;
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 6px;
}

.why-item p {
    color: #cdb9b9;
    font-size: 13px;
    line-height: 1.4;
}

/* ICON CERC PREMIUM */
.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    color: var(--primary);

    background: radial-gradient(circle, rgba(255,140,170,0.15), rgba(0,0,0,0.1));

    border: 1px solid rgba(255,180,200,0.4);

    box-shadow:
        0 0 25px rgba(255,140,170,0.25),
        inset 0 0 12px rgba(255,180,200,0.2);

    position: relative;
    transition: all 0.3s ease;
}

/* glow hover */
.why-item:hover .why-icon {
    transform: scale(1.08);
    box-shadow:
        0 0 35px rgba(255,140,170,0.4),
        inset 0 0 14px rgba(255,180,200,0.25);
}

/* sparkle */
.why-icon::after {
    content: "✨";
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 14px;
    opacity: 0.7;
}

/* responsive */
@media (max-width: 900px) {
    .why-us {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .why-us {
        grid-template-columns: 1fr;
    }
}


/* =========================
   FOOTER CLEAN
========================= */

.footer-clean {
    background: linear-gradient(180deg, #120d0d, #0b0707);
    color: #d8caca;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 10px;
}

/* TEXT */
.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
}

/* HEADERS */
.footer-clean h4 {
    color: #fff;
    margin-bottom: 10px;
}

/* LINKS */
.footer-clean a {
    display: block;
    color: #cdb9b9;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 13px;
}

.footer-clean a:hover {
    color: #ff8caf;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    margin-right: 6px;
}

/* WHATSAPP */
.footer-whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff !important;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 30px;
    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

    font-size: 12px;
}

.footer-bottom a {
    display: inline;
    margin: 0 5px;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* =========================
   OCAZII PREMIUM FULL
========================= */

.ocazie-card {
    position: relative;
    display: block;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* imagine */
.ocazie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.ocazie-card:hover img {
    transform: scale(1.08);
}

/* overlay gradient */
.ocazie-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 16px;
}

.ocazie-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.ocazie-overlay span {
    color: var(--primary);
    font-size: 13px;
}

/* 🔥 BADGE */
.ocazie-badge {
    position: absolute;
    bottom: 50px;
    left: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #fff;
    color: #e05a86;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 3;
}

.ocazie-card:hover .ocazie-badge {
    transform: scale(1.08);
}

/* 🔥 BUTON */
.ocazie-btn {
    position: absolute;
    bottom: 12px;
    left: 16px;

    padding: 6px 14px;
    border-radius: 20px;

    border: 1px solid #ff8caf;
    color: #ff8caf;

    font-size: 12px;
    background: rgba(0,0,0,0.3);

    transition: 0.25s;
}

.ocazie-card:hover .ocazie-btn {
    background: #ff8caf;
    color: #fff;
}
/* HERO */
.category-hero {
    max-width: 1200px;
    height: 300px;

    margin: 30px auto 40px;

    position: relative;
    overflow: hidden;

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);

    background: url('/images/hero.jpg') center/cover no-repeat;

    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.category-hero-overlay {
    background: rgba(15,10,10,0.75);
    height: 100%;
    display: flex;
    align-items: center;
}

.category-hero h1 {
    color: #fff;
    font-size: 34px;
}

.category-hero p {
    color: #d8caca;
    max-width: 600px;
}

.breadcrumb {
    font-size: 13px;
    color: #cdb9b9;
    margin-bottom: 10px;
}

/* LAYOUT */
.category-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    margin-top: 40px;
}



/* =========================
   HERO OCAZII FINAL PERFECT
========================= */

.hero-ocazii {

    max-width: 1200px;
    height: 300px;

    margin: 30px auto 40px;

    position: relative;
    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(255,140,170,0.22);

    /* 🔥 COMPROMIS PREMIUM */
    background-size: cover;
    background-repeat: no-repeat;

    /* 🔥 mutăm compoziția mai spre dreapta */
    background-position: 72% center;

    box-shadow:
        0 22px 60px rgba(0,0,0,0.42),
        0 0 30px rgba(255,140,170,0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* =========================
   HOVER SUBTIL
========================= */

.hero-ocazii:hover {

    transform: translateY(-3px);

    box-shadow:
        0 28px 80px rgba(0,0,0,0.55),
        0 0 40px rgba(255,140,170,0.16);
}

/* =========================
   OVERLAY PREMIUM
========================= */

.hero-ocazii .category-hero-overlay {

    height: 100%;

    background:
        linear-gradient(
            to right,
            rgba(22,10,14,0.88) 0%,
            rgba(30,14,18,0.78) 22%,
            rgba(35,16,22,0.54) 42%,
            rgba(28,14,18,0.20) 62%,
            rgba(18,8,12,0.02) 100%
        );

    display: flex;
    align-items: center;

    position: relative;
}

/* =========================
   GLOW SUBTIL
========================= */

.hero-ocazii .category-hero-overlay::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left,
            rgba(255,120,160,0.10),
            transparent 55%
        );

    pointer-events: none;
}

/* =========================
   CONTAINER TEXT
========================= */

.hero-ocazii .container {

    max-width: 1200px;

    margin: 0;

    padding-left: 80px;

    position: relative;
    z-index: 2;
}

/* =========================
   TITLU
========================= */

.hero-ocazii h1 {

    font-size: 52px;
    line-height: 1.05;

    margin: 12px 0 16px;

    color: #fff7f7;

    letter-spacing: -0.5px;

    text-shadow:
        0 4px 18px rgba(0,0,0,0.60);
}

/* =========================
   DESCRIERE
========================= */

.hero-ocazii p {

    max-width: 560px;

    color: #f1d9df;

    font-size: 17px;
    line-height: 1.65;

    margin: 0;

    text-shadow:
        0 2px 12px rgba(0,0,0,0.55);
}

/* =========================
   BREADCRUMB
========================= */

.hero-ocazii .breadcrumb {

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    gap: 6px;

    flex-wrap: wrap;
}

.hero-ocazii .breadcrumb,
.hero-ocazii .breadcrumb a {

    color: #f2b5c8;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.hero-ocazii .breadcrumb a:hover {

    color: #ffffff;
}

/* =========================
   ACCENT SUB TITLU
========================= */

.hero-ocazii h1::after {

    content: "— ❤ —";

    display: block;

    font-size: 16px;

    color: #ff8caf;

    margin-top: 10px;

    letter-spacing: 6px;

    opacity: 0.95;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 900px) {

    .hero-ocazii {

        height: 260px;

        background-size: 140%;
        background-position: 68% center;
    }

    .hero-ocazii .container {

        padding-left: 40px;
        padding-right: 30px;
    }

    .hero-ocazii h1 {

        font-size: 38px;
    }

    .hero-ocazii p {

        font-size: 15px;
        max-width: 420px;
    }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 600px) {

    .hero-ocazii {

        height: 230px;

        border-radius: 18px;

        background-size: 190%;
        background-position: 72% center;
    }

    .hero-ocazii .container {

        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-ocazii h1 {

        font-size: 30px;
    }

    .hero-ocazii p {

        font-size: 14px;
        line-height: 1.5;

        max-width: 260px;
    }

    .hero-ocazii h1::after {

        font-size: 13px;
        letter-spacing: 4px;
    }
}




/* SIDEBAR */
.sidebar-box {
    background: rgba(40,28,28,0.85);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.sidebar-link {
    display: block;
    padding: 8px 10px;
    color: #cdb9b9;
    text-decoration: none;
    border-radius: 8px;
}

.sidebar-link:hover {
    background: rgba(255,255,255,0.05);
}

.sidebar-link.active {
    background: rgba(255,140,170,0.15);
    color: #ff8caf;
}

/* WHATSAPP PREMIUM */
.sidebar-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    min-height:52px;

    margin-top:14px;
    padding:0 22px;

    border:none;
    border-radius:16px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #ff7ea8,
            #ff5f93
        );

    box-shadow:
        0 12px 30px rgba(255,120,170,0.28);

    transition:0.3s;
}

.sidebar-whatsapp:hover{
    transform:translateY(-3px);

    box-shadow:
        0 18px 42px rgba(255,120,170,0.40);
}

/* TOPBAR */
.category-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    gap: 10px;
}

/* NO PRODUCTS */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #cdb9b9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .category-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOVER PREMIUM HERO
========================= */
.category-hero {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-hero:hover {
    transform: translateY(-4px) scale(1.01);

    box-shadow:
        0 28px 80px rgba(0,0,0,0.55),
        0 0 40px rgba(255,140,170,0.25);
}

/* glow subtil */
.category-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.12),
        transparent 70%
    );

    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.category-hero:hover::after {
    opacity: 1;
}
/* =========================
   PAGINATION
========================= */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;

    border-radius: 8px;

    background: rgba(255,255,255,0.05);
    color: #d8caca;

    text-decoration: none;
    font-size: 14px;

    transition: 0.25s;
}

.pagination a:hover {
    background: rgba(255,140,170,0.2);
    color: #fff;
}

.pagination a.active {
    background: #ff8caf;
    color: #fff;
    font-weight: 600;
}
/* =========================
   CONTACT ALINIERE PERFECTĂ
========================= */
.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-line i {
    width: 16px;
    text-align: center;
    color: #ff8caf;
}

.contact-line a,
.contact-line span {
    color: #f3dddd;
    text-decoration: none;
}

.contact-line a:hover {
    color: #ff8caf;
}
/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}
/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   WHATSAPP FLOAT (FINAL PREMIUM)
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 56px;
    height: 56px;

   background:
    linear-gradient(
        145deg,
        #ff9fc1,
        #ff6fa5
    );

color: #25D366;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    text-decoration: none;

    backdrop-filter: blur(6px);

    z-index: 9999;

    /* 🔥 shadow + pulse */
    box-shadow:
        0 10px 25px rgba(0,0,0,0.4),
        0 0 0 0 rgba(37, 211, 102, 0.25);

    animation: waGlow 3s infinite;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* =========================
   ICON PERFECT CENTER
========================= */
.whatsapp-float i {
    color: #25D366 !important;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 24px;
    line-height: 1;

    margin: 0;
    padding: 0;

    transform: none !important;
}

/* =========================
   HOVER
========================= */
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow:
        0 14px 35px rgba(0,0,0,0.5),
        0 0 0 8px rgba(37, 211, 102, 0.15);
}

/* =========================
   CLEAN RESET (ANTI BUG)
========================= */
.whatsapp-float::after {
    display: none !important;
}

.whatsapp-float * {
    margin: 0;
    padding: 0;
}

/* =========================
   PULSE PREMIUM (SUBTIL)
========================= */
@keyframes waGlow {
    0% {
        box-shadow:
            0 10px 25px rgba(0,0,0,0.4),
            0 0 0 0 rgba(37, 211, 102, 0.25);
    }
    70% {
        box-shadow:
            0 10px 25px rgba(0,0,0,0.4),
            0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow:
            0 10px 25px rgba(0,0,0,0.4),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================
   LAYOUT FULL HEIGHT
========================= */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}
/* 🔥 FIX FINAL MOBILE LINKURI CATEGORII */
body .catalog-container .catalog-filters a,
body .catalog-container .catalog-filters a:visited,
body .catalog-container .catalog-filters a:active,
body .catalog-container .catalog-filters a:focus,
body .catalog-container .catalog-filters a:-webkit-any-link {
    color: #fff !important;
    text-decoration: none !important;
}
/* ========================================
   FORCE PREMIUM WHATSAPP BUTTON
======================================== */

.help-box .sidebar-whatsapp{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:100% !important;

    min-height:52px !important;

    margin-top:14px !important;
    padding:0 22px !important;

    border-radius:16px !important;

    background:
        linear-gradient(
            135deg,
            #ff7ea8,
            #ff5f93
        ) !important;

    color:#fff !important;

    text-decoration:none !important;

    font-size:15px !important;
    font-weight:700 !important;

    box-shadow:
        0 12px 30px rgba(255,120,170,0.28) !important;

    transition:0.3s !important;
}

.help-box .sidebar-whatsapp:hover{
    transform:translateY(-3px) !important;

    box-shadow:
        0 18px 42px rgba(255,120,170,0.40) !important;
}
/* =========================
   VISITS FLOAT PREMIUM
========================= */

.views-float {

    position: fixed;

    left: 25px;
    bottom: 25px;

    height: 32px;

    padding: 0 8px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 999px;

    background:
        linear-gradient(
            145deg,
            rgba(255,159,193,0.95),
            rgba(255,111,165,0.95)
        );

    color: #fff;

    z-index: 9999;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.30),
        0 0 0 0 rgba(255,111,165,0.25);

    animation: viewsGlow 3s infinite;

    backdrop-filter: blur(8px);

    user-select: none;
}

.views-float i {

    font-size: 12px;

    color: #ffffff;

    line-height: 1;
}

.views-float span {

    font-size: 10px;

    font-weight: 800;

    line-height: 1;
}

@keyframes viewsGlow {

    0% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.30),
            0 0 0 0 rgba(255,111,165,0.35);
    }

    70% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.30),
            0 0 0 12px rgba(255,111,165,0);
    }

    100% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.30),
            0 0 0 0 rgba(255,111,165,0);
    }
}

@media (max-width: 900px) {

    .views-float {

        left: 15px;
        bottom: 15px;

        height: 42px;

        padding: 0 14px;

        gap: 6px;
    }

    .views-float span {

        font-size: 14px;
    }

    .views-float i {

        font-size: 15px;
    }
}