.woocommerce,
.woocommerce-page {
    width: 100%;
}

.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    background: #ffffff;
    border: 1px solid var(--gds-border);
    border-radius: 22px;
    box-shadow: var(--gds-shadow-sm);
    padding: 14px;
    overflow: hidden;
}

.woocommerce ul.products li.product img {
    width: 100%;
    border-radius: 16px;
    background: #f8fafc;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--gds-text);
    padding: 12px 0 6px;
}

.woocommerce ul.products li.product .price {
    color: var(--gds-primary);
    font-size: 17px;
    font-weight: 900;
}

.woocommerce div.product {
    width: 100%;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    margin-bottom: 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 16px;
    border-top: 0;
    background: #ffffff;
    box-shadow: var(--gds-shadow-sm);
}

@media (max-width: 1100px) {
    .woocommerce .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .woocommerce .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        border-radius: 16px;
        padding: 10px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .woocommerce .products {
        grid-template-columns: 1fr;
    }
}


.gds-select-country-price,
.gds-country-price {
    display: inline-block;
    color: var(--gds-primary);
    font-size: 16px;
    font-weight: 900;
}

.gds-select-country-price {
    color: var(--gds-muted);
    font-size: 14px;
}

.gds-dropship-product-box {
    width: 100%;
    margin: 22px 0;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid var(--gds-border);
    border-radius: 22px;
    box-shadow: var(--gds-shadow-sm);
}

.gds-cod-note {
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    color: #065f46;
    font-size: 14px;
    font-weight: 800;
}

.gds-country-warning {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    color: #9a3412;
    font-size: 14px;
    font-weight: 800;
}

.gds-product-country-flags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gds-text);
    font-size: 14px;
}

.gds-product-country-flags strong {
    margin-right: 4px;
    font-weight: 900;
}

.gds-product-country-flags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 1px solid var(--gds-border);
    border-radius: 999px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.gds-product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gds-product-info-item {
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--gds-border-light);
    border-radius: 16px;
}

.gds-product-info-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--gds-muted);
    font-size: 13px;
    font-weight: 700;
}

.gds-product-info-item strong {
    display: block;
    color: var(--gds-heading);
    font-size: 16px;
    font-weight: 900;
}

.gds-profit-item {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.gds-profit-item strong {
    color: #047857;
}

.gds-payable-item {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.gds-payable-item strong {
    color: #1d4ed8;
}

.gds-country-pricing-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--gds-border);
    border-radius: 16px;
    background: #ffffff;
}

.gds-country-pricing-table {
    width: 100%;
    min-width: 950px;
    border-collapse: collapse;
}

.gds-country-pricing-table th,
.gds-country-pricing-table td {
    padding: 12px;
    border-bottom: 1px solid var(--gds-border-light);
    text-align: left;
    font-size: 14px;
}

.gds-country-pricing-table th {
    background: #f8fafc;
    color: var(--gds-heading);
    font-weight: 900;
}

.gds-loop-dropship-info {
    width: 100%;
    margin: 10px 0 4px;
    padding: 10px;
    background: #f7faff;
    border: 1px solid var(--gds-border-light);
    border-radius: 14px;
}

.gds-loop-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.gds-loop-flags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border: 1px solid var(--gds-border);
    border-radius: 999px;
    font-size: 14px;
}

.gds-loop-price-row,
.gds-loop-profit-row,
.gds-loop-payable-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.gds-loop-price-row span,
.gds-loop-profit-row span,
.gds-loop-payable-row span {
    color: var(--gds-muted);
    font-weight: 700;
}

.gds-loop-price-row strong {
    color: var(--gds-heading);
    font-weight: 900;
}

.gds-loop-profit-row strong {
    color: #047857;
    font-weight: 900;
}

.gds-loop-payable-row strong {
    color: #1d4ed8;
    font-weight: 900;
}

.gds-loop-select-country {
    color: var(--gds-muted);
    font-size: 13px;
    font-weight: 800;
}

.gds-loop-delivery {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--gds-border);
    color: var(--gds-text-soft);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .gds-dropship-product-box {
        padding: 14px;
        border-radius: 16px;
    }

    .gds-product-info-grid {
        grid-template-columns: 1fr;
    }

    .gds-product-info-item {
        padding: 12px;
        border-radius: 14px;
    }

    .gds-product-country-flags span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

















/* =========================================================
   GDS Professional Shop Page
========================================================= */

body.post-type-archive-product .gds-main,
body.tax-product_cat .gds-main,
body.post-type-archive-product .gds-container,
body.tax-product_cat .gds-container,
body.post-type-archive-product .gds-content-card,
body.tax-product_cat .gds-content-card {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gds-shop-page {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 28px 24px 64px;
}

.gds-shop-hero {
    width: 100%;
    margin-bottom: 22px;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(244, 189, 53, 0.18), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fffdf6 48%, #eef6ff 100%);
    border: 1px solid #dbe7f6;
    box-shadow: 0 18px 45px rgba(15, 43, 95, 0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gds-shop-hero-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: #f4a600;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gds-shop-hero-content h1 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.gds-shop-hero-content p {
    margin: 0;
    max-width: 680px;
    color: #61718c;
    font-size: 16px;
    font-weight: 500;
}

.gds-shop-country-card {
    min-width: 280px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #cfe0f5;
    text-align: right;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.06);
}

.gds-shop-country-card span {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.gds-shop-country-card strong {
    display: block;
    color: #08245c;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.gds-shop-country-card small {
    display: block;
    margin-top: 6px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

/* Toolbar */
.gds-shop-toolbar {
    width: 100%;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: minmax(320px, 1.5fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
    gap: 14px;
    align-items: end;
}

.gds-shop-search-form label,
.gds-shop-filter-field label {
    display: block;
    margin-bottom: 7px;
    color: #536783;
    font-size: 13px;
    font-weight: 900;
}

.gds-shop-search-input {
    width: 100%;
    display: flex;
    gap: 10px;
}

.gds-shop-search-input input,
.gds-shop-filter-field select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dbe6f6;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
}

.gds-shop-search-input button {
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: #08245c;
    color: #ffffff;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

/* Results */
.gds-shop-results-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dbe6f6;
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(15, 43, 95, 0.06);
    overflow: hidden;
}

.gds-shop-results-head {
    padding: 24px 28px 18px;
    background: #ffffff;
    border-bottom: 1px solid #eef3fa;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.gds-shop-results-head h2 {
    margin: 0 0 5px;
    color: #08245c;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.gds-shop-results-head p {
    margin: 0;
    color: #60718d;
    font-size: 14px;
    font-weight: 600;
}

.gds-shop-results-pill {
    min-height: 36px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #dcfce7;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
}

/* WooCommerce product grid */
.gds-shop-results-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    padding: 24px !important;
    margin: 0 !important;
    list-style: none !important;
}

.gds-shop-results-card ul.products::before,
.gds-shop-results-card ul.products::after {
    display: none !important;
}

.gds-shop-results-card ul.products li.product,
.woocommerce ul.products li.product.gds-product-card {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

/* Product Card */
.gds-product-card-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #dbe6f6;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.055);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.22s ease;
}

.gds-product-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 43, 95, 0.10);
    border-color: #bfdbfe;
}

