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

:root {
  --primary: #001F3F;
  --secondary: #F29512;
  --accent: #1E7C44;
  --font-size: 19px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size);
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, button, .button {
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--primary);
  color: white;
  padding: 8px 0;
}

.header-main {
  padding: 16px 0;
}

.logo img {
  height: 56px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a,
.nav-menu button {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu button:hover {
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 320px;
  margin-top: 8px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 19px;
  font-weight: normal;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: rgba(242, 149, 18, 0.2);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 8px 0;
}

.mobile-menu a {
  display: block;
  padding: 8px 0;
  color: #1a1a1a;
  text-decoration: none;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 19px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background-color: rgba(242, 149, 18, 0.9);
}

.btn-secondary {
  background-color: var(--primary);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(0, 31, 63, 0.9);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 20px;
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  background-color: var(--secondary) !important;
  color: white !important;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-consultation:hover {
  background-color: #E68508;
}

.btn-consultation:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-consultation-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-consultation-large:hover {
  background-color: #E68508;
}

.btn-consultation-large svg {
  width: 20px;
  height: 20px;
}

.btn-price {
  padding: 8px 16px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.btn-price:hover {
  background-color: #0D0D0D;
}

/* Hero/Banner Section */
.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 96px 0;
  position: relative;
}

.hero-content {
  max-width: 768px;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 768px;
  margin: 0 auto 48px;
}

/* Product Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  aspect-ratio: 4/3;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.1), transparent);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-overlay h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
}

.category-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 16px;
}

.category-link {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 500;
  transition: transform 0.3s;
}

.category-card:hover .category-link {
  transform: translateX(8px);
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.advantage-card {
  text-align: center;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.advantage-card:hover .advantage-icon {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.advantage-icon svg {
  width: 40px;
  height: 40px;
}

.advantage-card h3 {
  margin-bottom: 8px;
  color: white;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* Brand Cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.brand-card {
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.05), rgba(30, 124, 68, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.brand-card h3 {
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.brand-card:hover h3 {
  color: var(--primary);
}

.brand-arrow {
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--secondary);
}

.brand-card:hover .brand-arrow {
  opacity: 1;
}

/* Footer */
.footer {
  background-color: #0a1222;
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer h4 {
  margin-bottom: 16px;
  color: white;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin: 8px 0;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer a:hover {
  color: #F2E205;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 16px;
}

/* Floating Action Button */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s;
  animation: bounce 2s infinite;
}

.floating-cta:hover {
  background-color: rgba(242, 149, 18, 0.9);
  transform: scale(1.1);
}

.floating-cta svg {
  width: 28px;
  height: 28px;
}

.floating-cta-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: ping 2s infinite;
}

/* Modal/Dialog */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 425px;
  width: 100%;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #666;
}

.modal-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary);
}

.modal-header p {
  color: #666;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 19px;
  font-family: 'Open Sans', sans-serif;
  background-color: #f3f3f5;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.required {
  color: #F20505;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideIn 0.3s;
  display: none;
}

.toast.active {
  display: block;
}

.toast.success {
  border-left: 4px solid var(--accent);
}

.toast.error {
  border-left: 4px solid #F20505;
}

/* Contact Line */
.addresses {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
}

.contact-line svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.contact-line .contact-address {
  margin: 0;
  line-height: 1.25;
  font-size: 15px;
}

/* Category Page */
.category-page-wrapper {
  min-height: 100vh;
  background-color: #f9fafb;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  padding: 24px 0;
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #666;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--secondary);
}

.breadcrumb-separator {
  color: #999;
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

/* Category Header */
.category-header {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--primary), #0D0D0D);
  color: white;
}

.category-header-content {
  max-width: 768px;
}

