/*!
Theme Name: nextcore
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nextcore
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

nextcore is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ══════════════════════════════════════════════
   CSS VARIABLES & RESET
   ══════════════════════════════════════════════ */
:root {
  --dark: #2D3748;
  --navy: #215387;
  --gold: #f5a524;
  --light: #F7F8F8;
  --gold-muted: #DDA944;
  --dark-90: rgba(45, 55, 72, 0.9);
  --dark-80: rgba(45, 55, 72, 0.8);
  --dark-50: rgba(45, 55, 72, 0.5);
  --navy-light: rgba(33, 83, 135, 0.08);
  --gold-glow: rgba(245, 165, 36, 0.15);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 8px rgba(45, 55, 72, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 55, 72, 0.1);
  --shadow-lg: 0 20px 60px rgba(45, 55, 72, 0.15);
  --shadow-gold: 0 4px 20px rgba(245, 165, 36, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Ensure page content stays under header/mega menu */
#page {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   SCROLLING TICKER / ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.ticker-bar {
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
  position: relative;
  z-index: 1001;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 20%, transparent);
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 20%, transparent);
}

.ticker-track {
  display: flex;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item .ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.ticker-item .ticker-gold {
  color: var(--gold);
  font-weight: 600;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════
   TOP UTILITY BAR
   ══════════════════════════════════════════════ */
.utility-bar {
  background: var(--light);
  border-bottom: 1px solid rgba(45, 55, 72, 0.06);
  padding: 0 50px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--dark-50);
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-50);
  transition: color 0.3s ease;
}

.utility-left a:hover {
  color: var(--navy);
}

.utility-left svg {
  width: 14px;
  height: 14px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-right .lang-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 4px 0;
  transition: all 0.3s ease;
}

/* Google Translate Custom Styles */
.utility-right .lang-switch #google_translate_element {
  display: flex;
  align-items: center;
}

.utility-right .lang-switch .goog-te-gadget {
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  color: var(--dark-50) !important;
}

.utility-right .lang-switch .goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  padding: 4px 8px !important;
  font-size: 12px !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.utility-right .lang-switch .goog-te-gadget-simple:hover {
  background: var(--navy-light) !important;
}

.utility-right .lang-switch .goog-te-gadget-simple .goog-te-menu-value {
  color: var(--dark-50) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.utility-right .lang-switch .goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--dark-50) !important;
  border: none !important;
}

.utility-right .lang-switch .goog-te-gadget-simple .goog-te-menu-value span:hover {
  color: var(--navy) !important;
}

/* Hide Google Translate top banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

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

.utility-social a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--transition-smooth);
  color: var(--dark-50);
}

.utility-social a:hover {
  color: var(--navy);
  background: var(--navy-light);
  transform: translateY(-1px);
}

.utility-social a svg {
  width: 14px;
  height: 14px;
}

/* ══════════════════════════════════════════════
   MAIN HEADER
   ══════════════════════════════════════════════ */
.main-header {
  background: #fff;
  padding: 0 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.main-header.scrolled {
  height: 66px;
  box-shadow: var(--shadow-md);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

/* Logo */
.main-header .logo,
.main-header .custom-logo-link.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid var(--gold);
  border-radius: 7px;
  opacity: 0.6;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  position: relative;
  z-index: 1;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-text .brand-tagline {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-muted);
  margin-top: 3px;
  font-weight: 500;
}

.custom-logo-link img,
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   MAIN NAVIGATION
   ══════════════════════════════════════════════ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: visible;
}
.main-nav > ul {
  min-width: 0;
  overflow: visible;
}
.main-nav > ul > li {
  overflow: visible;
}

.main-nav ul.main-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  flex: 1;
  min-width: 0;
}

.main-nav ul.main-nav-list>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.main-header .nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-header .main-nav .nav-link {
  padding: 8px 18px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.3s var(--transition-smooth);
  border-radius: 6px;
  height: 100%;
  white-space: nowrap;
  line-height: 1.3;
}

.main-header .main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-muted));
  border-radius: 2px;
  transition: width 0.4s var(--transition-smooth);
}

.main-header .main-nav .nav-link:hover {
  color: var(--navy);
}

.main-header .main-nav .nav-link:hover::after,
.main-header .main-nav .nav-link.active::after {
  width: 60%;
}

.main-header .main-nav .nav-link.active {
  color: var(--navy);
}

.main-header .main-nav .nav-link .chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-smooth);
  opacity: 0.5;
}

.main-header .nav-item:hover .chevron,
.main-header .nav-item.open .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ══════════════════════════════════════════════
   HEADER ACTIONS (right side)
   ══════════════════════════════════════════════ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 16px;
  min-width: 0;
}

/* Header Action Buttons - Force Specific Styles */
.main-header .header-actions button.header-search-toggle,
.main-header .header-actions button.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: #fff !important;
  border: 1px solid rgba(45, 55, 72, 0.1) !important;
  box-shadow: 0 1px 3px rgba(45, 55, 72, 0.05);
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  padding: 0;
  margin: 0;
  position: relative;
  outline: none;
}

.main-header .header-actions button.header-search-toggle:hover,
.main-header .header-actions button.action-btn:hover {
  background: var(--navy-light) !important;
  color: var(--navy);
  border-color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 83, 135, 0.15);
}

.main-header .header-actions button.header-search-toggle svg,
.main-header .header-actions button.action-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  fill: none;
  display: block;
  pointer-events: none;
}

.main-header .header-actions button.action-btn svg {
  width: 21px;
  height: 21px;
}

.main-header .header-actions .action-btn .action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(245, 165, 36, 0.4);
  animation: badgePop 0.3s var(--transition-bounce);
  z-index: 2;
  pointer-events: none;
  line-height: 1;
  border: 2px solid #fff;
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.action-divider {
  width: 1px;
  height: 28px;
  background: rgba(45, 55, 72, 0.1);
  margin: 0 6px;
}

/* Auth buttons - Enhanced Styles */
.main-header .header-actions .auth-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.main-header .header-actions .auth-area .btn-login,
.main-header .header-actions .auth-area .btn-register {
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.main-header .header-actions .btn-login {
  padding: 10px 20px !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: transparent !important;
  border: 1.5px solid rgba(45, 55, 72, 0.2) !important;
  border-radius: 8px;
  transition: all 0.3s var(--transition-smooth);
  letter-spacing: 0.3px;
  cursor: pointer;
  line-height: 1;
}

.main-header .header-actions .btn-login:hover {
  border-color: var(--navy) !important;
  color: var(--navy);
  background: var(--navy-light) !important;
  transform: translateY(-1px);
}

.main-header .header-actions .btn-register {
  padding: 10px 22px !important;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--navy)) !important;
  border: none !important;
  border-radius: 8px;
  transition: all 0.4s var(--transition-smooth);
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(45, 55, 72, 0.2);
}

.main-header .header-actions .btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 165, 36, 0.2), transparent);
  transition: left 0.5s ease;
}

.main-header .header-actions .btn-register:hover::before {
  left: 100%;
}

.main-header .header-actions .btn-register:hover {
  box-shadow: 0 4px 15px rgba(45, 55, 72, 0.3);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════════ */
.mega-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 55, 72, 0.2);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all 0.4s var(--transition-smooth);
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  transform-origin: top center;
  z-index: 1001;
  overflow: hidden;
  min-width: 780px;
  pointer-events: none;
}

