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

:root {
  /* Colors - Premium Clean Apple/Tesla Style */
  --color-black: #171a20;
  --color-white: #ffffff;
  --color-gray-bg: #f5f5f7;
  --color-dark-bg: #07080b;
  --color-border: #e5e5e7;
  
  --text-dark: #171a20;
  --text-light: #f8fafc;
  --text-muted-dark: #5c5e62;
  --text-muted-light: #a1a1a6;
  --color-blue-accent: #0071e3;
  
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  
  --transition-drawer: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  
  --header-height: 80px;
  --max-width: 1120px;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-white);
}
::-webkit-scrollbar-thumb {
  background: #d2d2d7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #86868b;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 46px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
/* Shrink the logo when the header condenses on scroll so the 50px icon
   doesn't overflow the 46px scrolled bar. */
header.scrolled .logo-icon { height: 38px; }
header.scrolled .logo-wordmark { height: 16px; }

.logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 110;
}

.logo-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Brand lockup: metallic N icon + NEXON wordmark */
.logo-icon {
  height: 50px;
  width: auto;
  display: block;
}
.logo-wordmark {
  height: 19px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .logo-icon { height: 46px; }
  .logo-wordmark { height: 16px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-menu a, .nav-right a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 4px;
  z-index: 2;
  transition: color 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 110;
}

.nav-right a {
  cursor: pointer;
}

/* Hover backdrop sliding effect */
.hover-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sections - Alternating Stripes */
.section-stripe {
  position: relative;
  padding: 100px 0;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Stripe background colors */
.stripe-white {
  background-color: var(--color-white);
  color: var(--text-dark);
}

.stripe-gray {
  background-color: var(--color-gray-bg);
  color: var(--text-dark);
}

.stripe-dark {
  background-color: var(--color-dark-bg);
  color: var(--text-light);
}

/* Stripe Grid Layout */
.stripe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.stripe-grid.reverse {
  /* Swaps columns conceptually or uses HTML orders */
}

/* Text and Content columns */
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue-accent);
  margin-bottom: 12px;
}

.stripe-dark .section-tag {
  color: var(--text-muted-light);
}

.content-col h1 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.content-col p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
}

.stripe-dark .content-col p {
  color: rgba(255, 255, 255, 0.75);
}

/* Button systems */
.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-nexon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-width: 140px;
  height: 40px;
  text-transform: capitalize;
}

.stripe-white .btn-nexon.btn-primary,
.stripe-gray .btn-nexon.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}

.stripe-white .btn-nexon.btn-primary:hover,
.stripe-gray .btn-nexon.btn-primary:hover {
  background-color: #2b303c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stripe-white .btn-nexon.btn-secondary,
.stripe-gray .btn-nexon.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--color-black);
}

.stripe-white .btn-nexon.btn-secondary:hover,
.stripe-gray .btn-nexon.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Dark stripe button configurations */
.stripe-dark .btn-nexon.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
}

.stripe-dark .btn-nexon.btn-primary:hover {
  background-color: #e5e5e7;
}

.stripe-dark .btn-nexon.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--color-white);
}

