/* ==========================================================================
   PakHerbal Shop Listing
   File: public/css/frontend/shop.css
   ========================================================================== */

.pakherbal-shop-page,
.pakherbal-shop-page *,
.pakherbal-shop-page *::before,
.pakherbal-shop-page *::after {
    box-sizing: border-box;
}

.pakherbal-shop-page {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    color: #102437;
    background: #f5f8f3;
}

.pakherbal-shop-container {
    width: min(calc(100% - 32px), 1180px);
    margin-inline: auto;
}

/* ==========================================================================
   Compact Shop Introduction
   ========================================================================== */

.pakherbal-shop-hero {
    padding: 26px 0 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 52%, rgba(121, 201, 67, 0.32), transparent 36%),
        radial-gradient(circle at 72% 0%, rgba(35, 112, 81, 0.32), transparent 30%),
        linear-gradient(135deg, #071522 0%, #12304a 58%, #173d37 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pakherbal-shop-hero-content {
    display: grid;
    gap: 8px;
    max-width: 880px;
}

.pakherbal-shop-hero h1,
.pakherbal-shop-results-header h2,
.pakherbal-shop-card h3,
.pakherbal-shop-empty h2 {
    margin: 0;
    color: #071522;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.pakherbal-shop-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 44px);
    letter-spacing: -0.025em;
}

.pakherbal-shop-hero p {
    max-width: 680px;
    margin: 0;
    color: #dfe9ef;
    font-size: 15px;
    line-height: 1.65;
}

/* ==========================================================================
   Search And Filters
   ========================================================================== */

.pakherbal-shop-main {
    padding: 26px 0 58px;
}

.pakherbal-shop-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) minmax(180px, 1fr) minmax(180px, .95fr) auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #d8e2d1;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(7, 21, 34, 0.055);
}

.pakherbal-shop-filter-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.pakherbal-shop-filter-field label {
    color: #233b4f;
    font-size: 12px;
    font-weight: 800;
}

.pakherbal-shop-filter-field input,
.pakherbal-shop-filter-field select {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 9px 12px;
    color: #102437;
    background: #fbfcfa;
    border: 1px solid #ccd9c5;
    border-radius: 6px;
    outline: none;
}

.pakherbal-shop-filter-field input:focus,
.pakherbal-shop-filter-field select:focus {
    border-color: #68b53f;
    box-shadow: 0 0 0 3px rgba(121, 201, 67, 0.16);
}

.pakherbal-shop-filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.pakherbal-shop-filter-actions button,
.pakherbal-shop-filter-actions a,
.pakherbal-shop-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.pakherbal-shop-filter-actions button {
    color: #071522;
    background: #79c943;
    border: 1px solid #79c943;
    cursor: pointer;
}

.pakherbal-shop-filter-actions button:hover,
.pakherbal-shop-filter-actions button:focus-visible {
    color: #ffffff;
    background: #315f27;
    border-color: #315f27;
}

.pakherbal-shop-filter-actions a {
    color: #102437;
    background: #ffffff;
    border: 1px solid #cdd8c7;
}

.pakherbal-shop-filter-actions a:hover,
.pakherbal-shop-filter-actions a:focus-visible {
    color: #315f27;
    border-color: #8fbd78;
}

/* ==========================================================================
   Main Categories And Results
   ========================================================================== */

.pakherbal-shop-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding: 0;
}

.pakherbal-shop-category-links a {
    flex: 0 0 auto;
    padding: 8px 14px;
    color: #274052;
    background: #ffffff;
    border: 1px solid #d5e0cf;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.pakherbal-shop-category-links a:hover,
.pakherbal-shop-category-links a.is-active {
    color: #ffffff;
    background: #12304a;
    border-color: #12304a;
}

.pakherbal-shop-results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
}

.pakherbal-shop-results-header h2 {
    font-size: clamp(27px, 3.5vw, 34px);
    letter-spacing: -0.02em;
}