.mega-menu.from-left {
  left: 0;
  transform: translateX(0);
}

.main-header .nav-item .mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
}

.main-header .nav-item:hover .mega-menu,
.main-header .nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-header .mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 0;
}

.main-header .mega-col {
  padding: 32px 28px;
  border-right: 1px solid rgba(45, 55, 72, 0.06);
}

.main-header .mega-col:last-child {
  border-right: none;
}

.main-header .mega-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(221, 169, 68, 0.2);
  line-height: 1.2;
}

.main-header .mega-links a,
.main-header .mega-menu .mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  margin: 0 -12px;
  font-size: 14px !important;
  font-weight: 400;
  color: var(--dark);
  border-radius: 8px;
  transition: all 0.25s var(--transition-smooth);
  line-height: 1.4;
  white-space: nowrap;
}

.main-header .mega-links a:hover,
.main-header .mega-menu .mega-link:hover {
  background: var(--navy-light);
  color: var(--navy);
  padding-left: 18px;
}

/* Force menu font sizes (prevent other styles from overriding) */
.main-header .main-nav,
.main-header .main-nav .nav-item,
.main-header .mega-menu,
.main-header .mega-menu .mega-menu-inner,
.main-header .mega-menu .mega-col,
.main-header .mega-menu .mega-links {
  font-size: inherit;
}

.main-header .main-nav .nav-item>.nav-link {
  font-size: 14px !important;
}

.main-header .mega-menu .mega-col-title {
  font-size: 11px !important;
}

.main-header .mega-menu .mega-links a,
.main-header .mega-menu a.mega-link {
  font-size: 14px !important;
}

.mega-links a .mega-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mega-links a:hover .mega-link-icon {
  background: rgba(33, 83, 135, 0.1);
}

.mega-links a .mega-link-icon svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.mega-links .new-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: #fff;
  border-radius: 4px;
  margin-left: auto;
}

/* Mega promo */
.mega-promo {
  padding: 28px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 0;
}

.mega-promo::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(245, 165, 36, 0.08);
}

.mega-promo::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(33, 83, 135, 0.2);
}

.mega-promo-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mega-promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mega-promo-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mega-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.mega-promo-btn:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.mega-promo-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.mega-promo-btn:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   FULL-SCREEN SEARCH OVERLAY
   ══════════════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 55, 72, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 680px;
  max-width: 90vw;
  transform: translateY(20px);
  transition: transform 0.5s var(--transition-smooth);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.search-overlay-input-wrap {
  position: relative;
}

.search-overlay-input {
  width: 100%;
  padding: 22px 60px 22px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-overlay-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-overlay-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.search-overlay-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.search-overlay-input-wrap {
  flex: 1;
  min-width: 200px;
}

.search-overlay-submit {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark, #2D3748);
  background: var(--gold, #f5a524);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-overlay-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 165, 36, 0.35);
}

.search-close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.search-close-btn svg {
  width: 22px;
  height: 22px;
}

.search-suggestions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  justify-content: center;
}

.search-suggestions-label {
  flex: 0 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}

.search-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-suggestions span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-right: 8px;
}

.search-tag {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-tag:hover {
  background: rgba(245, 165, 36, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   AUTH MODAL
   ══════════════════════════════════════════════ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition-smooth);
}

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

.auth-modal {
  width: 440px;
  max-width: 92vw;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: all 0.4s var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-modal-header {
  background: linear-gradient(135deg, var(--dark), var(--navy));
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
}

.auth-modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245, 165, 36, 0.06);
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.auth-modal-close svg {
  width: 16px;
  height: 16px;
}

.auth-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.auth-modal-subtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
}

.auth-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-50);
  position: relative;
  transition: all 0.3s ease;
}

.auth-tab.active {
  color: var(--navy);
}

.auth-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  width: 60%;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s var(--transition-smooth);
}

.auth-tab.active::after {
  transform: scaleX(1);
}

.auth-modal-body {
  padding: 28px 36px 36px;
}

.auth-form-group {
  margin-bottom: 18px;
}

.auth-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-50);
  margin-bottom: 8px;
}

.auth-form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(45, 55, 72, 0.12);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  color: var(--dark);
  outline: none;
  transition: all 0.3s ease;
  background: var(--light);
}

.auth-form-group input:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(33, 83, 135, 0.08);
}

.auth-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--transition-smooth);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 165, 36, 0.12), transparent);
  transition: left 0.5s ease;
}

.auth-submit-btn:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.auth-submit-btn:hover::before {
  left: 100%;
}

.auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: var(--dark-50);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(45, 55, 72, 0.1);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.social-login-btns {
  display: flex;
  gap: 10px;
}

.social-login-btn {
  flex: 1;
  padding: 11px;
  border: 1.5px solid rgba(45, 55, 72, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
}

.social-login-btn:hover {
  border-color: var(--navy);
  background: var(--navy-light);
}

.social-login-btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════
   MINI CART SIDEBAR
   ══════════════════════════════════════════════ */
.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 55, 72, 0.5);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: #fff;
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.45s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(45, 55, 72, 0.15);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-sidebar-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.cart-sidebar-count {
  font-size: 13px;
  color: var(--dark-50);
  font-weight: 400;
  margin-left: 8px;
}

.cart-sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-50);
  transition: all 0.3s ease;
}

.cart-sidebar-close:hover {
  background: var(--light);
  color: var(--dark);
}

.cart-sidebar-close svg {
  width: 18px;
  height: 18px;
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(45, 55, 72, 0.06);
  animation: cartItemIn 0.4s var(--transition-smooth);
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-light), rgba(221, 169, 68, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  opacity: 0.4;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--dark-50);
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(45, 55, 72, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-qty button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.2s ease;
}

.cart-item-qty button:hover {
  background: var(--light);
}

.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.cart-sidebar-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(45, 55, 72, 0.08);
  background: var(--light);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-total-label {
  font-size: 14px;
  color: var(--dark-50);
}

.cart-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 12px;
  transition: all 0.4s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-checkout-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.cart-checkout-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cart-checkout-btn:hover svg {
  transform: translateX(4px);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--dark-50);
  transition: color 0.3s ease;
}

.cart-continue:hover {
  color: var(--navy);
}

/* ══════════════════════════════════════════════
   FOOTER — PREMIUM
   ══════════════════════════════════════════════ */
.footer-newsletter-section {
  background: linear-gradient(160deg, var(--dark) 0%, #1a2332 50%, var(--navy) 100%);
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.04) 0%, transparent 70%);
}

.footer-newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 83, 135, 0.08) 0%, transparent 70%);
}

.newsletter-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.newsletter-text h3 em {
  color: var(--gold);
  font-style: italic;
}

.newsletter-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 440px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 17px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  padding: 17px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.4s var(--transition-smooth);
}

.newsletter-form button:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Footer main body */
.footer-main {
  background: var(--dark);
  padding: 70px 50px 40px;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 165, 36, 0.3), transparent);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

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

.footer-logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(245, 165, 36, 0.3);
  border-radius: 7px;
}

