/* ==========================================================================
   Cəsarətoğlu MMC — Modern B2B Corporate Dealer Stylesheet
   Exact Structure & Aesthetic inspired by asp-pack.ru
   Clean, Compact, White Header with Dropdowns, Full-Width Hero Slider (AZ / RU / EN)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary-color: #C81E1E;
  /* Deep Industrial Red */
  --primary-hover: #A51717;
  --primary-light: #FEE2E2;

  --accent-orange: #FF6600;
  /* Vibrant asp-pack.ru orange for main CTAs */
  --accent-orange-hover: #E65500;

  --secondary-color: #0F2B48;
  /* Deep Navy Blue */
  --secondary-light: #1E3A5F;

  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* Neutral Surface Palette */
  --bg-main: #F4F6F9;
  --bg-surface: #FFFFFF;
  --bg-dark: #0A1E33;
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;

  /* Typography Colors */
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Typography Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --container-width: 1280px;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

/* Preloader & Opacity Lock for Smooth Supabase Cloud Sync */
html.app-preload body {
  opacity: 0 !important;
  pointer-events: none !important;
}

html.app-loaded body {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.global-preloader-spinner {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}

.global-preloader-spinner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.global-preloader-logo {
  width: 140px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 1.5rem;
  animation: preloaderPulse 1.6s ease-in-out infinite alternate;
}

.global-spinner-ring {
  width: 36px;
  height: 36px;
  border: 3px solid #F1F5F9;
  border-top: 3px solid var(--primary-color, #C81E1E);
  border-right: 3px solid var(--accent-orange, #FF6600);
  border-radius: 50%;
  animation: preloaderSpin 0.75s linear infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0% { transform: scale(0.96); opacity: 0.85; }
  100% { transform: scale(1.02); opacity: 1; }
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Buttons & Badges (Matching asp-pack.ru)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Orange CTA Button (asp-pack.ru style) */
.btn-cta-orange {
  background-color: var(--accent-orange);
  color: var(--text-white);
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.35);
}

.btn-cta-orange:hover {
  background-color: var(--accent-orange-hover);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.45);
  transform: translateY(-1px);
}

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

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

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

.btn-sm {
  padding: 0.38rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   Top Bar (Clear, Legible & Modern)
   -------------------------------------------------------------------------- */
.site-topbar {
  background-color: #0A1E33;
  color: #94A3B8;
  font-size: 0.88rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.topbar-item i {
  color: var(--accent-orange);
  font-size: 1rem;
}

.topbar-link {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 0.88rem;
}

.topbar-link:hover {
  color: var(--text-white);
}

/* Language Switcher - Clean, Modern & High Legibility */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 1.5rem;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  opacity: 0.75;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.lang-btn:hover {
  opacity: 1;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.lang-btn.active {
  opacity: 1;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(235, 94, 40, 0.4);
  transform: none;
}

.mobile-nav .lang-switcher {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
  background: #F1F5F9;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.mobile-nav .lang-btn {
  color: #64748B;
  font-size: 0.85rem;
  opacity: 1;
}

.mobile-nav .lang-btn:hover {
  color: #0F172A;
  background: rgba(0, 0, 0, 0.05);
}

.mobile-nav .lang-btn.active {
  background-color: var(--accent-orange);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Sticky Header - Classic & Solid (Logo Left, Strictly Centered Menu)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 118px;
  min-height: 118px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Left: Large & Prominent Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.brand-logo-wrap:hover {
  transform: scale(1.03);
}

.brand-logo-img,
.brand-logo {
  height: 108px;
  max-height: 108px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.05));
}

/* Strictly Centered Navigation Menu */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 5;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--accent-orange);
  background-color: #FFF7ED;
}

.nav-link.nav-link-catalog {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #D9480F 100%);
  color: #FFFFFF !important;
  border-radius: 9px;
  padding: 0.65rem 1.45rem;
  font-size: 1.14rem;
  font-weight: 800;
  gap: 0.55rem;
  box-shadow: 0 4px 14px rgba(235, 94, 40, 0.35);
}

.nav-link.nav-link-catalog:hover {
  background: linear-gradient(135deg, #F97316 0%, var(--accent-orange) 100%);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(235, 94, 40, 0.45);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  z-index: 10;
}

/* Dropdown Menu (Clean & Fast) */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  display: none;
  z-index: 1100;
  animation: dropdownFade 0.15s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background-color: #F1F5F9;
  color: var(--primary-color);
  padding-left: 1.1rem;
}

.nav-dropdown-item i {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Right: Phone & Request Call CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.hp-number {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  white-space: nowrap;
}

.hp-number:hover {
  color: var(--primary-color);
}

.hp-callback-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: underline;
  cursor: pointer;
}

.hp-callback-link:hover {
  color: var(--accent-orange-hover);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.3rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 2000;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  display: block;
}

.mobile-nav-link:hover {
  background-color: #F1F5F9;
  color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   FULL-WIDTH HERO SLIDER (High Quality Industrial Packaging Backgrounds)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background-color: #0A1E33;
  margin-bottom: 0;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Hero Slider — Real Production Backgrounds with Luminous Soft Gradient Overlays */
.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  /* Vertical centering */
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-item-1 {
  /* Atlantis-Pak: Sausage Casings */
  background: linear-gradient(90deg, rgba(6, 18, 33, 0.72) 0%, rgba(6, 18, 33, 0.45) 55%, rgba(6, 18, 33, 0.15) 100%),
    url('../images/hero/slide_1_casings.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-item-2 {
  /* Wiberg: Spices & Seasonings */
  background: linear-gradient(90deg, rgba(6, 18, 33, 0.72) 0%, rgba(6, 18, 33, 0.45) 55%, rgba(6, 18, 33, 0.15) 100%),
    url('../images/hero/slide_2_spices.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-item-3 {
  /* Südpack: Barrier Packaging Films */
  background: linear-gradient(90deg, rgba(6, 18, 33, 0.72) 0%, rgba(6, 18, 33, 0.45) 55%, rgba(6, 18, 33, 0.15) 100%),
    url('../images/hero/slide_3_packaging.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-item-4 {
  /* Avangard: Seasonings, Spices & Salts */
  background: linear-gradient(90deg, rgba(6, 18, 33, 0.72) 0%, rgba(6, 18, 33, 0.45) 55%, rgba(6, 18, 33, 0.15) 100%),
    url('../images/hero/slide_5_avangard.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

/* Slide split layout: text left, brand logo right */
.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.slide-content-wrap {
  flex: 1;
  min-width: 0;
  color: #FFFFFF;
}

.slide-logo-panel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-logo-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.2rem 1.8rem;
  width: 270px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}

.slide-logo-box img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .slide-logo-panel {
    display: none;
  }

  .slide-inner {
    justify-content: flex-start;
  }
}

.slide-brand-pill {
  display: inline-block;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.slide-subtitle {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.slide-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

/* Slider Controls: Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow-prev {
  left: 1.2rem;
}

.slider-arrow-next {
  right: 1.2rem;
}

/* Slider Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-orange);
  width: 24px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Partner Catalog Section (replaces old Category Tiles)
   -------------------------------------------------------------------------- */
.partner-catalog-section {
  padding: 3rem 0;
  background: var(--bg-main);
}

.pcs-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.pcs-tag {
  display: inline-block;
  background: #FFF0E6;
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.pcs-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.pcs-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.partner-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partner-cat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.partner-cat-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 16px 36px rgba(255, 102, 0, 0.14);
  transform: translateY(-6px);
}

/* Category Swiper Slider Styling */
.category-swiper {
  padding-bottom: 2.8rem;
  overflow: hidden;
  width: 100%;
}

.category-swiper .swiper-wrapper {
  align-items: stretch;
}

.category-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Category Slider Top Navigation */
.cat-slider-nav {
  display: flex;
  gap: 0.6rem;
}

.cat-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--secondary-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cat-nav-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.25);
}

.cat-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Swiper Pagination */
.cat-swiper-pagination {
  bottom: 0 !important;
}

.cat-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #CBD5E1;
  opacity: 1;
  transition: all var(--transition-fast);
}

.cat-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: var(--accent-orange);
}

/* Real Photography Banner (Height 200px, object-fit: cover) */
.pcc-img-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}

.pcc-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-cat-card:hover .pcc-banner-img {
  transform: scale(1.08);
}

.pcc-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 30, 51, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Card body - Flex column with flex-grow */
.pcc-body {
  padding: 1.6rem 1.6rem 1.2rem;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pcc-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.pcc-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

/* Subtle Brand Quality Badges in Footer Area */
.pcc-brand-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  border-top: 1px dashed #E2E8F0;
  margin-top: auto;
}

.pcc-brand-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pcc-brand-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.partner-cat-card:hover .pcc-brand-pill {
  background: #FFF7ED;
  border-color: #FDBA74;
  color: #C2410C;
}

/* Card footer - Big CTA */
.pcc-footer {
  padding: 1.1rem 1.6rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-orange);
  background: #FAFAFA;
  transition: all var(--transition-fast);
}

.pcc-footer i {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.partner-cat-card:hover .pcc-footer {
  background: #FFF0E6;
}

.partner-cat-card:hover .pcc-footer i {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .partner-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .partner-catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Official Brand Logos Strip
   -------------------------------------------------------------------------- */
.brands-strip-section {
  padding: 1.6rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
}

.brands-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.brand-strip-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.brand-strip-item:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.brand-strip-item img {
  max-height: 38px;
  max-width: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   8 Advantages Section (4x2 Grid on Light Gray Background)
   -------------------------------------------------------------------------- */
.adv8-section {
  padding: 3.8rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.adv8-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.adv8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.adv8-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 10px rgba(10, 30, 51, 0.03);
  position: relative;
}

.adv8-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.12);
  transform: translateY(-4px);
}

.adv8-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #FFF0E6;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  transition: all var(--transition-fast);
}

.adv8-card:hover .adv8-icon-box {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: scale(1.05);
}

.adv8-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.55rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.adv8-card-desc {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 1150px) {
  .adv8-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
}

@media (max-width: 600px) {
  .adv8-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .adv8-card {
    padding: 1.4rem 1.2rem;
  }
}

/* --------------------------------------------------------------------------
   News Section (Premium Equal Height Cards & Modern Hover)
   -------------------------------------------------------------------------- */
.news-section {
  padding: 3.5rem 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
}

.news-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-swiper {
  padding-bottom: 2.8rem;
  overflow: hidden;
  width: 100%;
}

.news-swiper .swiper-wrapper {
  align-items: stretch;
}

.news-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* News Swiper Pagination */
.news-swiper-pagination {
  bottom: 0 !important;
}

.news-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #CBD5E1;
  opacity: 1;
  transition: all var(--transition-fast);
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: var(--accent-orange);
}

.news-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.news-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 14px 28px rgba(255, 102, 0, 0.12);
  transform: translateY(-6px);
}

