/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --primary: #009ca8;
  --primary-dark: #007d88;
  --secondary: #313237;
  --bg-white: #ffffff;
  --bg-light: #f5f6f8;
  --text-dark: #1a1b1e;
  --text-muted: #6b6d75;
  --border: #e8e9ec;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,156,168,0.15);
  --transition: all 0.25s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
}

/* --- BASE HTML RESETS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.text-primary { color: var(--primary); }
.bg-light { background-color: var(--bg-light); }
.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

/* --- COMMON BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--bg-white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--bg-white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-block {
  display: flex;
  width: 100%;
}

/* --- ALERTS --- */
.alert {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 30px;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #e6f6f7;
  border-color: #b3e3e6;
  color: #006b74;
}

.alert-danger {
  background-color: #fdf2f2;
  border-color: #fcd8d8;
  color: #de3535;
}

.alert-icon {
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 2px;
}

.alert-content p {
  margin-top: 4px;
  font-size: 0.9rem;
}

/* --- SECTION HEADING --- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading.left-align {
  text-align: left;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.heading-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 16px;
  border-radius: 2px;
}

.section-heading.left-align .heading-accent {
  margin: 10px 0 16px;
}

.heading-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- BREADCRUMBS --- */
.breadcrumb-wrapper {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb li i {
  font-size: 0.75rem;
}

.breadcrumb .active {
  color: var(--text-dark);
  font-weight: 500;
}

/* --- TOP BAR --- */
.top-bar {
  background-color: #f0fafb;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.top-bar-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item i {
  margin-right: 6px;
}

.top-bar-item.divider {
  color: var(--border);
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar-select {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  padding: 2px 4px;
}

.top-bar-select:hover {
  color: var(--primary);
}

.selector-group {
  display: flex;
  gap: 12px;
}

/* --- MAIN NAV HEADER --- */
/* --- MAIN NAV HEADER --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 70px;
  background-color: #1e1e2e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop Navigation Links Bar */
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links > li > a {
  color: #e2e2e2;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 24px 0;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.nav-links > li > a:hover {
  color: #00B4C6;
}

.nav-links > li > a.active {
  color: #00B4C6;
  border-bottom-color: #00B4C6;
}

.nav-chevron {
  width: 10px;
  height: 6px;
  margin-left: 6px;
  color: currentColor;
  transition: transform 0.2s ease;
}

.dropdown-trigger:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Categories Dropdown */
.dropdown-trigger:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background-color: #2a2a3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 12px 12px;
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
  border-top: 3px solid #00B4C6;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #e2e2e2;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 180, 198, 0.15);
  color: #00B4C6;
}

.dropdown-icon {
  margin-right: 10px;
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

/* Search bar styling */
.search-wrapper {
  width: 300px;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: #2a2a3d;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}

.search-input::placeholder {
  color: #8e8e9f;
}

.search-input:focus {
  border-color: #00B4C6;
  box-shadow: 0 0 8px rgba(0, 180, 198, 0.4);
}

.search-submit {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background-color: #00B4C6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.search-submit:hover {
  background-color: #0099a8;
}

/* Hamburger icon */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #00B4C6;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- MOBILE DRAWER NAVIGATION --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 1001;
  box-shadow: 5px 0 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background-color: var(--secondary);
}

.drawer-header .logo {
  font-size: 1.4rem;
}

.drawer-header .hamburger {
  display: block;
  color: var(--bg-white);
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.mobile-search {
  margin-bottom: 24px;
}

.mobile-search .search-input {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.mobile-search .search-input:focus {
  background-color: var(--bg-white);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 8px 0;
}

.drawer-links > li > a:hover {
  color: var(--primary);
}

.drawer-icon {
  margin-right: 12px;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.drawer-submenu-trigger.open .drawer-submenu {
  display: block;
}

.drawer-submenu-trigger.open .sub-chevron {
  transform: rotate(180deg);
}

.drawer-submenu {
  display: none;
  padding-left: 32px;
  margin-top: 8px;
}

.drawer-submenu li a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.drawer-submenu li a:hover {
  color: var(--primary);
}

.drawer-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.phone-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 6px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- REUSABLE PRODUCT CARD STYLING --- */
.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 156, 168, 0.2);
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--bg-white);
  z-index: 10;
  letter-spacing: 0.5px;
}

.badge-new {
  background-color: var(--primary);
}

.badge-sale {
  background-color: #de3535;
}

/* Product image container */
.product-image {
  padding: 24px 20px 8px 20px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

/* Product Actions (wishlist, eye, compare) */
.product-actions {
  position: absolute;
  top: 12px;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

.product-card:hover .product-actions {
  right: 12px;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-white);
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Product Info Box */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid var(--border);
  background-color: var(--bg-white);
}

.product-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.product-name a:hover {
  color: var(--primary);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.price-sale {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Add to Cart button inside card */
.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.product-card:hover .btn-add-cart {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* --- NEWSLETTER STRIP --- */
.newsletter-strip {
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newsletter-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.newsletter-text {
  flex: 1 1 500px;
}

.newsletter-text h2 {
  color: var(--bg-white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: #adb0b8;
  font-size: 0.95rem;
}

.newsletter-form-wrapper {
  flex: 0 1 450px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--primary);
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- MAIN FOOTER --- */
.main-footer {
  background-color: #1e2024;
  color: #adb0b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 48px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #adb0b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #adb0b8;
}

.footer-links li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-chevron {
  font-size: 0.65rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-icon {
  font-size: 1rem;
  margin-top: 4px;
}

.info-text {
  line-height: 1.6;
}

.support-link,
.whatsapp-link {
  color: #adb0b8;
  font-weight: 500;
}

.support-link:hover,
.whatsapp-link:hover {
  color: var(--primary);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
  background-color: #15171a;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: 16px;
  font-size: 1.8rem;
  color: #55575d;
}

.payment-methods i {
  transition: var(--transition);
}

.payment-methods i:hover {
  color: var(--primary);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .newsletter-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .newsletter-form-wrapper {
    max-width: 100%;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .search-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-wrapper .search-input {
    display: none !important;
  }

  .search-wrapper .search-submit {
    position: relative;
    right: 0;
    width: 32px;
    height: 32px;
    margin: 0;
    z-index: 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .top-bar {
    display: none;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .section-container {
    padding: 60px 16px;
  }
}

/* --- WHATSAPP CATALOGUE ENQUIRY STYLING --- */
.product-card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-card-action {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-view-product {
  background-color: var(--secondary);
  color: var(--bg-white) !important;
  border: 1px solid var(--secondary);
}

.btn-view-product:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-whatsapp-inquire {
  background-color: #25d366;
  color: var(--bg-white) !important;
  border: 1px solid #25d366;
}

.btn-whatsapp-inquire:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

.inquiry-widget {
  margin: 24px 0;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25d366;
  color: var(--bg-white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  width: 100%;
}

.btn-whatsapp-large:hover {
  background-color: #128c7e;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
  transform: translateY(-2px);
}

/* --- GLOBAL PAGE HERO BANNER --- */
.page-hero {
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(0, 156, 168, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.page-hero h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  justify-content: center;
  color: #adb0b8;
}

.page-hero .breadcrumb a {
  color: #adb0b8;
}

.page-hero .breadcrumb .active {
  color: var(--bg-white);
}

/* --- SEARCH MODAL (MOBILE) --- */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 17, 26, 0.95);
  backdrop-filter: blur(8px);
}

.search-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 100px 20px 0;
  background-color: #1e1e2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: translateY(-30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.open .search-modal-content {
  transform: translateY(0) scale(1);
}

.search-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #8e8e9f;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.search-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.search-modal-body {
  margin-top: 10px;
}

.search-modal-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.search-modal-input {
  width: 100%;
  height: 54px;
  padding: 0 54px 0 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: #2a2a3d;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  outline: none;
  transition: all 0.25s ease;
}

.search-modal-input::placeholder {
  color: #8e8e9f;
}

.search-modal-input:focus {
  border-color: #00B4C6;
  box-shadow: 0 0 12px rgba(0, 180, 198, 0.3);
}

.search-modal-submit {
  position: absolute;
  right: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: #00B4C6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.search-modal-submit:hover {
  background-color: #0099a8;
  transform: scale(1.05);
}