.category-brand {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

.category-title {
  margin-bottom: 16px;
  font-size: 42px;
  color: white;
  line-height: 1.2;
}

.category-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

/* Products Section */
.category-products-section {
  padding: 48px 0;
}

/* Products Layout (with sidebar) */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.category-sidebar {
  height: fit-content;
  position: sticky;
  top: 20px;
}

.category-menu {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-menu-root {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  padding: 0 0 16px 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 16px;
}

.category-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-menu-item {
  margin: 0;
  padding: 0;
}

/* Category Menu Link Wrapper */
.category-menu-link-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.category-menu-link {
  flex: 1;
  display: block;
  padding: 12px 16px;
  color: #232529;
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.category-menu-link:hover {
  background: #f3f4f6;
  color: var(--primary);
  border-left-color: var(--secondary);
}

.category-menu-item.active .category-menu-link {
  background: #FEF3E2;
  color: var(--secondary);
  font-weight: 600;
  border-left-color: var(--secondary);
}

/* Toggle Button */
.category-menu-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.category-menu-toggle:hover {
  background: #f3f4f6;
  color: var(--primary);
}

.category-menu-toggle svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.category-menu-toggle.expanded svg {
  transform: rotate(180deg);
}

/* Submenu */
.category-menu-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.category-menu-submenu.expanded {
  max-height: 500px;
  opacity: 1;
}

.category-menu-submenu-item {
  margin: 0;
  padding: 0;
}

.category-menu-submenu-link {
  display: block;
  padding: 10px 16px 10px 40px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-weight: 400;
}

.category-menu-submenu-link:hover {
  background: #f9fafb;
  color: var(--primary);
  border-left-color: var(--secondary);
}

.category-menu-submenu-item.active .category-menu-submenu-link {
  background: #FEF3E2;
  color: var(--secondary);
  border-left-color: var(--secondary);
  font-weight: 600;
}

/* Products Content */
.products-content {
  display: flex;
  flex-direction: column;
  align-self: start;  /* { changed code } Prevents stretching when sidebar expands */
}

/* Filters Box */
.filters-box {
  margin-bottom: 32px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.filter-label {
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.filter-select {
  padding: 8px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  aspect-ratio: 1;
  background-color: #f3f3f5;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  overflow: hidden;
}

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

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.4;
}

.product-article {
  color: #999;
  font-size: 13px;
  margin-bottom: 12px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  gap: 12px;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-value {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary);
}

.price-label {
  font-size: 12px;
  color: #999;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.pagination-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-wrapper li {
  margin: 0;
}

.pagination-wrapper a,
.pagination-wrapper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  background: white;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 36px;
  height: 36px;
}

.pagination-wrapper a:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination-wrapper .page-numbers.current {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  pointer-events: none;
}

.pagination-wrapper .prev,
.pagination-wrapper .next {
  font-weight: 600;
}

/* No products message */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: 12px;
  color: #666;
}

.no-products p {
  margin: 0;
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary), #0D0D0D);
  color: white;
}

.cta-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  margin-bottom: 16px;
  font-size: 36px;
  color: white;
  line-height: 1.2;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.6;
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-top {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 30px;
  }

  .products-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .hero-banner {
    padding: 64px 0;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 20px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-line {
    gap: 6px;
  }

  .contact-line .contact-address {
    font-size: 14px;
  }

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

  .category-sidebar {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .filters-wrapper {
    flex-direction: column;
  }

  .filter-select {
    width: 100%;
  }

  .category-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 24px;
  }
}

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-title {
    font-size: 14px;
  }

  .pagination-wrapper a,
  .pagination-wrapper span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .category-header {
    padding: 32px 0;
  }

  .category-title {
    font-size: 24px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .btn-consultation-large {
    width: 100%;
    justify-content: center;
  }
}


/* Product specs block (replaces inline rows) */
.product-specs {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #666;
  font-size: 16px;
  line-height: 1.4;
}

/* Make tables inside product-specs responsive */
.product-specs .specs-table,
.product-specs table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  overflow: auto;
}

/* Header row (if present) */
.product-specs thead th {
  text-align: left;
  padding: 12px 0;
  color: #666;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

/* Body cells: spacing and separators */
.product-specs tbody td,
.product-specs td {
  padding: 12px 0;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
}

/* Remove bottom border for the last row */
.product-specs tbody tr:last-child td,
.product-specs tr:last-child td {
  border-bottom: none;
}

/* Label (left column) style — mirrors previous gray labels */
.product-specs td:first-child,
.product-specs .spec-name {
  color: #666;
  white-space: nowrap;
  padding-right: 16px;
}

/* Middle column (e.g., pressure) center it */
.product-specs td:nth-child(2) {
  color: #666;
}

/* Value (right column) style — bold like previous inline values */
.product-specs td:last-child,
.product-specs .spec-value {
  font-weight: 500;
  color: #001F3F;
  white-space: nowrap;
}

/* Thumbnails / very small screens: allow horizontal scroll */
@media (max-width: 600px) {
  .product-specs {
    padding: 16px;
  }
  .product-specs table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-specs td:first-child,
  .product-specs td:last-child {
    white-space: nowrap;
  }
}





/* Wholesale page helpers (append to main.css) */
.wholesale-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: white;
  background: linear-gradient(135deg, var(--primary), #0D0D0D);
}

.wholesale-hero__inner {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.wholesale-hero__decor {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}
.wholesale-hero__decor--secondary {
  right: 0;
  top: 0;
  background-color: var(--secondary);
}
.wholesale-hero__decor--accent {
  left: 0;
  bottom: 0;
  background-color: var(--accent);
}

/* small layout helpers for the template */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.brand-card .advantage-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(242,149,18,0.08);
}

.brand-card-title {
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

.brand-card-desc {
  color: #6b7280;
}

/* Feature list */
.features-grid .feature-item {
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:16px;
  border-radius:12px;
  transition: background 0.2s;
}
.features-grid .feature-item:hover {
  background:#f9fafb;
}
.features-grid .feature-icon {
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
}

/* Pickup card */
.pickup-card {
  padding:24px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.pickup-dot {
  display:inline-block;
  width:8px;
  height:8px;
  background: var(--secondary);
  border-radius:50%;
  margin-right:8px;
}

/* Button icon spacing */
.btn .btn-icon {
  margin-left: 8px;
  display:inline-block;
  vertical-align: middle;
}






/* Contact Sheet (mobile) */
.contact-sheet { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 1800; pointer-events: none; }
.contact-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.contact-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62vh;
  max-height: 720px;
  background: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2,.9,.3,1);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow-y: auto;
}

/* Visible state */
.contact-sheet.open { pointer-events: auto; }
.contact-sheet.open .contact-sheet__backdrop { opacity: 1; pointer-events: auto; }
.contact-sheet.open .contact-sheet__panel { transform: translateY(0); }

/* Content */
.contact-sheet__close {
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  padding: 6px 10px;
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
}
.contact-sheet__title {
  margin: 4px 0 12px;
  font-size: 20px;
  color: #001F3F;
}
.contact-sheet__body { padding-top: 36px; }
.contact-sheet__item { margin-bottom: 12px; }
.contact-sheet__label { font-size: 13px; color: #6b7280; margin-bottom: 6px; }
.contact-sheet__link { display: inline-block; font-weight: 700; color: #001F3F; text-decoration: none; font-size: 18px; }
.contact-sheet__btn { width: 100%; margin-top: 8px; }

/* Small screens: keep it mobile-first */
@media (min-width: 1024px) {
  .contact-sheet { display: none; } /* hide on desktop if not needed */
}