.news-card-thumb {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
  flex-shrink: 0;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.06);
}

.news-date-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.news-date-badge i {
  color: var(--accent-orange);
  font-size: 0.7rem;
}

.news-card-content {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.news-card:hover .news-card-title {
  color: var(--accent-orange);
}

.news-card-summary {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.news-card-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid #F1F5F9;
}

.news-card-link i {
  transition: transform var(--transition-fast);
}

.news-card:hover .news-card-link i {
  transform: translateX(4px);
}

.news-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-orange);
  transition: color var(--transition-fast);
}

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

/* Full News Grid Layout on Homepage (Max 2 rows x 3 cards = 6 items in view, with internal smooth scroll) */
.news-full-grid-wrap {
  width: 100%;
  margin-top: 1rem;
}

.news-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-height: 840px;
  overflow-y: auto;
  padding-right: 0.6rem;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) #F1F5F9;
}

.news-grid-layout::-webkit-scrollbar {
  width: 6px;
}

.news-grid-layout::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 4px;
}

.news-grid-layout::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.news-grid-layout::-webkit-scrollbar-thumb:hover {
  background: #E05500;
}

@media (max-width: 992px) {
  .news-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    max-height: 840px;
  }
}

@media (max-width: 650px) {
  .news-grid-layout {
    grid-template-columns: 1fr;
    max-height: 720px;
    gap: 1.2rem;
  }
}

