:root {
  --cat-bg: #faf8f5;
  --cat-card-bg: #ffffff;
  --cat-card-subtle: #fbf9f6;
  --cat-card-border: rgba(203, 168, 113, 0.28);
  --cat-card-border-hover: #b89255;
  --cat-text-title: #1a0407;
  --cat-text-body: #232127;
  --cat-text-muted: #544e59;
  --cat-text-subtle: #736c7c;
  --cat-burgundy: #7d121e;
  --cat-burgundy-deep: #550a12;
  --cat-burgundy-rich: #871321;
  --cat-gold: #cba871;
  --cat-gold-dark: #b89255;
  --cat-gold-text: #7b5924;
  --cat-gold-bg: rgba(203, 168, 113, 0.12);
  --cat-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --cat-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(85, 10, 18, 0.02);
  --cat-shadow-hover: 0 20px 48px rgba(85, 10, 18, 0.09), 0 0 22px rgba(203, 168, 113, 0.22);
}

body:has(.catalog-page-wrapper),
body.page-products-light {
  background-color: var(--cat-bg);
  color: var(--cat-text-body);
}

.catalog-page-wrapper {
  padding-top: var(--header-height-resting, 88px);
  min-height: 100vh;
  background: radial-gradient(circle at 12% 16%, rgba(107, 14, 24, 0.035) 0%, transparent 55%),
              radial-gradient(circle at 88% 75%, rgba(203, 168, 113, 0.06) 0%, transparent 60%),
              var(--cat-bg);
  color: var(--cat-text-body);
  position: relative;
  overflow: hidden;
}

.catalog-page-wrapper::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 500px;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(110px);
  z-index: 0;
}

.catalog-hero {
  padding: 55px 0 35px;
  border-bottom: 1px solid var(--cat-card-border);
  background: linear-gradient(180deg, rgba(85, 10, 18, 0.035) 0%, rgba(250, 248, 245, 0) 100%);
  position: relative;
  z-index: 1;
}

.catalog-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--cat-text-subtle);
  margin-bottom: 20px;
  background: #ffffff;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid rgba(203, 168, 113, 0.38);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.breadcrumb-nav:hover {
  border-color: rgba(203, 168, 113, 0.7);
  box-shadow: 0 4px 16px rgba(203, 168, 113, 0.15);
}

.breadcrumb-nav a {
  color: var(--cat-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.breadcrumb-nav a:hover {
  color: var(--cat-burgundy-rich);
}

.breadcrumb-separator {
  color: rgba(203, 168, 113, 0.6);
  user-select: none;
}

.breadcrumb-current {
  color: var(--cat-burgundy-rich);
  font-weight: 700;
}

.catalog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(135, 19, 33, 0.06);
  border: 1px solid rgba(203, 168, 113, 0.35);
  color: var(--cat-burgundy-rich);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.catalog-hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cat-gold-dark);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(184, 146, 85, 0.6);
  animation: pulseGoldLight 2.2s infinite ease-in-out;
}

@keyframes pulseGoldLight {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.55; }
}

.catalog-main-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--cat-text-title);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.catalog-main-title .highlight {
  background: linear-gradient(135deg, var(--cat-burgundy-rich) 0%, var(--cat-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--cat-text-muted);
  max-width: 840px;
  line-height: 1.8;
}

.catalog-content-section {
  padding: 50px 0 85px;
  position: relative;
  z-index: 1;
}

.catalog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.catalog-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cat-card-border);
}

.catalog-view-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-view-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cat-text-title);
  letter-spacing: -0.01em;
}

.catalog-view-desc {
  font-size: 0.95rem;
  color: var(--cat-text-muted);
  font-weight: 500;
}

.catalog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid rgba(203, 168, 113, 0.35);
  border-radius: 30px;
  color: var(--cat-burgundy-rich);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.28s ease;
}

.catalog-back-btn:hover {
  background: linear-gradient(135deg, var(--cat-burgundy) 0%, var(--cat-burgundy-deep) 100%);
  border-color: var(--cat-burgundy-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.25);
}

/* ======================================================================
   Sectors Grid & Luxury Sector Cards
   ====================================================================== */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 32px;
}