.footer-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .fbrand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text .ftagline {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-muted);
  margin-top: 2px;
}

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

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-under-logo {
  margin-top: 4px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-social a svg {
  width: 17px;
  height: 17px;
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-muted);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(221, 169, 68, 0.15);
}

.footer-links a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
  padding-left: 0;
  text-decoration: none;
}

.footer-links a strong,
.footer-links a b {
  font-weight: 400 !important;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  padding-left: 8px;
}

.footer-links a:focus,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.5) !important;
  padding-left: 0;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.footer-links a:focus::before,
.footer-links a:focus-visible::before {
  opacity: 0 !important;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid var(--gold);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Bize Ulaşın sütunu */
.footer-col-contact .footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-muted, #DDA944);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-muted, #DDA944);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-contact-link:hover {
  color: #fff;
  opacity: 0.95;
}

/* Footer trust badges */
.footer-trust {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  gap: 50px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-muted);
}

.trust-badge-text {
  font-size: 12.5px;
  line-height: 1.4;
}

.trust-badge-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Footer bottom bar — okunabilir kontrast */
.footer-bottom {
  background: #e8eaee;
  padding: 20px 50px;
  border-top: 1px solid rgba(45, 55, 72, 0.08);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(45, 55, 72, 0.85);
}

.footer-copyright a {
  color: var(--navy, #215387);
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--gold);
}

.footer-copyright-img-link {
  display: inline-block;
  line-height: 0;
}

.footer-copyright-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(45, 55, 72, 0.8);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--navy, #215387);
}

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

