
:root {
    /* PRIMARY */
    --primary: #ff8caf;
    --primary-hover: #ff6a95;
    --primary-soft: rgba(255,140,175,0.15);

    /* BACKGROUND */
    --bg-main: #12090c;
    --bg-card: #1a0d11;
    --bg-card-soft: rgba(30,15,20,0.85);

    /* TEXT */
    --text-main: #ffffff;
    --text-secondary: #d6c9cc;
    --text-muted: #9c8f92;

    /* ACCENT */
    --accent-gold: #ffcc70;

    /* STATUS */
    --success: #7CFC9F;

    /* BORDER */
    --border-soft: rgba(255,140,170,0.15);
    --border-strong: rgba(255,140,170,0.3);
}	
	
	
/* =========================
   BODY PREMIUM BACKGROUND (FIX REAL)
========================= */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text-main);

    background:
        radial-gradient(circle at top left, rgba(214, 85, 125, 0.10), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 180, 200, 0.08), transparent 40%),
        #0f0b0b;

    position: relative;
    overflow-x: hidden;

    /* layout */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   IMAGINE FUNDAL (CLARĂ!)
========================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url('/images/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;

    /* 🔥 AICI E SECRETUL */
    opacity: 0.22;   /* creștem → se vede poza */

    z-index: 0;
    pointer-events: none;
}

/* =========================
   CONTENT ABOVE BG
========================= */
.container,
.main-header,
.footer-clean,
.hero-wrapper,
.section-title-center,
.products-grid,
.why-us,
.ocazii-grid,
.reviews-grid,
.gallery-grid,
.faq-container,
.cta-premium {
    position: relative;
    z-index: 1;
}
/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* =========================
   LAYOUT
========================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

}

/* =========================
   HEADER - CONTAINER (FINAL)
========================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(18, 13, 13, 0.78);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.03);

    padding: 14px 0;

    transition: all 0.3s ease;
}

/* =========================
   HEADER SHRINK STATE
========================= */
.main-header.shrink {
    padding: 6px 0;
    backdrop-filter: blur(16px);
    background: rgba(18, 13, 13, 0.9);

    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

/* =========================
   HEADER - LAYOUT
========================= */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    height: 115px;
    gap: 20px;

    transition: all 0.3s ease;
}

/* shrink layout */
.main-header.shrink .nav {
    height: 80px;
}

/* =========================
   HEADER - LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;

    transition: all 0.3s ease;
}

/* hover logo */
.logo:hover img {
    transform: scale(1.04);
    filter: brightness(1.08) drop-shadow(0 6px 14px rgba(244,163,189,0.22));
}

/* shrink logo */
.main-header.shrink .logo img {
    height: 70px;
}

/* shrink menu */
.main-header.shrink .menu a {
    font-size: 13px;
}


/* =========================
   HEADER - MENU
========================= */
.menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    flex-wrap: wrap;
    min-width: 0;
}

/* =========================
   HEADER RIGHT
========================= */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
    color: var(--primary);

    font-size: 14px;

    transition: all 0.25s ease;
}

/* 🔥 hover mai premium */
.social-icons a:hover {
    background: rgba(244,163,189,0.15);
    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(255,140,170,0.25);
}

.social-icons a i {
    pointer-events: none;
}
/* =========================
   DROPDOWN PRO FIX
========================= */
.menu-dropdown {
    position: relative;
}

/* trigger */
.menu-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* panel */
.dropdown-panel {
    position: absolute;
    top: 130%;
    left: 0;

    min-width: 220px;

    background: rgba(25,18,18,0.98);
    backdrop-filter: blur(12px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 40px rgba(0,0,0,0.5);

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 999;
}

/* items */
.dropdown-panel a {
    display: block;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #e9dede;
}

.dropdown-panel a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
}

/* SHOW */
.menu-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.menu a {
    position: relative;
    color: #eadede;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* hover text */
.menu a:hover {
    color: var(--primary);
}

/* underline premium */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;

    background: var(--primary);
    border-radius: 2px;

    transition: width 0.25s ease;
}