.stripe-dark .btn-nexon.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Framed Image Boxes */
.image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-box {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.stripe-dark .image-box {
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.06);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-box:hover img {
  transform: scale(1.03);
}

/* Highlight boxes for Contact details */
.contact-info-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-details h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* Side Drawers Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Drawer Panel */
.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100vh;
  z-index: 2000;
  background: var(--color-white);
  color: var(--text-dark);
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: var(--transition-drawer);
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer-panel.active {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.drawer-close:hover {
  background: var(--color-gray-bg);
}

.drawer-body {
  margin-top: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Drawer Navigation Links */
.drawer-body.menu-links {
  gap: 16px;
}

.drawer-body.menu-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}

.drawer-body.menu-links a:hover {
  background: var(--color-gray-bg);
}

/* Specifications Drawer Details */
.drawer-body h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.drawer-body .drawer-tagline {
  font-size: 0.88rem;
  color: var(--color-blue-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.drawer-body .drawer-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
}

.specs-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.stat-item {
  background: var(--color-gray-bg);
  padding: 14px;
  border-radius: 6px;
  text-align: center;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-top: 4px;
}

.specs-title {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.88rem;
}

.specs-table td.label {
  color: var(--text-muted-dark);
  width: 45%;
}

.specs-table td.value {
  font-weight: 600;
  text-align: right;
}

/* Contact Drawer Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--color-gray-bg);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b2b2b7;
  background: var(--color-white);
  box-shadow: 0 0 0 1px #b2b2b7;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #b00020;
  background: rgba(176, 0, 32, 0.02);
}

.error-message {
  font-size: 0.72rem;
  color: #b00020;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-status {
  padding: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.form-status.error {
  background: #ffebee;
  color: #c62828;
  display: block;
}

/* Floating Simulated Chatbot Assistant */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.chatbot-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chatbot-toggle .close-icon {
  display: none;
}

.chatbot-widget.active .chatbot-toggle .chat-icon {
  display: none;
}

.chatbot-widget.active .chatbot-toggle .close-icon {
  display: block;
}

.chatbot-panel {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 330px;
  height: 420px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px) scale(0.96);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.chatbot-widget.active .chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: var(--color-gray-bg);
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.chatbot-title h3 {
  font-size: 0.85rem;
  font-weight: 600;
}

.chatbot-title span {
  font-size: 0.68rem;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chatbot-title span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #2e7d32;
  border-radius: 50%;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fcfcfd;
}

.chat-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background: var(--color-white);
  color: var(--text-dark);
  border-bottom-left-radius: 1px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
}

.chat-msg.user {
  background: var(--color-black);
  color: var(--color-white);
  border-bottom-right-radius: 1px;
  align-self: flex-end;
}

.chatbot-suggested {
  padding: 6px 12px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-top: 1px solid #f0f0f2;
  background: var(--color-white);
}

.suggested-btn {
  background: var(--color-gray-bg);
  border: none;
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.suggested-btn:hover {
  background: #e5e5e7;
}

.chatbot-input-area {
  padding: 10px 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
  background: var(--color-white);
}

.chatbot-input-area input {
  flex-grow: 1;
  background: var(--color-gray-bg);
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-family: var(--font-sans);
}

.chatbot-send-btn {
  background: var(--color-black);
  border: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chatbot-send-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Typing bounce indicators */
.typing-indicator {
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 6px 10px;
}

.typing-dot {
  width: 4px;
  height: 4px;
  background: var(--text-muted-dark);
  border-radius: 50%;
  animation: typing-bounce 1s infinite alternate;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* Footers Clean layouts */
footer {
  background: var(--color-gray-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted-dark);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted-dark);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-blue-accent);
}

/* Catalog Grid Styles */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: var(--color-gray-bg);
}

.filter-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}

@media (min-width: 576px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  border-color: #b2b2b7;
}

.product-card-img-box {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.product-card-img-box img {
  width: 100%;
  height: auto;
  display: block;
  padding: 14px;
  background-color: var(--color-white);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-img-box img {
  transform: scale(1.03);
}

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

.product-card-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-blue-accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-card-tagline {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.product-card-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  margin-bottom: 20px;
  text-align: center;
  gap: 10px;
}

.product-card-stat-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.product-card-action {
  width: 100%;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--color-gray-bg);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card-action:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Mobile Responsiveness styling */
@media (max-width: 1024px) {
  header {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide center links on tablet/mobile */
  }
  
  header {
    padding: 0 20px;
  }
  
  .section-stripe {
    padding: 70px 0;
  }
  
  .stripe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-col {
    order: 1 !important; /* Force text on top */
    text-align: center;
  }
  
  .button-group {
    justify-content: center;
  }
  
  .image-col {
    order: 2 !important; /* Force image on bottom */
  }
  
  .image-box {
    max-width: 100%;
  }
  
  .content-col h1 {
    font-size: 2.1rem;
  }
  
  .drawer-panel {
    width: 100%;
  }
  
  .chatbot-panel {
    width: calc(100vw - 48px);
    right: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Catalog Pagination Controls */
.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pagination-btn:hover:not(:disabled) {
  background: var(--color-gray-bg);
  border-color: var(--text-dark);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn.active {
  background: var(--color-blue-accent);
  color: var(--color-white);
  border-color: var(--color-blue-accent);
  box-shadow: 0 4px 10px rgba(21, 134, 244, 0.3);
}

.pagination-info {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  margin: 0 10px;
}