.footer-payments .payment-icon {
  width: 58px;
  height: 38px;
  background: rgba(45, 55, 72, 0.08);
  border: 1px solid rgba(45, 55, 72, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(45, 55, 72, 0.6);
  letter-spacing: 0.5px;
}

.footer-payment-img {
  display: block;
  height: 24px; /* iyzico logo bandı (429x32) okunur kalsın */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--transition-smooth);
  z-index: 10001;
  /* Ensure it's above WA widget */
  border: 1px solid rgba(245, 165, 36, 0.2);
  cursor: pointer;
  pointer-events: none;
  /* Ignore clicks when hidden */
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  /* Re-enable clicks when visible */
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mega-menu {
    min-width: 600px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr 1fr 260px;
  }

  .mega-col:nth-child(3) {
    display: none;
  }

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

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .utility-bar {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    min-height: 36px;
  }

  .utility-left,
  .utility-right {
    display: flex;
    align-items: center;
  }

  .main-header {
    padding: 0 24px;
    height: 70px;
  }

  .auth-area {
    display: none;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .newsletter-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-newsletter-section {
    padding: 50px 24px;
  }

  .footer-main {
    padding: 50px 24px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-brand .footer-logo-img {
    margin: 0 auto;
  }

  .footer-trust {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .footer-bottom {
    padding: 18px 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-copyright-img-link {
    display: inline-block;
    text-align: center;
  }

  .footer-copyright-img {
    margin: 0 auto;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-payments {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════
   ANIMATIONS ON LOAD
   ══════════════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.ticker-bar {
  animation: fadeInDown 0.6s ease forwards;
}

.utility-bar {
  animation: fadeInDown 0.6s 0.1s ease both;
}

.main-header {
  animation: fadeInDown 0.6s 0.2s ease both;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #F7F8F8;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #215387;
}

a:visited {
  color: #215387;
}

a:hover,
a:focus,
a:active {
  color: #f5a524;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: none;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Paspas özelleştir sayfası — sidebar yok, içerik tam genişlik */
body.page-no-sidebar .site-main,
body.page-no-sidebar #primary {
  max-width: 100%;
  width: 100%;
}

/* Ödeme ve sepet sayfaları — tam genişlik, sidebar yok */
body.emc-checkout-page .site-main,
body.emc-checkout-page #primary,
body.emc-checkout-page article.page,
body.emc-checkout-page .entry-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}

/* Arama sonuçları sayfası — tam genişlik, düzenli liste */
.site-main--search {
  padding: 40px 24px 60px;
}

.search-results-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.search-results-header {
  margin-bottom: 36px;
}

.search-results-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark, #2D3748);
  margin: 0 0 20px;
  line-height: 1.3;
}

.search-results-query {
  color: var(--navy, #215387);
  font-weight: 600;
}

.search-results-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.search-results-input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid rgba(45, 55, 72, 0.15);
  border-radius: 12px;
  font-size: 15px;
}

.search-results-input:focus {
  outline: none;
  border-color: var(--navy, #215387);
  box-shadow: 0 0 0 3px rgba(33, 83, 135, 0.1);
}

.search-results-submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold, #f5a524), #DDA944);
  color: var(--dark, #2D3748);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.search-results-submit:hover {
  opacity: 0.95;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-results-list .entry-title {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

.search-results-list .entry-title a {
  color: var(--dark, #2D3748);
  text-decoration: none;
}

.search-results-list .entry-title a:hover {
  color: var(--navy, #215387);
}

.search-results-list .entry-summary {
  margin-top: 0;
  color: rgba(45, 55, 72, 0.8);
  line-height: 1.6;
}

.search-results-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
}

.search-results-list article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* ══════════════════════════════════════════════
   MOBILE FOOTER FIXES (max-width: 640px)
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .footer-newsletter-section {
    padding: 36px 20px !important;
  }

  .footer-newsletter-section h3 {
    font-size: 20px !important;
  }

  .footer-newsletter-section h3 em {
    font-size: 22px !important;
  }

  .footer-newsletter-section p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .newsletter-form {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .newsletter-form input {
    height: 48px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }

  .newsletter-form button {
    height: 48px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    width: 100% !important;
  }

  .footer-main {
    padding: 32px 20px 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .footer-brand {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    grid-column: 1 !important;
  }

  .footer-logo {
    margin-bottom: 16px !important;
    justify-content: center !important;
  }

  .footer-logo-img {
    max-height: 42px !important;
  }

  .footer-brand-desc {
    font-size: 13px !important;
    line-height: 1.6 !important;
    max-width: 280px !important;
    margin: 0 auto 20px !important;
  }

  .footer-social {
    justify-content: center !important;
    gap: 12px !important;
  }

  .footer-social a {
    width: 38px !important;
    height: 38px !important;
  }

  .footer-col {
    text-align: center !important;
  }

  .footer-col-title {
    font-size: 12px !important;
    margin-bottom: 12px !important;
    letter-spacing: 1.5px !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-links a {
    font-size: 13px !important;
    padding: 6px 0 !important;
    justify-content: center !important;
  }

  .footer-trust {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 20px 0 0 !important;
    margin: 24px 0 0 !important;
  }

  .trust-badge {
    flex-direction: row !important;
    text-align: left !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .trust-badge .trust-badge-icon {
    flex-shrink: 0 !important;
  }

  .trust-badge .trust-badge-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .trust-badge .trust-badge-text {
    font-size: 11px !important;
  }

  .trust-badge .trust-badge-text strong {
    font-size: 12px !important;
    display: block !important;
    margin-bottom: 2px !important;
  }

  /* Footer bottom — mobil düzen */
  .footer-bottom {
    padding: 20px 20px !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-copyright {
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-copyright-img-link {
    display: inline-block !important;
    text-align: center !important;
  }

  .footer-copyright-img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .footer-legal {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px 20px !important;
    row-gap: 10px !important;
    column-gap: 20px !important;
  }

  .footer-legal a {
    font-size: 12px !important;
    white-space: nowrap !important;
    padding: 4px 0 !important;
  }

  .footer-payments {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .footer-payment-img {
    height: 20px !important;
    max-height: 52px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .footer-payments .payment-icon {
    width: 56px !important;
    height: 36px !important;
    font-size: 11px !important;
  }
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ══════════════════════════════════════════════ */
.emc-wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Outfit', sans-serif;
  pointer-events: none;
  /* Prevent container from blocking clicks */
}

.emc-wa-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
  padding: 0;
  outline: none;
  margin-top: 16px;
  pointer-events: auto;
  /* Enable clicks on button */
}

.emc-wa-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.emc-wa-button svg {
  width: 32px;
  height: 32px;
}

.emc-wa-panel {
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
  pointer-events: auto;
  /* Enable clicks on panel */
  position: absolute;
  bottom: 76px;
  right: 0;
}

.emc-wa-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.emc-wa-header {
  background: #111;
  color: #fff;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.emc-wa-body {
  padding: 12px;
  max-height: 420px;
  overflow-y: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emc-wa-advisor {
  display: flex;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  background: #edf2f7;
  text-align: left;
  cursor: pointer;
}

.emc-wa-advisor:hover {
  background: #e2e8f0;
}

.emc-wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dda944;
  flex-shrink: 0;
  background-color: #f7f8f8;
}

.emc-wa-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.emc-wa-name {
  color: #2d3748;
  font-size: 14.5px;
  font-weight: 700;
}

.emc-wa-title {
  color: #718096;
  font-size: 12.5px;
  font-weight: 400;
}

/* Chat View Styles */
.emc-wa-chat-header {
  background: #111;
  color: #fff;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.emc-wa-back-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 4px;
}

.emc-wa-back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.emc-wa-chat-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.emc-wa-chat-header-info .emc-wa-name {
  color: #fff;
  font-size: 16px;
}

.emc-wa-chat-header-info .emc-wa-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.emc-wa-chat-header .emc-wa-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #dda944;
  object-fit: cover;
  border-radius: 50%;
}

#emcWaActiveAvatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emc-wa-chat-body {
  padding: 24px;
  background: #efeae2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}

.emc-chat-bubble {
  background: #fff;
  padding: 14px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  align-self: flex-start;
  max-width: 90%;
}

.emc-chat-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-right: 12px solid #fff;
  border-bottom: 12px solid transparent;
}

.emc-chat-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}

.emc-chat-action-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  color: #fff;
}

/* Adjust Back to Top button so it does not overlap with WhatsApp */
.back-to-top {
  bottom: 100px !important;
}

/* ══════════════════════════════════════════════
   COLLECTIONS SECTION — Premium Card Grid
   ══════════════════════════════════════════════ */
.collections-section {
  background: var(--light);
  padding: 80px 0 100px;
}

.collections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.collections-header {
  text-align: center;
  margin-bottom: 56px;
}

.collections-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.collections-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.collections-eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.collections-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.collections-subtext {
  font-size: 16px;
  color: var(--dark-50);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Anasayfa 4 kart — 2x2 düzen */
.collections-grid--four {
  grid-template-columns: repeat(2, 1fr);
}

/* Card */
.col-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(45, 55, 72, 0.06);
  transition: all 0.45s var(--transition-smooth);
}

.col-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 72%;
  overflow: hidden;
}

.col-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.col-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.col-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light);
  transition: all 0.35s var(--transition-smooth);
}

.col-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark-50);
  transition: all 0.3s ease;
}

/* Hover */
.col-card:hover {
  border-color: rgba(245, 165, 36, 0.2);
  box-shadow: 0 12px 40px rgba(45, 55, 72, 0.1), 0 0 0 1px rgba(245, 165, 36, 0.08);
  transform: translateY(-6px);
}

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

.col-card:hover .col-card-title {
  color: var(--navy);
}

.col-card:hover .col-card-arrow {
  background: var(--gold);
}

.col-card:hover .col-card-arrow svg {
  stroke: #fff;
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .collections-section {
    padding: 60px 0 80px;
  }

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

  .collections-heading {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .collections-section {
    padding: 48px 0 64px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collections-heading {
    font-size: 26px;
  }

  .col-card-footer {
    padding: 14px 18px;
  }
}

@media (max-width: 640px) {
  .emc-wa-widget {
    bottom: 20px;
    right: 20px;
  }

  .emc-wa-panel {
    width: 300px;
  }

  .back-to-top {
    bottom: 96px !important;
  }
}

/* ══════════════════════════════════════════════
   COLLECTIONS PAGE
   ══════════════════════════════════════════════ */

/* ─── Hero ─── */
.coll-hero {
  background: var(--dark);
  padding: 100px 24px 80px;
  text-align: center;
}

.coll-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.coll-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.coll-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.coll-hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.coll-hero-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coll-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 40px;
}

.coll-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.coll-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coll-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.coll-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ─── Categories ─── */
.coll-categories {
  background: var(--light);
  padding: 80px 24px;
}

.coll-categories-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Category Card */
.coll-cat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.coll-cat-card--reverse {
  direction: rtl;
}

.coll-cat-card--reverse>* {
  direction: ltr;
}

/* Visual */
.coll-cat-visual {
  position: relative;
}

.coll-cat-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.coll-cat-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coll-cat-card:hover .coll-cat-img {
  transform: scale(1.04);
}

.coll-cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.coll-cat-card--reverse .coll-cat-badge {
  left: auto;
  right: 20px;
}

/* Content */
.coll-cat-content {
  display: flex;
  flex-direction: column;
}

.coll-cat-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.coll-cat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.coll-cat-desc {
  font-size: 15px;
  color: var(--dark-50);
  line-height: 1.7;
  margin: 0 0 24px;
}

.coll-cat-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coll-cat-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.coll-cat-features svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.coll-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
  align-self: flex-start;
}

.coll-cat-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.coll-cat-btn:hover {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.coll-cat-btn:hover svg {
  transform: translateX(4px);
}

/* ─── CTA ─── */
.coll-cta {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}

.coll-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.coll-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 165, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.coll-cta-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.coll-cta-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.coll-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 32px;
}

.coll-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
}

.coll-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.coll-cta-btn:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.coll-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .coll-hero {
    padding: 80px 24px 60px;
  }

  .coll-hero-heading {
    font-size: 38px;
  }

  .coll-cat-card {
    gap: 36px;
  }

  .coll-cat-title {
    font-size: 30px;
  }

  .coll-cat-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .coll-hero-heading {
    font-size: 32px;
  }

  .coll-hero-stats {
    gap: 32px;
  }

  .coll-hero-stat-num {
    font-size: 26px;
  }

  .coll-cat-card,
  .coll-cat-card--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

  .coll-cat-img {
    height: 280px;
  }

  .coll-cat-title {
    font-size: 28px;
  }

  .coll-categories-inner {
    gap: 48px;
  }

  .coll-cta-heading {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .coll-hero {
    padding: 72px 16px 48px;
  }

  .coll-hero-heading {
    font-size: 28px;
  }

  .coll-hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .coll-cat-img {
    height: 220px;
  }

  .coll-cat-badge {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
    top: 14px;
    left: 14px;
  }
}

/* ══════════════════════════════════════════════
   COLLECTION DETAIL PAGE
   ══════════════════════════════════════════════ */

/* ─── Section 1: Hero Split (Otel / Otomotiv / Fine Dining / Lüks Mücevherat — aynı şık tasarım) ─── */
.sd-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 620px;
  align-items: stretch;
}

.sd-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.sd-hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sd-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(45, 55, 72, 0.12) 0%, transparent 50%, transparent 100%);
  pointer-events: none;
}

.sd-hero-content {
  background: var(--dark);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Breadcrumb */
.sd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sd-breadcrumb a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.sd-breadcrumb-sep svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.25);
}

.sd-breadcrumb-current {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* Hero eyebrow */
.sd-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sd-hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.sd-hero-eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.sd-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.sd-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Features list */
.sd-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.sd-hero-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 165, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sd-hero-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.sd-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.35s var(--transition-smooth);
}

.sd-hero-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.sd-hero-btn:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.sd-hero-btn:hover svg {
  transform: translateY(3px);
}

/* ─── Section 2: DYNAMIC SHOWCASES ─── */
.sd-showcases {
  background: #fff;
  padding: 100px 24px;
}

.sd-showcases-header {
  text-align: center;
  margin-bottom: 72px;
}

.sd-showcases-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.sd-showcases-eyebrow span:not(.sd-showcases-eyebrow-line) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.sd-showcases-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.sd-showcases-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin: 0;
  line-height: 1.15;
}

