* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1280px;
    --container-gap: 32px;
    --container-gap-mobile: 22px;
    --green: #0b7a19;
    --green-dark: #075d12;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-soft: #f8faf8;
    --bg-light: #f5f8f3;
    --border-light: #dfe6dc;
    --border-card: #e9eeea;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    display: block;
}

/* BREADCRUMB */
.page-breadcrumb {
    width: 100%;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.breadcrumb-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-size: 14px;
}

.breadcrumb-list a {
    text-decoration: none;
    color: var(--green);
    font-weight: 700;
}

.breadcrumb-list .separator {
    color: #777777;
}

.breadcrumb-list .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* HERO */
.listing-hero {
    position: relative;
    width: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
}

.listing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.listing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: min(760px, calc(100% - 32px));
    padding: 46px 0;
}

.listing-hero-content h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 12px;
}

.listing-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin: 0 auto;
}

/* TOOLBAR */
.listing-toolbar {
    padding: 28px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f2ef;
}

.toolbar-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-count {
    font-size: 16px;
    color: var(--text-dark);
}

.product-count strong {
    color: var(--green);
    font-size: 20px;
}

.toolbar-sort select {
    height: 48px;
    min-width: 230px;
    border: 1px solid #d9dfd7;
    border-radius: 12px;
    padding: 0 16px;
    background: #ffffff;
    font-size: 15px;
    cursor: pointer;
    outline: none;
}

.toolbar-sort select:focus {
    border-color: var(--green);
}

/* PRODUCTS */
.products-section {
    padding: 32px 0 80px;
}

.products-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 320px));
    justify-content: start;
    gap: 28px;
}

.product-card {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.product-content h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 54px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 22px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.cart-btn,
.view-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cart-btn {
    background: var(--green);
    color: #ffffff;
}

.cart-btn:hover {
    background: var(--green-dark);
}

.view-btn {
    border: 2px solid var(--green);
    color: var(--green);
}

.view-btn:hover {
    background: var(--green);
    color: #ffffff;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.page-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #eef5ee;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    color: var(--text-dark);
}

.page-btn:hover,
.page-btn.active {
    background: var(--green);
    color: #ffffff;
}

/* PREMIUM USP */
.listing-usp {
    padding: 85px 0;
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.usp-heading {
    width: min(780px, calc(100% - var(--container-gap)));
    margin: 0 auto 42px;
    text-align: center;
}

.usp-heading span {
    display: inline-block;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.usp-heading h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.usp-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.usp-container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 34px 26px;
    text-align: left;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 122, 25, 0.22);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

.usp-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #edf8ef 0%, #f7fbf7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.premium-card h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.premium-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* TABLET */
@media (max-width: 991px) {
    .toolbar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-hero {
        min-height: 220px;
    }

    .products-grid {
        justify-content: center;
        gap: 22px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .breadcrumb-container,
    .toolbar-container,
    .products-container,
    .usp-container,
    .usp-heading {
        width: min(100% - var(--container-gap-mobile), 100%);
    }

    .listing-hero {
        min-height: 190px;
    }

    .listing-hero-content {
        padding: 34px 0;
    }

    .listing-hero-content h1 {
        font-size: 34px;
    }

    .listing-hero-content p {
        font-size: 15px;
    }

    .listing-toolbar {
        padding: 22px 0;
    }

    .toolbar-sort {
        width: 100%;
    }

    .toolbar-sort select {
        width: 100%;
        min-width: unset;
    }

    .products-section {
        padding: 26px 0 60px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 320px));
        justify-content: center;
        gap: 20px;
    }

    .product-card {
        max-width: 320px;
    }

    .product-image {
        height: 260px;
    }

    .product-content {
        padding: 18px;
        min-height: auto;
    }

    .product-content h3 {
        font-size: 17px;
        min-height: auto;
    }

    .product-price {
        font-size: 24px;
    }

    .cart-btn,
    .view-btn {
        min-height: 50px;
        font-size: 15px;
    }

    .pagination {
        margin-top: 40px;
    }

    .listing-usp {
        padding: 60px 0;
    }

    .usp-heading {
        margin-bottom: 30px;
    }

    .usp-heading h2 {
        font-size: 30px;
    }

    .usp-heading p {
        font-size: 15px;
    }

    .usp-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .premium-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .usp-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .premium-card h4 {
        font-size: 19px;
    }

    .premium-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.no-products-found {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
}

.no-products-found h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.no-products-found p {
    font-size: 16px;
    color: var(--text-muted);
}