/* --------------------------------------------------------------------------
   Consultation Block in Footer (Compact)
   -------------------------------------------------------------------------- */
.footer-consultation-banner {
  background: linear-gradient(135deg, #0A1E33 0%, #0F2B48 100%);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  color: #FFFFFF;
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fcb-text h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.fcb-text p {
  color: #CBD5E1;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #061321;
  color: #94A3B8;
  padding: 2.2rem 0 1rem;
}

/* Footer Brand Logo Badge (Original Full Color with Crisp White Backing) */
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.footer-brand-logo,
.footer-logo {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 30, 51, 0.82);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

#catalog-interactive-modal {
  z-index: 3100;
}

#partner-detail-modal {
  z-index: 3200;
}

#product-modal {
  z-index: 3500;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

/* Interactive Catalog Modal (Expanded Luxury Dimensions & Styling) */
.catalog-modal-window {
  max-width: 1420px;
  width: 94vw;
  max-height: 94vh;
  padding: 2.4rem 2.8rem;
  border-radius: 28px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(226, 232, 240, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
}

.catalog-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1.5px solid #F1F5F9;
  position: relative;
  padding-right: 3.5rem;
}

.catalog-modal-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.catalog-modal-subtitle {
  font-size: 1.05rem;
  color: #64748B;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.catalog-modal-window .modal-close-btn {
  top: 1.6rem;
  right: 1.8rem;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  background: #F1F5F9;
  color: #64748B;
  transition: all 0.2s ease;
}