.sd-showcases-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-showcases-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.sd-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sd-feature-row--reversed {
  direction: rtl;
}

.sd-feature-row--reversed>* {
  direction: ltr;
}

.sd-feature-visual {
  position: relative;
}

.sd-feature-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 55, 72, 0.12);
  position: relative;
  background: var(--light);
}

.sd-feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.sd-feature-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-feature-row:hover .sd-feature-img-wrap img {
  transform: scale(1.04);
}

/* Badge on image */
.sd-feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(45, 55, 72, 0.3);
  z-index: 2;
}

.sd-feature-row--reversed .sd-feature-badge {
  left: auto;
  right: 20px;
}

.sd-feature-content {
  padding: 10px 0;
}

/* Eyebrow */
.sd-feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sd-feature-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 165, 36, 0.4);
}

.sd-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sd-feature-desc {
  font-size: 16px;
  color: rgba(45, 55, 72, 0.65);
  line-height: 1.75;
  margin: 0 0 28px;
}

/* Feature specs list */
.sd-feature-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sd-feature-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-90);
}

.sd-feature-specs svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* CTA Button */
.sd-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
}

.sd-feature-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.sd-feature-cta:hover {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 32px rgba(45, 55, 72, 0.25);
  transform: translateY(-2px);
}

.sd-feature-cta:hover svg {
  transform: translateX(4px);
}

/* ─── Responsive Adjustments for Showcases ─── */
@media (max-width: 1024px) {
  .sd-feature-row {
    gap: 40px;
  }

  .sd-showcases-heading {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .sd-showcases {
    padding: 60px 24px;
  }

  .sd-showcases-header {
    margin-bottom: 48px;
  }

  .sd-showcases-heading {
    font-size: 28px;
  }

  .sd-showcases-inner {
    gap: 64px;
  }

  .sd-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .sd-feature-title {
    font-size: 28px;
  }

  .sd-feature-specs {
    grid-template-columns: 1fr;
  }

  .sd-feature-badge {
    width: 44px;
    height: 44px;
    font-size: 15px;
    top: 14px;
    left: 14px;
  }
}

/* ─── Section 3: WHY US? ─── */
.sd-whyus {
  background: var(--light);
  padding: 100px 24px;
}

.sd-whyus-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.sd-whyus-header {
  text-align: center;
  margin-bottom: 52px;
}

.sd-whyus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sd-whyus-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 165, 36, 0.4);
}

.sd-whyus-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin: 0 0 16px;
  line-height: 1.15;
}

.sd-whyus-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-whyus-sub {
  font-size: 17px;
  color: rgba(45, 55, 72, 0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Stats Bar */
.sd-whyus-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 0;
  margin-bottom: 56px;
  box-shadow: 0 4px 20px rgba(45, 55, 72, 0.06);
  border: 1px solid rgba(45, 55, 72, 0.06);
}

.sd-whyus-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.sd-whyus-stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(245, 165, 36, 0.25), transparent);
}

.sd-whyus-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-whyus-stat-label {
  font-size: 13px;
  color: rgba(45, 55, 72, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* Feature Cards Grid */
.sd-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sd-whyus-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(45, 55, 72, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-whyus-card:hover {
  border-color: rgba(245, 165, 36, 0.2);
  box-shadow: 0 16px 48px rgba(45, 55, 72, 0.08);
  transform: translateY(-6px);
}

.sd-whyus-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 165, 36, 0.08);
  border: 1px solid rgba(245, 165, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sd-whyus-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.sd-whyus-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.sd-whyus-card p {
  font-size: 14px;
  color: rgba(45, 55, 72, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sd-whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-whyus-heading {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .sd-whyus {
    padding: 60px 24px;
  }

  .sd-whyus-heading {
    font-size: 28px;
  }

  .sd-whyus-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .sd-whyus-stat-divider {
    width: 60px;
    height: 1px;
  }

  .sd-whyus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─── Section 4: CTA Split ─── */
.sd-cta {
  background: var(--dark);
  padding: 80px 24px;
}

.sd-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sd-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.25;
}

.sd-cta-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 32px;
}

.sd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
}

.sd-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.sd-cta-btn:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.sd-cta-btn:hover svg {
  transform: translateX(4px);
}

.sd-cta-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sd-cta-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .sd-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sd-hero-image {
    height: 360px;
    min-height: 360px;
  }

  .sd-hero-content {
    padding: 48px 32px;
  }

  .sd-hero-title {
    font-size: 36px;
  }

  .sd-intro-inner {
    gap: 40px;
  }

  .sd-intro-title {
    font-size: 28px;
  }

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

  .sd-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sd-cta-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .sd-hero-content {
    padding: 36px 24px;
  }

  .sd-hero-title {
    font-size: 30px;
  }

  .sd-intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sd-intro-img-wrap img {
    height: 300px;
  }

  .sd-products-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .sd-hero-image {
    height: 240px;
  }

  .sd-hero-title {
    font-size: 26px;
  }

  .sd-hero-content {
    padding: 28px 20px;
  }

  .sd-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sd-cta-visual img {
    height: 260px;
  }
}

/* ══════════════════════════════════════════════
   SOLUTIONS PAGE — Premium Pro Max
   ══════════════════════════════════════════════ */

/* ─── Hero ─── */
.sol-hero {
  position: relative;
  background: var(--dark);
  padding: 120px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.sol-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(245, 165, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(33, 83, 135, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(245, 165, 36, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.sol-hero-pattern::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  right: -200px;
  bottom: -200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.sol-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.sol-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sol-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(245, 165, 36, 0.5);
}

.sol-hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -1.5px;
}

.sol-hero-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #FFD700, var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0 auto 48px;
  max-width: 640px;
  margin-right: auto;
}

.sol-hero-counters {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 24px 0;
}

.sol-hero-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.sol-hero-counter-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(245, 165, 36, 0.3), transparent);
}

.sol-hero-counter-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-hero-counter-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ─── Trust Bar ─── */
.sol-trust {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
  border-top: 1px solid rgba(245, 165, 36, 0.1);
  border-bottom: 1px solid rgba(245, 165, 36, 0.1);
  padding: 0;
}

.sol-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sol-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.sol-trust-item:last-child {
  border-right: none;
}

.sol-trust-item:hover {
  background: rgba(245, 165, 36, 0.04);
}

.sol-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 165, 36, 0.08);
  border: 1px solid rgba(245, 165, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sol-trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.sol-trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sol-trust-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Shared ─── */
.sol-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.sol-eyebrow-dual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.sol-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.sol-eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.sol-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.sol-section-title--light {
  color: #fff;
}

.sol-section-sub {
  font-size: 16px;
  color: var(--dark-50);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Showcase Alternating Rows ─── */
.sol-showcase {
  background: var(--light);
  padding: 100px 24px;
}

.sol-showcase-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.sol-show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.sol-show-row:last-child {
  margin-bottom: 0;
}

.sol-show-row--reverse {
  direction: rtl;
}

.sol-show-row--reverse>* {
  direction: ltr;
}

.sol-show-visual {
  position: relative;
}

.sol-show-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45, 55, 72, 0.12);
}

