@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Base ─────────────────────────────────────────────────────────────────── */
.pnk-wrap *,
.pnk-single-wrap *,
.pnk-recommended-wrap *,
.pnk-range-wrap *,
.pnk-ind-section-wrap *,
.pnk-why-section * {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════════════════════════════════════
   LISTING PAGE
══════════════════════════════════════════════════════════════════════════════ */

.pnk-page-header {
    padding: 32px 0 24px;
}

.pnk-page-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F97316;
    margin: 0 0 8px;
}

.pnk-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.pnk-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pnk-product-count {
    font-size: 14px;
    font-weight: 500;
    color: #F97316;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.pnk-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.pnk-sidebar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.pnk-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.pnk-filters-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 1px;
}

.pnk-clear-all {
    font-size: 12px;
    font-weight: 500;
    color: #F97316;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.pnk-filter-group {
    border-bottom: 1px solid #f1f5f9;
}

.pnk-filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    user-select: none;
}

.pnk-filter-group-header:hover {
    background: #f8fafc;
}

.pnk-chevron {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.pnk-filter-group.collapsed .pnk-chevron {
    transform: rotate(180deg);
}

.pnk-filter-group.collapsed .pnk-filter-options {
    display: none;
}

.pnk-filter-options {
    padding: 4px 16px 12px;
}

.pnk-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 13px;
    color: #475569;
}

.pnk-checkbox-label:hover {
    color: #0f172a;
}

.pnk-checkbox-label input[type=checkbox] {
    width: 15px;
    height: 15px;
    accent-color: #F97316;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.pnk-apply-filters {
    display: none;
    width: calc(100% - 32px);
    margin: 12px 16px 16px;
    padding: 10px;
    background: #F97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* ── Product Grid ─────────────────────────────────────────────────────────── */
.pnk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pnk-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px;
    color: #94a3b8;
    font-size: 15px;
}

.pnk-no-results {
    text-align: center;
    padding: 60px;
    color: #94a3b8;
    font-size: 15px;
    border: 1px dashed #e2e8f0;
    border-radius: 10px;
}

/* ── Product Card ─────────────────────────────────────────────────────────── */
.pnk-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.pnk-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

.pnk-card-model {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
}

.pnk-card-sub {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 10px;
}

.pnk-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

/* ── Load More ────────────────────────────────────────────────────────────── */
.pnk-load-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.pnk-load-more {
    padding: 12px 40px;
    background: #F97316 !important;
    color: #ffffff !important;
    border: 1.5px solid #F97316 !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
    letter-spacing: 0.5px;
}

.pnk-load-more:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
}

/* ── Mobile Filter Button ─────────────────────────────────────────────────── */
.pnk-mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 12px 24px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
}

.pnk-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE (EXACT NEW DESIGN MATCH + ZOOM + BUTTON FIXES)
══════════════════════════════════════════════════════════════════════════════ */

.pnk-single-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Top Section (Gallery Left, Info Right) ── */
.pnk-single-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 50px;
    align-items: start;
}

/* Gallery (Thumbs Left, Main Image Right) */
.pnk-gallery-wrap {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.pnk-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 64px;
    flex-shrink: 0;
}

.pnk-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s;
    background: #f1f5f9;
}

.pnk-thumb.active,
.pnk-thumb:hover {
    border-color: #F97316;
}

.pnk-thumb img {
  
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
}

/* MAIN IMAGE HOVER SCALE */
.pnk-gallery-main {
    flex: 1;
    border-radius: 12px;
    overflow: hidden !important; /* Must hide overflow for scale */
    background: transparent;
    border: none;
}

.pnk-gallery-main img {
 width: 500px !important;
    height: 400px !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease !important;
}

.pnk-gallery-main:hover img {
    transform: scale(1.06) !important;
}

/* Product Info */
.pnk-single-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #F97316;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.pnk-single-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
}

.pnk-single-short-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.6;
}

/* Specs Checklist */
.pnk-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 30px;
}

.pnk-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #0f172a;
    font-weight: 500;
}

.pnk-check-icon {
    flex-shrink: 0;
}

/* CTA Buttons - Center Aligned Fix */
.pnk-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.pnk-cta-row a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
}

.pnk-cta-row a svg {
    margin: 0 !important;
    flex-shrink: 0;
    display: block;
}