.pakherbal-shop-results-header p {
    margin: 0;
    color: #607080;
    padding: 6px 10px;
    background: #ffffff;
    border: 1px solid #d8e2d1;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.pakherbal-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* ==========================================================================
   Product Card
   ========================================================================== */

.pakherbal-shop-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #d6e0d1;
    border-radius: 0;
    box-shadow: 0 7px 20px rgba(7, 21, 34, 0.055);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.pakherbal-shop-card:hover {
    border-color: #b9d5a8;
    box-shadow: 0 12px 28px rgba(7, 21, 34, 0.11);
}

.pakherbal-shop-card-media {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    padding: 16px 16px 0;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    text-decoration: none;
}

.pakherbal-shop-card-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #d6e0d1;
}

.pakherbal-shop-image-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    color: #315f27;
    background: #e4efde;
    border: 1px solid #cbdcc2;
    border-radius: 0;
    font-size: 24px;
    font-weight: 900;
}

.pakherbal-shop-card-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
}

.pakherbal-shop-card-meta {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #4f7f35;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.pakherbal-shop-card h3 {
    display: -webkit-box;
    min-height: calc(1.32em * 2);
    overflow: hidden;
    font-size: 18px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pakherbal-shop-card h3 a {
    color: #071522;
    text-decoration: none;
}

.pakherbal-shop-card h3 a:hover {
    color: #315f27;
}

.pakherbal-shop-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
    margin-top: auto;
    padding-top: 8px;
}

.pakherbal-shop-card-price strong {
    color: #315f27;
    font-size: 19px;
    line-height: 1.25;
}

.pakherbal-shop-card-price span {
    color: #7a8790;
    font-size: 12px;
    line-height: 1.25;
    text-decoration: line-through;
}

.pakherbal-shop-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 5px;
}

.pakherbal-shop-card-actions form {
    display: grid;
    min-width: 0;
    margin: 0;
}

.pakherbal-shop-card-actions a,
.pakherbal-shop-card-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 0;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.pakherbal-shop-view-button {
    color: #071522;
    background: #79c943;
    border: 1px solid #79c943;
}

.pakherbal-shop-view-button:hover,
.pakherbal-shop-view-button:focus-visible {
    color: #ffffff;
    background: #315f27;
    border-color: #315f27;
}

.pakherbal-shop-card-actions button:not(:disabled) {
    color: #ffffff;
    background: #071522;
    border: 1px solid #071522;
}

.pakherbal-shop-card-actions button:not(:disabled):hover,
.pakherbal-shop-card-actions button:not(:disabled):focus-visible {
    color: #071522;
    background: #79c943;
    border-color: #79c943;
}

.pakherbal-shop-card-actions a:focus-visible,
.pakherbal-shop-card-actions button:focus-visible {
    outline: 3px solid rgba(121, 201, 67, 0.28);
    outline-offset: 2px;
}

.pakherbal-shop-card-actions button:disabled {
    color: #68757e;
    background: #e7ebe7;
    border: 1px solid #d4dbd4;
    cursor: not-allowed;
}

/* ==========================================================================
   Load More Products
   ========================================================================== */

.pakherbal-shop-load-more-wrap {
    display: grid;
    justify-items: center;
    gap: 9px;
    margin-top: 32px;
}

.pakherbal-shop-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 210px;
    min-height: 46px;
    padding: 10px 22px;
    color: #ffffff;
    background: #071522;
    border: 1px solid #071522;
    border-radius: 0;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.pakherbal-shop-load-more:hover,
.pakherbal-shop-load-more:focus-visible {
    color: #071522;
    background: #79c943;
    border-color: #79c943;
}

.pakherbal-shop-load-more[aria-busy="true"] {
    opacity: 0.72;
    pointer-events: none;
}

.pakherbal-shop-load-more-status {
    margin: 0;
    color: #607080;
    font-size: 13px;
    font-weight: 700;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.pakherbal-shop-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 58px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #d8e2d1;
    border-radius: 14px;
}

.pakherbal-shop-empty > span {
    color: #65a63e;
    font-size: 52px;
    line-height: 1;
}

.pakherbal-shop-empty p {
    margin: 0;
    color: #657480;
}

.pakherbal-shop-empty a {
    margin-top: 6px;
    color: #071522;
    background: #79c943;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    .pakherbal-shop-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pakherbal-shop-filter-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        align-self: end;
    }

    .pakherbal-shop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 780px) {
    .pakherbal-shop-hero {
        padding: 28px 0 30px;
    }

    .pakherbal-shop-main {
        padding-top: 20px;
    }

    .pakherbal-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pakherbal-shop-card-media {
        padding: 13px 13px 0;
    }

    .pakherbal-shop-card-body {
        padding: 13px;
    }
}