.sol-show-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sol-show-img-wrap:hover img {
  transform: scale(1.05);
}

.sol-show-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.sol-show-row--reverse .sol-show-float {
  right: auto;
  left: -20px;
}

.sol-show-float-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-show-float-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.sol-show-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sol-show-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.1), rgba(245, 165, 36, 0.05));
  border: 1px solid rgba(245, 165, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-show-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.sol-show-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: rgba(45, 55, 72, 0.15);
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 1;
}

.sol-show-title {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 14px;
  line-height: 1.2;
}

.sol-show-desc {
  font-size: 15px;
  color: var(--dark-50);
  line-height: 1.7;
  margin: 0 0 20px;
}

.sol-show-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sol-show-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.sol-show-features svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.sol-show-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.sol-show-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.sol-show-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.sol-show-btn:hover svg {
  transform: translateX(4px);
}

/* ─── More Solutions — Gradient cards ─── */
.sol-more {
  background: var(--light);
  padding: 0 24px 100px;
}

.sol-more-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-more-card {
  padding: 32px 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.sol-more-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 20px 20px;
}

.sol-more-card--health {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.sol-more-card--industry {
  background: linear-gradient(135deg, #1e3a5f, var(--navy));
}

.sol-more-card--custom {
  background: linear-gradient(135deg, #92400e, var(--gold-muted));
}

.sol-more-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sol-more-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.sol-more-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  position: relative;
}

.sol-more-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 16px;
  position: relative;
}

.sol-more-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sol-more-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.sol-more-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

/* ─── Why Us ─── */
.sol-why {
  background: linear-gradient(135deg, var(--dark) 0%, #0f1a2a 50%, var(--navy) 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.sol-why::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 165, 36, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(33, 83, 135, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.sol-why-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.sol-why-header {
  text-align: center;
  margin-bottom: 56px;
}

.sol-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-why-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
}

.sol-why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 165, 36, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.sol-why-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.sol-why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.sol-why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* Light Variant */
.sol-why.sol-why--light {
  background: #fff;
}

.sol-why.sol-why--light::before {
  display: none;
}

.sol-why.sol-why--light .sol-why-card {
  background: #f8f9fa;
  border-color: rgba(45, 55, 72, 0.08);
}

.sol-why.sol-why--light .sol-why-card:hover {
  background: #fff;
  border-color: rgba(245, 165, 36, 0.3);
  box-shadow: 0 12px 32px rgba(45, 55, 72, 0.08);
}

.sol-why.sol-why--light .sol-why-card h3 {
  color: var(--dark);
}

.sol-why.sol-why--light .sol-why-card p {
  color: var(--dark-50);
}

/* ─── Process Timeline ─── */
.sol-process {
  background: var(--light);
  padding: 100px 24px;
}

.sol-process-inner {
  max-width: 750px;
  margin: 0 auto;
}

.sol-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.sol-timeline {
  position: relative;
  padding-left: 44px;
}

.sol-timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(245, 165, 36, 0.1));
  border-radius: 1px;
}

.sol-timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.sol-timeline-step:last-child {
  margin-bottom: 0;
}

.sol-timeline-dot {
  position: absolute;
  left: -37px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--light);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, 0.2);
  z-index: 1;
  transition: all 0.3s ease;
}

.sol-timeline-step:hover .sol-timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(245, 165, 36, 0.3), 0 0 20px rgba(245, 165, 36, 0.2);
}

.sol-timeline-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(45, 55, 72, 0.06);
  box-shadow: 0 4px 16px rgba(45, 55, 72, 0.04);
  transition: all 0.4s ease;
}

.sol-timeline-step:hover .sol-timeline-card {
  border-color: rgba(245, 165, 36, 0.15);
  box-shadow: 0 12px 40px rgba(45, 55, 72, 0.08);
  transform: translateX(8px);
}

.sol-timeline-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(245, 165, 36, 0.08);
  border-radius: 6px;
  margin-bottom: 12px;
}

.sol-timeline-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.sol-timeline-card p {
  font-size: 14px;
  color: var(--dark-50);
  line-height: 1.65;
  margin: 0;
}

/* ─── CTA Full ─── */
.sol-cta-full {
  background: linear-gradient(135deg, var(--dark) 0%, #0f1a2a 50%, var(--navy) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sol-cta-full::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 165, 36, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.sol-cta-full-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.sol-cta-full-content {
  max-width: 620px;
  margin: 0 auto;
}

.sol-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(245, 165, 36, 0.1);
  border: 1px solid rgba(245, 165, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.sol-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.sol-cta-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.2;
}

.sol-cta-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #FFD700, var(--gold-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 36px;
}

.sol-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sol-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s var(--transition-smooth);
}

