/* =====================================================
ZAVE PESCAR CUSTOM FONT
Pune fonturile in: public/assets/fonts/
===================================================== */
@font-face {
    font-family: 'ZaveCustom';
    src: url('/assets/fonts/ZaveCustom-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'ZaveCustom';
    src: url('/assets/fonts/ZaveCustom-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'ZaveCustom';
    src: url('/assets/fonts/ZaveCustom-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

:root {
    --zp-font-main: 'ZaveCustom', 'Segoe UI', Arial, sans-serif;
    --zp-dark: #0f172a;
    --zp-dark-2: #111827;
    --zp-green: #0f3d2e;
    --zp-green-2: #0b2a20;
    --zp-green-soft: #e8f3ed;
    --zp-orange: #f59e0b;
    --zp-orange-dark: #d97706;
    --zp-text: #102015;
    --zp-muted: #647067;
    --zp-card: #ffffff;
    --zp-border: rgba(15, 61, 46, 0.12);
    --zp-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --zp-radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--zp-font-main);
    font-size: 16px;
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 34rem),
        linear-gradient(180deg, #f8fbf9 0%, #eef5f0 100%);
    color: var(--zp-text);
}

body,
input,
button,
textarea,
select,
option,
table,
a,
p,
span,
div,
label,
small,
strong,
em,
li,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
body * {
    font-family: var(--zp-font-main) !important;
}

.topbar {
    background: #102015;
    color: #fff;
    padding: 10px 40px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.header {
    background: #ffffff;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.logo,
.site-logo-text {
    font-size: 30px;
    font-weight: 800;
    color: #0f3d2e;
}

.logo span,
.site-logo-text span {
    color: #e28b22;
}

.site-logo {
    align-items: center;
    color: inherit;
    display: inline-flex;
    flex: 0 0 auto;
    max-width: 220px;
    min-height: 44px;
    text-decoration: none;
}

.site-logo img {
    display: block;
    max-height: 58px;
    max-width: 220px;
    object-fit: contain;
    width: auto;
}

.nav a {
    margin-left: 22px;
    text-decoration: none;
    color: #102015;
    font-weight: 600;
}

.logout-form {
    display: inline-block;
    margin: 0 0 0 22px;
}

.logout-form button {
    background: transparent;
    border: 0;
    color: #102015;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 0;
}

.logout-form button:hover {
    color: #e28b22;
}

.hero {
    min-height: 420px;
    background: linear-gradient(120deg, #0f3d2e, #102015);
    color: white;
    padding: 70px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-video-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.hero-video-bg iframe {
    border: 0;
    height: 67.5vw;
    left: 50%;
    min-height: 120%;
    min-width: 213.33vh;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
}

.hero-overlay {
    background: rgba(16, 32, 21, 0.72);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 54px;
    margin: 0 0 18px;
    line-height: 1.05;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #dfeee5;
}

.btn {
    display: inline-block;
    background: #e28b22;
    color: white;
    padding: 15px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 18px;
}

.btn-small {
    border-radius: 6px;
    font-size: 14px;
    margin-top: 16px;
    padding: 11px 16px;
}

.btn-secondary {
    background: #0f3d2e;
}

.btn-danger {
    background: #a33a2f;
}

.btn.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

.section {
    padding: 55px 40px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0f3d2e;
}

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

.card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    min-height: 120px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin: 0 0 8px;
    color: #102015;
}

.card p {
    margin: 0;
    color: #617064;
}

.card-link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.card-link:hover h3,
.category-card h3 a:hover,
.subcategory-links a:hover,
.back-link:hover {
    color: #e28b22;
}

.category-grid {
    align-items: stretch;
}

.category-card h3 a {
    color: #102015;
    text-decoration: none;
}

.subcategory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.subcategory-links a {
    background: #f4f7f4;
    border-radius: 8px;
    color: #0f3d2e;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    text-decoration: none;
}

.category-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.category-heading h2 {
    margin-bottom: 12px;
}

.category-heading p {
    color: #617064;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.back-link {
    color: #0f3d2e;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
}

.subcategory-section {
    margin-bottom: 35px;
}

.subcategory-section h3 {
    color: #0f3d2e;
    font-size: 24px;
    margin: 0 0 18px;
}

.empty-state {
    background: #ffffff;
    border: 1px dashed #9fb2a6;
    border-radius: 8px;
    color: #617064;
    padding: 24px;
}

.product-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-image-fallback {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(120deg, #e8f0ea, #f8faf8);
    color: #0f3d2e;
    display: flex;
    font-weight: 800;
    justify-content: center;
    text-decoration: none;
}

.image-fallback {
    align-items: center;
    color: #0f3d2e;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    text-align: center;
}

.image-fallback small {
    color: #617064;
    font-size: 13px;
}

.product-image-fallback img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.product-meta a,
.product-meta span {
    color: #617064;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.product-meta a:hover {
    color: #e28b22;
}

.product-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.product-card h3 a {
    color: #102015;
    text-decoration: none;
}

.product-card h3 a:hover {
    color: #e28b22;
}

.product-card p {
    color: #617064;
    flex: 1;
    line-height: 1.5;
    margin: 0;
}

.product-card-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.product-actions .btn {
    margin-top: 0;
}

.product-actions form {
    margin: 0;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.price,
.sale-price {
    color: #0f3d2e;
    font-size: 21px;
    font-weight: 800;
}

.sale-price {
    color: #e28b22;
}

.old-price {
    color: #8c9a90;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}

.stock-badge {
    border-radius: 999px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 10px;
}

.stock-badge.in-stock {
    background: #e8f5ec;
    color: #0f6b3e;
}

.stock-badge.limited-stock {
    background: #fff4df;
    color: #9a5d12;
}

.stock-badge.out-of-stock {
    background: #f8e8e8;
    color: #a33a2f;
}

.pagination-wrap {
    margin-top: 32px;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-wrap a,
.pagination-wrap span {
    color: #0f3d2e;
    text-decoration: none;
}

.pagination-wrap a,
.pagination-wrap [aria-current="page"] span {
    background: #ffffff;
    border: 1px solid #d7e1da;
    border-radius: 6px;
    display: inline-block;
    padding: 8px 11px;
}

.pagination-wrap [aria-current="page"] span {
    background: #0f3d2e;
    border-color: #0f3d2e;
    color: #ffffff;
}

.product-detail {
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
}

.product-gallery {
    min-width: 0;
}

.product-detail-image {
    border-radius: 8px;
    min-height: 360px;
}

.product-thumbnails {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 12px;
}

.product-thumbnail {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    color: #617064;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: center;
    overflow: hidden;
}

.product-thumbnail.is-main {
    border-color: #e28b22;
}

.product-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-detail-content h2 {
    margin: 0 0 14px;
}

.detail-meta {
    margin-bottom: 18px;
}

.lead-text {
    color: #102015;
    font-size: 19px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.product-description {
    color: #617064;
    line-height: 1.7;
    margin-bottom: 24px;
}

.detail-price-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 8px;
}

.cart-note {
    color: #617064;
    margin: 12px 0 0;
}

.wishlist-box {
    margin-top: 18px;
}

.wishlist-box p {
    color: #617064;
    line-height: 1.5;
}

.wishlist-box a,
.empty-state a {
    color: #e28b22;
    font-weight: 800;
    text-decoration: none;
}

.rating-summary {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.rating-stars {
    color: #e28b22;
    font-weight: 800;
}

.reviews-section {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 380px;
}

.reviews-list h2,
.review-form-wrap h2 {
    color: #0f3d2e;
    margin-top: 0;
}

.review-card,
.review-form-wrap {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
    padding: 22px;
}

.review-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-card h3 {
    color: #102015;
    margin: 0 0 10px;
}

.review-card p {
    color: #617064;
    line-height: 1.6;
}

.verified-badge {
    background: #e8f5ec;
    border-radius: 999px;
    color: #0f6b3e;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 10px;
}

.review-form label {
    color: #102015;
    display: block;
    font-weight: 800;
    margin-bottom: 16px;
}

.review-form input,
.review-form select,
.review-form textarea {
    border: 1px solid #cbd8cf;
    border-radius: 6px;
    box-sizing: border-box;
    display: block;
    font: inherit;
    margin-top: 8px;
    padding: 12px;
    width: 100%;
}

.review-form .btn {
    border: 0;
    cursor: pointer;
}

.flash-wrap {
    padding: 18px 40px 0;
}

.inline-flash {
    padding: 0 0 20px;
}

.flash-message {
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 14px 18px;
}

.flash-success {
    background: #e8f5ec;
    color: #0f6b3e;
}

.flash-error {
    background: #f8e8e8;
    color: #a33a2f;
}

.flash-warning {
    background: #fff4df;
    color: #9a5d12;
}

.cart-table-wrap {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.cart-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.cart-table th,
.cart-table td {
    border-bottom: 1px solid #e2e8e4;
    padding: 16px;
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    color: #0f3d2e;
    font-size: 14px;
    text-transform: uppercase;
}

.cart-table tr:last-child td {
    border-bottom: 0;
}

.cart-product-name {
    color: #102015;
    display: block;
    font-weight: 800;
    text-decoration: none;
}

.cart-product-name:hover {
    color: #e28b22;
}

.cart-product-sku {
    color: #617064;
    display: block;
    font-size: 13px;
    margin-top: 6px;
}

.quantity-input {
    border: 1px solid #cbd8cf;
    border-radius: 6px;
    font-size: 16px;
    max-width: 82px;
    padding: 10px;
}

.link-button {
    background: transparent;
    border: 0;
    color: #a33a2f;
    cursor: pointer;
    font-weight: 800;
    padding: 0;
}

.cart-layout,
.checkout-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin-top: 28px;
}

.cart-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-actions .btn {
    border: 0;
    cursor: pointer;
    margin-top: 0;
}

.order-summary {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.order-summary h3 {
    color: #0f3d2e;
    margin: 0 0 18px;
}

.summary-row,
.summary-item {
    align-items: flex-start;
    border-bottom: 1px solid #e2e8e4;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0;
}

.summary-row span,
.summary-item span {
    color: #617064;
}

.summary-total {
    border-bottom: 0;
    font-size: 20px;
}

.summary-note {
    color: #617064;
    line-height: 1.5;
    margin: 12px 0 0;
}

.free-shipping-notice {
    background: #f4f7f4;
    border-radius: 8px;
    padding: 12px;
}

.summary-items {
    margin-bottom: 10px;
}

.checkout-form {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.checkout-form h3 {
    color: #0f3d2e;
    margin: 22px 0 14px;
}

.checkout-form h3:first-child {
    margin-top: 0;
}

.checkout-form label {
    color: #102015;
    display: block;
    font-weight: 800;
    margin-bottom: 16px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form textarea {
    border: 1px solid #cbd8cf;
    border-radius: 6px;
    box-sizing: border-box;
    display: block;
    font: inherit;
    margin-top: 8px;
    padding: 12px;
    width: 100%;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-error {
    color: #a33a2f;
    display: block;
    font-size: 13px;
    margin-top: 6px;
}

.payment-option {
    align-items: center;
    background: #f4f7f4;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    padding: 12px;
}

.payment-option input {
    margin: 0;
}

.payment-status-badge {
    background: #fff4df;
    border-radius: 999px;
    color: #9a5d12;
    display: inline-block;
    font-size: 12px;
    margin-left: 6px;
    padding: 4px 8px;
}

.payment-info-box {
    background: #ffffff;
    border: 1px dashed #cbd8cf;
    border-radius: 8px;
    color: #617064;
    line-height: 1.5;
    margin: -6px 0 16px;
    padding: 12px;
}

.payment-inactive-notice {
    margin: 18px 0;
}

.disabled-option {
    color: #8c9a90;
    opacity: 0.75;
}

.shipping-method {
    background: #f4f7f4;
    border-radius: 8px;
    color: #0f3d2e;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 12px;
}

.checkout-form button.btn {
    border: 0;
    cursor: pointer;
}

.thank-you-box {
    max-width: 720px;
}

.thank-you-box h2 {
    color: #0f3d2e;
    margin-top: 0;
}

.thank-you-box > p {
    color: #617064;
    font-size: 18px;
    line-height: 1.6;
}

.auth-section {
    display: flex;
    justify-content: center;
}

.auth-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    max-width: 460px;
    padding: 30px;
    width: 100%;
}

.auth-card h2 {
    color: #0f3d2e;
    margin: 0 0 10px;
}

.auth-card p {
    color: #617064;
    line-height: 1.5;
}

.auth-card label,
.account-form label {
    color: #102015;
    display: block;
    font-weight: 800;
    margin-bottom: 16px;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.account-form input[type="text"],
.account-form input[type="email"],
.account-form textarea {
    border: 1px solid #cbd8cf;
    border-radius: 6px;
    box-sizing: border-box;
    display: block;
    font: inherit;
    margin-top: 8px;
    padding: 12px;
    width: 100%;
}

.auth-checkbox {
    align-items: center;
    display: flex;
    gap: 10px;
}

.auth-checkbox input {
    margin: 0;
}

.auth-switch {
    margin: 20px 0 0;
}

.auth-switch a {
    color: #e28b22;
    font-weight: 800;
    text-decoration: none;
}

.account-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: 240px minmax(0, 1fr);
}

.account-nav {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
}

.account-nav a,
.account-nav span {
    border-radius: 8px;
    color: #0f3d2e;
    font-weight: 800;
    padding: 11px 12px;
    text-decoration: none;
}

.account-nav a:hover {
    background: #f4f7f4;
    color: #e28b22;
}

.account-nav span {
    color: #8c9a90;
}

.account-content h2 {
    color: #0f3d2e;
    margin-top: 0;
}

.account-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.account-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    color: #102015;
    display: block;
    margin-bottom: 22px;
    padding: 24px;
    text-decoration: none;
}

.account-card h3 {
    color: #0f3d2e;
    margin: 0 0 16px;
}

.account-card > span {
    color: #617064;
    display: block;
    font-weight: 800;
    margin-bottom: 10px;
}

.account-card > strong {
    color: #e28b22;
    display: block;
    font-size: 26px;
}

.account-card-link:hover strong {
    color: #0f3d2e;
}

.account-table-wrap {
    overflow-x: auto;
}

.account-table {
    border-collapse: collapse;
    min-width: 640px;
    width: 100%;
}

.account-table th,
.account-table td {
    border-bottom: 1px solid #e2e8e4;
    padding: 13px 12px;
    text-align: left;
}

.account-table th {
    color: #0f3d2e;
    font-size: 13px;
    text-transform: uppercase;
}

.account-table a {
    color: #0f3d2e;
    font-weight: 800;
    text-decoration: none;
}

.account-table a:hover {
    color: #e28b22;
}

.account-form .btn {
    border: 0;
    cursor: pointer;
}

.settings-page {
    max-width: 760px;
}

.settings-page > p {
    color: #617064;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.settings-form {
    margin-top: 20px;
}

.page-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    max-width: 900px;
    padding: 34px;
}

.page-content h1 {
    color: #0f3d2e;
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.page-content h2 {
    color: #0f3d2e;
    font-size: 24px;
    margin: 28px 0 10px;
}

.page-content p {
    color: #617064;
    font-size: 17px;
}

.page-note {
    background: #fff4df;
    border-radius: 8px;
    color: #9a5d12 !important;
    font-weight: 700;
    padding: 12px;
}

.page-content a:not(.btn) {
    color: #e28b22;
    font-weight: 800;
    text-decoration: none;
}

.footer {
    background: #102015;
    color: #dfeee5;
    padding: 35px 40px;
}

.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    text-align: left;
}

.footer h3 {
    color: #ffffff;
    margin: 0 0 14px;
}

.footer p {
    color: #dfeee5;
    margin: 0;
}

.footer-credit {
    color: #ffffff;
    font-weight: 700;
    margin-top: 10px;
}

.footer-admin-link {
    color: #dfeee5;
    display: inline-block;
    font-size: 13px;
    margin-top: 12px;
    opacity: 0.75;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: #dfeee5;
    line-height: 1.4;
    text-decoration: none;
}

.footer-admin-link:hover,
.footer-links a:hover {
    color: #e28b22;
    opacity: 1;
}

.footer-assets {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    padding-top: 24px;
}

.asset-logo-section h3 {
    color: #ffffff;
    margin: 0 0 14px;
}

.asset-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.asset-logo-card {
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    color: #102015;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    min-width: 86px;
    padding: 8px 10px;
}

.asset-logo-card img {
    display: block;
    max-height: 34px;
    max-width: 110px;
    object-fit: contain;
}

.cookie-consent {
    align-items: center;
    background: #102015;
    border-radius: 8px;
    bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    display: flex;
    gap: 18px;
    left: 18px;
    max-width: 760px;
    padding: 18px;
    position: fixed;
    right: 18px;
    z-index: 50;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent-text {
    color: #dfeee5;
    flex: 1;
    line-height: 1.5;
}

.cookie-consent-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-consent-actions a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent-actions button {
    background: #e28b22;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    padding: 11px 16px;
}

.admin-shell {
    background: #f4f7f4;
    color: #102015;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: #102015;
    color: #ffffff;
    padding: 28px 22px;
}

.admin-logo {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
}

.admin-logo span {
    color: #e28b22;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar a {
    border-radius: 8px;
    color: #dfeee5;
    font-weight: 700;
    padding: 11px 12px;
    text-decoration: none;
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.admin-content {
    padding: 34px;
}

.admin-page-header {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.admin-page-header h1 {
    color: #0f3d2e;
    font-size: 34px;
    margin: 0;
}

.admin-page-header p {
    color: #617064;
    margin: 8px 0 0;
}

.admin-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    padding: 24px;
}

.admin-card h2 {
    color: #0f3d2e;
    margin: 0 0 16px;
}

.admin-card > span {
    color: #617064;
    display: block;
    font-weight: 800;
    margin-bottom: 10px;
}

.admin-card > strong {
    color: #e28b22;
    display: block;
    font-size: 34px;
}

.admin-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #e2e8e4;
    padding: 13px 12px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #0f3d2e;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table a,
.admin-small-link {
    color: #0f3d2e;
    font-weight: 800;
    text-decoration: none;
}

.admin-table a:hover,
.admin-small-link:hover {
    color: #e28b22;
}

.admin-small-link {
    display: inline-block;
    font-size: 12px;
    margin-left: 8px;
}

.admin-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-actions a {
    color: #0f3d2e;
    font-weight: 800;
    text-decoration: none;
}

.admin-link-danger {
    background: transparent;
    border: 0;
    color: #a33a2f;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0;
}

.admin-btn {
    background: #e28b22;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-weight: 800;
    padding: 12px 16px;
    text-decoration: none;
}

.admin-btn.secondary {
    background: #0f3d2e;
}

.admin-btn.danger {
    background: #a33a2f;
}

.admin-badge {
    background: #e8f5ec;
    border-radius: 999px;
    color: #0f6b3e;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 9px;
}

.admin-badge.status-pending {
    background: #fff4df;
    color: #9a5d12;
}

.admin-badge.status-approved {
    background: #e8f5ec;
    color: #0f6b3e;
}

.admin-badge.status-rejected {
    background: #f8e8e8;
    color: #a33a2f;
}

.admin-form,
.admin-filter-form {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    padding: 24px;
}

.admin-form-grid,
.admin-filter-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-filter-form {
    align-items: end;
    box-shadow: none;
    grid-template-columns: minmax(220px, 1fr) 180px auto auto;
    padding: 0 0 18px;
}

.admin-form label,
.admin-filter-form label,
.admin-inline-form label {
    color: #102015;
    display: block;
    font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-filter-form input,
.admin-filter-form select,
.admin-inline-form select {
    border: 1px solid #cbd8cf;
    border-radius: 6px;
    box-sizing: border-box;
    display: block;
    font: inherit;
    margin-top: 8px;
    padding: 12px;
    width: 100%;
}

.admin-help-text {
    color: #617064;
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.admin-product-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    font-size: 11px;
    min-height: 62px;
    width: 72px;
}

.admin-product-thumb img {
    border-radius: 8px;
}

.admin-product-thumb .image-fallback {
    gap: 2px;
    padding: 4px;
}

.admin-product-thumb .image-fallback strong {
    font-size: 10px;
}

.admin-product-thumb .image-fallback small {
    font-size: 9px;
}

.admin-image-list {
    background: #f4f7f4;
    border-radius: 8px;
    margin: 20px 0;
    padding: 18px;
}

.admin-image-list h3 {
    color: #0f3d2e;
    margin: 0 0 14px;
}

.admin-image-item {
    align-items: flex-start;
    background: #ffffff;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 120px minmax(0, 1fr);
    margin-bottom: 12px;
    padding: 14px;
}

.admin-image-preview {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #f4f7f4;
    border-radius: 8px;
    color: #617064;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: center;
    overflow: hidden;
}

.admin-image-preview img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.admin-image-meta {
    display: grid;
    gap: 10px;
}

.admin-image-meta span {
    color: #617064;
    overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
    .topbar {
        gap: 10px;
    }

    .header {
        align-items: flex-start;
        gap: 14px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .nav a,
    .logout-form {
        margin-left: 0;
        margin-right: 0;
    }

    .product-grid,
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.admin-checkbox,
.admin-checkbox-row {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-checkbox {
    margin: 14px 0;
}

.admin-checkbox input {
    margin: 0;
    width: auto;
}

.admin-checkbox-row {
    flex-wrap: wrap;
    margin: 14px 0;
}

.admin-inline-form {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 18px;
}

.admin-flash-wrap {
    margin-bottom: 18px;
}

.order-totals-card {
    max-width: 560px;
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav a {
        margin-left: 0;
        margin-right: 14px;
        display: inline-block;
        margin-bottom: 8px;
    }

    .logout-form {
        margin-left: 0;
        margin-right: 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        grid-template-columns: 1fr;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-sidebar nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .admin-content {
        padding: 24px;
    }

    .admin-grid,
    .admin-grid.two-cols,
    .admin-form-grid,
    .admin-filter-form {
        grid-template-columns: 1fr;
    }

    .admin-page-header {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .account-grid,
    .account-grid.two-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        line-height: 1.4;
    }

    .header {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .site-logo,
    .site-logo img {
        max-width: 180px;
    }

    .site-logo img {
        max-height: 50px;
    }

    .hero {
        min-height: 330px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-video-bg iframe {
        min-height: 130%;
        min-width: 231vh;
    }

    .cart-table {
        min-width: 650px;
    }

    .checkout-form,
    .order-summary,
    .account-card,
    .admin-card,
    .admin-form {
        padding: 18px;
    }

    .footer-assets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .topbar,
    .header,
    .hero,
    .section,
    .flash-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cart-actions,
    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-actions .btn,
    .product-actions .btn {
        text-align: center;
        width: 100%;
    }

    .account-grid,
    .account-grid.two-cols {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 24px;
    }

    .page-content h1 {
        font-size: 30px;
    }

    .admin-image-item {
        grid-template-columns: 1fr;
    }

    .admin-image-preview {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .topbar {
        font-size: 13px;
    }

    .site-logo-text {
        font-size: 25px;
    }

    .nav {
        gap: 8px 10px;
    }

    .nav a,
    .logout-form button {
        font-size: 14px;
    }

    .hero {
        min-height: 300px;
    }

    .product-grid,
    .grid {
        grid-template-columns: 1fr;
    }

    .product-card-body {
        padding: 16px;
    }

    .asset-logo-card {
        min-width: calc(50% - 6px);
    }

    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* Premium storefront refresh */
.topbar {
    background: linear-gradient(90deg, var(--zp-dark), var(--zp-green-2));
    letter-spacing: 0.01em;
    padding: 9px 40px;
}

.header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.main-nav,
.header-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.nav a,
.logout-form button {
    border-radius: 999px;
    color: var(--zp-dark);
    font-size: 14px;
    padding: 9px 10px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.logout-form button:hover {
    background: var(--zp-green-soft);
    color: var(--zp-green);
    transform: translateY(-1px);
}

.hero {
    min-height: 590px;
    padding: 96px 40px;
}

.hero-overlay {
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 28rem),
        linear-gradient(115deg, rgba(15, 23, 42, 0.92), rgba(15, 61, 46, 0.74));
}

.hero-content {
    animation: heroFade 0.75s ease both;
    max-width: 820px;
}

.hero-badge,
.section-kicker {
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.30);
    border-radius: 999px;
    color: var(--zp-orange);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: -0.04em;
    line-height: 0.98;
    margin-top: 18px;
}

.hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 2vw, 22px);
    max-width: 720px;
}

.hero-actions,
.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-benefits span,
.badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    padding: 9px 12px;
}

.btn,
.admin-btn {
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.admin-btn:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
}

.btn-primary,
.btn {
    background: linear-gradient(135deg, var(--zp-orange), var(--zp-orange-dark));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--zp-green), var(--zp-green-2));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.section {
    padding: 70px 40px;
}

.section-soft {
    background: rgba(255, 255, 255, 0.46);
}

.section-header {
    margin: 0 auto 30px;
    max-width: 850px;
    text-align: center;
}

.section-header.compact {
    margin-left: 0;
    text-align: left;
}

.section-title,
.section h2,
.page-hero h1 {
    color: var(--zp-green);
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 12px 0;
}

.section-subtitle,
.page-hero p {
    color: var(--zp-muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.page-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.14), transparent 28rem),
        linear-gradient(135deg, #ffffff, #edf6f1);
    border-bottom: 1px solid var(--zp-border);
    padding: 64px 40px;
}

.page-hero > div {
    max-width: 960px;
}

.breadcrumb {
    color: var(--zp-muted);
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
}

.breadcrumbs {
    align-items: center;
    color: var(--zp-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--zp-green);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--zp-orange-dark);
}

.card,
.product-card,
.auth-card,
.account-card,
.order-summary,
.checkout-form,
.page-content,
.review-card,
.review-form-wrap {
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow);
}

.card,
.product-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover,
.product-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    transform: translateY(-4px);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-image-fallback {
    background:
        radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.16), transparent 15rem),
        linear-gradient(135deg, #eaf4ee, #ffffff);
    position: relative;
}

.discount-badge {
    background: linear-gradient(135deg, var(--zp-orange), var(--zp-orange-dark));
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.32);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    left: 14px;
    letter-spacing: 0.02em;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
    z-index: 2;
}

.product-card h3 {
    font-size: 17px;
}

.stock-badge,
.payment-status-badge,
.admin-badge {
    font-weight: 900;
}

.price,
.sale-price {
    font-size: 23px;
}

.category-feature-card {
    background:
        linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(15, 23, 42, 0.94));
    color: #ffffff;
    min-height: 180px;
}

.category-feature-card h3,
.category-feature-card p {
    color: #ffffff;
}

.category-feature-card span {
    color: var(--zp-orange);
    font-weight: 900;
    text-transform: uppercase;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.brand-pill {
    background: #ffffff;
    border: 1px solid var(--zp-border);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
    color: var(--zp-green);
    font-weight: 900;
    padding: 14px 18px;
}

.home-assets-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-assets-grid .asset-logo-section {
    background: #ffffff;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow);
    padding: 24px;
}

.home-assets-grid .asset-logo-section h3 {
    color: var(--zp-green);
}

.empty-state,
.empty-state {
    background: #ffffff;
    border: 1px dashed rgba(15, 61, 46, 0.24);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow);
    color: var(--zp-muted);
    padding: 28px;
}

.payment-card-option {
    border: 1px solid var(--zp-border);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.payment-card-option:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.thank-you-icon {
    align-items: center;
    background: var(--zp-green-soft);
    border-radius: 50%;
    color: var(--zp-green);
    display: flex;
    font-size: 38px;
    font-weight: 900;
    height: 72px;
    justify-content: center;
    margin-bottom: 18px;
    width: 72px;
}

.footer {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28rem),
        var(--zp-dark);
    padding: 56px 40px 30px;
}

.footer-grid {
    grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
}

.footer-links span,
.footer p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
}

.cookie-consent {
    border: 1px solid rgba(255, 255, 255, 0.16);
    max-width: 860px;
}

.cookie-consent-content strong {
    color: #ffffff;
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.cookie-consent-actions button {
    transition: transform 0.2s ease;
}

.cookie-consent-actions button:hover {
    transform: translateY(-2px);
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-nav,
    .header-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section,
    .page-hero,
    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }

    .product-grid,
    .grid,
    .home-assets-grid,
    .checkout-layout,
    .cart-layout,
    .account-layout,
    .reviews-section {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: 460px;
    }

    .hero-actions .btn,
    .thank-you-actions .btn {
        text-align: center;
        width: 100%;
    }

    .footer-grid,
    .footer-assets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .topbar,
    .header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-title,
    .section h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .nav a,
    .logout-form button {
        padding: 8px 9px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer cleanup */
.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.76);
    padding: 46px 40px 26px;
}

.site-footer .footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1180px;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 14px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0;
}

.footer-brand,
.footer-links,
.footer-contact {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.footer-brand {
    gap: 12px;
}

.site-footer .footer-links,
.site-footer .footer-contact {
    gap: 8px;
}

.site-footer a,
.site-footer .footer-contact span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.45;
}

.site-footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #f59e0b;
}

.site-footer .footer-admin-link {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin: 30px auto 0;
    max-width: 1180px;
    padding-top: 18px;
}

@media (max-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 38px 22px 24px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
    }
}

/* Header dropdown navigation */
.header {
    overflow: visible;
}

.main-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    overflow: visible;
}

.nav-item {
    position: relative;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    gap: 5px;
    line-height: 1;
    margin: 0;
    min-height: 38px;
    padding: 10px 13px;
    white-space: nowrap;
}

.main-nav .nav-link {
    color: var(--zp-dark);
    font-weight: 850;
}

.nav-chevron {
    color: var(--zp-orange-dark);
    font-size: 11px;
    line-height: 1;
    transform: translateY(1px);
}

.nav-dropdown {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 0;
    max-height: min(70vh, 520px);
    min-width: 250px;
    opacity: 0;
    overflow: auto;
    padding: 14px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 12px);
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.22s ease, visibility 0.18s ease;
    visibility: hidden;
    z-index: 80;
}

.nav-dropdown::before {
    background: linear-gradient(90deg, var(--zp-orange), var(--zp-green));
    border-radius: 999px;
    content: "";
    height: 3px;
    left: 16px;
    position: absolute;
    right: 16px;
    top: 8px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.nav-dropdown-title {
    color: var(--zp-green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 10px 10px 6px;
    text-transform: uppercase;
}

.nav-dropdown a {
    border-radius: 11px;
    color: var(--zp-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    padding: 10px 11px;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a:hover {
    background: var(--zp-green-soft);
    color: var(--zp-green);
    transform: translateX(3px);
}

.nav-dropdown .nav-dropdown-cta {
    background: linear-gradient(135deg, var(--zp-green), var(--zp-green-2));
    color: #ffffff;
    margin-top: 6px;
    text-align: center;
}

.nav-dropdown .nav-dropdown-cta:hover {
    background: linear-gradient(135deg, var(--zp-orange), var(--zp-orange-dark));
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-dropdown-wide {
    min-width: 360px;
}

.nav-item-outdoor .nav-dropdown {
    left: auto;
    right: 0;
}

.header-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
}

.header-actions a,
.logout-form button {
    border: 1px solid rgba(15, 61, 46, 0.12);
    color: var(--zp-dark);
    font-weight: 850;
    text-decoration: none;
}

.header-actions a:hover,
.logout-form button:hover {
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.header-actions .header-user {
    background: var(--zp-green-soft);
    color: var(--zp-green);
}

.header-actions .cart-link {
    background: linear-gradient(135deg, var(--zp-orange), var(--zp-orange-dark));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.24);
}

.header-actions .cart-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.logout-form {
    display: inline-flex;
    margin: 0;
}

.logout-form button {
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 1024px) {
    .main-nav,
    .header-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-dropdown {
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .nav-item {
        flex: 0 0 auto;
    }

    .nav-dropdown {
        display: none;
    }

    .nav-chevron {
        display: none;
    }

    .header-actions {
        gap: 6px;
    }

    .main-nav .nav-link,
    .header-actions a,
    .logout-form button {
        min-height: 36px;
        padding: 9px 11px;
    }
}

/* Product search, filters, and stable dropdown bridge */
.header {
    z-index: 90;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 99;
}

.main-nav .nav-link {
    position: relative;
    z-index: 2;
}

.nav-dropdown {
    pointer-events: none;
    top: calc(100% - 2px);
    transform: translateY(10px) scale(0.98);
    z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.header-search {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    gap: 6px;
    max-width: 330px;
    min-width: 240px;
    padding: 5px;
}

.header-search input {
    border: 0;
    color: var(--zp-dark);
    flex: 1;
    min-width: 0;
    outline: 0;
    padding: 8px 10px;
}

.header-search button {
    background: var(--zp-green);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
    padding: 9px 13px;
}

.header-search button:hover {
    background: var(--zp-orange-dark);
}

.filter-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    box-shadow: var(--zp-shadow);
    display: grid;
    gap: 18px;
    margin-bottom: 26px;
    padding: 22px;
}

.filter-search-row {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.filter-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filter-field {
    display: grid;
    gap: 7px;
}

.filter-field span {
    color: var(--zp-green);
    font-size: 13px;
    font-weight: 900;
}

.filter-field input,
.filter-field select {
    background: #ffffff;
    border: 1px solid rgba(15, 61, 46, 0.16);
    border-radius: 12px;
    color: var(--zp-dark);
    min-height: 44px;
    outline: 0;
    padding: 10px 12px;
    width: 100%;
}

.filter-field input:focus,
.filter-field select:focus,
.header-search:focus-within {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.filter-field-search input {
    min-height: 48px;
}

.filter-checkbox {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    padding-top: 24px;
}

.filter-checkbox input {
    min-height: auto;
    width: auto;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.results-meta {
    align-items: center;
    color: var(--zp-muted);
    display: flex;
    gap: 6px;
    margin: 0 0 18px;
}

.results-meta strong {
    color: var(--zp-green);
    font-size: 20px;
}

@media (max-width: 1200px) {
    .filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .header-search {
        max-width: none;
        width: 100%;
    }

    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-item::after,
    .nav-dropdown {
        display: none;
    }

    .filter-search-row,
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .filter-checkbox {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .filter-panel {
        padding: 16px;
    }

    .filter-actions .btn,
    .filter-search-row .btn {
        text-align: center;
        width: 100%;
    }
}

/* Visual density tuning */
html,
body,
input,
button,
textarea,
select,
table,
a,
p,
span,
div,
label,
small,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--zp-font-main) !important;
}

body {
    font-size: 15px;
    line-height: 1.55;
}

.zp-container,
.container,
.header-inner,
.topbar-inner,
.footer-inner,
.section-inner {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 48px, 1320px);
}

.topbar {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
}

.topbar-inner {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.header {
    padding: 0;
}

.header-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-bottom: 16px;
    padding-top: 16px;
}

.site-logo img {
    max-height: 46px;
    width: auto;
}

.site-logo-text {
    font-size: 28px;
}

.main-nav {
    gap: 4px 10px;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button {
    font-size: 14px;
    font-weight: 750;
    min-height: 36px;
    padding: 9px 11px;
}

.header-search {
    max-width: 320px;
    min-width: 260px;
    padding: 4px;
}

.header-search input {
    font-size: 14px;
    min-height: 34px;
    padding: 7px 10px;
}

.header-search button {
    font-size: 13px;
    padding: 8px 12px;
}

.hero {
    min-height: 500px;
    padding: 80px 0;
}

.hero-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    width: min(100% - 48px, 1320px);
}

.hero-badge,
.section-kicker {
    font-size: 12px;
}

.hero h1 {
    font-size: clamp(40px, 4.8vw, 56px);
    letter-spacing: 0;
    line-height: 1.04;
}

.hero p {
    font-size: clamp(17px, 1.7vw, 19px);
    line-height: 1.55;
    max-width: 680px;
}

.btn,
.admin-btn {
    font-size: 14px;
}

.section,
.page-hero {
    padding: 56px 0;
}

.section > *:not(.hero-video-bg):not(.hero-overlay),
.page-hero > *,
.flash-wrap {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 48px, 1320px);
}

.section-header {
    margin-bottom: 26px;
}

.section-title,
.section h2,
.page-hero h1 {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: 0;
}

.section-subtitle,
.page-hero p {
    font-size: 16px;
    line-height: 1.58;
}

.grid,
.category-feature-grid {
    gap: 18px;
}

.category-feature-card {
    border-radius: 16px;
    min-height: 150px;
    padding: 22px;
}

.category-feature-card span {
    font-size: 12px;
}

.category-feature-card h3 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.category-feature-card p {
    font-size: 14px;
    line-height: 1.45;
}

.product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.product-card {
    border-radius: 14px;
    overflow: hidden;
}

.product-card-body {
    gap: 10px;
    padding: 14px;
}

.product-image-fallback {
    min-height: 178px;
}

.product-image-fallback img {
    height: 178px;
    object-fit: cover;
    width: 100%;
}

.product-card h3 {
    font-size: 15px;
    line-height: 1.28;
    margin-bottom: 4px;
}

.product-card h3 a,
.product-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-meta {
    font-size: 12px;
    gap: 5px;
}

.product-card p {
    font-size: 13px;
    line-height: 1.4;
}

.price,
.sale-price {
    font-size: 18px;
}

.old-price {
    font-size: 12px;
}

.stock-badge,
.payment-status-badge,
.admin-badge,
.discount-badge {
    font-size: 11px;
}

.product-actions {
    gap: 8px;
}

.btn-small,
.product-actions .btn {
    font-size: 13px;
    padding: 8px 10px;
}

.filter-panel {
    gap: 14px;
    margin-bottom: 22px;
    padding: 18px;
}

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

.filter-field span {
    font-size: 13px;
}

.filter-field input,
.filter-field select {
    font-size: 14px;
    min-height: 40px;
    padding: 8px 10px;
}

.filter-field-search input {
    min-height: 42px;
}

.results-meta {
    font-size: 14px;
}

.site-footer {
    padding: 42px 0 24px;
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
    max-width: none;
    width: 100%;
}

.site-footer p,
.site-footer a,
.site-footer .footer-contact span,
.site-footer .footer-bottom {
    font-size: 14px;
}

.admin-shell {
    font-size: 14px;
}

.admin-table {
    font-size: 13px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    font-size: 14px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    }

    .header-search {
        flex: 1 1 260px;
        max-width: 360px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        align-items: flex-start;
    }

    .main-nav,
    .header-actions,
    .header-search {
        width: 100%;
    }

    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .zp-container,
    .container,
    .header-inner,
    .topbar-inner,
    .footer-inner,
    .section-inner,
    .section > *:not(.hero-video-bg):not(.hero-overlay),
    .page-hero > *,
    .hero-content,
    .flash-wrap {
        width: min(100% - 28px, 100%);
    }

    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .hero {
        min-height: 420px;
        padding: 64px 0;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 38px);
    }

    .hero p {
        font-size: 15px;
    }

    .section,
    .page-hero {
        padding: 38px 0;
    }

    .grid,
    .category-feature-grid,
    .filter-grid,
    .filter-search-row {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }

    .product-image-fallback,
    .product-image-fallback img {
        height: 160px;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        gap: 10px;
        padding-bottom: 14px;
        padding-top: 14px;
    }
}

/* Blog and admin additions */
.blog-card {
    overflow: hidden;
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: var(--zp-green-soft);
    display: block;
    overflow: hidden;
}

.blog-card-image img,
.blog-hero-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card h3 a {
    color: var(--zp-dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--zp-orange-dark);
}

.blog-post-content {
    display: grid;
    gap: 18px;
}

.blog-hero-image {
    border-radius: 14px;
    max-height: 460px;
}

.admin-user-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 4px;
    margin: 18px 0;
    padding: 14px 0;
}

.admin-user-box span,
.admin-user-box small {
    color: rgba(255, 255, 255, 0.68);
}

.admin-user-box strong {
    color: #ffffff;
}

.admin-logout-form {
    margin-top: 18px;
}

.admin-logout-form button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
}

.admin-logout-form button:hover {
    background: rgba(245, 158, 11, 0.18);
}

.settings-inner-card {
    box-shadow: none;
    margin: 10px 0;
}

/* =====================================================
Global background, framed hero and reusable scroll reveal
===================================================== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html,
body,
body *,
input,
button,
textarea,
select,
option,
table,
a,
p,
span,
div,
label,
small,
strong,
em,
li,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--zp-font-main) !important;
}

body {
    background:
        linear-gradient(rgba(246, 250, 247, 0.88), rgba(246, 250, 247, 0.88)),
        url('/assets/img/backgrounds/site-bg.jpg') center top / cover fixed no-repeat;
    background-color: #f6faf7;
    font-size: 15px;
    line-height: 1.55;
}

.zp-container,
.container,
.header-inner,
.topbar-inner,
.footer-inner,
.section-inner {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 48px, 1320px);
}

.topbar,
.header {
    position: relative;
    z-index: 40;
}

.main-nav .dropdown,
.nav-dropdown,
.nav-menu {
    z-index: 60;
}

main {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 42px 0 24px;
}

.hero-frame,
.hero {
    background: linear-gradient(120deg, #0f3d2e, #102015);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.20);
    color: #ffffff;
    min-height: 500px;
    overflow: hidden;
    padding: 80px clamp(24px, 6vw, 76px);
    position: relative;
}

.hero-frame .hero-video-bg,
.hero-frame .hero-overlay {
    border-radius: inherit;
}

.hero-frame .hero-video-bg iframe {
    height: 67.5vw;
    min-height: 120%;
    min-width: 213.33vh;
    width: 120vw;
}

.hero-frame .hero-overlay {
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.20), transparent 28rem),
        linear-gradient(115deg, rgba(15, 23, 42, 0.90), rgba(15, 61, 46, 0.72));
}

.hero-frame .hero-content {
    margin: 0;
    max-width: 720px;
    position: relative;
    width: min(100%, 720px);
    z-index: 2;
}

.hero h1 {
    font-size: clamp(46px, 4.6vw, 54px);
    letter-spacing: 0;
    line-height: 1.04;
}

.hero p {
    font-size: 17px;
    line-height: 1.58;
}

.hero-badge {
    font-size: 12px;
}

.hero-actions .btn,
.btn,
.admin-btn {
    font-size: 14px;
}

.section,
.section-soft {
    background: transparent;
}

.page-hero {
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(15, 61, 46, 0.12);
}

.card,
.category-card,
.filter-panel,
.product-detail,
.reviews-list,
.review-form-wrap,
.page-content,
.home-assets-grid .asset-logo-section,
.empty-state,
.empty-state {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(15, 61, 46, 0.12);
}

.product-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 61, 46, 0.10);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.category-feature-card {
    background:
        linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(15, 23, 42, 0.94));
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.fade-left {
    transform: translateX(-28px);
}

.scroll-reveal.fade-right {
    transform: translateX(28px);
}

.scroll-reveal.zoom-in {
    transform: scale(0.96);
}

.scroll-reveal.fade-left.is-visible,
.scroll-reveal.fade-right.is-visible,
.scroll-reveal.zoom-in.is-visible {
    transform: translateX(0) translateY(0) scale(1);
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .zp-container,
    .container,
    .header-inner,
    .topbar-inner,
    .footer-inner,
    .section-inner {
        width: min(100% - 28px, 100%);
    }

    .hero-section {
        padding: 28px 0 12px;
    }

    .hero-frame,
    .hero {
        border-radius: 16px;
        min-height: 420px;
        padding: 58px 22px;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 38px);
    }

    .hero p {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Compact logo carousels */
.logo-carousel-section {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-carousel-block {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 16px;
}

.logo-carousel-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.logo-carousel-header h3 {
    color: var(--zp-green);
    font-size: 18px;
    line-height: 1.2;
    margin: 8px 0 0;
}

.logo-carousel-controls {
    display: flex;
    gap: 8px;
}

.logo-carousel-btn {
    align-items: center;
    background: var(--zp-green-soft);
    border: 1px solid rgba(15, 61, 46, 0.14);
    border-radius: 999px;
    color: var(--zp-green);
    cursor: pointer;
    display: inline-flex;
    font-size: 22px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    line-height: 1;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    width: 34px;
}

.logo-carousel-btn:hover {
    background: var(--zp-orange);
    color: #ffffff;
    transform: translateY(-1px);
}

.logo-carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.logo-carousel-track::-webkit-scrollbar {
    display: none;
}

.logo-pill {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 18px;
    color: var(--zp-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 850;
    height: 60px;
    justify-content: center;
    min-width: 150px;
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
}

.logo-pill img {
    display: block;
    max-height: 32px;
    max-width: 118px;
    object-fit: contain;
    width: auto;
}

.payment-card-option:has(input:disabled) {
    cursor: not-allowed;
    opacity: 0.72;
}

.admin-form-section {
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 14px;
    display: grid;
    gap: 14px;
    padding: 18px;
}

.admin-form-section h3 {
    color: var(--zp-green);
    font-size: 18px;
    margin: 0;
}

.admin-copy-input {
    border: 1px solid rgba(15, 61, 46, 0.16);
    border-radius: 8px;
    color: var(--zp-dark);
    font-size: 12px;
    min-width: 320px;
    padding: 8px 10px;
    width: 100%;
}

html,
body,
body *,
input,
button,
textarea,
select,
option,
table,
a,
p,
span,
div,
label,
small,
strong,
em,
li,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--zp-font-main) !important;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

.topbar {
    font-size: 13px;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button,
.header-search input,
.header-search button {
    font-size: 14px;
}

.product-card p,
.product-meta,
.product-description,
.footer,
.account-content,
.admin-content {
    font-size: 14px;
}

.btn,
.admin-btn,
button {
    font-size: 15px;
}

.header {
    padding: 14px 0;
}

.header-inner {
    align-items: center;
    display: grid;
    gap: 12px 16px;
    grid-template-columns: auto minmax(0, 1fr) minmax(230px, 320px) auto;
    margin: 0 auto;
    width: min(100% - 40px, 1320px);
}

.site-logo {
    min-width: 0;
}

.site-logo img {
    max-height: 56px;
    width: auto;
}

.main-nav {
    min-width: 0;
    overflow: visible;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button {
    padding: 8px 10px;
    white-space: nowrap;
}

.community-link {
    background: rgba(15, 61, 46, 0.08);
    color: var(--zp-green) !important;
}

.header-search {
    justify-self: stretch;
    min-width: 220px;
    width: 100%;
}

.header-search input {
    min-width: 0;
}

.header-actions {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-end;
    min-width: 0;
}

.header-user {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-hero {
    background: transparent;
    border-bottom: 0;
    padding: 38px 0 10px;
}

.page-hero > * {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 40px, 1320px);
}

.page-hero-card {
    background:
        radial-gradient(circle at 16% 0%, rgba(245, 158, 11, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 22px;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.10);
    padding: 30px;
}

.page-hero-card h1 {
    color: var(--zp-green);
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: 0;
    line-height: 1.08;
    margin: 10px 0;
}

.page-hero-card p {
    color: var(--zp-muted);
    font-size: 17px;
    line-height: 1.6;
    max-width: 850px;
}

.breadcrumbs {
    margin-bottom: 14px;
}

.product-main-image,
.product-main-image-button,
.product-main-image-button img {
    min-height: 430px;
}

.product-main-image-button img {
    background: #ffffff;
    object-fit: contain;
}

.product-lightbox {
    display: none;
    z-index: 5000;
}

.product-lightbox.is-open {
    display: flex;
}

.product-lightbox-dialog {
    filter: none;
    max-height: 90vh;
    max-width: 92vw;
}

.product-lightbox-dialog img,
#product-lightbox-image {
    background: #ffffff;
    border-radius: 18px;
    display: block;
    max-height: 82vh;
    max-width: 90vw;
    min-height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.product-lightbox-backdrop {
    filter: none;
}

.store-locations {
    display: grid;
    gap: 22px;
    margin: 0 auto;
    width: min(100% - 48px, 1180px);
}

.store-location-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-location-card,
.store-map-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
    padding: 22px;
}

.store-location-card h3 {
    color: var(--zp-green);
    font-size: 22px;
    margin: 0 0 8px;
}

.store-location-card p {
    color: var(--zp-muted);
    margin: 0 0 16px;
}

.store-map-card {
    overflow: hidden;
    padding: 0;
}

.store-map-card iframe {
    border: 0;
    display: block;
    height: 360px;
    width: 100%;
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
    }

    .main-nav,
    .header-actions {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        width: 100%;
    }

    .header-search {
        grid-column: auto;
        min-width: 0;
    }

    .store-location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .page-hero > *,
    .store-locations {
        width: min(100% - 28px, 100%);
    }

    .page-hero-card {
        border-radius: 18px;
        padding: 20px;
    }

    .page-hero-card h1 {
        font-size: 30px;
    }

    .page-hero-card p {
        font-size: 15px;
    }

    .store-map-card iframe {
        height: 260px;
    }
}

@media (max-width: 900px) {
    .logo-carousel-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-carousel-block {
        padding: 14px;
    }

    .logo-pill {
        height: 56px;
        min-width: 136px;
    }
}

.page-hero.compact.product-page-hero {
    background: transparent;
    border-bottom: 0;
    padding: 42px 0 10px;
}

.page-hero.compact.product-page-hero > * {
    width: auto;
}

.page-hero-card {
    background:
        radial-gradient(circle at 18% 10%, rgba(245, 158, 11, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
    padding: 28px;
}

.page-hero-card h1 {
    color: var(--zp-green);
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0;
    line-height: 1.1;
    margin: 10px 0;
}

.page-hero-card p {
    color: var(--zp-muted);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.product-layout {
    align-items: start;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    padding: 24px;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-main-image {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 61, 46, 0.10);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    min-height: 420px;
    overflow: hidden;
}

.product-main-image-button {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: zoom-in;
    display: block;
    height: 100%;
    min-height: 420px;
    padding: 0;
    width: 100%;
}

.product-main-image-button img {
    display: block;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.22s ease;
    width: 100%;
}

.product-main-image-button:hover img {
    transform: scale(1.018);
}

.product-thumbnails {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    margin-top: 0;
}

.product-thumbnail {
    appearance: none;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(15, 61, 46, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-thumbnail:hover,
.product-thumbnail.is-active {
    border-color: var(--zp-orange);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.18);
    transform: translateY(-2px);
}

.product-thumbnail img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.22s ease;
    z-index: 1000;
}

.product-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-lightbox-backdrop {
    backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, 0.82);
    inset: 0;
    position: absolute;
}

.product-lightbox-dialog {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 92vw;
    position: relative;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.24s ease;
    z-index: 1;
}

.product-lightbox.is-open .product-lightbox-dialog {
    transform: scale(1) translateY(0);
}

.product-lightbox-dialog img {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    display: block;
    max-height: 82vh;
    max-width: 88vw;
    object-fit: contain;
}

.product-lightbox-close,
.product-lightbox-nav {
    align-items: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    z-index: 2;
}

.product-lightbox-close {
    background: #ffffff;
    color: #0f172a;
    font-size: 30px;
    height: 44px;
    right: -18px;
    top: -18px;
    width: 44px;
}

.product-lightbox-nav {
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    font-size: 44px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
}

.product-lightbox-nav.prev {
    left: -74px;
}

.product-lightbox-nav.next {
    right: -74px;
}

.product-lightbox-close:hover,
.product-lightbox-nav:hover {
    background: var(--zp-orange);
    color: #102015;
}

.product-lightbox-counter {
    background: rgba(15, 23, 42, 0.78);
    border-radius: 999px;
    bottom: -48px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    left: 50%;
    padding: 8px 14px;
    position: absolute;
    transform: translateX(-50%);
}

.categories-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.categories-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.category-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.10);
    padding: 22px;
}

.category-card-title {
    color: var(--zp-green);
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    text-decoration: none;
}

.category-card-title:hover {
    color: var(--zp-orange-dark);
}

.category-card p {
    color: var(--zp-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}

.subcategory-list {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}

.subcategory-list li {
    margin: 0;
}

.subcategory-list a {
    align-items: center;
    background: rgba(237, 246, 241, 0.72);
    border: 1px solid rgba(15, 61, 46, 0.08);
    border-radius: 10px;
    color: #102015;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    gap: 12px;
    justify-content: space-between;
    min-height: 40px;
    padding: 9px 11px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.subcategory-list a:hover {
    background: rgba(15, 61, 46, 0.08);
    border-color: rgba(15, 61, 46, 0.18);
    color: var(--zp-green);
    transform: translateX(2px);
}

.subcategory-arrow {
    color: var(--zp-orange-dark);
    font-size: 20px;
    line-height: 1;
}

.category-empty {
    background: rgba(237, 246, 241, 0.7);
    border-radius: 10px;
    color: var(--zp-muted);
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
}

@media (min-width: 1024px) {
    .subcategory-list:not(.single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-main-image,
    .product-main-image-button,
    .product-main-image-button img {
        min-height: 340px;
    }

    .product-lightbox-nav.prev {
        left: 12px;
    }

    .product-lightbox-nav.next {
        right: 12px;
    }
}

@media (max-width: 560px) {
    .page-hero-card,
    .product-layout,
    .category-card {
        border-radius: 14px;
        padding: 18px;
    }

    .product-main-image,
    .product-main-image-button,
    .product-main-image-button img {
        min-height: 270px;
    }

    .product-thumbnails {
        display: flex;
        gap: 9px;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .product-thumbnail {
        flex: 0 0 68px;
    }

    .product-lightbox-dialog img {
        max-height: 76vh;
        max-width: 92vw;
    }

    .product-lightbox-close {
        right: 0;
        top: -54px;
    }

    .product-lightbox-nav {
        font-size: 34px;
        height: 42px;
        width: 42px;
    }

    .product-lightbox-counter {
        bottom: -42px;
    }

    .categories-grid,
    .categories-grid.compact {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    background: transparent;
    border-bottom: 0;
    padding: 38px 0 10px;
}

.page-hero > * {
    margin-left: auto;
    margin-right: auto;
    width: min(100% - 40px, 1320px);
}

.page-hero-card {
    border-radius: 22px;
    padding: 30px;
}

.page-hero-card h1 {
    font-size: clamp(32px, 4vw, 50px);
}

.product-lightbox {
    z-index: 5000;
}

.product-lightbox-dialog,
.product-lightbox-dialog img,
#product-lightbox-image {
    filter: none;
}

#product-lightbox-image {
    max-height: 82vh;
    max-width: 90vw;
    object-fit: contain;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.zp-icon,
.nav-icon svg,
.btn-icon svg,
.product-search-input-wrap svg,
.hero-benefits svg {
    width: 18px;
    height: 18px;
    color: currentColor;
    flex-shrink: 0;
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.header-search {
    display: none !important;
}

.main-nav,
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.main-nav {
    justify-content: center;
    flex-wrap: wrap;
}

.header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 11px;
    border-radius: 999px;
    color: inherit;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.main-nav .nav-link:hover,
.header-actions a:hover,
.logout-form button:hover,
.community-link:hover,
.cart-link:hover,
.account-link:hover,
.wishlist-link:hover {
    color: var(--zp-orange);
    background: rgba(217, 119, 6, .1);
}

.nav-icon,
.btn-icon,
.nav-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex-shrink: 0;
}

.nav-chevron svg {
    width: 14px;
    height: 14px;
}

.logout-form {
    margin: 0;
}

.logout-form button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.community-link {
    border: 1px solid rgba(15, 23, 42, .08);
}

.product-search-section {
    padding: 18px 0 8px;
}

.product-search-section.is-full {
    padding-top: 0;
}

.product-search-card {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .1);
}

.product-search-form {
    display: grid;
    gap: 16px;
}

.product-search-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.product-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 42, .14);
    border-radius: 16px;
    background: #fff;
    color: #64748b;
}

.product-search-input-wrap:focus-within {
    color: var(--zp-green);
    border-color: rgba(21, 128, 61, .45);
    box-shadow: 0 0 0 4px rgba(21, 128, 61, .1);
}

.product-search-input {
    width: 100%;
    min-height: 52px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-size: 16px;
}

.product-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    background: var(--zp-green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-search-button:hover {
    background: var(--zp-orange);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(217, 119, 6, .2);
}

.advanced-filters-link {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    color: var(--zp-green);
    font-weight: 800;
}

.advanced-filters-link:hover {
    color: var(--zp-orange);
}

.product-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-filter-field {
    display: grid;
    gap: 6px;
    color: #334155;
    font-weight: 800;
}

.product-filter-field span {
    font-size: 13px;
}

.product-filter-field input,
.product-filter-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(15, 23, 42, .13);
    border-radius: 13px;
    background: #fff;
    color: #0f172a;
    padding: 0 12px;
}

.product-filter-field input:focus,
.product-filter-field select:focus {
    outline: 0;
    border-color: rgba(21, 128, 61, .45);
    box-shadow: 0 0 0 4px rgba(21, 128, 61, .1);
}

.product-filter-check {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 13px;
    background: #fff;
}

.product-filter-check input {
    width: auto;
    min-height: auto;
}

.product-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .main-nav {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .header-actions {
        justify-self: end;
        overflow-x: auto;
        max-width: 100%;
    }

    .product-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .site-logo,
    .header-actions,
    .main-nav {
        justify-self: stretch;
    }

    .main-nav,
    .header-actions {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
    }

    .main-nav .nav-link,
    .header-actions a,
    .logout-form button {
        min-height: 36px;
        padding: 8px 10px;
    }

    .product-search-card {
        padding: 14px;
        border-radius: 18px;
    }

    .product-search-main {
        grid-template-columns: 1fr;
    }

    .product-search-button {
        width: 100%;
    }

    .product-filter-grid {
        grid-template-columns: 1fr;
    }

    .product-filter-actions .btn {
        width: 100%;
    }
}

/* =====================================================
   LOGO SIZE OVERRIDE
   Maresti/micsorezi logo-ul din valorile de mai jos.
===================================================== */
.header .site-logo {
    max-width: 300px !important;
    min-height: 66px !important;
}

.header .site-logo img {
    max-height: 78px !important;
    max-width: 300px !important;
    width: auto !important;
}

.header .site-logo-text {
    font-size: 38px !important;
    line-height: 1 !important;
}

@media (max-width: 1024px) {
    .header .site-logo {
        max-width: 260px !important;
        min-height: 58px !important;
    }

    .header .site-logo img {
        max-height: 66px !important;
        max-width: 260px !important;
    }

    .header .site-logo-text {
        font-size: 34px !important;
    }
}

@media (max-width: 768px) {
    .header .site-logo {
        max-width: 230px !important;
        min-height: 54px !important;
    }

    .header .site-logo img {
        max-height: 58px !important;
        max-width: 230px !important;
    }

    .header .site-logo-text {
        font-size: 30px !important;
    }
}

@media (max-width: 480px) {
    .header .site-logo {
        max-width: 200px !important;
        min-height: 48px !important;
    }

    .header .site-logo img {
        max-height: 50px !important;
        max-width: 200px !important;
    }

    .header .site-logo-text {
        font-size: 27px !important;
    }
}

@media (min-width: 1101px) {
    .header-inner {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        min-height: 74px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .site-logo {
        flex: 0 0 82px !important;
        width: 82px !important;
        max-width: 82px !important;
        min-height: 52px !important;
        overflow: visible !important;
    }

    .site-logo img {
        max-height: 70px !important;
        max-width: 82px !important;
        width: auto !important;
        transform: scale(1.18);
        transform-origin: center center;
    }

    .main-nav {
        flex: 0 1 auto !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .main-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .header-search {
        flex: 0 1 270px !important;
        min-width: 210px !important;
        max-width: 270px !important;
        margin-left: auto !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        flex-wrap: nowrap !important;
        gap: 7px !important;
        white-space: nowrap !important;
        justify-content: flex-end !important;
    }

    .header-actions a,
    .logout-form button {
        flex: 0 0 auto !important;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        flex-wrap: wrap !important;
    }

    .site-logo img {
        max-height: 58px !important;
        max-width: 90px !important;
    }
}

/* =====================================================
   ULTRA LARGE READABILITY OVERRIDE
   Zave Pescar - very large readable text
===================================================== */

:root {
    --zp-font-main: 'ZaveCustom', 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Global font force */
html,
body,
body *,
input,
button,
textarea,
select,
option,
table {
    font-family: var(--zp-font-main) !important;
}

/* Massive base readability */
html {
    font-size: 24px !important;
}

body {
    font-size: 24px !important;
    line-height: 1.75 !important;
    font-weight: 700 !important;
    letter-spacing: 0.005em !important;
}

/* Universal text rhythm */
p,
li,
td,
th,
label,
span,
small,
a,
div,
input,
button,
textarea,
select {
    line-height: 1.62 !important;
}

/* Topbar */
.topbar,
.topbar * {
    font-size: 17px !important;
    font-weight: 900 !important;
}

/* Header navigation */
.main-nav .nav-link,
.header-actions a,
.logout-form button,
.header-search input,
.header-search button {
    font-size: 20px !important;
    font-weight: 950 !important;
}

/* Header controls */
.header-search input {
    min-height: 50px !important;
}

.header-search button,
.header-actions a,
.logout-form button,
.main-nav .nav-link {
    min-height: 50px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* Dropdown */
.nav-dropdown a {
    font-size: 19px !important;
    font-weight: 950 !important;
}

.nav-dropdown-title {
    font-size: 16px !important;
    font-weight: 950 !important;
}

/* Hero / page headers */
.hero h1,
.hero-frame h1,
.page-hero h1,
.page-hero-card h1 {
    font-size: clamp(64px, 6vw, 96px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.hero p,
.hero-frame p,
.page-hero p,
.page-hero-card p {
    font-size: 28px !important;
    line-height: 1.75 !important;
    font-weight: 800 !important;
}

/* Section titles */
.section-title,
.section h2,
.section-header h2,
.account-content h2,
.reviews-list h2,
.review-form-wrap h2,
.product-detail-content h1,
.product-detail-content h2 {
    font-size: clamp(52px, 4.5vw, 74px) !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
}

.section-subtitle,
.section-header p {
    font-size: 23px !important;
    line-height: 1.75 !important;
    font-weight: 800 !important;
}

/* Kicker / badges */
.section-kicker,
.hero-badge {
    font-size: 18px !important;
    font-weight: 950 !important;
}

.badge,
.stock-badge,
.discount-badge,
.payment-status-badge,
.verified-badge,
.admin-badge {
    font-size: 18px !important;
    font-weight: 950 !important;
}

/* Cards */
.card,
.product-card,
.category-card,
.account-card,
.order-summary,
.checkout-form,
.page-content,
.review-card,
.review-form-wrap {
    font-size: 22px !important;
}

/* Category cards */
.category-card h3,
.card h3 {
    font-size: 30px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

.category-card p,
.card p {
    font-size: 21px !important;
    line-height: 1.7 !important;
    font-weight: 750 !important;
}

/* Subcategories */
.subcategory-list a,
.subcategory-links a {
    font-size: 20px !important;
    font-weight: 900 !important;
}

/* Product cards */
.product-card h3,
.product-card-title {
    font-size: 29px !important;
    line-height: 1.28 !important;
    font-weight: 950 !important;
}

.product-card p,
.product-description,
.lead-text,
.cart-note,
.product-meta a,
.product-meta span,
.detail-meta,
.image-fallback small {
    font-size: 21px !important;
    line-height: 1.7 !important;
    font-weight: 800 !important;
}

.image-fallback strong {
    font-size: 25px !important;
    font-weight: 950 !important;
}

/* Product detail */
.product-detail-content {
    font-size: 22px !important;
}

.product-detail-content h1,
.product-detail-content h2 {
    font-size: 58px !important;
}

.lead-text {
    font-size: 25px !important;
}

/* Prices */
.price,
.sale-price {
    font-size: 38px !important;
    font-weight: 950 !important;
}

.old-price {
    font-size: 21px !important;
    font-weight: 850 !important;
}

/* Buttons */
.btn,
.btn-small,
.admin-btn,
button,
input[type="submit"] {
    font-size: 22px !important;
    font-weight: 950 !important;
    line-height: 1.22 !important;
}

/* Forms */
input,
textarea,
select,
label {
    font-size: 22px !important;
    line-height: 1.55 !important;
}

label {
    font-weight: 950 !important;
}

/* Checkout/cart/account */
.account-nav a,
.account-nav span {
    font-size: 22px !important;
    font-weight: 950 !important;
}

.account-table,
.cart-table {
    font-size: 21px !important;
}

.account-table th,
.cart-table th {
    font-size: 19px !important;
    font-weight: 950 !important;
}

.account-table td,
.cart-table td {
    font-size: 21px !important;
    font-weight: 800 !important;
}

.summary-row,
.summary-item {
    font-size: 21px !important;
}

.summary-total {
    font-size: 28px !important;
    font-weight: 950 !important;
}

/* Reviews */
.review-card h3 {
    font-size: 28px !important;
}

.review-card p {
    font-size: 21px !important;
    font-weight: 750 !important;
}

/* Admin */
.admin-shell,
.admin-content,
.admin-card,
.admin-form,
.admin-filter-form {
    font-size: 22px !important;
    line-height: 1.7 !important;
}

.admin-sidebar a {
    font-size: 22px !important;
    font-weight: 950 !important;
}

.admin-logo {
    font-size: 42px !important;
    font-weight: 950 !important;
}

.admin-page-header h1 {
    font-size: 62px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
}

.admin-page-header p {
    font-size: 24px !important;
    line-height: 1.7 !important;
    font-weight: 800 !important;
}

.admin-card h2,
.admin-card h3 {
    font-size: 38px !important;
    line-height: 1.18 !important;
    font-weight: 950 !important;
}

.admin-card > span,
.admin-card p,
.admin-help-text {
    font-size: 22px !important;
    line-height: 1.65 !important;
    font-weight: 800 !important;
}

.admin-card > strong {
    font-size: 56px !important;
    line-height: 1.05 !important;
}

.admin-table {
    font-size: 21px !important;
    line-height: 1.6 !important;
}

.admin-table th {
    font-size: 19px !important;
    font-weight: 950 !important;
}

.admin-table td {
    font-size: 21px !important;
    font-weight: 800 !important;
}

.admin-table a,
.admin-small-link,
.admin-actions a,
.admin-link-danger {
    font-size: 21px !important;
    font-weight: 950 !important;
}

.admin-form label,
.admin-filter-form label,
.admin-inline-form label {
    font-size: 22px !important;
    font-weight: 950 !important;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-filter-form input,
.admin-filter-form select,
.admin-inline-form input,
.admin-inline-form textarea,
.admin-inline-form select {
    font-size: 22px !important;
    font-weight: 800 !important;
    min-height: 58px !important;
}

.admin-form textarea,
.admin-inline-form textarea {
    min-height: 180px !important;
}

/* Footer */
.site-footer,
.footer,
.site-footer p,
.site-footer a,
.footer p,
.footer a {
    font-size: 21px !important;
    line-height: 1.7 !important;
    font-weight: 800 !important;
}

.site-footer h3,
.footer h3 {
    font-size: 32px !important;
    font-weight: 950 !important;
}

/* Mobile control */
@media (max-width: 768px) {
    html {
        font-size: 18px !important;
    }

    body {
        font-size: 18px !important;
    }

    .hero h1,
    .hero-frame h1,
    .page-hero h1,
    .page-hero-card h1 {
        font-size: 46px !important;
    }

    .hero p,
    .hero-frame p,
    .page-hero p,
    .page-hero-card p {
        font-size: 20px !important;
    }

    .section-title,
    .section h2,
    .section-header h2,
    .admin-page-header h1 {
        font-size: 40px !important;
    }

    .main-nav .nav-link,
    .header-actions a,
    .logout-form button {
        font-size: 16px !important;
    }

    .product-card h3,
    .product-card-title {
        font-size: 24px !important;
    }

    .product-card p,
    .product-description,
    .lead-text,
    .product-meta a,
    .product-meta span {
        font-size: 18px !important;
    }

    .btn,
    .btn-small,
    .admin-btn,
    button,
    input[type="submit"] {
        font-size: 18px !important;
    }

    .admin-shell,
    .admin-content,
    .admin-card,
    .admin-form {
        font-size: 18px !important;
    }

    .admin-table,
    .admin-table td {
        font-size: 17px !important;
    }
}

/* Header and product search final overrides */
.header-search {
    display: none !important;
}

.header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 18px !important;
}

.main-nav,
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.main-nav {
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.header-actions {
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
}

.main-nav .nav-link,
.header-actions a,
.logout-form button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 38px !important;
    padding: 9px 11px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.zp-icon,
.nav-icon svg,
.btn-icon svg,
.product-search-input-wrap svg,
.hero-benefits svg {
    width: 18px !important;
    height: 18px !important;
    color: currentColor !important;
    flex-shrink: 0 !important;
}

.nav-chevron svg {
    width: 14px !important;
    height: 14px !important;
}

.product-search-input {
    font-size: 16px !important;
    min-height: 52px !important;
}

.product-search-button {
    font-size: 15px !important;
    min-height: 52px !important;
}

.product-filter-field input,
.product-filter-field select {
    font-size: 15px !important;
    min-height: 44px !important;
}

.product-filter-field span,
.advanced-filters-link {
    font-size: 14px !important;
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto 1fr !important;
    }

    .main-nav {
        order: 3 !important;
        grid-column: 1 / -1 !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
    }

    .header-actions {
        justify-self: end !important;
        overflow-x: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 760px) {
    .header-inner {
        grid-template-columns: 1fr !important;
    }

    .site-logo,
    .main-nav,
    .header-actions {
        justify-self: stretch !important;
    }

    .main-nav,
    .header-actions {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    .product-search-main,
    .product-filter-grid {
        grid-template-columns: 1fr !important;
    }

    .product-search-button,
    .product-filter-actions .btn {
        width: 100% !important;
    }
}

.product-carousel-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: 100%;
}

.product-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 18px;
    width: 100%;
    overscroll-behavior-inline: contain;
}

.product-carousel-track::-webkit-scrollbar {
    display: none;
}

.product-carousel-item {
    flex: 0 0 260px;
    max-width: 260px;
}

.product-carousel-item .product-card {
    height: 100%;
}

.carousel-arrow {
    align-self: center;
    background: rgba(15, 61, 46, .94);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    flex: 0 0 46px;
    height: 46px;
    width: 46px;
    font-size: 28px !important;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .18);
    transition: transform .2s ease, background .2s ease;
}

.carousel-arrow:hover {
    background: var(--zp-orange);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-carousel-item {
        flex-basis: 78vw;
        max-width: 78vw;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .product-carousel-wrap {
        gap: 8px;
    }

    .product-carousel-item {
        flex-basis: 82vw;
        max-width: 82vw;
    }
}