/* ==========================================================================
   Mobile: Compact Controls And Two Product Columns
   ========================================================================== */

@media (max-width: 767px) {
    .pakherbal-shop-container {
        width: min(calc(100% - 20px), 1180px);
    }

    .pakherbal-shop-hero {
        padding: 24px 0 26px;
    }

    .pakherbal-shop-hero h1 {
        font-size: 32px;
    }

    .pakherbal-shop-hero p {
        font-size: 14px;
        line-height: 1.55;
    }

    .pakherbal-shop-main {
        padding-top: 16px;
    }

    .pakherbal-shop-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
        border-radius: 8px;
    }

    .pakherbal-shop-filter-search {
        grid-column: 1 / -1;
    }

    .pakherbal-shop-filter-actions {
        grid-column: 2;
    }

    .pakherbal-shop-filter-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: stretch;
    }

    .pakherbal-shop-filter-actions button,
    .pakherbal-shop-filter-actions a {
        width: 100%;
        min-height: 42px;
    }

    .pakherbal-shop-category-links {
        flex-wrap: nowrap;
        gap: 7px;
        margin-top: 12px;
        padding: 0 0 3px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .pakherbal-shop-category-links::-webkit-scrollbar {
        display: none;
    }

    .pakherbal-shop-category-links a {
        padding: 7px 12px;
        font-size: 12px;
    }

    .pakherbal-shop-results-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .pakherbal-shop-results-header h2 {
        font-size: 27px;
    }

    .pakherbal-shop-results-header p {
        font-size: 13px;
    }

    .pakherbal-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .pakherbal-shop-card {
        min-width: 0;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(7, 21, 34, 0.05);
    }

    .pakherbal-shop-card:hover {
        box-shadow: 0 4px 12px rgba(7, 21, 34, 0.05);
    }

    .pakherbal-shop-card-media {
        padding: 9px 9px 0;
        border-radius: 0;
    }

    .pakherbal-shop-image-placeholder {
        font-size: 17px;
    }

    .pakherbal-shop-card-body {
        gap: 7px;
        padding: 9px;
        border-radius: 0;
    }

    .pakherbal-shop-card-meta {
        font-size: 9px;
    }

    .pakherbal-shop-card h3 {
        min-height: calc(1.32em * 2);
        font-size: 14px;
        line-height: 1.32;
        -webkit-line-clamp: 2;
    }

    .pakherbal-shop-card-price {
        display: grid;
        gap: 2px;
        padding-top: 5px;
    }

    .pakherbal-shop-card-price strong {
        font-size: 14px;
        white-space: nowrap;
    }

    .pakherbal-shop-card-price span {
        font-size: 10px;
        white-space: nowrap;
    }

    .pakherbal-shop-card-actions {
        grid-template-columns: minmax(0, 1fr);
        gap: 5px;
        margin-top: 3px;
    }

    .pakherbal-shop-card-actions a,
    .pakherbal-shop-card-actions button {
        min-height: 34px;
        padding: 6px 4px;
        border-radius: 0;
        font-size: 10px;
        white-space: nowrap;
    }

    .pakherbal-shop-load-more-wrap {
        margin-top: 24px;
    }

    .pakherbal-shop-load-more {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .pakherbal-shop-container {
        width: min(calc(100% - 14px), 1180px);
    }

    .pakherbal-shop-filter-actions {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr);
    }

    .pakherbal-shop-grid {
        gap: 7px !important;
    }

    .pakherbal-shop-card-media {
        padding: 8px 8px 0;
    }

    .pakherbal-shop-card-body {
        padding: 8px;
    }

    .pakherbal-shop-card h3 {
        font-size: 13px;
    }

    .pakherbal-shop-card-price strong {
        font-size: 13px;
    }

    .pakherbal-shop-card-actions a,
    .pakherbal-shop-card-actions button {
        min-height: 32px;
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pakherbal-shop-page *,
    .pakherbal-shop-page *::before,
    .pakherbal-shop-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