.menu a:hover::after {
    width: 100%;
}
/* =========================
   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: 420px;

    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-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.hero-benefits div {
    font-size: 13px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    padding: 6px 10px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-benefits i {
    color: var(--accent-gold);
}

/* 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);
    gap: 26px;
    max-width: 1200px;
    margin: auto;
     align-items: stretch;   /* 🔥 FIX */
}
@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;

    /* MUTAT AICI */
    animation: pulse 2.5s infinite;
}
.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;
}


@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: 170px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.35);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.ocazie-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.45);
}



/* overlay gradient */
.ocazie-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.42) 0%,
            rgba(0,0,0,0.18) 35%,
            rgba(0,0,0,0.04) 70%,
            transparent 100%
        );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 18px;

    transition: background 0.3s ease;
}
.ocazie-card:hover .ocazie-overlay {

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.28) 0%,
            rgba(0,0,0,0.10) 40%,
            transparent 100%
        );
}
.ocazie-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.ocazie-overlay span {
    color: #ffd4e1;
    font-size: 13px;
}




/* 🔥 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: 260px;

    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);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.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;
}

/* 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 !important;
    align-items:center !important;
    justify-content:center !important;

    width:100% !important;
    box-sizing:border-box !important;
    min-height:52px !important;

    margin-top:14px !important;
    padding:0 22px !important;

    border:none !important;
    border-radius:16px !important;

    text-decoration:none !important;

    font-size:15px !important;
    font-weight:700 !important;

    color:#fff !important;

    background:
        linear-gradient(
            135deg,
            #ff7ea8,
            #ff5f93
        ) !important;

    box-shadow:
        0 12px 30px rgba(255,120,170,0.28) !important;

    transition:0.3s !important;
}

.sidebar-whatsapp:hover{
    transform:translateY(-3px) !important;

    box-shadow:
        0 18px 42px rgba(255,120,170,0.40) !important;
}
/* 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: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);
}


/* =========================
   ICON PERFECT CENTER
========================= */
.whatsapp-float i {
    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);
    }
}
/* FORCE REMOVE BADGE */
.ocazie-badge {
    display: none !important;
}
/* MODAL IMAGE FIX */
#modalImage {
    width: 100%;
    height: auto;

    object-fit: contain;

    display: block;
}

/* MODAL LEFT */
.modal-left {
    position: relative;

    min-height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}
/* =========================================
   MOBILE GLOBAL FIX
========================================= */