.catalog-modal-window .modal-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
  transform: rotate(90deg);
}

.catalog-controls-bar {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.catalog-search-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.catalog-search-box {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
}

.catalog-search-input {
  width: 100%;
  height: 48px;
  padding: 0.7rem 2.4rem 0.7rem 2.8rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 14px;
  font-size: 0.95rem;
  color: #0F172A;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.catalog-search-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
  outline: none;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: #94A3B8;
  font-size: 1rem;
  pointer-events: none;
}

.catalog-clear-search {
  position: absolute;
  right: 0.8rem;
  width: 28px;
  height: 28px;
  background: #F1F5F9;
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  color: #64748B;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  line-height: 1;
  padding: 0;
}

.catalog-clear-search:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.catalog-partner-select {
  height: 48px;
  padding: 0 1.2rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.catalog-partner-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
  outline: none;
}

.catalog-category-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.catalog-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.15rem;
  border-radius: 14px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #1E293B;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.catalog-tab-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: #FFF7ED;
  transform: translateY(-1px);
}

.catalog-tab-btn.active {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.28);
}

.tab-count-badge {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.74rem;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.catalog-tab-btn.active .tab-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.catalog-results-count-wrap {
  font-size: 0.92rem;
  color: #475569;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.catalog-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 1.6rem;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.6rem;
  padding-bottom: 0.5rem;
}

.catalog-products-grid::-webkit-scrollbar {
  width: 7px;
}

.catalog-products-grid::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 10px;
}

.catalog-products-grid::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}

.catalog-products-grid::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Product Card */
.product-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.product-card:hover {
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 20px 40px -10px rgba(255, 102, 0, 0.18), 0 0 0 1px rgba(255, 102, 0, 0.25);
  transform: translateY(-5px);
}

.product-card-thumb {
  width: 100%;
  height: 220px;
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.product-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.06);
}

.product-partner-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.32rem 0.85rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card-info {
  padding: 1.4rem 1.4rem 1.1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.product-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.8rem;
  cursor: pointer;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.product-card-title:hover {
  color: var(--accent-orange);
}

/* Product Key Specs Leader-Dots Mini-List in Card */
.product-card-specs {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
  padding: 0.85rem 1rem;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  font-size: 0.86rem;
  min-height: 96px;
  justify-content: center;
}

.product-card-desc-snippet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 1rem;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
}

.product-card-desc-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748B;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.product-spec-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: #64748B;
  min-height: 1.45rem;
  line-height: 1.45;
}

.product-spec-label {
  flex-shrink: 0;
  max-width: 52%;
  color: #64748B;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-spec-dots {
  flex-grow: 1;
  border-bottom: 1.5px dotted #CBD5E1;
  margin-bottom: 0.28rem;
  min-width: 0.5rem;
}

.product-spec-val {
  flex-shrink: 0;
  max-width: 50%;
  text-align: right;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-card-actions {
  padding: 0.9rem 1.4rem 1.2rem;
  border-top: 1px solid #F1F5F9;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  width: 100%;
}

.product-card-actions .product-details-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
}

/* Product Specs Modal */
#product-modal .modal-window {
  max-width: 1020px;
  width: 94%;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  min-height: 480px;
}

.pm-image-box {
  background: #F8FAFC;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-color);
  position: relative;
}