.sol-cta-btn--primary {
  background: linear-gradient(135deg, var(--gold), #FFD700);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245, 165, 36, 0.3);
}

.sol-cta-btn--primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.sol-cta-btn--primary:hover {
  box-shadow: 0 8px 32px rgba(245, 165, 36, 0.4);
  transform: translateY(-3px);
}

.sol-cta-btn--primary:hover svg {
  transform: translateX(4px);
}

.sol-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sol-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ─── Solutions Responsive ─── */
@media (max-width: 1024px) {
  .sol-hero {
    padding: 90px 24px 70px;
  }

  .sol-hero-heading {
    font-size: 42px;
  }

  .sol-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-show-row,
  .sol-show-row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sol-show-row--reverse {
    direction: ltr;
  }

  .sol-show-float {
    bottom: auto;
    top: 16px;
    right: 16px;
  }

  .sol-show-row--reverse .sol-show-float {
    left: auto;
    right: 16px;
  }

  .sol-more-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sol-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .sol-hero-heading {
    font-size: 34px;
  }

  .sol-hero-counters {
    flex-direction: column;
    padding: 20px 32px;
    gap: 12px;
  }

  .sol-hero-counter {
    padding: 0;
  }

  .sol-hero-counter-divider {
    width: 60px;
    height: 1px;
  }

  .sol-trust-inner {
    grid-template-columns: 1fr;
  }

  .sol-trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
  }

  .sol-section-title {
    font-size: 28px;
  }

  .sol-show-img-wrap img {
    height: 280px;
  }

  .sol-why-grid {
    grid-template-columns: 1fr;
  }

  .sol-cta-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .sol-hero {
    padding: 72px 16px 56px;
  }

  .sol-hero-heading {
    font-size: 28px;
  }

  .sol-show-title {
    font-size: 24px;
  }

  .sol-show-num {
    font-size: 32px;
  }

  .sol-timeline {
    padding-left: 36px;
  }

  .sol-timeline-card {
    padding: 22px 20px;
  }

  .sol-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══ Collection Detail (Condor Style) ═══ */
.cd-page {
  background: #fff;
}

/* Hero Split */
.cd-hero {
  display: flex;
  min-height: 600px;
  background: #F1F0EE;
  /* Condor light taupe */
}

.cd-hero-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.cd-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-hero-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-40);
  margin-bottom: 60px;
}

.cd-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cd-sep {
  opacity: 0.5;
}

.cd-current {
  color: var(--dark);
  font-weight: 600;
}

.cd-info-box {
  max-width: 500px;
}

.cd-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.cd-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--navy);
}

.cd-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  line-height: 1.1;
}

.cd-desc {
  font-size: 16px;
  color: var(--dark-60);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cd-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cd-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.cd-benefits svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Products Grid */
.cd-products {
  padding: 100px 0;
  background: #fff;
}

.cd-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cd-prod-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ebebeb;
  transition: all 0.3s ease;
  height: 100%;
}

.cd-prod-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #ddd;
}

.cd-prod-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cd-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cd-prod-card:hover .cd-prod-img-wrap img {
  transform: scale(1.05);
}

.cd-prod-info {
  padding: 25px;
}

.cd-prod-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  letter-spacing: -0.2px;
}

.cd-prod-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cd-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cd-color-dot:hover {
  transform: scale(1.2);
  z-index: 1;
}

.cd-color-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-40);
  background: #f1f1f1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .cd-hero {
    flex-direction: column;
  }

  .cd-hero-visual {
    height: 400px;
  }

  .cd-hero-content {
    padding: 60px 40px;
  }

  .cd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cd-title {
    font-size: 36px;
  }

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

/* Additional Detailed Styles */
.cd-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cd-hero-cta {
  display: inline-flex;
  margin-top: 40px;
  background: var(--navy);
  color: #fff;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cd-hero-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Share Section */
.cd-share {
  padding: 40px 0;
  border-top: 1px solid #eee;
  background: #fff;
}

.cd-share-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  color: var(--dark-60);
}

.cd-share-icons {
  display: flex;
  gap: 15px;
}

.cd-share-icons a {
  color: var(--dark-40);
  width: 20px;
  height: 20px;
  transition: color 0.3s ease;
}

.cd-share-icons a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .cd-share-inner {
    justify-content: center;
  }
}

/* CD Promo Section (Image Design) */
.cd-promo {
  padding: 80px 0;
  background: #fff;
}

.cd-promo-inner {
  display: flex;
  align-items: center;
  gap: 100px;
}

.cd-promo-content {
  flex: 1;
}

.cd-promo-header {
  margin-bottom: 30px;
  position: relative;
}

.cd-promo-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cd-promo-header::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--navy);
}

.cd-promo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.cd-promo-desc {
  font-size: 16px;
  color: var(--dark-60);
  line-height: 1.8;
  margin: 45px 0;
  max-width: 560px;
}

.cd-promo-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cd-promo-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cd-promo-visual {
  flex: 1.1;
  display: flex;
  justify-content: flex-end;
}

.cd-promo-visual img {
  width: 100%;
  max-width: 640px;
  max-height: 320px;
  object-fit: cover;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .cd-promo-inner {
    flex-direction: column-reverse;
    gap: 50px;
    text-align: center;
  }

  .cd-promo-header::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------
   HOTEL SOLUTIONS SECTION
   ---------------------------------------------- */
.hotel-solutions-section {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hotel-solutions-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.hotel-solutions-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.hotel-solutions-section .header-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold-glow);
  border-radius: 4px;
  background: var(--gold-glow);
}

.hotel-solutions-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hotel-solutions-section .section-subtitle {
  font-size: 18px;
  color: var(--dark-50);
  line-height: 1.6;
}

.hotel-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.hotel-solution-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--transition-smooth);
}

.hotel-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(45, 55, 72, 0.2);
}

.hotel-solution-card .solution-image {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hotel-solution-card .solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.hotel-solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.hotel-solution-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8));
  opacity: 0.8;
}

.hotel-solution-card .solution-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--gold);
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.hotel-solution-card .solution-content {
  padding: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: -100px;
  background: linear-gradient(to bottom, transparent, rgba(45, 55, 72, 0.9) 20%);
}

.hotel-solution-card .solution-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.hotel-solution-card .solution-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hotel-cta-footer {
  background: var(--dark);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hotel-cta-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
}

.hotel-cta-footer .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hotel-cta-footer .cta-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hotel-cta-footer .cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

.btn-hotel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.btn-hotel-cta:hover {
  background: #e19216;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 165, 36, 0.4);
  color: #fff;
}

.btn-hotel-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-hotel-cta:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .hotel-solutions-grid {
    gap: 30px;
  }

  .hotel-solutions-section .section-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hotel-solutions-section {
    padding: 80px 0;
  }

  .hotel-solutions-grid {
    grid-template-columns: 1fr;
  }

  .hotel-cta-footer .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hotel-cta-footer {
    padding: 40px;
  }

  .hotel-solution-card .solution-image {
    height: 320px;
  }
}

/* ══════════════════════════════════════════════
   AUTOMOTIVE SHOWROOM — PREMIUM MINIMAL
   ══════════════════════════════════════════════ */
.auto-section {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* subtle ambient glow */
.auto-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.auto-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(33, 83, 135, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.auto-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Text Column ── */
.auto-section__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
}

.auto-section__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.auto-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.auto-section__desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin-bottom: 48px;
}

/* ── Feature List ── */
.auto-section__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 36px;
}

.auto-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.auto-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 165, 36, 0.08);
  border: 1px solid rgba(245, 165, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.auto-feature:hover .auto-feature__icon {
  background: rgba(245, 165, 36, 0.14);
  border-color: rgba(245, 165, 36, 0.3);
}

.auto-feature__icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.auto-feature__body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.auto-feature__body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ── CTA Button ── */
.auto-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  border: 1px solid rgba(245, 165, 36, 0.4);
  border-radius: 60px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--transition-smooth);
  background: transparent;
}

.auto-section__cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(245, 165, 36, 0.25);
  transform: translateY(-2px);
}

.auto-section__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.auto-section__cta:hover svg {
  transform: translateX(4px);
}

/* ── Visual Column — Overlapping Composition ── */
.auto-section__visual {
  position: relative;
  height: 600px;
}

