/* ── Products Page Premium Styles ── */
:root {
    --green-dark:   #1a4731;
    --green-mid:    #2e7d4f;
    --green-light:  #e8f5ee;
    --gold:         #c9a84c;
    --text-dark:    #1c2b20;
    --text-muted:   #6b7c70;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --shadow-card:  0 8px 32px rgba(30,80,50,0.13);
    --shadow-hover: 0 20px 56px rgba(30,80,50,0.22);
    --transition:   all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

.products-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #2e5c40 60%, #3d7a55 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.products-hero .breadcrumb-content { position: relative; z-index: 1; }
.products-hero h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.products-hero .breadcrumb-list li,
.products-hero .breadcrumb-list li a { color: rgba(255,255,255,0.75); }
.products-hero .breadcrumb-list li.active { color: #a8d5b5; }

.prod-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.prod-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}
.prod-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}
.prod-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(46,125,79,0.07);
}
.prod-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.prod-card-image { position: relative; height: 260px; overflow: hidden; flex-shrink: 0; }
.prod-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.23,1,0.32,1); }
.prod-card:hover .prod-card-image img { transform: scale(1.08); }
.prod-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(26,71,49,0.88); backdrop-filter: blur(6px);
    color: #a8d5b5; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 14px; border-radius: 50px;
    border: 1px solid rgba(168,213,181,0.3);
}
.prod-eco-badge {
    position: absolute; top: 16px; right: 16px;
    width: 42px; height: 42px; background: #12cc12;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
    box-shadow: 0 4px 12px #12cc12;
}
.prod-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.prod-card-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.prod-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.prod-tag { font-size: 11px; font-weight: 600; color: var(--green-mid); background: var(--green-light); padding: 4px 12px; border-radius: 50px; }
.prod-card-footer { display: flex; align-items: center; border-top: 1px solid rgba(46,125,79,0.1); padding-top: 20px; gap: 10px; }
.prod-eco-label { font-size: 12px; color: var(--green-mid); font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 0; }

.prod-cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    border-radius: var(--radius-xl); padding: 60px 48px;
    position: relative; overflow: hidden;
}
.prod-cta::before { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.prod-cta::after { content: ''; position: absolute; right: 40px; bottom: -80px; width: 200px; height: 200px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.prod-cta h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(24px,3.5vw,36px); font-weight: 700; margin-bottom: 14px; }
.prod-cta p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; }
.prod-cta .prod-cta-inner { position: relative; z-index: 1; }

.why-bar { background: var(--green-light); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; border: 1px solid rgba(46,125,79,0.12); transition: var(--transition); }
.why-bar:hover { background: #fff; box-shadow: var(--shadow-card); }
.why-bar i { font-size: 32px; color: var(--green-mid); margin-bottom: 12px; display: block; }
.why-bar h6 { font-weight: 700; color: var(--text-dark); font-size: 15px; margin-bottom: 6px; }
.why-bar p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

@media (max-width: 767px) {
    .prod-cta { padding: 40px 24px; }
    .prod-card-image { height: 210px; }
}
