
.hero-home {
    background:#ffffff;
    border-radius:18px;
    padding:26px 22px;
    display:grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap:26px;
    box-shadow:0 12px 30px rgba(15,23,42,0.12);
    margin-top:16px;
}
.hero-left-title {
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
}

.product-card:hover .pf-btn-primary {
    filter: brightness(1.05);
}

.product-card:hover {
    transform: translateY(-2px);
    transition: 0.25s ease;
}

.hero-left-sub {
    font-size:15px;
    color:#4b5563;
    line-height:1.6;
}
.hero-tags {
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.hero-tag {
    font-size:11px;
    padding:4px 10px;
    border-radius:999px;
    background:#e0edff;
    color:#1d4ed8;
}
.hero-actions {
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.hero-btn-primary {
    padding:9px 16px;
    border-radius:999px;
    border:none;
    background:#2563eb;
    color:#fff;
    font-size:14px;
    cursor:pointer;
}
.hero-btn-primary:hover { background:#1d4ed8; }
.hero-btn-ghost {
    padding:9px 16px;
    border-radius:999px;
    border:1px solid #d1d5db;
    background:#fff;
    font-size:14px;
    cursor:pointer;
}
.hero-btn-ghost:hover { background:#f3f4f6; }

.hero-right {
    background:#0f172a;
    border-radius:16px;
    padding:16px 16px 18px;
    color:#e5e7eb;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.hero-right h3 {
    margin:0 0 8px;
    font-size:16px;
}
.hero-right p {
    margin:0 0 10px;
    font-size:13px;
    color:#cbd5f5;
}
.hero-right-inner {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
}
.hero-mini-card {
    background:#111827;
    border-radius:12px;
    padding:10px;
    font-size:12px;
}
.hero-mini-card strong {
    display:block;
    margin-bottom:4px;
}

/* categorii bloc */
.home-section {
    margin-top:28px;
}
.home-section-header {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:10px;
}
.home-section-title {
    font-size:19px;
    font-weight:700;
}
.home-section-sub {
    font-size:13px;
    color:#6b7280;
}
.home-section-link {
    font-size:13px;
    color:#2563eb;
}

.cat-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(140px,1fr));
    gap:12px;
}
.cat-card {
    background:#ffffff;
    border-radius:14px;
    padding:12px;
    box-shadow:0 1px 4px rgba(15,23,42,0.08);
    cursor:pointer;
    transition:transform 0.1s ease, box-shadow 0.1s ease;
}
.cat-card:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(15,23,42,0.16);
}
.cat-name {
    font-size:14px;
    font-weight:600;
    margin-bottom:4px;
}
.cat-meta {
    font-size:12px;
    color:#6b7280;
}

/* grid produse – folosim .product-grid & co. din header.css */
.product-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(190px,1fr));
    gap:16px;
}
.product-card {
    background:#ffffff;
    border-radius:14px;
    padding:10px;
    box-shadow:0 1px 4px rgba(15,23,42,0.08);
    display:flex;
    flex-direction:column;
    transition:transform 0.12s ease, box-shadow 0.12s ease;
}
.product-card:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(15,23,42,0.15);
}
.product-thumb {
    width:100%;
    height:180px;              /* ← control total */
    background:#f9fafb;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.product-thumb img {
    max-width:100%;
    max-height:100%;
    object-fit:contain;   /* CORECT */
}

.stock-badge {
    position:absolute;
    top:10px;
    left:10px;
    background:#fee2e2;
    color:#991b1b;
    font-size:11px;
    padding:4px 8px;
    border-radius:999px;
    font-weight:700;
    z-index:2;
}
.product-card {
    position:relative;
}
.product-body {
    margin-top:8px;
    display:flex;
    flex-direction:column;
    gap:4px;
}
.product-title {
    font-size:14px;
    font-weight:600;
    min-height:34px;
}
.product-price {
    font-size:14px;
    font-weight:700;
    color:#2563eb;
}
.product-meta {
    font-size:11px;
    color:#6b7280;
}
.product-actions {
    margin-top:8px;
    display:flex;
    justify-content:space-between;
    gap:6px;
}
.btn-sm {
    padding:6px 9px;
    border-radius:999px;
    border:none;
    cursor:pointer;
    font-size:12px;
}
.btn-primary-sm {
    background:#2563eb;
    color:#fff;
}
.btn-secondary-sm {
    background:#ffffff;
    border:1px solid #d1d5db;
    color:#111827;
}