.pm-image-box img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
}

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

.pm-content {
  padding: 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
}

#pm-partner, #pm-category {
  font-size: 0.82rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

#pm-title {
  font-size: 1.65rem !important;
  font-weight: 800;
  line-height: 1.3;
  margin: 0.2rem 0 0.5rem !important;
  color: var(--secondary-color, #0A1E33);
}

#pm-description {
  font-size: 0.98rem !important;
  color: #475569;
  line-height: 1.65 !important;
}

#pm-description p {
  margin-bottom: 0.6rem;
}

#pm-description p:last-child {
  margin-bottom: 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 0.8rem 0;
}

.specs-table th {
  background: #F8FAFC;
  color: #64748B;
  padding: 0.65rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  width: 42%;
}

.specs-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
  color: var(--secondary-color, #0A1E33);
}

.pm-confidential-notice {
  margin: 0.9rem 0;
  padding: 1.2rem 1.4rem;
  background: #FFF9F5;
  border-left: 4px solid var(--accent-orange, #FF6600);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.05);
}

.pm-confidential-notice-title {
  font-weight: 800;
  color: #1E293B;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pm-confidential-notice-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.pm-contact-box {
  margin-top: 0.8rem;
  padding: 1rem 1.2rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
}

.pm-contact-box-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary-color, #0A1E33);
  margin-bottom: 0.6rem;
}

/* Callback Request Modal */
.callback-modal-window {
  max-width: 400px;
  padding: 1.8rem;
  text-align: center;
}

.callback-modal-window h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.callback-modal-window p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Floating Contact Widget */
.floating-contact-widget {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fcw-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.fcw-whatsapp {
  background-color: var(--whatsapp-color);
}

.fcw-phone {
  background-color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .nav-link {
    font-size: 0.95rem;
    padding: 0.45rem 0.8rem;
  }
}

@media (max-width: 992px) {
  .header-container {
    height: 64px;
    padding: 0 1rem;
  }

  .main-nav,
  .topbar-left {
    display: none;
  }

  .brand-logo-img {
    height: 50px;
  }

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

  .slide-title {
    font-size: 1.7rem;
  }

  .hero-slider-section {
    height: 400px;
  }

  .categories-tiles-grid,
  .brands-strip-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-consultation-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pm-image-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
  }

  .pm-image-box img {
    max-height: 240px;
  }

  .pm-content {
    padding: 1.5rem;
  }
}

@media (max-width: 580px) {

  .categories-tiles-grid,
  .brands-strip-grid,
  .services-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 1.4rem;
  }

  #product-modal .modal-window {
    width: 95%;
    margin: 0.5rem auto;
  }

  .pm-image-box {
    padding: 1.2rem;
  }

  .pm-image-box img {
    max-height: 190px;
  }

  .pm-content {
    padding: 1.2rem;
  }

  .specs-table {
    font-size: 0.78rem;
  }

  .specs-table th, .specs-table td {
    padding: 0.4rem 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   About Page Specific Styles (Modern, Professional B2B Presentation)
   -------------------------------------------------------------------------- */
.page-header-banner {
  background: linear-gradient(135deg, rgba(6, 19, 33, 0.95) 0%, rgba(10, 35, 64, 0.88) 100%),
    url('../images/hero/slide_1_casings.jpg') center/cover no-repeat;
  padding: 4.5rem 0 3.5rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--accent-orange);
}

.page-header-pill {
  display: inline-block;
  background: rgba(255, 102, 0, 0.2);
  border: 1px solid var(--accent-orange);
  color: #FFB380;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.page-header-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.page-header-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto;
}