.sector-card {
  background: linear-gradient(175deg, #ffffff 0%, #faf8f5 100%);
  border: 1px solid rgba(203, 168, 113, 0.32);
  border-radius: 24px;
  padding: 34px 30px 28px;
  box-shadow: 0 10px 30px rgba(85, 10, 18, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.sector-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #550a12 0%, #cba871 50%, #7d121e 100%);
  opacity: 0.85;
  transition: all 0.35s ease;
  z-index: 3;
}

.sector-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
}

[dir="ltr"] .sector-card-glow {
  right: auto;
  left: -30px;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(203, 168, 113, 0.75);
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(85, 10, 18, 0.11), 0 0 28px rgba(203, 168, 113, 0.24);
}

.sector-card:hover .sector-card-top-line {
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, #7d121e 0%, #dfbe87 50%, #550a12 100%);
  box-shadow: 0 2px 12px rgba(203, 168, 113, 0.6);
}

.sector-card:hover .sector-card-glow {
  transform: scale(1.4);
  background: radial-gradient(circle, rgba(203, 168, 113, 0.22) 0%, transparent 70%);
}

.sector-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.sector-card-icon-wrap {
  position: relative;
}

.sector-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7d121e 0%, #550a12 100%);
  border: 1.5px solid rgba(203, 168, 113, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fae9c7;
  box-shadow: 0 8px 22px rgba(85, 10, 18, 0.22), 0 0 0 4px rgba(203, 168, 113, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.35s ease;
}

.sector-card:hover .sector-card-icon {
  background: linear-gradient(135deg, #dfbe87 0%, #b89255 100%);
  color: #3d070d;
  border-color: #f1dfbe;
  box-shadow: 0 10px 26px rgba(184, 146, 85, 0.38), 0 0 0 5px rgba(203, 168, 113, 0.22);
  transform: scale(1.06) rotate(-2deg);
}

.sector-card:hover .sector-card-icon svg {
  transform: scale(1.05);
}

.sector-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

[dir="ltr"] .sector-card-meta {
  align-items: flex-start;
}

.sector-index-num {
  font-size: 1.65rem;
  font-weight: 900;
  color: rgba(203, 168, 113, 0.35);
  line-height: 1;
  font-family: 'Cairo', 'Outfit', sans-serif;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.sector-card:hover .sector-index-num {
  color: rgba(184, 146, 85, 0.7);
}

.sector-subs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.14);
  border: 1px solid rgba(203, 168, 113, 0.38);
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.sector-card:hover .sector-subs-badge {
  background: rgba(203, 168, 113, 0.22);
  border-color: rgba(203, 168, 113, 0.6);
  color: #550a12;
}

.sector-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.sector-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a0407;
  line-height: 1.38;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.sector-card:hover .sector-card-title {
  color: #871321;
}

.sector-card-desc {
  font-size: 0.94rem;
  color: #544e59;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sector-chips-preview {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(203, 168, 113, 0.3);
}

.sector-chips-header {
  margin-bottom: 10px;
}

.chips-label {
  font-size: 12px;
  font-weight: 700;
  color: #8c8275;
  letter-spacing: 0.3px;
}

.sector-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sector-mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4a4450;
  background: #ffffff;
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 4px 11px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.22s ease;
}

.chip-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cba871;
  flex-shrink: 0;
}

.sector-card:hover .sector-mini-chip {
  border-color: rgba(203, 168, 113, 0.6);
  color: #1a0407;
  background: rgba(250, 248, 245, 0.9);
}

.sector-mini-chip--more {
  background: rgba(85, 10, 18, 0.05);
  color: #7d121e;
  border-color: rgba(125, 18, 30, 0.2);
  font-weight: 700;
}

.sector-card:hover .sector-mini-chip--more {
  background: #7d121e;
  color: #ffffff;
  border-color: #7d121e;
}

.sector-card-footer {
  position: relative;
  z-index: 2;
}

.sector-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  background: rgba(135, 19, 33, 0.04);
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 14px;
  color: #871321;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.sector-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(203, 168, 113, 0.2);
  color: #7d121e;
  transition: all 0.25s ease;
}

.sector-card:hover .sector-card-btn {
  background: linear-gradient(135deg, #7d121e 0%, #550a12 100%);
  border-color: #cba871;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(85, 10, 18, 0.28);
}

.sector-card:hover .sector-btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #fae9c7;
  transform: translateX(-4px);
}

[dir="ltr"] .sector-card:hover .sector-btn-arrow {
  transform: translateX(4px);
}

/* ======================================================================
   Subcategories Grid & Luxury Subcategory Cards
   ====================================================================== */

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
}