/* secțiune blog preview */
.blog-preview-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
}
.blog-card {
    background:#ffffff;
    border-radius:14px;
    padding:12px;
    box-shadow:0 1px 4px rgba(15,23,42,0.08);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,23,42,0.15);
}
.blog-card img {
    width: auto;
    height: 160px;          /* ← aici controlezi mărimea */
    object-fit: cover;      /* ← ESENȚIAL */
    border-radius: 12px;
}
.blog-title {
    font-size:14px;
    font-weight:600;
    margin-bottom:4px;
}
.blog-meta {
    font-size:11px;
    color:#9ca3af;
    margin-bottom:6px;
}
.blog-excerpt {
    font-size:13px;
    color:#4b5563;
}
.blog-tag {
    display:inline-block;
    margin-top:6px;
    font-size:11px;
    background:#e0edff;
    color:#1d4ed8;
    padding:3px 8px;
    border-radius:999px;
}

@media (max-width:900px) {
    .hero-home {
        grid-template-columns:1fr;
        padding:20px 16px;
    }
}

.pr-upload {
    display:block;
    background:#111827;
    border:1px dashed #334155;
    padding:10px;
    border-radius:10px;
    font-size:12px;
    cursor:pointer;
    text-align:center;
    margin-bottom:8px;
}
.pr-upload input { display:none; }

#pr-files div {
    font-size:11px;
    color:#cbd5f5;
    margin-bottom:4px;
}