.auto-section__img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.auto-section__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition-smooth);
}

.auto-section__img-wrapper:hover img {
  transform: scale(1.04);
}

.auto-section__img-wrapper--main {
  top: 0;
  left: 0;
  width: 80%;
  height: 480px;
  z-index: 1;
}

.auto-section__img-wrapper--accent {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  z-index: 2;
  border: 3px solid var(--dark);
}

.auto-section__accent-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auto-section__accent-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 8px;
  border: 1px solid rgba(245, 165, 36, 0.3);
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .auto-section {
    padding: 100px 0;
  }

  .auto-section__inner {
    gap: 50px;
  }

  .auto-section__title {
    font-size: 42px;
  }

  .auto-section__visual {
    height: 500px;
  }

  .auto-section__img-wrapper--main {
    height: 400px;
  }

  .auto-section__img-wrapper--accent {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .auto-section {
    padding: 80px 0;
  }

  .auto-section__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }

  .auto-section__title {
    font-size: 36px;
  }

  .auto-section__desc {
    max-width: 100%;
  }

  .auto-section__visual {
    height: 420px;
  }

  .auto-section__img-wrapper--main {
    width: 85%;
    height: 340px;
  }

  .auto-section__img-wrapper--accent {
    width: 60%;
    height: 200px;
  }

  .auto-section__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   FINE DINING — PREMIUM EDITORIAL
   ══════════════════════════════════════════════ */
.dining-section {
  padding: 140px 0;
  background: #faf8f5;
  position: relative;
  overflow: hidden;
}

.dining-section::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.dining-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Centered Header ── */
.dining-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.dining-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.dining-section__line-left,
.dining-section__line-right {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.dining-section__line-right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.dining-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.dining-section__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-50);
  margin: 0;
}

/* ── Two-Column Body ── */
.dining-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
}

/* ── Image with Accent Frame ── */
.dining-section__image {
  position: relative;
}

.dining-section__img-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(45, 55, 72, 0.12);
}

.dining-section__img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--transition-smooth);
}

.dining-section__img-frame:hover img {
  transform: scale(1.04);
}

.dining-section__img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(221, 169, 68, 0.2);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

/* ── Feature Blocks ── */
.dining-section__features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dining-feature {
  padding: 32px 0;
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
  transition: all 0.4s ease;
}

.dining-feature:first-child {
  padding-top: 0;
}

.dining-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dining-feature:hover {
  padding-left: 12px;
}

.dining-feature__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.dining-feature__num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.dining-feature__divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.dining-feature:hover .dining-feature__divider {
  opacity: 0.6;
}

.dining-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.dining-feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-50);
  margin: 0;
  max-width: 420px;
}

/* ── CTA ── */
.dining-section__cta-wrap {
  text-align: center;
}

.dining-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all 0.4s var(--transition-smooth);
}

.dining-section__cta:hover {
  background: var(--navy);
  box-shadow: 0 12px 35px rgba(45, 55, 72, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.dining-section__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.dining-section__cta:hover svg {
  transform: translateX(5px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dining-section__body {
    gap: 40px;
  }

  .dining-section__title {
    font-size: 42px;
  }

  .dining-section__img-frame img {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .dining-section {
    padding: 80px 0;
  }

  .dining-section__inner {
    padding: 0 24px;
  }

  .dining-section__body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dining-section__title {
    font-size: 34px;
  }

  .dining-section__img-frame img {
    height: 340px;
  }

  .dining-section__img-accent {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
  }

  .dining-section__header {
    margin-bottom: 50px;
  }

  .dining-section__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   LUXURY JEWELRY — EDITORIAL BENTO GRID
   ══════════════════════════════════════════════ */
.jewel-section {
  padding: 140px 0;
  background: #faf8f5;
  position: relative;
  overflow: hidden;
}

.jewel-section::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(221, 169, 68, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.jewel-section::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(221, 169, 68, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.jewel-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Bento Grid ── */
.jewel-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "header   hero    feat1"
    "feat2    hero    feat1"
    "aside    cta     cta";
  gap: 20px;
}

.jewel-grid__item {
  border-radius: 20px;
  overflow: hidden;
}

.jewel-grid__item--header {
  grid-area: header;
  background: var(--dark);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jewel-grid__item--hero {
  grid-area: hero;
  position: relative;
  min-height: 520px;
}

.jewel-grid__item--hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--transition-smooth);
}

.jewel-grid__item--hero:hover img {
  transform: scale(1.05);
}

.jewel-grid__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.jewel-grid__badge svg {
  color: var(--gold);
}

.jewel-grid__item--feat1 {
  grid-area: feat1;
  background: #fff;
  border: 1px solid rgba(45, 55, 72, 0.06);
  padding: 40px 32px;
  display: flex;
  align-items: center;
}

.jewel-grid__item--feat2 {
  grid-area: feat2;
  background: #fff;
  border: 1px solid rgba(45, 55, 72, 0.06);
  padding: 40px 32px;
  display: flex;
  align-items: center;
}

.jewel-grid__item--aside {
  grid-area: aside;
  position: relative;
  min-height: 280px;
}

.jewel-grid__item--aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--transition-smooth);
}

.jewel-grid__item--aside:hover img {
  transform: scale(1.05);
}

.jewel-grid__item--cta {
  grid-area: cta;
  background: var(--dark);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Tag ── */
.jewel-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.jewel-tag__diamond {
  font-size: 8px;
  opacity: 0.6;
}

/* ── Title ── */
.jewel-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.jewel-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ── Feature Blocks ── */
.jewel-feat {
  width: 100%;
}

.jewel-feat__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(221, 169, 68, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.jewel-grid__item:hover .jewel-feat__num {
  color: rgba(221, 169, 68, 0.4);
}

.jewel-feat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.jewel-grid__item--cta .jewel-feat h3 {
  color: #fff;
}

.jewel-feat p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dark-50);
  margin: 0;
}

.jewel-grid__item--cta .jewel-feat p {
  color: rgba(255, 255, 255, 0.45);
}

/* ── CTA ── */
.jewel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: var(--gold);
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 60px;
  transition: all 0.4s var(--transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.jewel-cta:hover {
  background: #e19216;
  color: #fff;
  box-shadow: 0 10px 30px rgba(245, 165, 36, 0.3);
  transform: translateY(-2px);
}

.jewel-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.jewel-cta:hover svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .jewel-section {
    padding: 100px 0;
  }

  .jewel-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header   header"
      "hero     hero"
      "feat1    feat2"
      "aside    cta";
  }

  .jewel-grid__item--hero {
    min-height: 400px;
  }

  .jewel-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .jewel-section {
    padding: 80px 0;
  }

  .jewel-section__inner {
    padding: 0 20px;
  }

  .jewel-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "hero"
      "feat1"
      "feat2"
      "aside"
      "cta";
    gap: 16px;
  }

  .jewel-grid__item--header {
    padding: 36px 28px;
  }

  .jewel-grid__item--hero {
    min-height: 320px;
  }

  .jewel-grid__item--aside {
    min-height: 220px;
  }

  .jewel-grid__item--cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .jewel-cta {
    width: 100%;
    justify-content: center;
  }

  .jewel-title {
    font-size: 30px;
  }
}