/* Cert Logos */
.pnk-cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.pnk-cert-logo {
    height: 50px !important;
    max-width: 120px !important;
    object-fit: contain;
}

/* ── Industries (New White Layout) ── */
.pnk-industries-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
    border-radius: 0;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    border-top: 1px solid #f1f5f9;
}

.pnk-industries-left {
    flex-shrink: 0;
    min-width: 160px;
}

.pnk-industries-built {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.1;
}

.pnk-industries-critical {
    font-size: 24px;
    font-weight: 800;
    color: #F97316;
    margin: 0;
    line-height: 1.1;
}

.pnk-industries-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
}

.pnk-industries-grid::-webkit-scrollbar { display:none; }

.pnk-industry-card {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.pnk-industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pnk-industry-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

/* ── Tabs + Docs ── */
.pnk-tabs-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}
.pnk-tabs-section.pnk-no-docs {
    grid-template-columns: 1fr;
}

.pnk-tab-nav {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 32px;
}

.pnk-tab-btn {
    padding: 12px 28px;
    margin-right: 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.pnk-tab-btn:hover {
    color: #F97316;
    background: #fff7ed;
}

.pnk-tab-btn.active {
    color: white;
    background-color: #F97316;
    border-bottom-color: #F97316;
}

.pnk-tab-content { display: none; }
.pnk-tab-content.active { display: block; }

/* Overview */
.pnk-overview-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
.pnk-overview-layout.pnk-no-stats {
    grid-template-columns: 1fr;
}

.pnk-overview-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.pnk-overview-text p,
.pnk-overview-text div {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.pnk-overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pnk-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pnk-stat-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    flex-shrink: 0;
}

.pnk-stat-value { font-size: 18px; font-weight: 700; color: #0f172a; }
.pnk-stat-label { font-size: 12px; color: #64748b; }

/* Documents Box (White Box Design) */
.pnk-docs-sidebar {
    background: #fff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 24px;
}

.pnk-docs-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.pnk-doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
.pnk-doc-row:last-child { border-bottom: none; padding-bottom: 0; }

.pnk-doc-icon {
    color: #3b82f6;
    background: transparent;
}

.pnk-doc-label { font-size: 13px; font-weight: 600; color: #0f172a; }
.pnk-doc-size { font-size: 11px; color: #94a3b8; }

.pnk-doc-dl {
    color: #3b82f6 !important; /* Blue Arrow */
    background: transparent;
}
.pnk-doc-dl:hover { color: #2563eb !important; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .pnk-single-top { grid-template-columns: 1fr; }
    .pnk-tabs-section { grid-template-columns: 1fr; }
    .pnk-overview-layout { grid-template-columns: 1fr; }
    .pnk-industries-section { flex-direction: column; align-items: flex-start; padding: 24px 0; gap: 16px; }
}
@media (max-width: 600px) {
    .pnk-gallery-wrap { flex-direction: column-reverse; }
    .pnk-gallery-thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
    .pnk-specs-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRODUCT RANGE SECTION
══════════════════════════════════════════════════════════════════════════════ */

.pnk-range-wrap * { box-sizing:border-box; font-family:'Inter',sans-serif; }

.pnk-range-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F97316;
    margin: 0 0 8px;
}

.pnk-range-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 28px;
}

.pnk-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pnk-range-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pnk-range-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

.pnk-range-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f1f5f9;
}

.pnk-range-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pnk-range-card:hover .pnk-range-img-wrap img {
    transform: scale(1.04);
}

.pnk-range-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.pnk-range-body {
    padding: 18px 16px 16px;
}

.pnk-range-cat-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pnk-range-cat-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pnk-range-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.pnk-range-count {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.pnk-range-explore {
    font-size: 12px;
    font-weight: 700;
    color: #F97316 !important;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: opacity 0.15s;
}

.pnk-range-explore:hover {
    opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════════════════════
   INDUSTRIES SECTION (standalone widget)
══════════════════════════════════════════════════════════════════════════════ */

.pnk-ind-section-wrap * { box-sizing:border-box; font-family:'Inter',sans-serif; }

.pnk-ind-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
}

.pnk-ind-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pnk-ind-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none !important;
    background: #1e293b;
}

.pnk-ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.3s;
}

.pnk-ind-card:hover img {
    opacity: 0.9;
    transform: scale(1.04);
}

.pnk-ind-placeholder {
    width: 100%;
    height: 100%;
    background: #334155;
}

.pnk-ind-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 10px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

/* Override any theme injecting extra content into industry cards */
.pnk-industry-card * { font-family: 'Inter', sans-serif !important; }
.pnk-industry-card > *:not(img):not(.pnk-industry-label) { display: none !important; }

/* ── WHY CHOOSE SECTION ───────────────────────────────────────────────────── */
.pnk-why-section {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.pnk-why-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 28px;
    letter-spacing: 0.3px;
}

.pnk-why-model {
    color: #F97316;
}

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

.pnk-why-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.pnk-why-icon {
    width: 44px;
    height: 44px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #F97316;
    overflow: hidden;
}

.pnk-why-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.pnk-why-heading {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.pnk-why-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CRITICAL FIXES FOR EXACT DESIGN MATCH (Listing Page Addons)
══════════════════════════════════════════════════════════════════════════════ */

/* 1. Sort By Dropdown Fix */
.pnk-sort-wrap {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: auto !important;
    margin-left: auto !important;
}
.pnk-sort-wrap label {
    font-size: 13px !important;
    color: #64748b !important;
    white-space: nowrap !important;
    margin: 0 !important;
}
.pnk-sort-select {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    height: 38px !important;
    padding: 0 32px 0 12px !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    min-width: 140px !important;
}

/* 2. FORCE KILL Product Card Image Gap */
.pnk-card-img-link {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
    border: none !important;
}
.pnk-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    padding-top: 75% !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    display: block !important;
}
.pnk-card-img-wrap img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: none !important;
}
.pnk-card-body {
    padding: 16px !important;
    margin-top: 0 !important;
}

/* 3. Specs List - Clean text without bullets */
.pnk-card-specs li {
    font-size: 12px;
    color: #64748b;
    padding: 3px 0 !important;
}
.pnk-card-specs li::before {
    display: none !important;
}

/* 4. Certification Tags Listing */
.pnk-card-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 16px;
}
.pnk-cert-tag {
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 6px;
    text-transform: uppercase;
}