.subcategory-card {
  background: linear-gradient(175deg, #ffffff 0%, #fbf9f6 100%);
  border: 1px solid rgba(203, 168, 113, 0.32);
  border-radius: 20px;
  padding: 30px 26px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(85, 10, 18, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.subcategory-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.subcategory-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #cba871 0%, #7d121e 100%);
  opacity: 0.75;
  transition: all 0.3s ease;
  z-index: 3;
}

.subcategory-card:hover {
  transform: translateY(-7px);
  border-color: rgba(203, 168, 113, 0.75);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(85, 10, 18, 0.10), 0 0 22px rgba(203, 168, 113, 0.22);
}

.subcategory-card:hover .subcategory-card-top-line {
  height: 4.5px;
  opacity: 1;
  background: linear-gradient(90deg, #7d121e 0%, #cba871 100%);
  box-shadow: 0 2px 10px rgba(203, 168, 113, 0.5);
}

.subcategory-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.subcategory-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.subcategory-index-tag {
  font-size: 13px;
  font-weight: 800;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.14);
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 3px 10px;
  border-radius: 8px;
  font-family: 'Cairo', 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.subcategory-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.subcategory-status-badge--ready {
  background: rgba(22, 101, 52, 0.08);
  border: 1px solid rgba(22, 101, 52, 0.25);
  color: #15803d;
}

.status-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
}

.subcategory-status-badge--ondemand {
  background: rgba(203, 168, 113, 0.14);
  border: 1px solid rgba(203, 168, 113, 0.38);
  color: #7b5924;
}

.status-dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cba871;
  box-shadow: 0 0 6px rgba(203, 168, 113, 0.5);
}

.subcategory-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.subcategory-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(85, 10, 18, 0.05);
  border: 1px solid rgba(203, 168, 113, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d121e;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.subcategory-card:hover .subcategory-icon-box {
  background: #7d121e;
  color: #ffffff;
  border-color: #7d121e;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 4px 12px rgba(85, 10, 18, 0.2);
}

.subcategory-card-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #1a0407;
  line-height: 1.35;
  transition: color 0.22s ease;
}

.subcategory-card:hover .subcategory-card-title {
  color: #871321;
}

.subcategory-card-desc {
  font-size: 0.93rem;
  color: #544e59;
  line-height: 1.65;
  margin-bottom: 22px;
}

.subcategory-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(203, 168, 113, 0.2);
  color: #871321;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}

.subcategory-footer-label {
  transition: color 0.22s ease;
}

.subcategory-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(203, 168, 113, 0.15);
  color: #7d121e;
  border: 1px solid rgba(203, 168, 113, 0.3);
  transition: all 0.25s ease;
}

.subcategory-card:hover .subcategory-card-footer {
  color: #550a12;
}

.subcategory-card:hover .subcategory-arrow-circle {
  background: #7d121e;
  color: #ffffff;
  border-color: #7d121e;
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(85, 10, 18, 0.25);
}

[dir="ltr"] .subcategory-card:hover .subcategory-arrow-circle {
  transform: translateX(4px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.product-item-card {
  background: var(--cat-card-bg);
  border: 1px solid var(--cat-card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--cat-shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--cat-card-border-hover);
  box-shadow: var(--cat-shadow-hover);
}

.product-item-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f0ea;
}

.product-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-item-card:hover .product-item-img {
  transform: scale(1.06);
}

.product-item-overlay-badge {
  position: absolute;
  top: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 168, 113, 0.4);
  color: var(--cat-gold-text);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

[dir="rtl"] .product-item-overlay-badge {
  right: 16px;
}

[dir="ltr"] .product-item-overlay-badge {
  left: 16px;
}

.product-item-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-item-model {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cat-gold-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.product-item-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--cat-text-title);
  line-height: 1.4;
  margin-bottom: 12px;
}

.product-item-desc {
  font-size: 0.92rem;
  color: var(--cat-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  padding: 12px 14px;
  background: var(--cat-card-subtle);
  border: 1px solid rgba(203, 168, 113, 0.2);
  border-radius: 10px;
}

.spec-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-chip-label {
  font-size: 11px;
  color: var(--cat-text-subtle);
  font-weight: 500;
}

.spec-chip-val {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cat-text-title);
}

.product-item-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cat-burgundy) 0%, var(--cat-burgundy-deep) 100%);
  color: #ffffff;
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.25);
  margin-top: auto;
}

.product-item-cta-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cat-gold);
  box-shadow: 0 10px 26px rgba(85, 10, 18, 0.35);
  background: linear-gradient(135deg, var(--cat-burgundy-rich) 0%, #680d17 100%);
  color: #ffffff;
}

.catalog-empty-notice-card {
  background: var(--cat-card-bg);
  border: 1px solid var(--cat-card-border);
  border-radius: 20px;
  padding: 46px 36px;
  text-align: center;
  max-width: 760px;
  margin: 20px auto;
  box-shadow: var(--cat-shadow-md);
}

.empty-notice-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cat-gold-bg);
  border: 1px solid var(--cat-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cat-gold-text);
  margin-bottom: 20px;
}

.empty-notice-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--cat-text-title);
  margin-bottom: 12px;
}

.empty-notice-desc {
  font-size: 0.98rem;
  color: var(--cat-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-request-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cat-burgundy) 0%, var(--cat-burgundy-deep) 100%);
  color: #ffffff;
  border: 1px solid rgba(203, 168, 113, 0.4);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.25);
  transition: all 0.28s ease;
}

.btn-request-quote:hover {
  transform: translateY(-2px);
  border-color: var(--cat-gold);
  box-shadow: 0 10px 26px rgba(85, 10, 18, 0.35);
  background: linear-gradient(135deg, var(--cat-burgundy-rich) 0%, #680d17 100%);
}

@media (max-width: 1080px) {
  .sectors-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
  }

  .subcategories-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .catalog-hero {
    padding: 40px 0 25px;
  }

  .catalog-hero-container,
  .catalog-container {
    padding: 0 20px;
  }

  .sectors-grid,
  .subcategories-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sector-card,
  .subcategory-card,
  .product-item-body {
    padding: 24px 20px;
  }

  .catalog-view-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .catalog-back-btn {
    align-self: flex-start;
  }
}
