/* =========================================================
   CRICKET STATION — PRODUCT LISTING PAGE STYLES
   Prefix: pl- (Product Listing) to avoid conflicts
========================================================= */

/* ---------- GLOBAL ---------- */
.pl-label {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.pl-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.pl-title span { color: #C9A15A; font-style: italic; }

/* ---------- SECTION 1: HERO ---------- */
.pl-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pl-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pl-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.pl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.6) 0%, rgba(13,27,23,0.9) 100%);
    z-index: 2;
}
.pl-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}
.pl-breadcrumb {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #D1D5DB;
    margin-bottom: 2rem;
}
.pl-breadcrumb a { color: #D1D5DB; transition: color 0.3s; }
.pl-breadcrumb a:hover { color: #C9A15A; }
.pl-breadcrumb span { color: #C9A15A; }
.pl-hero-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.pl-hero-title span { color: #C9A15A; font-style: italic; }
.pl-hero-desc {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- SECTION 2: CATEGORIES ---------- */
.pl-categories { padding: 6rem 0; }
.pl-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.pl-cat-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.5s ease;
    border: 1px solid rgba(143,106,53,0.2);
}
.pl-cat-card:hover, .pl-cat-card.active {
    border-color: #C9A15A;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.pl-cat-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pl-cat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.pl-cat-card:hover .pl-cat-img img { transform: scale(1.1); }
.pl-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.3) 0%, rgba(13,27,23,0.95) 100%);
    z-index: 2;
}
.pl-cat-icon {
    position: relative;
    z-index: 3;
    width: 50px; height: 50px;
    background: rgba(201,161,90,0.15);
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.4s;
}
.pl-cat-card:hover .pl-cat-icon, .pl-cat-card.active .pl-cat-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.pl-cat-card h3 {
    position: relative;
    z-index: 3;
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ---------- SECTION 3: FILTER BAR ---------- */
.pl-filter-bar {
    position: relative;  /* ⬅️ Changed from sticky to relative */
    z-index: 40;
    background: rgba(13,27,23,0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(201,161,90,0.15);
    border-bottom: 1px solid rgba(201,161,90,0.15);
    padding: 1.25rem 0;
}
.pl-filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.pl-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.pl-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #C9A15A;
    font-size: 0.9rem;
}
.pl-search input {
    width: 100%;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    color: #F5F1E8;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}
.pl-search input:focus { border-color: #C9A15A; }
.pl-search input::placeholder { color: rgba(209,213,219,0.5); }

.pl-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.pl-select {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    padding: 0.8rem 2rem 0.8rem 1rem;
    color: #F5F1E8;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A15A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.2rem;
    transition: border-color 0.3s;
}
.pl-select:focus { border-color: #C9A15A; }
.pl-more-btn {
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    color: #C9A15A;
    padding: 0.8rem 1.2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.pl-more-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
}

.pl-sort-view {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.pl-view-toggle {
    display: flex;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    overflow: hidden;
}
.pl-view-btn {
    background: transparent;
    border: none;
    color: #D1D5DB;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.pl-view-btn.active, .pl-view-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
}

.pl-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(143,106,53,0.15);
    font-size: 0.85rem;
    color: #D1D5DB;
}
.pl-results-info span { color: #C9A15A; font-weight: 600; }
.pl-reset-btn {
    background: transparent;
    border: none;
    color: #C9A15A;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.pl-reset-btn:hover { color: #E3BE74; }

/* ---------- SECTION 4: PRODUCT GRID ---------- */
.pl-products { padding: 5rem 0; }
.pl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.pl-grid.list-view {
    grid-template-columns: 1fr;
}
.pl-grid.list-view .pl-product-card {
    display: grid;
    grid-template-columns: 300px 1fr;
}
.pl-grid.list-view .pl-product-img { aspect-ratio: 1/1; }

.pl-product-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}
.pl-product-card:hover {
    border-color: #C9A15A;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,161,90,0.08);
}

.pl-product-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #16261F;
}
.pl-product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 1s ease;
}
.pl-product-img .pl-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.pl-product-card:hover .pl-img-main { opacity: 0; }
.pl-product-card:hover .pl-img-hover { opacity: 1; }
.pl-product-card:hover .pl-product-img img { transform: scale(1.08); }

.pl-product-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(13,27,23,0.9);
    color: #C9A15A;
    padding: 0.35rem 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    font-family: 'Cinzel', serif;
    border: 1px solid rgba(201,161,90,0.3);
    z-index: 3;
}
.pl-product-badge.sale {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-color: transparent;
}
.pl-product-badge.bestseller {
    background: #0D1B17;
    color: #E3BE74;
    border-color: #C9A15A;
}

.pl-product-actions {
    position: absolute;
    top: 1rem; right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 3;
}
.pl-product-card:hover .pl-product-actions {
    opacity: 1;
    transform: translateX(0);
}
.pl-product-actions button {
    width: 40px; height: 40px;
    background: rgba(13,27,23,0.9);
    color: #C9A15A;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.pl-product-actions button:hover {
    background: #C9A15A;
    color: #0D1B17;
}

.pl-product-info { padding: 1.5rem; }
.pl-product-cat {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.pl-product-name {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.pl-product-card:hover .pl-product-name { color: #C9A15A; }
.pl-product-desc {
    color: #D1D5DB;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.pl-product-rating {
    color: #C9A15A;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}
.pl-product-rating span {
    color: #D1D5DB;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    letter-spacing: 0;
}
.pl-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.pl-price-current {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 1.5rem;
    font-weight: 600;
}
.pl-price-old {
    color: #D1D5DB;
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.6;
}
.pl-product-stock {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pl-product-stock.in-stock { color: #7FB77E; }
.pl-product-stock.low-stock { color: #E3BE74; }
.pl-product-stock.out-stock { color: #D1D5DB; opacity: 0.5; }
.pl-stock-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pl-pulse 2s infinite;
}
@keyframes pl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pl-product-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.pl-product-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}
.pl-product-btn span, .pl-product-btn i {
    position: relative;
    z-index: 1;
}
.pl-product-btn:hover {
    color: #0D1B17;
    border-color: #C9A15A;
}
.pl-product-btn:hover::before { transform: translateY(0); }

/* ---------- EMPTY STATE ---------- */
.pl-empty {
    text-align: center;
    padding: 6rem 2rem;
}
.pl-empty-icon {
    font-size: 4rem;
    color: #C9A15A;
    opacity: 0.4;
    margin-bottom: 2rem;
}
.pl-empty h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.pl-empty p {
    color: #D1D5DB;
    margin-bottom: 2rem;
}

/* ---------- SECTION 5: PAGINATION ---------- */
.pl-pagination { padding: 2rem 0 5rem; }
.pl-pagination-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(143,106,53,0.2);
    border-bottom: 1px solid rgba(143,106,53,0.2);
    flex-wrap: wrap;
    gap: 1.5rem;
}
.pl-pagination-info {
    color: #D1D5DB;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}
.pl-pagination-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.pl-page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    color: #D1D5DB;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.pl-page-btn:hover, .pl-page-btn.active {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}
.pl-page-dots {
    color: #C9A15A;
    padding: 0 0.5rem;
}

/* ---------- SECTION 6: FEATURED BANNER ---------- */
.pl-featured-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pl-featured-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pl-featured-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.pl-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.7) 0%, rgba(13,27,23,0.9) 100%);
    z-index: 2;
}
.pl-featured-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 1.5rem;
}
.pl-featured-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.pl-featured-title span { color: #C9A15A; font-style: italic; }
.pl-featured-desc {
    color: #D1D5DB;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- SECTION 7: WHY SHOP ---------- */
.pl-why { padding: 6rem 0; }
.pl-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pl-why-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.pl-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.pl-why-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.pl-why-card:hover::before { opacity: 1; }
.pl-why-icon {
    width: 60px; height: 60px;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.pl-why-card:hover .pl-why-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.pl-why-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.pl-why-card p {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}



/* =========================================================
   RELATED PRODUCTS SECTION
   Prefix: rp- (Related Products)
========================================================= */
.rp-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.rp-header {
    position: relative;
}

/* Actions Container */
.rp-actions {
    align-items: center;
}

/* View All Button */
.rp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #F5F1E8;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.rp-view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}
.rp-view-all:hover::before { transform: translateX(0); }
.rp-view-all:hover {
    color: #0D1B17;
    border-color: #C9A15A;
    box-shadow: 0 10px 30px rgba(201,161,90,0.25);
}
.rp-view-all span,
.rp-view-all i {
    position: relative;
    z-index: 1;
}
.rp-view-all i {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}
.rp-view-all:hover i {
    transform: translateX(4px);
}

/* Gold Divider */
.rp-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(201,161,90,0.4), transparent);
}

/* Arrow Buttons */
.rp-arrows {
    gap: 0.75rem;
}
.rp-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    background: transparent;
    color: #C9A15A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.rp-arrow:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201,161,90,0.3);
}

/* Mobile CTA */
.rp-mobile-cta {
    text-align: center;
}
.rp-view-all-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #0D1B17;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    border: 1px solid #C9A15A;
    border-radius: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 320px;
}
.rp-view-all-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
.rp-view-all-mobile:hover::before { opacity: 1; }
.rp-view-all-mobile:hover {
    box-shadow: 0 10px 30px rgba(201,161,90,0.3);
    transform: translateY(-2px);
}
.rp-view-all-mobile span,
.rp-view-all-mobile i {
    position: relative;
    z-index: 1;
}
.rp-view-all-mobile i {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}
.rp-view-all-mobile:hover i {
    transform: translateX(4px);
}

/* Scrollable Wrapper */
.rp-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
}

.rp-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.rp-track::-webkit-scrollbar { display: none; }
.rp-track.dragging { cursor: grabbing; scroll-behavior: auto; }


/* ---------- SECTION 8: NEWSLETTER ---------- */
.pl-newsletter {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(13,27,23,0.95), rgba(22,38,31,0.95)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80') center/cover;
}
.pl-newsletter-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,161,90,0.08) 0%, transparent 60%);
}
.pl-newsletter-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.pl-newsletter-title span { color: #C9A15A; font-style: italic; }
.pl-newsletter-desc {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.pl-newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.pl-newsletter-form input {
    flex: 1;
    min-width: 250px;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    padding: 1rem 1.25rem;
    color: #F5F1E8;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.pl-newsletter-form input:focus { border-color: #C9A15A; }
.pl-newsletter-form input::placeholder { color: rgba(209,213,219,0.5); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .pl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .pl-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .pl-grid.list-view .pl-product-card { grid-template-columns: 1fr; }
    .pl-filter-bar { top: 70px; }
    .pl-filter-inner { flex-direction: column; align-items: stretch; }
    .pl-filters { flex-direction: column; }
    .pl-select { width: 100%; }
    .pl-sort-view { justify-content: space-between; }
    .pl-pagination-inner { flex-direction: column; text-align: center; }
    .pl-hero { height: 60vh; min-height: 400px; }
}
@media (max-width: 480px) {
    .pl-grid { grid-template-columns: 1fr; }
    .pl-cat-grid { grid-template-columns: repeat(2, 1fr); }
}