/* ===============================
   BANNER
================================ */
.banner-keychains {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    background: rgba(20, 20, 20, 0.45);
    color: #fff;
    padding: 26px 42px;
    border-radius: 14px;
    text-align: center;
}

.banner-overlay h1 {
    font-size: 2em;
    font-weight: 600;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb {
    margin: 24px 0 24px 28px;
    font-size: 0.95em;
}

.breadcrumb a {
    color: #19784A;
    text-decoration: none;
}

.breadcrumb span {
    color: #444;
}

/* ===============================
   LIST SECTION
================================ */
.product-list-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 16px;
}

.product-list-section h2 {
    font-size: 1.35em;
    font-weight: 600;
    margin-bottom: 22px;
    color: #1b1b1b;
}

/* ===============================
   GRID
================================ */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ===============================
   PRODUCT CARD (NEW DESIGN)
================================ */
.product-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ececec;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Image */
.product-card img {
    width: calc(100% + 32px);   /* 👈 expands image left & right */
    height: 240px;              /* 👈 bigger image */
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    margin: -16px -16px 14px -16px; /* removes card padding */
}

/* Name */
.product-card h3 {
    font-size: 0.98em;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin: 6px 0 8px 0;
    line-height: 1.35;
}

/* Price */
.product-card .price {
    font-size: 1.1em;
    font-weight: 700;
    color: #19784A;
    margin-bottom: 14px;
}

/* CTA */
.product-card .cta-btn {
    margin-top: auto;
    padding: 10px 22px;
    font-size: 0.95em;
    border-radius: 24px;
    background: #19784A;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s ease;
}

.product-card .cta-btn:hover {
    background: #125f3a;
}

/* ===============================
   SHOW MORE
================================ */
.show-more-btn {
    background: #fff;
    color: #19784A;
    border: 2px solid #19784A;
    padding: 14px 44px;
    font-size: 1.05em;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.show-more-btn:hover {
    background: #19784A;
    color: #fff;
}

/* ===============================
   RESPONSIVE (MOBILE FIRST)
================================ */
@media (max-width: 1024px) {
    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .banner-keychains {
        height: 160px;
    }

    .banner-overlay h1 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        width: calc(100% + 32px); /* full stretch */
        height: 280px;            /* taller mobile image */
        margin: -16px -16px 16px -16px;
        object-fit: cover;
    }

    .breadcrumb {
        margin-left: 16px;
        font-size: 0.9em;
    }
}
@media (max-width: 768px) {

    /* Center the category heading */
    .product-list-section h2 {
        text-align: center;
    }

}