
     :root {
    --primary-color: var(--tp-forest);
    --card-bg: var(--tp-cream);
}

body {
    font-family: var(--tp-font-body);
    color: var(--tp-walnut);
    background: var(--tp-parchment);
    position: relative;
    min-height: 100vh;
    margin: 0;
}

/* Efectul de textură "grain" */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(75,56,35,0.05) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
    opacity: .6;
    z-index: 0;
}
    h1,  h4, .tp-display{
        font-family: var(--tp-font-display);
        color: #411f10;
        letter-spacing: -0.01em;
    }
    h2, .tp-display{
        font-family: var(--tp-font-display);
        color: #ffffff;
        letter-spacing: -0.01em;
    }
     h3, .tp-display{
        font-family: var(--tp-font-display);
        color: #200303;
        letter-spacing: -0.01em;
    }

    /* ============ HERO — with 3D depth ============ */
    .hero-section {
        position: relative;
        height: 82vh;
        min-height: 560px;
        overflow: hidden;
        border-radius: 0 0 50px 50px;
        perspective: 1400px;
    }
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
        object-fit: cover;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(20,14,7,.55) 0%, rgba(20,14,7,.35) 45%, rgba(20,14,7,.6) 100%);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 0 20px;
        position: relative;
    }
    .hero-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tp-font-body);
    font-size: .8rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--tp-gold-light);
    margin-bottom: 22px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after{
        content:"";
        width: 28px; height: 1px;
        background: var(--tp-gold-light);
        display:inline-block;
    }
    .hero-section h1{
        color: var(--tp-cream);
        font-size: clamp(2.4rem, 5.5vw, 4.6rem);
        font-weight: 600;
        line-height: 1.05;
        text-shadow: 0 18px 40px rgba(0,0,0,.45), 0 2px 0 rgba(0,0,0,.25);
    }
    .hero-section h1 em{
        font-style: italic;
        font-weight: 500;
        color: var(--tp-gold-light);
    }
    .hero-section .lead{
        font-family: var(--tp-font-body);
        font-weight: 400;
        color: rgba(255,252,245,.88);
        font-size: 1.2rem;
        max-width: 560px;
        margin-left: auto; margin-right: auto;
    }

    /* --- Floating 3D botanical seal: the signature element --- */
    .tp-seal-wrap{
        position: absolute;
        top: 14%;
        right: 6%;
        width: 132px;
        height: 132px;
        perspective: 900px;
        display: none;
        z-index: 3;
        animation: tp-seal-float 6s ease-in-out infinite;
    }
    @keyframes tp-seal-float{
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-18px); }
    }
    .tp-seal{
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        animation: tp-seal-spin 14s linear infinite;
    }
    @keyframes tp-seal-spin{
        from { transform: rotateY(0deg) rotateX(6deg); }
        to   { transform: rotateY(360deg) rotateX(6deg); }
    }
    .tp-seal-face{
        position: absolute;
        inset: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        backface-visibility: hidden;
        box-shadow: 0 20px 45px rgba(0,0,0,.4), inset 0 2px 6px rgba(255,255,255,.35), inset 0 -8px 16px rgba(0,0,0,.25);
        border: 1px solid rgba(228,200,120,.7);
    }
    .tp-seal-front{
        background: radial-gradient(circle at 35% 30%, #c9a877, var(--tp-forest) 70%, var(--tp-forest-deep) 100%);
        color: var(--tp-cream);
    }
    .tp-seal-back{
        background: radial-gradient(circle at 35% 30%, var(--tp-gold-light), var(--tp-gold) 65%, var(--tp-forest-deep) 100%);
        color: var(--tp-forest-deep);
        transform: rotateY(180deg);
    }
    .tp-seal-mono{
        font-family: var(--tp-font-display);
        font-size: 1.9rem;
        font-weight: 600;
        letter-spacing: .02em;
    }
    .tp-seal-tag{
        font-size: .55rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        margin-top: 2px;
        opacity: .85;
    }
    @media (min-width: 992px){ .tp-seal-wrap{ display: block; } }
    @media (prefers-reduced-motion: reduce){
        .tp-seal, .tp-seal-wrap{ animation: none; }
    }

    /* --- Drifting leaf silhouettes in hero --- */
    .tp-leaf{
        position: absolute;
        opacity: .5;
        filter: drop-shadow(0 12px 18px rgba(0,0,0,.35));
        pointer-events: none;
        z-index: 2;
    }
    .tp-leaf-1{ top: 10%; left: 6%; width: 70px; animation: tp-drift-a 9s ease-in-out infinite; }
    .tp-leaf-2{ bottom: 14%; left: 12%; width: 46px; animation: tp-drift-b 7s ease-in-out infinite; }
    .tp-leaf-3{ bottom: 20%; right: 10%; width: 54px; animation: tp-drift-a 10s ease-in-out infinite reverse; }
    @keyframes tp-drift-a{
        0%,100%{ transform: translateY(0) rotate(-6deg); }
        50%{ transform: translateY(-22px) rotate(4deg); }
    }
    @keyframes tp-drift-b{
        0%,100%{ transform: translateY(0) rotate(8deg); }
        50%{ transform: translateY(-14px) rotate(-4deg); }
    }
    @media (max-width: 767px){ .tp-leaf{ display:none; } }

    .ridge-divider svg{ display:block; }

    .transport-banner {
        background: linear-gradient(135deg, var(--tp-gold-light), var(--tp-gold));
        color: #2c1c0d;
        font-weight: bold;
        text-align: center;
        padding: 15px 0;
        margin-top: -30px;
        position: relative;
        z-index: 10;
        border-radius: 15px;
        box-shadow: 0 14px 30px rgba(75,43,13,.28), inset 0 1px 0 rgba(255,255,255,.5);
    }

    /* ============ FEATURE ICONS — raised 3D badges ============ */
    .feature-icon {
        width: 66px;
        height: 66px;
        background: linear-gradient(150deg, var(--tp-cream), #f1e6cd);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto 15px;
        font-size: 1.5rem;
        box-shadow: 0 14px 24px rgba(75,43,13,.18), inset 0 2px 3px rgba(255,255,255,.8), inset 0 -6px 10px rgba(75,43,13,.12);
        transform: translateZ(0);
        transition: transform .35s ease, box-shadow .35s ease;
    }
    .feature-col:hover .feature-icon{
        transform: translateY(-6px) rotateX(8deg);
        box-shadow: 0 22px 34px rgba(75,43,13,.26), inset 0 2px 3px rgba(255,255,255,.8), inset 0 -6px 10px rgba(75,43,13,.14);
    }

    .section-title {
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary-color);
    }

    /* ============ CATEGORY CARDS — pointer-tilt 3D ============ */
    .tp-tilt-scene{ perspective: 1200px; }
    .category-card {
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        height: 270px;
        transition: transform .12s ease, box-shadow .35s ease;
        border: none;
        box-shadow: 0 8px 22px rgba(75,56,35,.12);
        transform-style: preserve-3d;
        will-change: transform;
    }
    .category-card:hover {
        box-shadow: 0 26px 42px rgba(75,56,35,.3);
    }
    .category-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease, filter .5s ease;
        filter: brightness(.72) saturate(1.05);
    }
    .category-card:hover .category-img{
        transform: scale(1.08) translateZ(20px);
        filter: brightness(.6) saturate(1.1);
    }
    .category-card::after{
        content:"";
        position:absolute; inset:0;
        background: linear-gradient(180deg, transparent 40%, rgba(23,29,42,.15) 65%, rgba(15,20,15,.55) 100%);
    }
    .category-plate{
        position: absolute;
        bottom: 18px;
        left: 18px;
        right: 18px;
        z-index: 2;
        transform: translateZ(40px);
    }
    .category-title {
        color: var(--tp-cream);
        font-weight: 600;
        font-size: 1.3rem;
        font-family: var(--tp-font-display);
    }
    .category-sub{
        color: var(--tp-gold-light);
        font-size: .75rem;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    /* ============ PRODUCT SECTION ============ */
    .produse-section{
        background: var(--tp-parchment);
    }
    .product-card-home {
        border-radius: 18px;
        border: 1px solid var(--tp-parchment-dark);
        background: var(--tp-cream);
        overflow: hidden;
        transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
        height: 100%;
        transform-style: preserve-3d;
        will-change: transform;
    }
    .product-card-home:hover {
        transform: translateY(-10px) rotateX(4deg) scale(1.015);
        box-shadow: 0 26px 40px rgba(75,56,35,.22);
        border-color: var(--tp-gold-light);
    }
    .product-card-home img{
        height: 210px;
        object-fit: cover;
        transition: transform .5s ease;
    }
    .product-card-home:hover img{
        transform: scale(1.05);
    }
    .product-card-home .pret{
        color: var(--tp-forest);
        font-family: var(--tp-font-display);
        font-size: 1.25rem;
    }

    .btn-outline-tp{
        border: 1.5px solid var(--tp-forest);
        color: var(--tp-forest);
        background: transparent;
        border-radius: 100px;
        font-weight: 600;
        padding: 9px 18px;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }
    .btn-outline-tp:hover{
        background: var(--tp-forest);
        color: var(--tp-cream);
        transform: translateY(-2px);
        box-shadow: 0 10px 18px rgba(75,56,35,.25);
    }

    .btn-cos-tp{
        background: var(--tp-gold);
        color: var(--tp-forest-deep);
        border: none;
        border-radius: 100px;
        font-weight: 700;
        padding: 9px 18px;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn-cos-tp:hover{
        background: var(--tp-gold-light);
        color: var(--tp-forest-deep);
        transform: translateY(-2px);
        box-shadow: 0 10px 18px rgba(75,56,35,.25);
    }

    /* ============ PRIMARY / GHOST BUTTONS ============ */
    .btn-tp-primary{
        background: linear-gradient(180deg, var(--tp-gold-light), var(--tp-gold));
        border: none;
        color: var(--tp-forest-deep);
        font-weight: 700;
        padding: 14px 40px;
        border-radius: 100px;
        text-decoration: none;
        display: inline-block;
        letter-spacing: .02em;
        box-shadow: 0 8px 18px rgba(75,43,13,.25);
        transition: transform .18s ease, box-shadow .18s ease, background .25s ease;
    }
    .btn-tp-primary:hover{
        background: linear-gradient(180deg, var(--tp-gold-light), var(--tp-gold-light));
        transform: translateY(-3px);
        box-shadow: 0 12px 22px rgba(75,43,13,.3);
        color: var(--tp-forest-deep);
    }
    .btn-tp-primary:active{
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(75,43,13,.22);
    }
    .btn-tp-ghost{
        border: 1.5px solid rgba(255,252,245,.55);
        color: var(--tp-cream);
        padding: 13px 34px;
        border-radius: 100px;
        text-decoration: none;
        display: inline-block;
        font-weight: 600;
        transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .btn-tp-ghost:hover{
        border-color: var(--tp-cream);
        background: rgba(255,252,245,.1);
        color: var(--tp-cream);
        transform: translateY(-3px);
    }

    .promo-banner{
    background: linear-gradient(
        135deg,
        var(--tp-forest),
        var(--tp-forest-deep)
    );
    color: var(--tp-cream);
    border-radius:30px;
    padding:60px;
    box-shadow: 0 30px 60px rgba(75,43,13,.35);
    position: relative;
    overflow: hidden;
}
    .promo-banner::before{
        content:"";
        position:absolute;
        width: 320px; height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(228,200,120,.25), transparent 70%);
        top: -120px; right: -80px;
    }

    /* textura fină de hârtie din fundal */
    .tp-grain{
        position: relative;
    }
    .tp-grain::before{
        content: "";
        position: absolute; inset: 0;
        background-image: radial-gradient(rgba(75,56,35,0.05) 1px, transparent 1px);
        background-size: 3px 3px;
        pointer-events: none;
        opacity: .6;
    }

    /* ============ LOYALTY CARD — layered depth ============ */
    .loyalty-card{
        box-shadow: 0 30px 55px rgba(20,50,15,.35);
    }

    /* ============ TESTIMONIALS — gentle 3D tilt ============ */
    .testimonial-card{
        border-radius: 20px;
        background: var(--tp-cream);
        border: 1px solid var(--tp-parchment-dark);
        position: relative;
        padding: 34px 30px 26px;
        transition: transform .35s ease, box-shadow .35s ease;
        transform-style: preserve-3d;
    }
    .testimonial-card:hover{
        transform: translateY(-8px) rotateX(3deg);
        box-shadow: 0 24px 38px rgba(75,56,35,.2);
    }
    .why-us i{ color: var(--tp-forest); }

    .testimonial-card .quote-mark{
        font-family: var(--tp-font-display);
        font-size: 3.4rem;
        color: var(--tp-gold-light);
        line-height: 0;
        position: absolute;
        top: 28px;
        right: 24px;
    }
    .avatar-circle{
        width: 42px; height: 42px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-family: var(--tp-font-display);
        font-weight: 600;
        color: black;
        box-shadow: 0 8px 14px rgba(0,0,0,.2), inset 0 -4px 6px rgba(0,0,0,.15);
    }

    .tp-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .7s ease, transform .7s ease;
    }
    .tp-reveal.tp-visible{
        opacity: 1;
        transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce){
        .tp-reveal{ opacity: 1 !important; transform: none !important; transition: none; }
        .category-card, .category-img, .product-card-home, .btn-tp-primary{ transition: none; }
    }

    @media (max-width: 767px){
        .loyalty-card, .promo-banner{ padding: 34px 24px; }
        .ship-badge{ flex-wrap: wrap; text-align: center; padding: 16px 20px; }
    }

    @media (max-width: 575px){
        .hero-section{ height: auto; min-height: 480px; }
        .hero-overlay{ padding: 60px 20px; }
    }