/* 5. Buttons Half & Half */
.pnk-card-btns {
    display: flex;
    gap: 8px;
    width: 100%;
}
.pnk-card-btns > a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pnk-btn-primary {
    background: #F97316;
    color: #fff !important;
    border: 1px solid #F97316;
}
.pnk-btn-outline {
    background: #fff;
    color: #F97316 !important;
    border: 1px solid #F97316;
}
.pnk-btn-outline svg { margin-left: 4px; }
.pnk-card-title-link { text-decoration: none !important; color: inherit !important; }
.pnk-card-title-link:hover .pnk-card-model { color: #F97316; }

@media (max-width: 900px) {
    .pnk-range-grid { grid-template-columns: repeat(2, 1fr); }
    .pnk-ind-section-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pnk-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pnk-range-grid { grid-template-columns: 1fr; }
    .pnk-range-title { font-size: 22px; }
    .pnk-ind-section-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pnk-ind-section-title { font-size: 18px; }
}

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





/* ══════════════════════════════════════════════════════════════════════════════
   CRITICAL FIXES FOR EXACT DESIGN MATCH
══════════════════════════════════════════════════════════════════════════════ */

/* 1. Sort By Dropdown Fix */
.pnk-sort-wrap {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: auto !important;
    margin-left: auto !important;
}
.pnk-sort-wrap label {
    font-size: 13px !important;
    color: #64748b !important;
    white-space: nowrap !important;
    margin: 0 !important;
}
.pnk-sort-select {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    height: 38px !important;
    padding: 0 32px 0 12px !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    min-width: 140px !important;
}

/* 2. FORCE KILL Product Card Image Gap */
.pnk-card-img-link {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
    border: none !important;
}

.pnk-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    padding-top: 75% !important; /* Forces exact 4:3 Aspect Ratio */
    margin: 0 !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    display: block !important;
}

.pnk-card-img-wrap img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: none !important;
}