.gds-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gds-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gds-product-placeholder {
    width: 100%;
    height: 100%;
    background: #eef6ff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.gds-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f4bd35;
    color: #08245c;
    font-size: 11px;
    font-weight: 900;
}

.gds-product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gds-product-flags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    min-height: 28px;
}

.gds-product-flags span {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.gds-product-title {
    margin: 0 0 12px;
    color: #08245c;
    font-size: 16px !important;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.gds-product-title a {
    color: inherit;
}

.gds-product-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.gds-product-price-item {
    padding: 10px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e5edf8;
}

.gds-product-price-item span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.gds-product-price-item strong {
    display: block;
    color: #08245c;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    word-break: break-word;
}

.gds-profit-box {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.gds-profit-box strong {
    color: #047857;
}

.gds-payable-box {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.gds-payable-box strong {
    color: #1d4ed8;
}

.gds-product-select-country-note {
    margin-top: auto;
    padding: 12px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.gds-product-select-country-note.is-warning {
    background: #fee2e2;
    border-color: #fecaca;
    color: #b91c1c;
}

.gds-product-card-actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.gds-view-product-btn,
.gds-add-product-btn {
    min-height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.gds-view-product-btn {
    flex: 1;
    background: #08245c;
    color: #ffffff !important;
}

.gds-add-product-btn {
    width: 48px;
    background: #f4bd35;
    color: #08245c !important;
}

.gds-shop-empty-state {
    min-height: 320px;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gds-shop-empty-state div {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: #eef6ff;
    border: 1px solid #cfe0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.gds-shop-empty-state h3 {
    margin: 0 0 8px;
    color: #08245c;
    font-size: 28px;
    font-weight: 900;
}

.gds-shop-empty-state p {
    max-width: 540px;
    margin: 0;
    color: #60718d;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    padding: 0 24px 24px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0 !important;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    background: #f4f8ff;
    color: #08245c;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #f4bd35;
    color: #08245c;
}

/* Tablet */
@media (max-width: 1100px) {
    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .gds-shop-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .gds-shop-search-form {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gds-shop-page {
        max-width: 100%;
        padding: 0 0 42px;
    }

    .gds-shop-hero {
        border-radius: 0 0 22px 22px;
        border-left: 0;
        border-right: 0;
        padding: 22px 14px;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .gds-shop-country-card {
        min-width: 100%;
        text-align: left;
        padding: 16px;
        border-radius: 16px;
    }

    .gds-shop-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 10px;
        margin-bottom: 14px;
    }

    .gds-shop-search-form {
        grid-column: 1 / -1;
    }

    .gds-shop-search-input {
        gap: 8px;
    }

    .gds-shop-search-input input,
    .gds-shop-filter-field select {
        min-height: 44px;
        border-radius: 12px;
        font-size: 12px;
        padding: 0 10px;
    }

    .gds-shop-search-input button {
        min-height: 44px;
        border-radius: 12px;
        padding: 0 14px;
        font-size: 12px;
    }

    .gds-shop-results-card {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .gds-shop-results-head {
        padding: 18px 14px;
    }

    .gds-shop-results-head h2 {
        font-size: 24px;
    }

    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 10px !important;
    }

    .gds-product-card-inner {
        border-radius: 16px;
    }

    .gds-product-card-body {
        padding: 10px;
    }

    .gds-product-title {
        font-size: 13px !important;
    }

    .gds-product-price-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .gds-product-price-item {
        padding: 8px;
        border-radius: 10px;
    }

    .gds-product-price-item span {
        font-size: 9px;
    }

    .gds-product-price-item strong {
        font-size: 11px;
    }

    .gds-view-product-btn,
    .gds-add-product-btn {
        min-height: 36px;
        font-size: 11px;
        border-radius: 10px;
    }

    .gds-add-product-btn {
        width: 40px;
    }
}

/* Small mobile */
@media (max-width: 390px) {
    .gds-shop-results-card ul.products {
        gap: 8px !important;
        padding: 8px !important;
    }

    .gds-product-title {
        font-size: 12px !important;
    }
}




/* =========================================================
   Shop Card Default Country Price Display
========================================================= */

.gds-product-country-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ffffff;
    color: #08245c;
    border: 1px solid #dbe6f6;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 43, 95, 0.10);
}

.gds-shop-clean-price-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
}

.gds-shop-clean-cost,
.gds-shop-suggested-wrap {
    min-height: 62px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid #e5edf8;
    background: #f8fbff;
}

.gds-shop-clean-cost span,
.gds-shop-suggested-wrap span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.gds-shop-clean-cost strong {
    display: block;
    color: #08245c;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
}

.gds-shop-suggested-wrap {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.gds-shop-suggested-wrap strong {
    display: block;
    color: #047857;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
}

.gds-product-delivery-line {
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .gds-product-country-badge {
        right: 8px;
        bottom: 8px;
        min-height: 26px;
        padding: 5px 8px;
        font-size: 9px;
    }

    .gds-shop-clean-price-row {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 8px;
    }

    .gds-shop-clean-cost,
    .gds-shop-suggested-wrap {
        min-height: auto;
        padding: 8px;
        border-radius: 10px;
    }

    .gds-shop-clean-cost span,
    .gds-shop-suggested-wrap span {
        font-size: 9px;
    }

    .gds-shop-clean-cost strong,
    .gds-shop-suggested-wrap strong {
        font-size: 12px;
    }

    .gds-product-delivery-line {
        font-size: 10px;
        padding: 7px 8px;
    }
}



/* =========================================================
   Clean Shop Product Card Like Reference
========================================================= */

.gds-shop-results-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding: 24px !important;
    margin: 0 !important;
    list-style: none !important;
}

.gds-shop-results-card ul.products li.product,
.woocommerce ul.products li.product.gds-clean-product-card {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

.gds-clean-card-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #dbe6f6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 43, 95, 0.055);
    display: flex;
    flex-direction: column;
    transition: all 0.22s ease;
}

.gds-clean-card-inner:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 44px rgba(15, 43, 95, 0.10);
}

.gds-clean-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fbff;
    display: block;
    overflow: hidden;
}

.gds-clean-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gds-clean-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gds-clean-card-title {
    margin: 0 0 14px !important;
    color: #08245c;
    font-size: 22px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
}

.gds-clean-card-title a {
    color: inherit !important;
}

.gds-clean-available-box {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    border-left: 3px solid #f4bd35;
    border-radius: 12px;
    color: #08245c;
    font-size: 14px;
    font-weight: 900;
}

.gds-clean-available-box strong {
    color: #08245c;
    font-size: 14px;
    font-weight: 900;
}

.gds-clean-available-box span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gds-clean-available-box span span {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 16px !important;
}

.gds-clean-main-price {
    margin-top: auto;
    margin-bottom: 22px;
    color: #08245c;
}

.gds-clean-main-price strong {
    color: #08245c;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.gds-clean-main-price span {
    margin-left: 4px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.gds-clean-main-price.is-not-available strong {
    font-size: 20px;
    color: #b91c1c;
}

.gds-clean-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}

.gds-clean-view-btn,
.gds-clean-sell-btn {
    min-height: 78px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    text-align: center;
}

.gds-clean-view-btn {
    background: #f5f7fb;
    color: #08245c !important;
}

.gds-clean-sell-btn {
    background: linear-gradient(135deg, #f4bd35 0%, #f7c84b 100%);
    color: #08245c !important;
}

.gds-clean-view-btn:hover {
    background: #eaf2ff;
    color: #08245c !important;
}

.gds-clean-sell-btn:hover {
    background: #08245c;
    color: #ffffff !important;
}

/* Remove old card price boxes if old CSS still affects */
.gds-clean-product-card .gds-product-price-grid,
.gds-clean-product-card .gds-shop-clean-price-row,
.gds-clean-product-card .gds-product-delivery-line,
.gds-clean-product-card .gds-product-badge,
.gds-clean-product-card .gds-product-country-badge,
.gds-clean-product-card .gds-product-flags,
.gds-clean-product-card .gds-product-card-actions,
.gds-clean-product-card .gds-product-card-body,
.gds-clean-product-card .gds-product-title {
    display: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 10px !important;
    }

    .gds-clean-card-inner {
        border-radius: 18px;
    }

    .gds-clean-card-body {
        padding: 12px;
    }

    .gds-clean-card-title {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .gds-clean-available-box {
        padding: 8px 9px;
        margin-bottom: 16px;
        font-size: 11px;
        border-radius: 10px;
    }

    .gds-clean-available-box strong {
        font-size: 11px;
    }

    .gds-clean-available-box span span {
        font-size: 13px !important;
    }

    .gds-clean-main-price {
        margin-bottom: 16px;
    }

    .gds-clean-main-price strong {
        font-size: 19px;
    }

    .gds-clean-main-price span {
        font-size: 11px;
    }

    .gds-clean-card-actions {
        gap: 8px;
    }

    .gds-clean-view-btn,
    .gds-clean-sell-btn {
        min-height: 50px;
        border-radius: 12px;
        padding: 8px;
        font-size: 12px;
        gap: 5px;
    }
}

/* Small mobile */
@media (max-width: 390px) {
    .gds-shop-results-card ul.products {
        gap: 8px !important;
        padding: 8px !important;
    }

    .gds-clean-card-body {
        padding: 10px;
    }

    .gds-clean-card-title {
        font-size: 14px !important;
    }

    .gds-clean-main-price strong {
        font-size: 17px;
    }
}


/* =========================================
   SHOP CARD FINAL SIZE IMPROVEMENT
========================================= */

/* Product grid desktop */
.gds-shop-results-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 18px !important;
}

/* Card */
.gds-clean-card-inner {
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.06) !important;
}

.gds-clean-card-image {
    aspect-ratio: 1 / 1 !important;
}

.gds-clean-card-body {
    padding: 14px !important;
}

/* Title */
.gds-clean-card-title {
    margin: 0 0 10px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

/* Available box */
.gds-clean-available-box {
    margin-bottom: 14px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    gap: 4px !important;
}

.gds-clean-available-box strong {
    font-size: 12px !important;
    font-weight: 700 !important;
}

.gds-clean-available-box span span {
    font-size: 13px !important;
}

/* Price */
.gds-clean-main-price {
    margin-bottom: 14px !important;
}

.gds-clean-main-price strong {
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}

.gds-clean-main-price span {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
}

/* Buttons row */
.gds-clean-card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 0 !important;
}

/* Both buttons */
.gds-clean-view-btn,
.gds-clean-sell-btn {
    min-height: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    gap: 5px !important;
    white-space: nowrap !important;
}

/* View button */
.gds-clean-view-btn {
    background: #f5f7fb !important;
    color: #08245c !important;
}

/* Sell button */
.gds-clean-sell-btn {
    background: #f4c542 !important;
    color: #08245c !important;
}

.gds-clean-view-btn:hover {
    background: #ebf2ff !important;
    color: #08245c !important;
}

.gds-clean-sell-btn:hover {
    background: #e7b92d !important;
    color: #08245c !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* Mobile - 2 products in 1 row */
@media (max-width: 768px) {
    .gds-shop-results-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 10px !important;
    }

    .gds-clean-card-inner {
        border-radius: 16px !important;
    }

    .gds-clean-card-body {
        padding: 10px !important;
    }

    .gds-clean-card-title {
        font-size: 13px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .gds-clean-available-box {
        padding: 6px 8px !important;
        margin-bottom: 10px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
    }

    .gds-clean-available-box strong {
        font-size: 10px !important;
    }

    .gds-clean-available-box span span {
        font-size: 11px !important;
    }

    .gds-clean-main-price {
        margin-bottom: 10px !important;
    }

    .gds-clean-main-price strong {
        font-size: 15px !important;
    }

    .gds-clean-main-price span {
        font-size: 10px !important;
    }

    .gds-clean-card-actions {
        gap: 6px !important;
    }

    .gds-clean-view-btn,
    .gds-clean-sell-btn {
        min-height: 34px !important;
        height: 34px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
        padding: 0 6px !important;
        gap: 3px !important;
    }
}

/* Very small mobile */
@media (max-width: 390px) {
    .gds-shop-results-card ul.products {
        gap: 8px !important;
        padding: 8px !important;
    }

    .gds-clean-card-title {
        font-size: 12px !important;
    }

    .gds-clean-main-price strong {
        font-size: 14px !important;
    }

    .gds-clean-view-btn,
    .gds-clean-sell-btn {
        font-size: 9px !important;
    }
}




/* =========================================================
   FINAL PROFESSIONAL SHOP PAGE
========================================================= */

/* Remove gap after header */
body.post-type-archive-product .gds-main,
body.tax-product_cat .gds-main,
body.post-type-archive-product .gds-content-card,
body.tax-product_cat .gds-content-card {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.post-type-archive-product .gds-container,
body.tax-product_cat .gds-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gds-shop-page-new {
    width: 100%;
    background: #eef5fb;
}

/* Common shell */
.gds-shop-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* HERO FULL WIDTH */
.gds-shop-hero-band {
    width: 100%;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(90deg, #f8f5e9 0%, #f3f8ff 45%, #eef8f2 100%);
    border-top: 3px solid #0b355f;
    border-bottom: 1px solid #d9e5f2;
}

.gds-shop-hero-grid {
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 40px;
    align-items: center;
    padding: 36px 0 34px;
}

.gds-shop-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(223, 164, 17, 0.45);
    color: #d08c00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.gds-shop-hero-title {
    margin: 18px 0 16px !important;
    max-width: 820px;
    color: #0b355f;
    font-size: clamp(42px, 5vw, 76px) !important;
    line-height: 1.03 !important;
    font-weight: 900 !important;
    letter-spacing: -0.06em !important;
}

.gds-shop-hero-title span {
    display: block;
    color: #d89a13;
    font-style: italic;
    font-weight: 900;
}

.gds-shop-hero-text {
    max-width: 830px;
    margin: 0 0 24px !important;
    color: #27496d;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.gds-shop-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.gds-shop-hero-points span {
    color: #0b355f;
    font-size: 14px;
    font-weight: 800;
}

.gds-shop-hero-right {
    display: grid;
    gap: 14px;
}

.gds-shop-stat-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #d7e3f0;
    border-radius: 22px;
    min-height: 118px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gds-shop-stat-card strong {
    color: #d89a13;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 8px;
}

.gds-shop-stat-card span {
    color: #5a7290;
    font-size: 15px;
    font-weight: 700;
}

/* CONTENT AREA */
.gds-shop-content-band {
    width: 100%;
    padding: 28px 0 56px;
    background: #eef5fb;
}

.gds-shop-main-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

/* Sidebar */
.gds-shop-sidebar {
    width: 100%;
}

.gds-shop-filter-card {
    background: #ffffff;
    border: 1px solid #d6e4f1;
    border-radius: 24px;
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05);
}

.gds-shop-filter-card h3 {
    margin: 0 0 14px !important;
    color: #2378a7;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.gds-shop-field {
    margin-bottom: 14px;
}

.gds-shop-field label {
    display: block;
    margin-bottom: 6px;
    color: #637994;
    font-size: 12px;
    font-weight: 800;
}

.gds-shop-field input[type="search"],
.gds-shop-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
}

.gds-shop-radio-list {
    display: grid;
    gap: 8px;
}

.gds-shop-radio-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #5e7590;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.gds-shop-apply-btn,
.gds-shop-reset-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.gds-shop-apply-btn {
    border: 0;
    background: #f1c44d;
    color: #0b355f;
    cursor: pointer;
    margin-top: 4px;
}

.gds-shop-reset-btn {
    margin-top: 10px;
    background: #dff0fb;
    color: #2378a7;
    border: 1px solid #b8d9ee;
}

/* Results top */
.gds-shop-results-wrap {
    min-width: 0;
}

.gds-shop-results-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.gds-shop-mini-title {
    display: inline-block;
    margin-bottom: 6px;
    color: #d89a13;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.gds-shop-results-top h2 {
    margin: 0 !important;
    color: #18395d;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.gds-shop-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gds-shop-sort-box label {
    color: #566f8d;
    font-size: 12px;
    font-weight: 800;
}

.gds-shop-sort-box .woocommerce-ordering {
    margin: 0 !important;
}

.gds-shop-sort-box .orderby {
    min-height: 42px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #ffffff;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
}

/* Products card */
.gds-shop-products-card {
    background: transparent;
    border-radius: 0;
    min-height: 300px;
}

/* Empty state */
.gds-shop-empty-box {
    background: #ffffff;
    border: 1px dashed #d4e2ef;
    border-radius: 20px;
    min-height: 190px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gds-shop-empty-box h3 {
    margin: 0 0 10px !important;
    color: #2378a7;
    font-size: 24px !important;
    font-weight: 900 !important;
}

.gds-shop-empty-box p {
    margin: 0 0 14px !important;
    color: #70839a;
    font-size: 15px;
}

.gds-shop-empty-box a {
    color: #2d8ec0;
    font-weight: 800;
}

/* Product grid spacing */
.gds-shop-products-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gds-shop-products-card ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    padding-top: 22px;
}

/* Tablet */
@media (max-width: 1100px) {
    .gds-shop-hero-grid {
        grid-template-columns: 1fr;
    }

    .gds-shop-hero-right {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gds-shop-main-layout {
        grid-template-columns: 1fr;
    }

    .gds-shop-products-card ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gds-shop-shell {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gds-shop-hero-band {
        border-top-width: 2px;
    }

    .gds-shop-hero-grid {
        min-height: auto;
        padding: 24px 14px 22px;
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .gds-shop-hero-title {
        font-size: 32px !important;
        line-height: 1.08 !important;
        margin: 14px 0 12px !important;
    }

    .gds-shop-hero-text {
        font-size: 14px;
        margin-bottom: 16px !important;
    }

    .gds-shop-hero-points {
        gap: 10px;
        flex-direction: column;
    }

    .gds-shop-hero-points span {
        font-size: 13px;
    }

    .gds-shop-hero-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gds-shop-stat-card {
        min-height: 86px;
        border-radius: 16px;
        padding: 14px 16px;
    }

    .gds-shop-stat-card strong {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .gds-shop-stat-card span {
        font-size: 13px;
    }

    .gds-shop-content-band {
        padding: 18px 0 38px;
    }

    .gds-shop-main-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 10px;
    }

    .gds-shop-filter-card {
        border-radius: 18px;
        padding: 14px;
    }

    .gds-shop-results-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gds-shop-results-top h2 {
        font-size: 18px !important;
    }

    .gds-shop-sort-box {
        width: 100%;
        justify-content: space-between;
    }

    .gds-shop-sort-box .orderby {
        width: 180px;
        max-width: 100%;
    }

    .gds-shop-products-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
}

/* Small mobile */
@media (max-width: 390px) {
    .gds-shop-hero-grid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .gds-shop-main-layout {
        padding-left: 8px;
        padding-right: 8px;
    }

    .gds-shop-products-card ul.products {
        gap: 8px !important;
    }
}



/* =========================================================
   SHOP PAGE FINAL HERO + MOBILE FILTER/SORT
========================================================= */

/* Remove all gap after header */
body.post-type-archive-product .gds-main,
body.tax-product_cat .gds-main,
body.post-type-archive-product .gds-container,
body.tax-product_cat .gds-container,
body.post-type-archive-product .gds-content-card,
body.tax-product_cat .gds-content-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gds-shop-page-new {
    width: 100%;
    background: #eef5fb;
}

.gds-shop-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hero */
.gds-shop-hero-band {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background:
        radial-gradient(circle at 16% 20%, rgba(244, 189, 53, 0.12), transparent 28%),
        linear-gradient(90deg, #f9f6ea 0%, #f3f8ff 48%, #e7f7f3 100%);
    border-top: 3px solid #0b355f;
    border-bottom: 1px solid #d9e5f2;
}

.gds-shop-hero-grid {
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 42px;
    align-items: center;
    padding: 40px 0;
}

.gds-shop-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 17px;
    border-radius: 999px;
    border: 1px solid rgba(223, 164, 17, 0.50);
    color: #d08c00;
    background: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.gds-shop-hero-title {
    margin: 20px 0 18px !important;
    max-width: 850px;
    color: #0b355f;
    font-size: clamp(44px, 5.2vw, 78px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -0.065em !important;
}

.gds-shop-hero-title span {
    display: block;
    color: #d89a13;
    font-style: italic;
    font-weight: 900;
}

.gds-shop-hero-text {
    max-width: 850px;
    margin: 0 0 26px !important;
    color: #143b62;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.gds-shop-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.gds-shop-hero-points span {
    color: #0b355f;
    font-size: 14px;
    font-weight: 900;
}

.gds-shop-hero-right {
    display: grid;
    gap: 14px;
}

.gds-shop-stat-card {
    min-height: 118px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #d7e3f0;
    box-shadow: 0 14px 30px rgba(15, 43, 95, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gds-shop-stat-card strong {
    display: block;
    color: #d89a13;
    font-size: 29px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 8px;
}

.gds-shop-stat-card span {
    color: #5a7290;
    font-size: 15px;
    font-weight: 800;
}

/* Content */
.gds-shop-content-band {
    width: 100%;
    padding: 28px 0 56px;
    background: #eef5fb;
}

.gds-shop-main-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

/* Mobile buttons hidden on desktop */
.gds-shop-mobile-actions {
    display: none;
}

/* Filter card */
.gds-shop-filter-card {
    background: #ffffff;
    border: 1px solid #d6e4f1;
    border-radius: 24px;
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05);
}

.gds-shop-panel-head {
    display: none;
}

.gds-shop-filter-card h3,
.gds-shop-panel-head h3 {
    margin: 0 0 14px !important;
    color: #2378a7;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.gds-shop-field {
    margin-bottom: 14px;
}

.gds-shop-field label {
    display: block;
    margin-bottom: 6px;
    color: #637994;
    font-size: 12px;
    font-weight: 800;
}

.gds-shop-field input[type="search"],
.gds-shop-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
}

.gds-shop-radio-list {
    display: grid;
    gap: 8px;
}

.gds-shop-radio-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #5e7590;
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.gds-shop-apply-btn,
.gds-shop-reset-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gds-shop-apply-btn {
    border: 0;
    background: #f1c44d;
    color: #0b355f;
    cursor: pointer;
    margin-top: 4px;
}

.gds-shop-reset-btn {
    margin-top: 10px;
    background: #dff0fb;
    color: #2378a7;
    border: 1px solid #b8d9ee;
}

/* Sort panel */
.gds-shop-sort-panel {
    display: none;
}

.gds-shop-sort-list {
    display: grid;
    gap: 10px;
}

.gds-shop-sort-list a {
    min-height: 46px;
    border-radius: 12px;
    background: #f9fbfe;
    border: 1px solid #d7e3f0;
    color: #0b355f;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 900;
}

.gds-shop-sort-list a.is-active {
    background: #f1c44d;
    border-color: #f1c44d;
}

/* Results */
.gds-shop-results-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.gds-shop-mini-title {
    display: inline-block;
    margin-bottom: 6px;
    color: #d89a13;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.gds-shop-results-top h2 {
    margin: 0 !important;
    color: #18395d;
    font-size: 21px !important;
    font-weight: 900 !important;
}

.gds-shop-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gds-shop-sort-box label {
    color: #566f8d;
    font-size: 12px;
    font-weight: 900;
}

.gds-shop-sort-box .woocommerce-ordering {
    margin: 0 !important;
}

.gds-shop-sort-box .orderby {
    min-height: 42px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #ffffff;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
}

.gds-shop-products-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gds-shop-products-card ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

.gds-shop-empty-box {
    background: #ffffff;
    border: 1px dashed #d4e2ef;
    border-radius: 20px;
    min-height: 190px;
    padding: 40px 24px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .gds-shop-shell {
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gds-shop-hero-band {
        border-top-width: 2px;
    }

    .gds-shop-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 14px 20px;
    }

    .gds-shop-hero-badge {
        min-height: 28px;
        padding: 0 12px;
        font-size: 10px;
    }

    .gds-shop-hero-title {
        font-size: 34px !important;
        line-height: 1.06 !important;
        margin: 14px 0 12px !important;
        letter-spacing: -0.055em !important;
    }

    .gds-shop-hero-text {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px !important;
    }

    .gds-shop-hero-points {
        display: grid;
        gap: 8px;
    }

    .gds-shop-hero-points span {
        font-size: 12px;
    }

    .gds-shop-hero-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gds-shop-stat-card {
        min-height: 80px;
        border-radius: 16px;
        padding: 14px 16px;
    }

    .gds-shop-stat-card strong {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .gds-shop-stat-card span {
        font-size: 12px;
    }

    .gds-shop-mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 10px;
        background: #eef5fb;
    }

    .gds-shop-mobile-filter-btn,
    .gds-shop-mobile-sort-btn {
        min-height: 44px;
        border: 1px solid #d7e3f0;
        border-radius: 12px;
        background: #ffffff;
        color: #0b355f;
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 8px 18px rgba(15, 43, 95, 0.05);
    }

    .gds-shop-mobile-filter-btn {
        background: #f1c44d;
        border-color: #f1c44d;
    }

    .gds-shop-content-band {
        padding: 0 0 38px;
    }

    .gds-shop-main-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 10px;
    }

    .gds-shop-sidebar,
    .gds-shop-sort-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        z-index: 99999;
        max-height: 86vh;
        overflow-y: auto;
        background: #ffffff;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -20px 60px rgba(15, 43, 95, 0.22);
        padding: 16px;
        transition: bottom 0.28s ease;
    }

    .gds-shop-sidebar.is-open,
    .gds-shop-sort-panel.is-open {
        bottom: 0;
    }

    body.gds-shop-panel-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(8, 36, 92, 0.42);
        z-index: 99998;
        backdrop-filter: blur(5px);
    }

    body.gds-shop-panel-open {
        overflow: hidden;
    }

    .gds-shop-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }

    .gds-shop-panel-head button {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 999px;
        background: #eef5fb;
        color: #0b355f;
        font-size: 24px;
        font-weight: 900;
    }

    .gds-shop-filter-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .gds-shop-filter-card h3 {
        display: none;
    }

    .gds-shop-sort-box {
        display: none;
    }

    .gds-shop-results-top {
        padding: 0 2px;
    }

    .gds-shop-results-top h2 {
        font-size: 18px !important;
    }

    .gds-shop-products-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
}

@media (max-width: 390px) {
    .gds-shop-hero-grid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .gds-shop-main-layout {
        padding-left: 8px;
        padding-right: 8px;
    }

    .gds-shop-hero-title {
        font-size: 30px !important;
    }

    .gds-shop-products-card ul.products {
        gap: 8px !important;
    }
}








/* =========================================================
   SHOP PAGE FINAL HERO + MOBILE FILTER/SORT
========================================================= */

/* Remove all gap after header */
body.post-type-archive-product .gds-main,
body.tax-product_cat .gds-main,
body.post-type-archive-product .gds-container,
body.tax-product_cat .gds-container,
body.post-type-archive-product .gds-content-card,
body.tax-product_cat .gds-content-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gds-shop-page-new {
    width: 100%;
    background: #eef5fb;
}

.gds-shop-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hero */
.gds-shop-hero-band {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background:
        radial-gradient(circle at 16% 20%, rgba(244, 189, 53, 0.12), transparent 28%),
        linear-gradient(90deg, #f9f6ea 0%, #f3f8ff 48%, #e7f7f3 100%);
    border-top: 3px solid #0b355f;
    border-bottom: 1px solid #d9e5f2;
}

.gds-shop-hero-grid {
    min-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 42px;
    align-items: center;
    padding: 40px 0;
}

.gds-shop-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 17px;
    border-radius: 999px;
    border: 1px solid rgba(223, 164, 17, 0.50);
    color: #d08c00;
    background: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.gds-shop-hero-title {
    margin: 20px 0 18px !important;
    max-width: 850px;
    color: #0b355f;
    font-size: clamp(44px, 5.2vw, 78px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -0.065em !important;
}

.gds-shop-hero-title span {
    display: block;
    color: #d89a13;
    font-style: italic;
    font-weight: 900;
}

.gds-shop-hero-text {
    max-width: 850px;
    margin: 0 0 26px !important;
    color: #143b62;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.gds-shop-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.gds-shop-hero-points span {
    color: #0b355f;
    font-size: 14px;
    font-weight: 900;
}

.gds-shop-hero-right {
    display: grid;
    gap: 14px;
}

.gds-shop-stat-card {
    min-height: 118px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #d7e3f0;
    box-shadow: 0 14px 30px rgba(15, 43, 95, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gds-shop-stat-card strong {
    display: block;
    color: #d89a13;
    font-size: 29px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 8px;
}

.gds-shop-stat-card span {
    color: #5a7290;
    font-size: 15px;
    font-weight: 800;
}

/* Content */
.gds-shop-content-band {
    width: 100%;
    padding: 28px 0 56px;
    background: #eef5fb;
}

.gds-shop-main-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

/* Mobile buttons hidden on desktop */
.gds-shop-mobile-actions {
    display: none;
}

/* Filter card */
.gds-shop-filter-card {
    background: #ffffff;
    border: 1px solid #d6e4f1;
    border-radius: 24px;
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(15, 43, 95, 0.05);
}

.gds-shop-panel-head {
    display: none;
}

.gds-shop-filter-card h3,
.gds-shop-panel-head h3 {
    margin: 0 0 14px !important;
    color: #2378a7;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.gds-shop-field {
    margin-bottom: 14px;
}

.gds-shop-field label {
    display: block;
    margin-bottom: 6px;
    color: #637994;
    font-size: 12px;
    font-weight: 800;
}

.gds-shop-field input[type="search"],
.gds-shop-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
}

.gds-shop-radio-list {
    display: grid;
    gap: 8px;
}

.gds-shop-radio-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #f9fbfe;
    color: #5e7590;
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.gds-shop-apply-btn,
.gds-shop-reset-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gds-shop-apply-btn {
    border: 0;
    background: #f1c44d;
    color: #0b355f;
    cursor: pointer;
    margin-top: 4px;
}

.gds-shop-reset-btn {
    margin-top: 10px;
    background: #dff0fb;
    color: #2378a7;
    border: 1px solid #b8d9ee;
}

/* Sort panel */
.gds-shop-sort-panel {
    display: none;
}

.gds-shop-sort-list {
    display: grid;
    gap: 10px;
}

.gds-shop-sort-list a {
    min-height: 46px;
    border-radius: 12px;
    background: #f9fbfe;
    border: 1px solid #d7e3f0;
    color: #0b355f;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 900;
}

.gds-shop-sort-list a.is-active {
    background: #f1c44d;
    border-color: #f1c44d;
}

/* Results */
.gds-shop-results-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.gds-shop-mini-title {
    display: inline-block;
    margin-bottom: 6px;
    color: #d89a13;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.gds-shop-results-top h2 {
    margin: 0 !important;
    color: #18395d;
    font-size: 21px !important;
    font-weight: 900 !important;
}

.gds-shop-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gds-shop-sort-box label {
    color: #566f8d;
    font-size: 12px;
    font-weight: 900;
}

.gds-shop-sort-box .woocommerce-ordering {
    margin: 0 !important;
}

.gds-shop-sort-box .orderby {
    min-height: 42px;
    border: 1px solid #d7e3f0;
    border-radius: 12px;
    background: #ffffff;
    color: #0b355f;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
}

.gds-shop-products-card ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gds-shop-products-card ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

.gds-shop-empty-box {
    background: #ffffff;
    border: 1px dashed #d4e2ef;
    border-radius: 20px;
    min-height: 190px;
    padding: 40px 24px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .gds-shop-shell {
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gds-shop-hero-band {
        border-top-width: 2px;
    }

    .gds-shop-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 14px 20px;
    }

    .gds-shop-hero-badge {
        min-height: 28px;
        padding: 0 12px;
        font-size: 10px;
    }

    .gds-shop-hero-title {
        font-size: 34px !important;
        line-height: 1.06 !important;
        margin: 14px 0 12px !important;
        letter-spacing: -0.055em !important;
    }

    .gds-shop-hero-text {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px !important;
    }

    .gds-shop-hero-points {
        display: grid;
        gap: 8px;
    }

    .gds-shop-hero-points span {
        font-size: 12px;
    }

    .gds-shop-hero-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gds-shop-stat-card {
        min-height: 80px;
        border-radius: 16px;
        padding: 14px 16px;
    }

    .gds-shop-stat-card strong {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .gds-shop-stat-card span {
        font-size: 12px;
    }

    .gds-shop-mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 10px;
        background: #eef5fb;
    }

    .gds-shop-mobile-filter-btn,
    .gds-shop-mobile-sort-btn {
        min-height: 44px;
        border: 1px solid #d7e3f0;
        border-radius: 12px;
        background: #ffffff;
        color: #0b355f;
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 8px 18px rgba(15, 43, 95, 0.05);
    }

    .gds-shop-mobile-filter-btn {
        background: #f1c44d;
        border-color: #f1c44d;
    }

    .gds-shop-content-band {
        padding: 0 0 38px;
    }

    .gds-shop-main-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 10px;
    }

    .gds-shop-sidebar,
    .gds-shop-sort-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        z-index: 99999;
        max-height: 86vh;
        overflow-y: auto;
        background: #ffffff;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -20px 60px rgba(15, 43, 95, 0.22);
        padding: 16px;
        transition: bottom 0.28s ease;
    }

    .gds-shop-sidebar.is-open,
    .gds-shop-sort-panel.is-open {
        bottom: 0;
    }

    body.gds-shop-panel-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(8, 36, 92, 0.42);
        z-index: 99998;
        backdrop-filter: blur(5px);
    }

    body.gds-shop-panel-open {
        overflow: hidden;
    }

    .gds-shop-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }

    .gds-shop-panel-head button {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 999px;
        background: #eef5fb;
        color: #0b355f;
        font-size: 24px;
        font-weight: 900;
    }

    .gds-shop-filter-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .gds-shop-filter-card h3 {
        display: none;
    }

    .gds-shop-sort-box {
        display: none;
    }

    .gds-shop-results-top {
        padding: 0 2px;
    }

    .gds-shop-results-top h2 {
        font-size: 18px !important;
    }

    .gds-shop-products-card ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
}

@media (max-width: 390px) {
    .gds-shop-hero-grid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .gds-shop-main-layout {
        padding-left: 8px;
        padding-right: 8px;
    }

    .gds-shop-hero-title {
        font-size: 30px !important;
    }

    .gds-shop-products-card ul.products {
        gap: 8px !important;
    }
}






/* =========================================================
   SHOP MOBILE HERO DESKTOP-LIKE LAYOUT
   Keep text left + stats right on mobile
========================================================= */

@media (max-width: 768px) {

    body.post-type-archive-product .gds-shop-hero-band,
    body.tax-product_cat .gds-shop-hero-band {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        position: relative !important;
        border-radius: 0 !important;
        background:
            radial-gradient(circle at 12% 18%, rgba(244, 189, 53, 0.16), transparent 30%),
            linear-gradient(90deg, #f9f6ea 0%, #f3f8ff 52%, #e7f7f3 100%) !important;
    }

    body.post-type-archive-product .gds-shop-hero-band .gds-shop-shell,
    body.tax-product_cat .gds-shop-hero-band .gds-shop-shell {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }

    body.post-type-archive-product .gds-shop-hero-grid,
    body.tax-product_cat .gds-shop-hero-grid {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 260px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1.45fr) minmax(96px, 0.55fr) !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 16px 10px !important;
    }

    body.post-type-archive-product .gds-shop-hero-left,
    body.tax-product_cat .gds-shop-hero-left,
    body.post-type-archive-product .gds-shop-hero-right,
    body.tax-product_cat .gds-shop-hero-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    body.post-type-archive-product .gds-shop-hero-badge,
    body.tax-product_cat .gds-shop-hero-badge {
        min-height: 24px !important;
        padding: 0 9px !important;
        font-size: 8px !important;
        letter-spacing: 0.03em !important;
        margin-bottom: 8px !important;
    }

    body.post-type-archive-product .gds-shop-hero-title,
    body.tax-product_cat .gds-shop-hero-title {
        font-size: 25px !important;
        line-height: 1.02 !important;
        letter-spacing: -0.055em !important;
        margin: 8px 0 8px !important;
        max-width: 100% !important;
    }

    body.post-type-archive-product .gds-shop-hero-title span,
    body.tax-product_cat .gds-shop-hero-title span {
        display: block !important;
        font-size: 24px !important;
        line-height: 1.03 !important;
    }

    body.post-type-archive-product .gds-shop-hero-text,
    body.tax-product_cat .gds-shop-hero-text {
        max-width: 100% !important;
        font-size: 10px !important;
        line-height: 1.45 !important;
        margin: 0 0 9px !important;
    }

    body.post-type-archive-product .gds-shop-hero-points,
    body.tax-product_cat .gds-shop-hero-points {
        display: grid !important;
        gap: 4px !important;
        margin-top: 0 !important;
    }

    body.post-type-archive-product .gds-shop-hero-points span,
    body.tax-product_cat .gds-shop-hero-points span {
        font-size: 9px !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;
        white-space: nowrap !important;
    }

    body.post-type-archive-product .gds-shop-hero-right,
    body.tax-product_cat .gds-shop-hero-right {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        align-self: center !important;
    }

    body.post-type-archive-product .gds-shop-stat-card,
    body.tax-product_cat .gds-shop-stat-card {
        width: 100% !important;
        min-height: 66px !important;
        padding: 10px 11px !important;
        border-radius: 14px !important;
        box-shadow: 0 8px 18px rgba(15, 43, 95, 0.05) !important;
    }

    body.post-type-archive-product .gds-shop-stat-card strong,
    body.tax-product_cat .gds-shop-stat-card strong {
        font-size: 18px !important;
        line-height: 1 !important;
        margin-bottom: 5px !important;
    }

    body.post-type-archive-product .gds-shop-stat-card span,
    body.tax-product_cat .gds-shop-stat-card span {
        font-size: 9px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
    }
}

/* Extra small mobile */
@media (max-width: 390px) {

    body.post-type-archive-product .gds-shop-hero-grid,
    body.tax-product_cat .gds-shop-hero-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(88px, 0.5fr) !important;
        gap: 8px !important;
        padding: 14px 8px !important;
        min-height: 245px !important;
    }

    body.post-type-archive-product .gds-shop-hero-title,
    body.tax-product_cat .gds-shop-hero-title {
        font-size: 22px !important;
    }

    body.post-type-archive-product .gds-shop-hero-title span,
    body.tax-product_cat .gds-shop-hero-title span {
        font-size: 21px !important;
    }

    body.post-type-archive-product .gds-shop-hero-text,
    body.tax-product_cat .gds-shop-hero-text {
        font-size: 9px !important;
    }

    body.post-type-archive-product .gds-shop-hero-points span,
    body.tax-product_cat .gds-shop-hero-points span {
        font-size: 8px !important;
    }

    body.post-type-archive-product .gds-shop-stat-card,
    body.tax-product_cat .gds-shop-stat-card {
        min-height: 60px !important;
        padding: 9px !important;
        border-radius: 12px !important;
    }

    body.post-type-archive-product .gds-shop-stat-card strong,
    body.tax-product_cat .gds-shop-stat-card strong {
        font-size: 16px !important;
    }

    body.post-type-archive-product .gds-shop-stat-card span,
    body.tax-product_cat .gds-shop-stat-card span {
        font-size: 8px !important;
    }
}




























/* =========================================================
   SHOP PAGE HERO FINAL FIX
   Smaller banner + stat cards in one row on mobile
========================================================= */

/* Desktop banner smaller and professional */
.gds-shop-hero-band {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    background:
        radial-gradient(circle at 8% 12%, rgba(20, 184, 166, 0.10), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(246, 194, 63, 0.12), transparent 28%),
        linear-gradient(135deg, #f8fcff 0%, #eef8ff 50%, #ffffff 100%) !important;
    border-top: 0 !important;
    border-bottom: 1px solid #dbe8f7 !important;
}

.gds-shop-shell {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.gds-shop-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 42px !important;
    align-items: center !important;
}

.gds-shop-hero-badge {
    min-height: 32px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    background: #fff8e7 !important;
    border: 1px solid rgba(246, 194, 63, 0.45) !important;
    color: #c88900 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
}

.gds-shop-hero-title {
    margin: 18px 0 16px !important;
    color: #08245c !important;
    font-size: clamp(44px, 4.6vw, 68px) !important;
    line-height: 1.04 !important;
    font-weight: 950 !important;
    letter-spacing: -0.06em !important;
}

.gds-shop-hero-title span {
    display: block !important;
    color: #e2a800 !important;
}

.gds-shop-hero-text {
    max-width: 780px !important;
    margin: 0 0 22px !important;
    color: #445b76 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    font-weight: 600 !important;
}

.gds-shop-hero-points {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
}

.gds-shop-hero-points span {
    color: #08245c !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

/* Desktop stat cards */
.gds-shop-hero-right {
    display: grid !important;
    gap: 14px !important;
}

.gds-shop-stat-card {
    min-height: 112px !important;
    padding: 22px 24px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border: 1px solid #dbe8f7 !important;
    box-shadow: 0 14px 34px rgba(15, 43, 95, 0.08) !important;
}

.gds-shop-stat-card strong {
    display: block !important;
    margin-bottom: 8px !important;
    color: #e2a800 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
}

.gds-shop-stat-card span {
    color: #526981 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

/* =========================================================
   MOBILE SHOP HERO FIX
========================================================= */

@media (max-width: 768px) {

    .gds-shop-hero-band {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
        overflow-x: hidden !important;
    }

    .gds-shop-shell {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    /* Banner content in one clean column */
    .gds-shop-hero-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        align-items: start !important;
    }

    .gds-shop-hero-badge {
        min-height: 26px !important;
        padding: 0 11px !important;
        font-size: 8.5px !important;
        margin-bottom: 8px !important;
    }

    .gds-shop-hero-title {
        margin: 0 0 10px !important;
        font-size: 30px !important;
        line-height: 1.06 !important;
        letter-spacing: -0.045em !important;
    }

    .gds-shop-hero-text {
        margin-bottom: 12px !important;
        font-size: 11px !important;
        line-height: 1.5 !important;
    }

    .gds-shop-hero-points {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    .gds-shop-hero-points span {
        min-height: 30px !important;
        padding: 0 6px !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        border: 1px solid #dbe8f7 !important;
        color: #08245c !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 7.4px !important;
        line-height: 1.1 !important;
        font-weight: 900 !important;
        white-space: normal !important;
        box-shadow: 0 8px 18px rgba(15, 43, 95, 0.05) !important;
    }

    /* 3 stat cards in one row on mobile */
    .gds-shop-hero-right {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
        width: 100% !important;
    }

    .gds-shop-stat-card {
        min-height: 76px !important;
        padding: 12px 8px !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        border: 1px solid #dbe8f7 !important;
        box-shadow: 0 10px 24px rgba(15, 43, 95, 0.07) !important;
    }

    .gds-shop-stat-card strong {
        margin-bottom: 6px !important;
        color: #e2a800 !important;
        font-size: 20px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .gds-shop-stat-card span {
        display: block !important;
        color: #526981 !important;
        font-size: 9px !important;
        line-height: 1.22 !important;
        font-weight: 900 !important;
    }

    /* Mobile filter/sort buttons better */
    .gds-shop-mobile-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 10px !important;
        background: #f4f9ff !important;
        border-top: 1px solid #dbe8f7 !important;
        border-bottom: 1px solid #dbe8f7 !important;
    }

    .gds-shop-mobile-filter-btn,
    .gds-shop-mobile-sort-btn {
        min-height: 40px !important;
        border-radius: 999px !important;
        border: 1px solid #dbe8f7 !important;
        background: #ffffff !important;
        color: #08245c !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        box-shadow: 0 8px 18px rgba(15, 43, 95, 0.06) !important;
    }

    .gds-shop-mobile-filter-btn {
        background: #f6c23f !important;
        border-color: #f6c23f !important;
    }
}

/* Extra small mobile */
@media (max-width: 390px) {

    .gds-shop-hero-title {
        font-size: 27px !important;
    }

    .gds-shop-hero-text {
        font-size: 10.5px !important;
    }

    .gds-shop-hero-points span {
        font-size: 6.8px !important;
        padding: 0 4px !important;
    }

    .gds-shop-stat-card {
        min-height: 70px !important;
        padding: 10px 6px !important;
    }

    .gds-shop-stat-card strong {
        font-size: 18px !important;
    }

    .gds-shop-stat-card span {
        font-size: 8px !important;
    }
}












/* =========================================================
   SHOP INFINITE SCROLL FINAL FIX
========================================================= */

/* Hide WooCommerce pagination completely */
.gds-shop-pagination-source,
.gds-shop-products-card nav.woocommerce-pagination,
.gds-shop-products-card .woocommerce-pagination,
.woocommerce nav.woocommerce-pagination,
.woocommerce-pagination {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hidden data */
.gds-shop-infinite-data {
    display: none !important;
}

/* Loader */
.gds-shop-infinite-loader {
    width: 100%;
    margin: 26px auto 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    box-shadow: 0 14px 34px rgba(15, 43, 95, 0.07);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #08245c;
    font-size: 14px;
    font-weight: 900;
}

.gds-shop-infinite-loader.is-visible {
    display: flex !important;
}

.gds-shop-infinite-loader.is-hidden {
    display: none !important;
}

.gds-shop-loader-spinner {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 3px solid #dbe7f6;
    border-top-color: #f6c23f;
    animation: gdsShopLoaderSpin 0.75s linear infinite;
}

@keyframes gdsShopLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.gds-shop-load-complete {
    display: none;
    width: fit-content;
    margin: 24px auto 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 13px;
    font-weight: 900;
}

.gds-shop-load-complete.is-visible {
    display: block !important;
}

.gds-shop-scroll-trigger {
    width: 100%;
    height: 10px;
}

.gds-product-loaded-by-scroll {
    animation: gdsProductFadeUp 0.35s ease both;
}

@keyframes gdsProductFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
