.listing-main {
    max-width: 1280px;
    margin: 0 auto 36px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
    margin-top: 22px;
    margin-bottom: 34px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(25,91,55,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 19px 17px 23px 17px;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #f6f9fa;
    box-shadow: 0 2px 12px rgba(25,91,55,0.09);
}

.product-name {
    font-weight: 700;
    font-size: 1.13rem;
    margin-bottom: 6px;
    color: #1c3c2a;
    font-family: inherit;
    text-align: center;
    min-height: 44px;
    line-height: 1.1;
    overflow-wrap: break-word;
}

.product-price {
    color: #23764a;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.card-cta {
    display: inline-block;
    background: linear-gradient(92deg, #195b37 0%, #23764a 100%);
    color: #fff;
    padding: 0.55rem 1.5rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 1.06rem;
    text-decoration: none;
    transition: background 0.15s, color 0.07s;
    margin-top: auto;
    box-shadow: 0 1.5px 6px 0 rgba(25,91,55,0.13);
    border: none;
    outline: none;
    margin-bottom: 0;
    text-align: center;
}

.card-cta:hover {
    background: linear-gradient(92deg, #23764a 0%, #195b37 100%);
    color: #e5fbe7;
}

.show-more-bar {
    text-align: center;
    margin-top: 18px;
}

.show-more-btn {
    padding: 0.6em 2.2em;
    border-radius: 9px;
    background: linear-gradient(92deg, #195b37 0%, #23764a 100%);
    color: #fff;
    border: 0;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(25,91,55,0.09);
}

.show-more-btn:hover {
    background: linear-gradient(92deg, #23764a 0%, #195b37 100%);
    color: #e9fef3;
}

/* Responsive Layouts */
@media (max-width:1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:820px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Banner + Breadcrumb Style
   ======================== */

/* Larger banner height for prominence */
.hero-gadgets {
    min-height: 320px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;      /* vertically center children */
    justify-content: center;  /* horizontally center children */
}

/* Center banner text in a dark rounded box */
.hero-gadgets .hero-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-gadgets .hero-content {
    background: rgba(25, 25, 25, 0.55);  /* Semi-transparent dark */
    border-radius: 18px;
    padding: 40px 54px;
    display: inline-block;
    max-width: 90vw;
}

.hero-gadgets .hero-content h1 {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-gadgets .hero-content p {
    color: #f0f0f0;
    font-size: 1.23rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Breadcrumb - Like Screenshot and slightly shifted right */
.breadcrumb {
    font-size: 1.05rem;
    margin: 18px 0 23px 32px;
    color: #999;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    color: #2075dd;
    font-weight: 700;
    text-decoration: none;
}

.breadcrumb a:not(:first-child) {
    color: #999;
    font-weight: 400;
}

.breadcrumb span {
    color: #999;
    margin: 0 7px;
}

/* Responsive - Breadcrumb margin reduced for mobile */
@media (max-width:600px) {
    .breadcrumb {
        margin-left: 14px;
        margin-right: 12px;
        font-size: 0.97rem;
    }
}