.pr-file {
    font-size:11px;
    margin-bottom:6px;
}
.pr-bar {
    height:6px;
    background:#1e293b;
    border-radius:6px;
    overflow:hidden;
}
.pr-bar span {
    display:block;
    height:100%;
    width:0%;
    background:#22c55e;
    transition:width .2s;
}
.newsletter-bar {
    background:#ffffff;
    border-radius:16px;
    padding:16px 20px;
    box-shadow:0 8px 24px rgba(15,23,42,0.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.newsletter-left {
    display:flex;
    align-items:center;
    gap:12px;
}

.newsletter-icon {
    font-size:26px;
}

.newsletter-left strong {
    font-size:16px;
    color:#111827;
}

.newsletter-sub {
    font-size:13px;
    color:#6b7280;
}

.newsletter-form {
    display:flex;
    gap:10px;
    align-items:center;
}

.newsletter-form input {
    width:260px;
    max-width:100%;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid #d1d5db;
    font-size:14px;
}

.newsletter-form button {
    background:#2563eb;
    color:#ffffff;
    border:none;
    border-radius:999px;
    padding:10px 18px;
    font-size:14px;
    cursor:pointer;
    white-space:nowrap;
}

.newsletter-form button:hover {
    background:#1d4ed8;
}

.newsletter-status {
    font-size:13px;
    margin-top:6px;
    color:#2563eb;
}
@media (max-width: 768px) {
    .newsletter-bar {
        flex-direction:column;
        align-items:stretch;
    }

    .newsletter-form {
        width:100%;
    }

    .newsletter-form input {
        flex:1;
        width:100%;
    }

    .newsletter-form button {
        width:100%;
    }
}
@media (max-width: 480px) {

    .newsletter-bar {
        padding: 14px;
        gap: 14px;
        text-align: center;
    }

    .newsletter-left {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .newsletter-icon {
        font-size: 32px;
    }

    .newsletter-left strong {
        font-size: 15px;
    }

    .newsletter-sub {
        font-size: 12px;
        line-height: 1.4;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input {
        width: 100%;
        font-size: 14px;
    }

    .newsletter-form button {
        width: 100%;
        font-size: 14px;
        padding: 11px;
    }

    .newsletter-status {
        text-align: center;
        font-size: 12px;
    }
}
.newsletter-bar {
    border: 1px solid #e5e7eb;
}
/* =========================
   TOATE CATEGORIILE – HOME
========================= */
/* =========================
   TAB ALB – CATEGORII
========================= */
.categories-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 18px 20px;
    box-shadow: 0 14px 34px rgba(15,23,42,0.1);
}

/* header intern */
.categories-box-header {
    margin-bottom: 14px;
}

.categories-box-header .home-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.categories-box-header .home-section-sub {
    font-size: 13px;
    color: #6b7280;
}

/* grid mai compact */
.all-cats {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

/* =========================
   CARDURI ALBASTRU ÎNCHIS
========================= */
.cat-card {
    background: #0f172a;              /* ALBASTRU HEADER */
    border-radius: 14px;
    padding: 10px 12px;
    min-height: 78px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #ffffff;
    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease,
        box-shadow .15s ease,
        transform .1s ease;
}

/* hover → alb */
.cat-card:hover {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 8px 22px rgba(15,23,42,0.25);
    transform: translateY(-2px);
}

/* =========================
   TEXT
========================= */
.cat-name {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================
   SUBCATEGORII
========================= */
.cat-sublist {
    margin-top: 4px;
    display: flex;
    gap: 6px;
}

.cat-sublist span {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    white-space: nowrap;
}

/* pe hover → badge-uri albastre */
.cat-card:hover .cat-sublist span {
    background: #e0edff;
    color: #1d4ed8;
}

.cat-sublist .cat-more {
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

.cat-card:hover .cat-more {
    background: #0f172a;
    color: #ffffff;
}

/* ======================================================
   PRINT & FLY – HOME SLIDER (WOO STYLE PREMIUM)
   ====================================================== */

/* wrapper general */
.pf-slider-wrapper {
    margin-top: 22px;
}

/* container slider */
.pf-slider {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    position: relative;
    cursor: grab;
}

.pf-slider:active {
    cursor: grabbing;
}

/* slide layout */
.pf-slide {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    padding: 32px;
    align-items: center;
    height: 100%;
}

/* text */
.pf-slide-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.pf-slide-text p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 520px;
}

/* hashtaguri */
.pf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pf-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0edff;
    color: #2563eb;
    font-weight: 600;
    white-space: nowrap;
}

/* buton */
.pf-btn {
    width: 100%;
    height: 44px;                 /* 🔑 aceeași înălțime */
    display: flex;
    align-items: center;          /* 🔑 centrare verticală */
    justify-content: center;      /* 🔑 centrare orizontală */
    gap: 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;               /* 🔑 elimină diferențe */
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    padding: 0;                   /* 🔑 NU padding diferit */
}
.product-actions form {
    width: 100%;
    margin: 0;
}
.pf-btn span {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    line-height: 1;
}
.product-card:hover .pf-btn-primary {
    transform: translateY(-1px);
}

.pf-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* imagine */
.pf-slide-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

/* ======================================================
   SAGETI – INTEGRATE, DISCRETE (PROFI)
   ====================================================== */

.pf-slider .swiper-button-next,
.pf-slider .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
    color: #0f172a;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.pf-slider .swiper-button-prev {
    left: 14px;
}

.pf-slider .swiper-button-next {
    right: 14px;
}

.pf-slider:hover .swiper-button-next,
.pf-slider:hover .swiper-button-prev {
    opacity: 1;
}

.pf-slider .swiper-button-next:hover,
.pf-slider .swiper-button-prev:hover {
    transform: scale(1.05);
}

.pf-slider .swiper-button-next::after,
.pf-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
    .pf-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pf-slide-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .pf-tags {
        justify-content: center;
    }

    .pf-slide-image img {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .pf-slide {
        padding: 22px 18px;
    }

    .pf-slide-text h2 {
        font-size: 24px;
    }

    .pf-slide-text p {
        font-size: 14px;
    }

    .pf-slide-image img {
        height: 200px;
    }
}
/* ======================================================
   FIX SUPRAPUNERE TEXT – SWIPER FADE
   ====================================================== */

.pf-slider .swiper-wrapper {
    align-items: stretch;
}

.pf-slider .swiper-slide {
    opacity: 0;
    pointer-events: none;
    height: auto;
}

.pf-slider .swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* slide-ul activ trebuie să ocupe spațiu real */
.pf-slider .swiper-slide > .pf-slide {
    min-height: 260px;
}
/* ======================================================
   ANIMAȚIE TEXT – SLIDE ACTIV
   ====================================================== */

.pf-slide-text > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

.swiper-slide-active .pf-slide-text > * {
    opacity: 1;
    transform: translateY(0);
}

/* delay-uri fine */
.swiper-slide-active .pf-slide-text h2 {
    transition-delay: .1s;
}

.swiper-slide-active .pf-slide-text p {
    transition-delay: .2s;
}

.swiper-slide-active .pf-tags {
    transition-delay: .3s;
}

.swiper-slide-active .pf-btn {
    transition-delay: .4s;
}

/* ======================================================
   SAGETI – DOAR DESKTOP
   ====================================================== */

/* implicit: ascunse (mobile first) */
.pf-slider .swiper-button-next,
.pf-slider .swiper-button-prev {
    display: none;
}

/* desktop: apar */
@media (min-width: 1024px) {
    .pf-slider .swiper-button-next,
    .pf-slider .swiper-button-prev {
        display: flex;
    }
}

/* ======================================================
   HIDE "TOATE CATEGORIILE" PE MOBIL
   ====================================================== */

@media (max-width: 768px) {
    #categorii {
        display: none;
    }
}

@media (max-width: 768px) {
    .pf-slider-wrapper {
        margin-bottom: 18px;
    }
    .newsletter-bar {
        margin-top: 10px;
    }
}
/* =========================================
   REVEAL ON SCROLL – PREMIUM
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* delay-uri fine */
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* =========================================
   QUICK TABS – HOME
========================================= */

.home-quick-tabs {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.quick-tab {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
    text-decoration: none;
    color: #0f172a;
    transition: transform .15s ease, box-shadow .15s ease;
}

.quick-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(15,23,42,0.15);
}

.qt-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.qt-title {
    font-size: 15px;
    font-weight: 700;
}

.qt-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .home-quick-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .home-quick-tabs {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   SKELETON
========================================= */
.skeleton {
    background: linear-gradient(
        90deg,
        #e5e7eb 25%,
        #f3f4f6 37%,
        #e5e7eb 63%
    );
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
    border-radius: 12px;
}

@keyframes skeleton-loading {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}


.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn .35s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RECOMANDĂRI – SLIDER ORIZONTAL
========================================= */

.rec-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.rec-slider::-webkit-scrollbar {
    display: none;
}

.rec-card {
    min-width: 220px;
    max-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(15,23,42,0.08);
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.rec-thumb {
    height: 160px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.rec-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rec-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rec-title {
    font-size: 14px;
    font-weight: 600;
    min-height: 36px;
}

.rec-price {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

/* skeleton recomandări */
.rec-skel {
    min-width: 220px;
    height: 260px;
    border-radius: 14px;
}

/* =========================================
   SAGETI SLIDER PRODUSE PERSONALIZATE
   (identice cu HERO)
========================================= */

.custom-slider .swiper-button-next,
.custom-slider .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 14px rgba(15,23,42,0.15);
    color: #0f172a;

    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

/* poziționare */
.custom-slider .swiper-button-prev {
    left: 14px;
}

.custom-slider .swiper-button-next {
    right: 14px;
}

/* apar DOAR la hover */
.custom-slider:hover .swiper-button-next,
.custom-slider:hover .swiper-button-prev {
    opacity: 1;
}

/* hover efect */
.custom-slider .swiper-button-next:hover,
.custom-slider .swiper-button-prev:hover {
    transform: scale(1.05);
}

/* icon */
.custom-slider .swiper-button-next::after,
.custom-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* MOBILE: complet ascunse */
@media (max-width: 1024px) {
    .custom-slider .swiper-button-next,
    .custom-slider .swiper-button-prev {
        display: none;
    }
}
/* ===============================
   SWIPER FIX – RECOMANDĂRI
=============================== */

.custom-slider {
    position: relative;
    width: 100%;
}

.custom-slider .swiper-wrapper {
    display: flex;
}

.custom-slider .swiper-slide {
    width: auto;
    flex-shrink: 0;
}
/* ===============================
   FIX SWIPER RECOMANDĂRI
=============================== */

.custom-slider {
    position: relative;
    width: 100%;
}

.custom-slider .swiper-wrapper {
    display: flex;
}

.custom-slider .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

/* SĂGEȚI – DOAR DESKTOP */
@media (min-width: 1024px) {
    .custom-slider .swiper-button-next,
    .custom-slider .swiper-button-prev {
        display: flex;
    }
}

/* =========================
   BLOG PREVIEW – PRO (HOME)
========================= */

.blog-preview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:14px;
}

.blog-card{
    background:#ffffff;
    border-radius:16px;
    padding:12px;
    box-shadow:0 1px 4px rgba(15,23,42,0.08);
    transition:transform .12s ease, box-shadow .12s ease;
    text-decoration:none;
    color:inherit;
}

.blog-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,23,42,0.14);
}

/* imagine mare, completă, centrată */
.blog-cover{
    width:100%;
    height:180px;              /* mai mare decât înainte */
    border-radius:14px;
    overflow:hidden;
    background:#f3f4f6;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.blog-cover img{
    width:100%;
    height:100%;
    object-fit:cover;          /* arată “full” și profi */
    object-position:center;
    display:block;
}

/* text */
.blog-title{
    font-size:14px;
    font-weight:700;
    margin-bottom:4px;
    line-height:1.25;
}

.blog-meta{
    font-size:11px;
    color:#9ca3af;
    margin-bottom:8px;
}

.blog-excerpt{
    font-size:13px;
    color:#4b5563;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:58px; /* ca să fie cardurile egale */
}

.blog-tag{
    display:inline-block;
    margin-top:10px;
    font-size:11px;
    background:#e0edff;
    color:#1d4ed8;
    padding:4px 10px;
    border-radius:999px;
}

/* =========================
   BUTOANE PRODUSE – HOMEPAGE
========================= */

.product-actions {
    margin-top: 12px;
}

.pf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

/* 🔵 Buton principal */
.pf-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.pf-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

/* 🔹 Buton secundar (detalii) */
.pf-btn-outline {
    background: #f8fafc;
    color: #1e40af;
    border: 2px solid #dbeafe;
}

.pf-btn-outline:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

/* icon mic optional */
.pf-btn span {
    margin-left: 6px;
    font-size: 15px;
}