/* Story section */
.about-story-section {
  padding: 3.8rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

.about-story-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.about-story-content {
  flex: 1 1 520px;
  min-width: 0;
}

.about-intro-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-quote-box {
  background: #FFF9F5;
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 12px 12px 0;
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.06);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-quote-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.about-quote-answer {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.about-paragraph-delivery {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-story-media {
  flex: 1 1 380px;
  max-width: 100%;
  position: relative;
  min-width: 280px;
  margin-bottom: 1.5rem;
}

.about-story-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-badge-overlay {
  position: absolute;
  bottom: -15px;
  left: 20px;
  right: auto;
  max-width: calc(100% - 40px);
  background: #FFFFFF;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.about-badge-overlay i {
  font-size: 1.8rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.about-badge-overlay-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-badge-overlay-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: normal;
}

/* Mission & Values Grid on About Page */
.about-mission-section {
  padding: 3.5rem 0;
  background: #FFFFFF;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.value-card-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--accent-orange);
}

.value-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(10, 30, 51, 0.08);
  background: #FFFFFF;
}

.value-card-icon {
  font-size: 1.8rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.value-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.value-card-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
}

/* ==========================================================================
   Team & Leadership Section (Luxury Spacing & Elite Visual Styling)
   ========================================================================== */
.about-team-section {
  padding: 6rem 0 7rem;
  background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #F8FAFC 60%, #F1F5F9 100%);
  border-top: 1px solid #E2E8F0;
  position: relative;
}

.team-section-header {
  margin-bottom: 3.5rem;
}

.team-section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12) 0%, rgba(255, 102, 0, 0.05) 100%);
  color: var(--accent-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.08);
  margin-bottom: 0.8rem;
}

.team-section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.team-section-subtitle {
  font-size: 1.15rem;
  color: #64748B;
  max-width: 720px;
  margin: 0.8rem auto 0;
  line-height: 1.65;
}

/* =========================================================================
   ABOUT PAGE: EXECUTIVE LEADER & KEY SPECIALISTS CARDS (Grand & Luxurious)
   ========================================================================= */
.team-leader-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.8rem;
  width: 100%;
}

.team-leader-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  padding: 3.2rem 3.8rem;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 45px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.team-leader-card:hover {
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 30px 65px -12px rgba(255, 102, 0, 0.18), 0 0 0 1.5px rgba(255, 102, 0, 0.3);
  transform: translateY(-6px);
}

.team-leader-badge {
  position: absolute;
  top: 1.8rem;
  right: 2.2rem;
  background: linear-gradient(135deg, #FF6600 0%, #E05500 100%);
  color: #FFFFFF;
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.32);
  z-index: 2;
}

.team-leader-photo-wrap {
  width: 320px;
  height: 380px;
  min-width: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #F1F5F9;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  border: 4px solid #FFFFFF;
  position: relative;
}

.team-leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-leader-card:hover .team-leader-photo {
  transform: scale(1.05);
}

.team-leader-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-leader-name {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.45rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.team-leader-role {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.35;
}

.team-leader-bio {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Specialists Grid: Grand 2-Column Spacious Cards */
.team-specialists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card-modern {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 16px 36px -8px rgba(15, 23, 42, 0.07);
  min-height: 310px;
}

.team-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 25px 55px -12px rgba(255, 102, 0, 0.16), 0 0 0 1.5px rgba(255, 102, 0, 0.3);
}

.team-card-thumb-wrap {
  width: 100%;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
}

.team-card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.team-card-modern:hover .team-card-thumb-wrap img {
  transform: scale(1.06);
}

.team-card-body {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.team-card-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.45rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.team-card-role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.35;
}

.team-card-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 1150px) {
  .team-leader-card {
    grid-template-columns: 270px 1fr;
    gap: 2.5rem;
    padding: 2.6rem 2.8rem;
  }

  .team-leader-photo-wrap {
    width: 270px;
    height: 330px;
    min-width: 270px;
  }

  .team-card-modern {
    grid-template-columns: 240px 1fr;
    min-height: 290px;
  }

  .team-card-thumb-wrap {
    min-height: 290px;
  }

  .team-card-body {
    padding: 1.8rem 1.6rem;
  }
}

@media (max-width: 950px) {
  .about-team-section {
    padding: 4.5rem 0 5.5rem;
  }

  .team-section-title {
    font-size: 2.1rem;
  }

  .team-specialists-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2.2rem;
  }

  .team-leader-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.6rem 2rem;
    gap: 2rem;
    max-width: 680px;
  }

  .team-leader-photo-wrap {
    width: 260px;
    height: 310px;
    min-width: unset;
    margin: 0 auto;
  }

  .team-leader-badge {
    position: static;
    display: inline-flex;
    margin: 0 auto 0.8rem;
  }

  .team-leader-role {
    justify-content: center;
  }

  .team-leader-info {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .team-card-modern {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    border-radius: 22px;
  }

  .team-card-thumb-wrap {
    height: 280px;
    min-height: 280px;
  }

  .team-card-thumb-wrap img {
    height: 280px;
  }

  .team-card-body {
    padding: 1.8rem 1.4rem 2rem;
    text-align: center;
  }

  .team-card-role {
    justify-content: center;
  }
}