.pnk-card-body {
    padding: 16px !important;
    margin-top: 0 !important; /* Prevents body from pushing down */
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* 3. Specs List - Clean text without bullets */
.pnk-card-specs li {
    font-size: 12px;
    color: #64748b;
    padding: 3px 0 !important;
}
.pnk-card-specs li::before {
    display: none !important;
}

/* 4. Certification Tags */
.pnk-card-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 16px;
}
.pnk-cert-tag {
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 6px;
    text-transform: uppercase;
}

/* 5. Buttons - Side by Side (Half & Half) */
.pnk-card-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: auto !important;
}
.pnk-card-btns > a {
    flex: 1;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
.pnk-btn-primary {
    background: #F97316;
    color: #fff !important;
    border: 1px solid #F97316;
}
.pnk-btn-outline {
    background: #fff;
    color: #F97316 !important;
    border: 1px solid #F97316;
}
.pnk-btn-outline svg {
    margin-left: 4px;
}

/* Link Title Hover */
.pnk-card-title-link {
    text-decoration: none !important;
    color: inherit !important;
}
.pnk-card-title-link:hover .pnk-card-model {
    color: #F97316;
}




/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE FIXES (MOBILE & TABLET)
══════════════════════════════════════════════════════════════════════════════ */

.pnk-filter-overlay.open {
    display: block !important;
}

/* Tablet & Mobile View (ট্যাবলেট এবং মোবাইলে ফিল্টার বাটন দেখাবে) */
@media (max-width: 1024px) {
    .pnk-layout {
        grid-template-columns: 1fr !important;
    }
    .pnk-grid, 
    .pnk-recommended-wrap .pnk-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .pnk-card-btns {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .pnk-card-btns > a {
        width: 100% !important;
        padding: 12px 0 !important;
    }

    /* Sidebar Hidden for Mobile Filter Button */
    .pnk-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        overflow-y: auto !important;
        z-index: 999999 !important; /* Extremely high z-index to avoid theme overlaps */
        border-radius: 0 !important;
        transform: translateX(-110%) !important;
        transition: transform 0.3s ease !important;
    }
    .pnk-sidebar.open {
        transform: translateX(0) !important;
    }
    .pnk-mobile-filter-btn {
        display: flex !important;
        z-index: 999998 !important;
    }
    .pnk-apply-filters {
        display: block !important;
    }
    .pnk-page-header {
        padding: 20px 0 !important;
    }
    .pnk-page-title {
        font-size: 22px !important;
    }
}

/* Mobile View (মোবাইলে ১টা করে কার্ড দেখাবে এবং বাটনগুলো সুন্দরভাবে বসবে) */
@media (max-width: 768px) {
    /* Grid 1 Column on Mobile */
    .pnk-grid, 
    .pnk-recommended-wrap .pnk-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }
    
    /* Card Button Fix on Mobile */
    .pnk-card-btns {
        flex-direction: column !important; /* বাটনগুলো নিচে নিচে আসবে */
        gap: 10px !important;
    }
    .pnk-card-btns > a {
        width: 100% !important; /* বাটন ফুল উইডথ হবে */
        padding: 12px 0 !important;
    }
}



/* -- Featured Card -------------------------------------------------------- */
.pnk-featured-card {
    background: transparent !important;
    padding: 12px;
}
.pnk-featured-card .pnk-card-img-wrap {
    border-radius: 8px;
}
.pnk-featured-card .pnk-card-body {
    padding: 16px 4px 4px !important;
}


/* -- Featured Grid (4 Columns) -- */
@media (min-width: 1025px) { .pnk-grid-4 { grid-template-columns: repeat(4, 1fr) !important; } }


/* --- Multilingual UI Button & RTL Fixes --- */
.pnk-card-btns > a,
.pnk-btn-primary, 
.pnk-btn-outline,
a.elementor-button,
button {
    white-space: nowrap !important;
}

.pnk-card-btns {
    flex-wrap: wrap !important;
}
.pnk-card-btns > a {
    flex: 1 1 120px !important; /* Force wrap if container is too small, stretch to 100% */
}

/* RTL Support for Arabic */
html[dir="rtl"] .elementor-button-icon i,
html[dir="rtl"] .elementor-button-icon svg,
html[dir="rtl"] .pnk-btn-outline svg {
    transform: scaleX(-1);
}
html[dir="rtl"] .pnk-btn-outline svg {
    margin-left: 0 !important;
    margin-right: 4px !important;
}

