﻿/* PAGE */
.product-page { position: relative; }


/* ================= CATEGORY HEADER ================= */
.category-row {
    /*position: sticky;
    top: 90px;
    z-index: 20 ;*/
    background: #f8fafc;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.category-row h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1e40af;
}

.category-row h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #27ae60;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* anchor offset */
/*
.category-anchor {
	
    position: relative;
    top: -200px;
    height: 0;
    display: block;
}*/

/* ================= PRODUCT CARD ================= */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: all .4s ease;
    height: 100%;
    position: relative;
}

.product-img {
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f0fdf4;
}

.product-body {
    padding: 18px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-cat {
    font-size: 13px;
    color: #27ae60;
    margin-bottom: 8px;
    display: block;
}

.product-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-link {
    font-weight: 600;
    color: #27ae60;
    text-decoration: none;
}

/* ================= HOVER (HALF GREEN) ================= */
.product-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg,#1e8449,#27ae60);
    transition: height .4s ease;
    z-index: 1;
}

.product-card:hover::before {
    height: 55%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(39,174,96,.3);
}

.product-card:hover .product-body,
.product-card:hover h3,
.product-card:hover p,
.product-card:hover .product-cat {
    color: #fff;
}

.product-card:hover .product-link {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* ================= SIDEBAR ================= */
.sidebar-box {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.category-list li { margin-bottom: 12px; }

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
}

.category-list a:hover {
    color: #27ae60;
    padding-left: 8px;
}

/* MOBILE */
@media (max-width:991px) {
    .category-row { position: relative; top: auto; }
    .sidebar-box { position: relative; margin-top: 40px; }
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link:hover {
    text-decoration: none;
}