/* Custom Category Dropdown in Admin */
.custom-cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
  color: #1E293B;
  font-size: 0.88rem;
  min-width: 0;
  gap: 0.75rem;
}

.custom-cat-row:hover {
  background: #F1F5F9;
}

.custom-cat-row.selected {
  background: #EEF2FF;
  font-weight: 700;
  color: #4F46E5;
}

.custom-cat-row-title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 6px;
  text-align: left;
}

.custom-cat-row:hover .custom-cat-row-title {
  white-space: normal;
  word-break: break-word;
}

.custom-cat-del-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.15s ease;
  line-height: 1;
  flex-shrink: 0;
}

.custom-cat-del-btn:hover {
  background: #FEE2E2;
  color: #EF4444;
  transform: scale(1.1);
}

.custom-cat-add-btn:hover {
  background: #F0FDF4;
}

/* ==========================================================================
   Photo Gallery Page Styles (gallery.html)
   ========================================================================== */
.gallery-section {
  padding: 3.5rem 0 5rem;
  background-color: var(--bg-main);
  min-height: 60vh;
}

/* Category Filter Tabs */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.3rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn i {
  font-size: 0.95rem;
}

.gallery-filter-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-filter-btn.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.35);
}

/* Albums Grid */
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2.2rem;
}

.gallery-album-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.gallery-album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -10px rgba(10, 30, 51, 0.16), 0 12px 20px -8px rgba(255, 102, 0, 0.08);
  border-color: rgba(255, 102, 0, 0.35);
}

/* Card Cover Image */
.album-card-cover-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #0B1528;
}

.album-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-album-card:hover .album-card-cover {
  transform: scale(1.07);
}

.album-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 21, 40, 0.88) 0%, rgba(11, 21, 40, 0.25) 55%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.1rem 1.3rem;
  pointer-events: none;
}

.album-category-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #0A1E33;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.album-photos-badge {
  background: rgba(15, 23, 42, 0.75);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Card Body */
.album-card-body {
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.album-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.album-meta-date,
.album-meta-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.album-meta-date i,
.album-meta-location i {
  color: var(--accent-orange);
  font-size: 0.82rem;
}

.album-card-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: #0A1E33;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.gallery-album-card:hover .album-card-title {
  color: var(--accent-orange);
}

.album-card-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8rem;
}

/* Thumbs Strip Inside Card */
.album-thumbs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  margin-top: auto;
}

.album-thumb-mini {
  position: relative;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.album-thumb-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.album-thumb-mini:hover {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.album-thumb-mini:hover img {
  transform: scale(1.1);
}

.album-thumb-mini.has-overlay .album-thumb-more {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 51, 0.82);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.album-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
}

.album-card-footer .btn {
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-album-card:hover .album-card-footer .btn {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.35);
}

/* Empty State */
.gallery-empty-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4.5rem 2rem;
  background: #FFFFFF;
  border: 2px dashed #CBD5E1;
  border-radius: 20px;
  color: #64748B;
}

.gallery-empty-box i {
  font-size: 3.2rem;
  color: #CBD5E1;
  margin-bottom: 1.2rem;
}

.gallery-empty-box p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ==========================================================================
   Gallery Pagination & Load More Controls
   ========================================================================== */
.gallery-pagination-wrapper {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.gallery-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  color: #0A1E33;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0.95rem 2.4rem;
  border-radius: 50px;
  border: 2px solid #E2E8F0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-load-more-btn i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.gallery-load-more-btn:hover {
  background: #0A1E33;
  color: #FFFFFF;
  border-color: #0A1E33;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(10, 30, 51, 0.25);
}

.gallery-load-more-btn:hover i {
  transform: rotate(180deg);
}

.gallery-pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gallery-page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 0.8rem;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #334155;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.gallery-page-btn:hover:not(:disabled) {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.15);
}

.gallery-page-btn.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35);
  transform: scale(1.05);
}

.gallery-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #CBD5E1;
}

