

        body {
            font-family: var(--tp-font-body);
            color: var(--tp-walnut);
            background: var(--tp-parchment);
            position: relative;
        }
        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;
        }
        .container{ position: relative; z-index: 1; }

        h1, h2, h3, h4, h5{
            font-family: var(--tp-font-display);
            color: var(--tp-forest-deep);
        }

        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
            outline: 3px solid var(--tp-gold);
            outline-offset: 2px;
        }

        /* Header produs */
        .product-header {
            background: linear-gradient(135deg, var(--tp-forest-deep) 0%, var(--tp-forest) 100%);
            padding: 34px 38px;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(23,42,32,.2);
            border: 1px solid rgba(228,200,120,.25);
        }
        .product-header h1{
            color: var(--tp-cream);
            font-weight: 600;
        }
        .product-header .eyebrow{
            font-size: .75rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--tp-gold-light);
            font-weight: 600;
        }
        .price-tag {
            font-family: var(--tp-font-display);
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--tp-gold-light);
        }

        /* Galerie */
        .main-image {
            border-radius: 18px;
            box-shadow: 0 10px 26px rgba(75,56,35,.18);
            border: 1px solid var(--tp-parchment-dark);
        }

        .thumbs img {
            width: 82px;
            height: 82px;
            object-fit: cover;
            border-radius: 12px;
            margin-right: 10px;
            cursor: pointer;
            border: 2px solid var(--tp-parchment-dark);
            transition: all .25s;
        }

        .thumbs img:hover {
            border-color: var(--tp-gold);
            transform: scale(1.05);
        }

        /* Carduri secțiuni */
        .section-card {
            background: var(--tp-cream);
            border: 1px solid var(--tp-parchment-dark);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 6px 18px rgba(75,56,35,.08);
            margin-top: 32px;
        }
        .section-card h4, .section-card h5{
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-card h4.border-bottom, .section-card h5.border-bottom{
            border-color: var(--tp-parchment-dark) !important;
        }
        
        .section-card ul li{
            position: relative;
            padding-left: 26px;
            margin-bottom: 8px;
            color: var(--tp-walnut);
        }
        .section-card ul li::before{
            content: "\F633"; /* bootstrap-icons leaf-ish check */
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            color: var(--tp-forest-light);
            font-size: .85rem;
        }

        /* Formular adaugă în coș */
        .form-select, .form-control{
            border-radius: 10px;
            border: 1px solid var(--tp-parchment-dark);
            background: var(--tp-cream);
        }
        .form-select:focus, .form-control:focus{
            border-color: var(--tp-gold);
            box-shadow: 0 0 0 3px rgba(193,147,46,.15);
        }

        /* 3D Viewer */
        .viewer-box {
            width: 100%;
            height: 450px;
            background: var(--tp-parchment-dark);
            border-radius: 18px;
            box-shadow: inset 0 0 0 1px rgba(75,56,35,.08);
        }

        /* Add to cart */
        .btn-cart {
            background: var(--tp-gold);
            color: var(--tp-forest-deep);
            font-size: 1.1rem;
            font-weight: 700;
            padding: 13px;
            border: none;
            border-radius: 100px;
            transition: background .2s, transform .2s;
        }

        .btn-cart:hover {
            background: var(--tp-gold-light);
            color: var(--tp-forest-deep);
            transform: translateY(-2px);
        }

        /* Recenzii */
        .review-card {
            background: var(--tp-parchment);
            border: 1px solid var(--tp-parchment-dark);
            border-radius: 16px;
            padding: 22px;
        }

        .star-rating i {
            font-size: 1.6rem;
            color: var(--tp-gold-light);
            cursor: pointer;
            transition: transform .2s;
        }

        .star-rating i:hover {
            transform: scale(1.2);
        }

        .btn-success{
            background: var(--tp-forest) !important;
            border: none !important;
            border-radius: 100px;
            font-weight: 600;
        }
        .btn-success:hover{
            background: var(--tp-forest-light) !important;
        }

        .review-item strong{
            color: var(--tp-forest);
        }
        .review-item{
            border-color: var(--tp-parchment-dark) !important;
        }

        .text-warning, .bi-star-fill, .bi-star{
            color: var(--tp-gold) !important;
        }

        @media (max-width: 767px){
            .product-header{ padding: 24px; text-align: center; }
            .product-header .d-flex{ justify-content: center !important; text-align: center; }
        }