@media (max-width: 768px) {

    /* BODY */
    body {
        overflow-x: hidden;
    }

    /* CONTAINER */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* =========================
       HEADER
    ========================= */

    .main-header {
        padding: 8px 0;
    }

    .nav {

        width: 100%;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;
    }

    .logo {

        width: 100%;

        display: flex;

        justify-content: center;
    }

    .logo img {
        height: 44px !important;
    }

    .menu {

        width: 100%;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 8px 14px;

        padding: 0 6px;

        box-sizing: border-box;
    }

    .menu a,
    .menu-drop-trigger {

        font-size: 11px !important;

        white-space: nowrap;

        flex: 0 0 auto;

        line-height: 1.2;
    }

    .header-right {

        width: 100%;

        justify-content: center;
    }

    .social-icons {
        gap: 10px;
    }

    /* =========================
       HERO
    ========================= */

    .hero-wrapper {

        margin-top: 12px;

        padding: 0 12px;
    }

    .hero {

        height: 320px;

        min-height: unset;

        border-radius: 22px;

        overflow: hidden;
    }

    .hero img {
        object-position: center;
    }

    .hero::after {

        background:
            linear-gradient(
                to top,
                rgba(10,5,6,0.92) 0%,
                rgba(10,5,6,0.60) 45%,
                rgba(10,5,6,0.12) 100%
            );
    }

    .hero-content {

        left: 18px;
        right: 18px;

        top: auto;
        bottom: 20px;

        transform: none;

        max-width: none;
    }

    .hero-content h1 {

        font-size: 24px;

        line-height: 1.1;

        margin-bottom: 10px;
    }

    .hero-content p {

        font-size: 13px;

        line-height: 1.5;
    }

    .hero-benefits {

        gap: 8px;

        margin-top: 14px;
    }

    .hero-benefits div {

        font-size: 11px;
    }

    .hero-btn {

        margin-top: 14px;

        width: fit-content;

        font-size: 13px;
    }

    /* =========================
       SECTION TITLES
    ========================= */

    .section-title-center {

        font-size: 26px;

        line-height: 1.2;

        padding: 0 12px;
    }

    .section-subtitle {

        font-size: 13px;

        padding: 0 12px;

        line-height: 1.5;
    }

    /* =========================
       PRODUCTS
    ========================= */

    .products-grid {

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 10px;

        padding: 0 8px;
    }

    .product-card {

        border-radius: 18px;

        overflow: hidden;
    }

    .product-img {

        height: 140px;

        object-fit: cover;
    }

    .product-content {

        padding: 12px;
    }

    .product-title {

        font-size: 13px;

        line-height: 1.35;

        margin-bottom: 8px;
    }

    .product-price {

        font-size: 14px;

        margin-bottom: 10px;
    }

    .product-btn {

        font-size: 12px;

        padding: 10px 12px;
    }

    /* =========================
       BENEFITS
    ========================= */

    .benefits-bar {

        grid-template-columns: 1fr;

        gap: 12px;
    }

    /* =========================
       WHY US
    ========================= */

    .why-us {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    /* =========================
       REVIEWS
    ========================= */

    .reviews-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    /* =========================
       GALLERY
    ========================= */

    .gallery-grid {

        grid-template-columns: 1fr !important;

        gap: 14px;
    }

    .gallery-item:last-child {
        grid-column: auto;
    }

    /* =========================
       CTA
    ========================= */

    .cta-premium-inner {
        min-height: auto;
    }

    .cta-content {

        padding: 28px 18px;

        text-align: center;
    }

    .cta-text h2 {

        font-size: 24px;

        line-height: 1.2;
    }

    /* =========================
       FOOTER
    ========================= */

    .footer-container {

        grid-template-columns: 1fr !important;

        gap: 24px;

        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
}
/* =========================
   MOBILE TOP NOTICE
========================= */

.mobile-top-notice {

    position: fixed;

    top: 14px;
    left: 14px;
    right: 14px;

    z-index: 9999999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-16px);

    transition: all 0.35s ease;
}

.mobile-top-notice.show {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.mobile-top-notice-inner {

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(28,16,20,0.96),
            rgba(14,8,10,0.96)
        );

    border:
        1px solid rgba(255,140,170,0.18);

    backdrop-filter: blur(12px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.45);
}

.mobile-top-notice span {

    flex: 1;

    color: #f5dce5;

    font-size: 13px;

    line-height: 1.5;
}

#closeMobileTopNotice {

    width: 38px;
    height: 38px;

    min-width: 38px;

    border: 1px solid rgba(255,140,170,0.28);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,140,170,0.22),
            rgba(255,90,140,0.14)
        );

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 6px 18px rgba(255,105,140,0.28);

    transition: all 0.25s ease;
}

#closeMobileTopNotice:hover {

    transform: scale(1.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,140,170,0.35),
            rgba(255,90,140,0.22)
        );

    box-shadow:
        0 10px 24px rgba(255,105,140,0.42);
}

@media (min-width: 901px) {

    .mobile-top-notice {
        display: none !important;
    }
}
/* =========================
   COOKIE NOTICE
========================= */

.cookie-notice {

    position: fixed;

    right: 20px;
    bottom: 95px;

    width: 340px;

    display: none;

    align-items: center;
    gap: 14px;

    padding: 16px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(20,12,16,0.97),
            rgba(12,8,10,0.97)
        );

    border:
        1px solid rgba(255,140,170,0.18);

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.45);

    z-index: 99999;
}

.cookie-notice-icon {

    font-size: 26px;

    flex-shrink: 0;
}

.cookie-notice-content {

    flex: 1;
}

.cookie-notice-content strong {

    display: block;

    color: #fff;

    margin-bottom: 4px;

    font-size: 14px;
}

.cookie-notice-content p {

    margin: 0;

    color: #d6c9cc;

    font-size: 12px;

    line-height: 1.4;
}

.cookie-notice-btn {

    border: 0;

    cursor: pointer;

    padding: 10px 14px;

    border-radius: 999px;

    background:
        linear-gradient(
            145deg,
            #ff8cab,
            #ff5c8c
        );

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}

.cookie-notice-btn:hover {

    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .cookie-notice {

        width: calc(100% - 30px);

        right: 15px;
        left: 15px;

        bottom: 90px;
    }
}