.gallery-pagination-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Full-Screen Lightbox Slider Modal
   ========================================================================== */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 14, 26, 0.94);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.gallery-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  width: 100%;
  max-width: 1180px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #0B132B;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Lightbox Header */
.lightbox-header {
  padding: 1.25rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #111C3A 0%, #0B132B 100%);
  color: #FFFFFF;
  gap: 1.5rem;
}

.lightbox-title-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.lightbox-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.lightbox-meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.lightbox-meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-meta-info span i {
  color: var(--accent-orange);
}

.lightbox-event-description {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin: 0.4rem 0 0 0;
  max-height: 70px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.lightbox-event-description::-webkit-scrollbar {
  width: 4px;
}
.lightbox-event-description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.lightbox-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.lightbox-counter-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
  transform: scale(1.08);
}

/* Lightbox Stage */
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  max-height: 52vh;
  background: #030712;
  overflow: hidden;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 52vh;
  object-fit: contain;
  display: block;
  user-select: none;
  animation: fadeInPhoto 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInPhoto {
  from { opacity: 0.3; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  backdrop-filter: blur(8px);
}

.lightbox-arrow:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.lightbox-arrow-prev { left: 1.5rem; }
.lightbox-arrow-next { right: 1.5rem; }

/* Lightbox Footer & Caption */
.lightbox-footer {
  padding: 1.1rem 1.8rem;
  background: #0B132B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption-text {
  font-size: 0.92rem;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  text-align: center;
  font-weight: 500;
}

/* Thumbs Strip in Lightbox */
.lightbox-thumbs-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  justify-content: center;
}

.lightbox-thumb-item {
  width: 68px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.45;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lightbox-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb-item:hover {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-thumb-item.active {
  opacity: 1;
  border-color: var(--accent-orange);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

@media (max-width: 1200px) {
  .catalog-modal-window {
    padding: 2rem 2.2rem;
    max-width: 96vw;
  }
  .catalog-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  .gallery-albums-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-dialog {
    max-height: 98vh;
  }
  .lightbox-stage {
    max-height: 45vh;
  }
  .lightbox-stage img {
    max-height: 45vh;
  }
  .lightbox-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .catalog-modal-window {
    padding: 1.5rem 1rem;
    border-radius: 20px;
    max-height: 94vh;
    width: 96%;
  }
  .catalog-modal-header {
    padding-right: 2.5rem;
    margin-bottom: 1rem;
  }
  .catalog-modal-title {
    font-size: 1.25rem;
  }
  .catalog-modal-subtitle {
    font-size: 0.85rem;
  }
  .catalog-controls-bar {
    padding: 0.9rem 0.8rem;
    border-radius: 14px;
    margin-bottom: 1rem;
  }
  .catalog-search-row {
    flex-direction: column;
    gap: 0.65rem;
  }
  .catalog-partner-select {
    width: 100%;
    min-width: unset;
  }
  .catalog-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-height: 65vh;
    padding-right: 0.2rem;
  }
  .product-card {
    height: auto !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
  }
  .product-card-thumb {
    height: 190px !important;
    min-height: 190px;
  }
  .product-card-thumb img {
    height: 190px !important;
    max-height: 190px;
    object-fit: cover;
  }
  .product-card-info {
    padding: 1.1rem 1.1rem 0.9rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .product-card-title {
    font-size: 1.08rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.65rem !important;
    -webkit-line-clamp: 3 !important;
    white-space: normal;
    word-break: break-word;
  }
  .product-card-specs {
    min-height: auto !important;
    height: auto !important;
    padding: 0.75rem 0.85rem !important;
    gap: 0.45rem;
    margin-top: 0.35rem;
    margin-bottom: 0.45rem;
  }
  .product-spec-row {
    min-height: auto;
    line-height: 1.4;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
  }
  .product-spec-label {
    font-size: 0.8rem !important;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
  }
  .product-spec-dots {
    min-width: 0.3rem;
  }
  .product-spec-val {
    font-size: 0.82rem !important;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
  }
  .product-card-actions {
    padding: 0.75rem 1.1rem 1rem !important;
  }
  .product-card-actions .product-details-btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.88rem !important;
  }
  .product-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pm-image-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.4rem;
  }
  .pm-image-box img {
    max-height: 240px;
  }
  .pm-content {
    padding: 1.4rem 1.2rem;
  }
  .catalog-modal-window .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }
}