/* ==========================================================================
   LINKSOLAR — DEDICATED CLEAN-TECH PRODUCTS CATALOG STYLESHEET
   Google Stitch Generative Aesthetic (Glassmorphism, High-Density Bento Grid)
   ========================================================================== */

:root {
  --prod-bg: #F8FAFC;
  --prod-card-bg: #FFFFFF;
  --prod-card-border: #E2E8F0;
  --prod-card-hover-border: #CBD5E1;
  --prod-text-main: #0F172A;
  --prod-text-muted: #64748B;
  --prod-text-sub: #94A3B8;
  --prod-accent: #FFE600;
  --prod-accent-dark: #D4BE00;
  --prod-emerald: #10B981;
  --prod-emerald-bg: #ECFDF5;
  --prod-cyan: #06B6D4;
  --prod-cyan-bg: #ECFEFF;
  --prod-radius-lg: 20px;
  --prod-radius-md: 12px;
  --prod-radius-sm: 8px;
  --prod-radius-full: 9999px;
  --prod-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --prod-font-display: 'Outfit', sans-serif;
  --prod-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --prod-shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

body.products-catalog-page {
  font-family: var(--prod-font-sans);
  background: var(--prod-bg);
  color: var(--prod-text-main);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   1. PRODUCTS HERO & SEARCH BAR
   ========================================================================== */
.prod-catalog-hero {
  background: radial-gradient(circle at 80% 20%, rgba(255, 230, 0, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
              #0B101D;
  color: #FFFFFF;
  padding: 100px 0 28px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prod-catalog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFE600, transparent);
}

.prod-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.prod-hero-title {
  font-family: var(--prod-font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: #FFFFFF;
}

.prod-hero-title span.accent {
  background: linear-gradient(135deg, #FFE600 0%, #FFA000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prod-hero-desc {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* Hero Live Search & Filter Bar */
.prod-search-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.prod-search-input {
  width: 100%;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--prod-radius-full);
  padding: 16px 24px 16px 52px;
  font-size: 1rem;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.prod-search-input:focus {
  border-color: var(--prod-accent);
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.prod-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  pointer-events: none;
}

/* ==========================================================================
   2. CATEGORY PILLS & CONTROLS BAR
   ========================================================================== */
.prod-controls-section {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 72px;
  z-index: 40;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prod-controls-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.prod-category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.prod-cat-btn {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
  border-radius: var(--prod-radius-full);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prod-cat-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.prod-cat-btn.active {
  background: #000000;
  color: #FFE600;
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prod-cat-btn .count {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: var(--prod-radius-full);
}

.prod-cat-btn.active .count {
  background: rgba(255, 230, 0, 0.2);
  color: #FFE600;
}

.prod-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
}

.prod-sort-select {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--prod-radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #0F172A;
  outline: none;
  font-weight: 600;
  cursor: pointer;
}

/* ==========================================================================
   3. PRODUCTS GRID & CARDS
   ========================================================================== */
.prod-catalog-section {
  padding: 60px 0 100px;
}

.prod-grid-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.prod-results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  color: #64748B;
  font-size: 0.9rem;
}

.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

/* Card Styling */
.prod-item-card {
  background: var(--prod-card-bg);
  border: 1.5px solid var(--prod-card-border);
  border-radius: var(--prod-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--prod-shadow-sm);
  overflow: hidden;
}

.prod-item-card.is-hidden {
  display: none !important;
}

.prod-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(255, 239, 94), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prod-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 239, 94, 0.75);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 0 20px rgba(255, 239, 94, 0.2);
}

.prod-item-card:hover::before {
  opacity: 1;
}

.prod-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.prod-cat-pill {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--prod-radius-full);
  transition: all 0.2s ease;
}

.prod-badge-tag {
  background: rgba(255, 239, 94, 0.25);
  color: #854D0E;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--prod-radius-full);
}

.prod-card-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--prod-radius-md);
  overflow: hidden;
  background: #0F172A;
  margin-bottom: 20px;
  position: relative;
}

.prod-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-item-card:hover .prod-card-img-wrap img {
  transform: scale(1.08);
}

.prod-card-title {
  font-family: var(--prod-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--prod-text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.prod-card-desc {
  font-size: 0.88rem;
  color: var(--prod-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Specs Bento Grid on Card */
.prod-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.prod-spec-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--prod-radius-sm);
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.prod-item-card:hover .prod-spec-box {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.prod-spec-lbl {
  font-size: 0.72rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}

.prod-spec-val {
  font-family: var(--prod-font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0;
  line-height: 1.25;
  white-space: pre-line;
  word-break: break-word;
}

/* Card Bottom Footer */
.prod-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
  width: 100%;
}

.prod-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

/* User's Signature Dynamic Enquire Button */
.button,
.prod-inquire-btn {
  flex: none;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  border: 1.5px solid rgb(255, 230, 0);
  background-color: rgb(255, 230, 0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 0 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.button .text,
.prod-inquire-btn .text {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #000000;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button .arrow,
.prod-inquire-btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.25s ease;
}

.button .arrow path,
.prod-inquire-btn .arrow path {
  stroke: rgb(19, 19, 19);
}

.button:hover,
.prod-inquire-btn:hover {
  background-color: #FFEA2E;
  border-color: #FFEA2E;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(255, 230, 0, 0.45);
}

.button:hover .arrow,
.prod-inquire-btn:hover .arrow {
  transform: translateX(4px);
  animation: none;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.button:active,
.prod-inquire-btn:active {
  transform: scale(0.97);
}

.prod-wa-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  flex-shrink: 0;
}

.prod-wa-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   4. INSTANT INQUIRY POPUP MODAL
   ========================================================================== */
.prod-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prod-modal-card {
  background: #FFFFFF;
  border-radius: var(--prod-radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.prod-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
}

.prod-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.prod-modal-header {
  margin-bottom: 24px;
}

.prod-modal-header h3 {
  font-family: var(--prod-font-display);
  font-size: 1.4rem;
  color: #0F172A;
  margin-bottom: 6px;
}

.prod-modal-header p {
  color: #64748B;
  font-size: 0.88rem;
  margin: 0;
}

.prod-modal-form-group {
  margin-bottom: 16px;
}

.prod-modal-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  margin-bottom: 6px;
}

.prod-modal-input {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--prod-radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #0F172A;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.prod-modal-input:focus {
  border-color: #000000;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.prod-modal-submit-btn {
  width: 100%;
  background: #000000;
  color: #FFE600;
  border: none;
  border-radius: var(--prod-radius-md);
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.prod-modal-submit-btn:hover {
  background: #1E293B;
  transform: translateY(-1px);
}

/* Responsive — Mobile 2-Column Product Grid ("ek line mai 2") */
@media (max-width: 768px) {
  .prod-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .prod-grid-container {
    padding: 0 12px !important;
  }
  .prod-catalog-section {
    padding: 24px 0 60px !important;
  }
  .prod-catalog-hero {
    padding-top: 118px !important;
    padding-bottom: 38px !important;
  }
  .prod-controls-section {
    position: sticky !important;
    top: 56px !important;
    z-index: 50 !important;
    padding: 2px 0 !important;
  }
  .prod-controls-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 16px 16px !important;
  }
  .prod-category-tabs {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    width: 100% !important;
  }
  .prod-cat-btn {
    flex-shrink: 0;
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
  }
  .prod-results-meta {
    margin-bottom: 18px !important;
    font-size: 0.82rem !important;
  }

  /* 2-Column Card Styling with Full Description & Larger Text */
  .prod-item-card {
    padding: 14px 12px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }
  .prod-card-top-row {
    margin-bottom: 8px !important;
  }
  .prod-cat-pill {
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
  }
  .prod-card-img-wrap {
    height: 135px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
  }
  .prod-card-title {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    min-height: 0 !important;
  }
  .prod-card-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    color: #475569 !important;
    margin-bottom: 10px !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
  }
  /* Ultra-Compact 2-Column Key Features to Save Vertical Space */
  .stitch-prod-specs-grid {
    background: transparent !important;
    border: none !important;
    border-top: 1px dashed #E2E8F0 !important;
    border-radius: 0 !important;
    padding: 6px 0 !important;
    margin-bottom: 8px !important;
    gap: 5px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stitch-prod-spec-item {
    padding: 3px 5px !important;
    text-align: left !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 6px !important;
  }
  .stitch-prod-spec-lbl {
    font-size: 0.6rem !important;
    color: #94A3B8 !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
  }
  .stitch-prod-spec-val {
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .prod-card-footer {
    padding-top: 8px !important;
  }
  .prod-actions-row {
    gap: 6px !important;
  }
  .prod-inquire-btn {
    height: 30px !important;
    padding: 0 8px !important;
    flex: 1 1 auto !important;
    border-radius: 6px !important;
  }
  .prod-inquire-btn .text {
    font-size: 0.72rem !important;
  }
  .prod-inquire-btn .arrow svg {
    width: 10px !important;
    height: 10px !important;
  }
  .prod-wa-btn {
    width: 30px !important;
    height: 30px !important;
    border-radius: 6px !important;
  }
  .prod-wa-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
  .prod-card-zoom-btn {
    width: 26px !important;
    height: 26px !important;
    top: 6px !important;
    right: 6px !important;
  }
  .prod-card-zoom-btn svg {
    width: 12px !important;
    height: 12px !important;
  }
  .prod-card-nav-btn {
    width: 24px !important;
    height: 24px !important;
  }
  .prod-card-nav-btn svg {
    width: 12px !important;
    height: 12px !important;
  }
}

@media (max-width: 480px) {
  .prod-catalog-hero {
    padding-top: 112px !important;
    padding-bottom: 30px !important;
  }
  .prod-controls-inner {
    padding: 12px 10px !important;
    gap: 8px !important;
  }
  .prod-cat-btn {
    padding: 6px 12px !important;
    font-size: 0.78rem !important;
  }
  .prod-cards-grid {
    gap: 8px !important;
  }
  .prod-grid-container {
    padding: 0 8px !important;
  }
  .prod-item-card {
    padding: 12px 10px !important;
    border-radius: 12px !important;
  }
  .prod-card-img-wrap {
    height: 125px !important;
  }
  .prod-card-title {
    font-size: 0.94rem !important;
  }
  .prod-card-desc {
    font-size: 0.78rem !important;
  }
  .prod-hero-title {
    font-size: 1.65rem !important;
  }
}

/* ==========================================================================
   PRODUCT CARD MULTI-IMAGE THUMBNAIL GALLERY BAR
   ========================================================================== */
.prod-card-photo-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFE600;
  background: rgba(255, 230, 0, 0.12);
  border: 1px solid rgba(255, 230, 0, 0.28);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.prod-card-thumbs-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  z-index: 8;
  max-width: 90%;
  pointer-events: auto;
}

.prod-card-thumb-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1.5px solid transparent;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #1E293B;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.65;
  flex-shrink: 0;
  box-sizing: border-box;
}

.prod-card-thumb-btn:hover {
  opacity: 1;
  transform: scale(1.15);
  border-color: rgba(255, 230, 0, 0.6);
}

.prod-card-thumb-btn.active {
  opacity: 1;
  border-color: #FFE600;
  box-shadow: 0 0 10px rgba(255, 230, 0, 0.6);
  transform: scale(1.1);
}

.prod-card-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ==========================================================================
   PRODUCT CATALOG PAGINATION STYLES
   ========================================================================== */
.prod-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 16px 0;
}

.prod-page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prod-page-num-btn,
.prod-page-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  font-family: var(--prod-font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.prod-page-num-btn:hover:not(.active),
.prod-page-nav-btn:hover:not(:disabled) {
  border-color: #000000;
  background: #F8FAFC;
  transform: translateY(-1px);
}

.prod-page-num-btn.active {
  background: #000000;
  color: #FFE600;
  border-color: #000000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: default;
}

.prod-page-nav-btn {
  gap: 6px;
  padding: 0 16px;
}

.prod-page-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #E2E8F0;
  background: #F8FAFC;
  box-shadow: none;
}

.prod-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 40px;
  color: #94A3B8;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .prod-pagination-wrap {
    margin-top: 28px;
    gap: 6px;
  }
  .prod-page-num-btn,
  .prod-page-nav-btn {
    height: 36px;
    min-width: 36px;
    padding: 0 10px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  .prod-page-nav-btn span {
    display: none;
  }
  .prod-page-numbers {
    gap: 4px;
  }
  .prod-page-ellipsis {
    width: 18px;
    font-size: 0.8rem;
  }
}

