@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Aysira Exact Color Palette */
  --color-primary: #071c2b;
  --color-primary-dark: #041019;
  --color-secondary: #35415b;
  --color-bg-alt: #f2f4f7;
  --color-bg-white: #ffffff;
  --color-text-main: #030303;
  --color-text-muted: #616669;
  --color-text-faded: #727f9f;
  --color-border: #e3e7f0;
  --color-footer-bg: #071c2b;
  --color-footer-text: #f0f0f0;
  --color-footer-muted: #9ba5bf;
  --color-overlay-dark: rgba(0, 0, 0, 0.40);
  --color-overlay-light: rgba(0, 0, 0, 0.25);
  
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1400px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }

/* Container */
.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================================
   TRANSPARENT HEADER & NAVIGATION (OVERLAY ON HERO)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  border-bottom: none;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

/* Scrolled Sticky Header */
.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(7, 28, 43, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

/* Top Subheader */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3.5rem 0.5rem;
  background: transparent;
  border-bottom: none;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
}

.header-quick-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.header-quick-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width var(--transition-fast);
}

.header-quick-link:hover {
  color: #ffffff;
}

.header-quick-link:hover::after {
  width: 100%;
}

.header-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.header-logo {
  max-width: 170px;
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-fast);
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
}

.header-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.header-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: scale(1.05);
}

.mobile-toggle-btn {
  display: none;
}

/* Main Navigation Subheader (Desktop) */
.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem 1.2rem;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  padding: 0.5rem 0.4rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background-color: #ffffff;
  transition: width var(--transition-fast);
}

.nav-item:hover > .nav-link {
  color: #ffffff;
}

.nav-item:hover > .nav-link::after {
  width: 100%;
}

.nav-link i.dropdown-arrow {
  font-size: 8px;
  opacity: 0.8;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i.dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 250px;
  padding: 1rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1100;
  border-top: 2px solid var(--color-primary);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.6rem;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-bg-alt);
  color: #000000;
  padding-left: 1.9rem;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
  transition: left var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

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

.mobile-nav-header img {
  filter: brightness(0) invert(1);
}

.mobile-nav-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #ffffff;
}

.mobile-nav-body {
  padding: 1.5rem;
  flex: 1;
}

.mobile-nav-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 0.8rem;
}

.mobile-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.mobile-submenu {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.mobile-subitem {
  padding: 0.4rem 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

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

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.aysira-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-white-outline {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.btn-white-outline:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-white-solid {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-primary);
}

.btn-white-solid:hover {
  background: transparent;
  color: #ffffff;
}

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

.btn-dark-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 3px;
}

.btn-link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.btn-link-arrow:hover {
  color: #000000;
}

/* ==========================================================================
   HOMEPAGE SECTIONS
   ========================================================================== */

/* 1. HERO SECTION */
.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #051c2c;
}

.hero-video-bg, .hero-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-dark);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding-bottom: 5.5rem;
  padding-left: 5rem;
  color: #ffffff;
}

.hero-title {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.25;
}

.hero-description {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
}

/* 2. STATEMENT / SLOGAN SECTION */
.section-statement {
  padding: 5.5rem 2rem 3.5rem;
  background: #ffffff;
  text-align: center;
}

.statement-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
}

/* 3. FEATURED GELINLIK BANNER (Boxed with Margins & Padding) */
.section-banner-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 45px 35px;
}

.banner-wrapper {
  width: 100%;
}

.section-featured-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-dark);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem;
  color: #ffffff;
}

.banner-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.banner-description {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

/* 4. 2-COLUMN COLLECTION GRID (NİŞANLIK & TESETTÜR - Boxed with Center Gap) */
.section-collection-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 45px 60px;
}

.collection-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.collection-card {
  position: relative;
  height: 850px;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-light);
  z-index: 1;
  transition: background-color var(--transition-fast);
}

.collection-card:hover .collection-card-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.collection-card-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 2rem;
  color: #ffffff;
}

.collection-card-title {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.collection-card-description {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 5. JOURNEY VIDEO SECTION (Full Width) */
.section-journey-video {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #071c2b;
}

.journey-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.journey-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay-dark);
  z-index: 2;
}

.journey-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding: 2rem;
  color: #ffffff;
}

.journey-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.journey-description {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* 6. SPOTLIGHT SECTION ("GECELERİN IŞILTISI") */
.section-spotlight {
  padding: 4rem 2rem 6rem;
  background: #ffffff;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.spotlight-image-col {
  display: flex;
  justify-content: center;
}

.spotlight-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-smooth);
}

.spotlight-image:hover {
  transform: translateY(-4px);
}

.spotlight-text-col {
  text-align: center;
  padding: 1rem;
}

.spotlight-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.spotlight-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

/* 7. MISSION / STORY SECTION */
.section-story {
  padding: 4rem 2rem 7rem;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.story-container {
  max-width: 780px;
  margin: 0 auto;
}

.story-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-content {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-top: 4.5rem;
  position: relative;
}

.footer-top {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  max-width: 150px;
  filter: brightness(0) invert(1);
}

.footer-main {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 0.8fr 0.8fr;
  gap: 2.5rem;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.7;
}

.footer-contacts-list a {
  color: #ffffff;
  transition: opacity var(--transition-fast);
}

.footer-contacts-list a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu-link {
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast), padding-left var(--transition-fast), opacity var(--transition-fast);
}

.footer-menu-link:hover {
  color: #ffffff;
  opacity: 0.8;
  padding-left: 4px;
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.9;
}

/* ==========================================================================
   EXACT AYSIRA WHATSAPP FLOATING WIDGET (WITH HOVER BADGE)
   ========================================================================== */
.aysira-whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
}

.whatsapp-widget-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.whatsapp-icon-circle svg {
  width: 50px;
  height: 50px;
  display: block;
}

.whatsapp-widget-link:hover .whatsapp-icon-circle {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-hover-badge {
  background-color: #25d366;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  border-radius: 10px;
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.whatsapp-widget-link:hover .whatsapp-hover-badge {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 28, 43, 0.96);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

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

.search-modal-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.search-modal-content {
  width: 100%;
  max-width: 650px;
  padding: 2rem;
  text-align: center;
}

.search-modal-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 3rem 1rem 0;
  font-size: 22px;
  color: #ffffff;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-modal-input:focus {
  border-color: #ffffff;
}

.search-modal-submit {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: #c49b63;
  font-size: 22px;
  cursor: pointer;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.search-modal-submit:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.search-modal-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

.search-tag-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.search-tag-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.search-tag-link:hover {
  background: #c49b63;
  border-color: #c49b63;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Live Search Results Dropdown */
.search-modal-live-results {
  margin-top: 1.5rem;
  max-height: 380px;
  overflow-y: auto;
  text-align: left;
  border-radius: 8px;
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.live-search-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #c49b63;
  transform: translateX(4px);
}

.live-search-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-search-info {
  flex: 1;
  min-width: 0;
}

.live-search-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-search-cat {
  font-size: 11px;
  color: #c49b63;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-search-all-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #c49b63;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background var(--transition-fast);
}

.live-search-all-btn:hover {
  background: #d4aa72;
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1200px) {
  .header-top {
    padding: 1.2rem 2rem 0.5rem;
  }
  .main-nav {
    gap: 1.5rem;
  }
  .section-banner-container, .section-collection-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .header-top-left, .header-bottom {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .header-top {
    padding: 1rem 1.5rem;
  }
  .hero-content {
    padding-left: 2rem;
    padding-bottom: 3.5rem;
  }
  .hero-title {
    font-size: 24px;
  }
  .section-banner-container, .section-collection-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .collection-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .collection-card {
    height: 600px;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 20px;
  }
  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
  }
  .statement-title {
    font-size: 17px;
  }
  .banner-title, .collection-card-title, .journey-title, .spotlight-title {
    font-size: 22px;
  }
  .section-featured-banner {
    height: 480px;
  }
  .collection-card {
    height: 520px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .aysira-whatsapp-widget {
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-icon-circle {
    width: 46px;
    height: 46px;
  }
  .whatsapp-icon-circle svg {
    width: 46px;
    height: 46px;
  }
}

/* ==========================================================================
   BRAND TEXT LOGO & SUBPAGES (HAKKIMIZDA & İLETİŞİM)
   ========================================================================== */
.brand-text-logo {
  font-family: var(--font-main);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  transition: opacity var(--transition-fast);
}

.brand-text-logo:hover {
  opacity: 0.9;
}

/* Subpage Hero */
.subpage-hero {
  position: relative;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.subpage-subtitle {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 650px;
  margin: 0 auto;
}

/* Section Eyebrow */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.about-heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

/* About Image & Badge */
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 1.2rem 1.8rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-experience-badge .badge-num {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-experience-badge .badge-text {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* Service / Feature Cards */
.service-feature-card {
  background: #ffffff;
  padding: 2.2rem 1.8rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1.2rem;
}

.service-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

.service-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Values Section */
.section-about-values {
  background: var(--color-primary);
  color: #ffffff;
}

.values-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* Contact Info Cards */
.contact-info-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
}

.contact-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
}

.contact-card-text {
  font-size: 13.5px;
  line-height: 1.6;
}

/* Store Badge Overlay */
.store-badge-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.store-photo {
  max-height: 380px;
  object-fit: cover;
}

/* Bootstrap Utilities for Custom Subpages */
.py-5 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.g-4 { gap: 1.5rem !important; }
.g-5 { gap: 3rem !important; }
.row { display: flex; flex-wrap: wrap; margin-right: -0.75rem; margin-left: -0.75rem; }
.row > * { padding-right: 0.75rem; padding-left: 0.75rem; width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(7, 28, 43, 0.1);
}

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13.5px;
}
.alert-success { color: #0f5132; background-color: #d1e7dd; border-color: #badbcc; }
.alert-danger { color: #842029; background-color: #f8d7da; border-color: #f5c2c7; }

/* ==========================================================================
   NARIN MODA CONTACT PAGE DESIGN (1:1 IMPLEMENTATION)
   ========================================================================== */
.narin-contact-page {
  background-color: #ffffff;
  padding-top: 140px;
}

.narin-contact-section {
  padding: 3.5rem 1.5rem 5rem;
}

.narin-container-xs {
  max-width: 580px;
  margin: 0 auto;
}

.narin-page-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 1rem;
}

.narin-page-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.narin-form {
  width: 100%;
}

.narin-field {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}

.narin-label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.45rem;
}

.narin-input {
  width: 100%;
  border: 1px solid #cfd3d8;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.narin-input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}

.narin-textarea {
  resize: vertical;
  min-height: 120px;
}

.narin-submit-btn {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 0.95rem 3.8rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.narin-submit-btn:hover {
  background-color: #262626;
  border-color: #262626;
  color: #ffffff;
  transform: translateY(-1px);
}

.narin-outline-btn {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 0.95rem 2.2rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.narin-outline-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* ==========================================================================
   SUBPAGE STICKY HEADER (SAME AS HOMEPAGE STICKY MENU: #071c2b)
   ========================================================================== */

body.subpage .site-header,
body:not(.homepage) .site-header,
.subpage-header .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(7, 28, 43, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2) !important;
  border-bottom: none !important;
}

body.subpage .header-quick-link,
body:not(.homepage) .header-quick-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.subpage .header-quick-link:hover,
body:not(.homepage) .header-quick-link:hover {
  color: #ffffff !important;
}

body.subpage .header-quick-link::after,
body:not(.homepage) .header-quick-link::after {
  background-color: #ffffff !important;
}

body.subpage .brand-text-logo,
body:not(.homepage) .brand-text-logo {
  color: #ffffff !important;
}

body.subpage .header-logo,
body:not(.homepage) .header-logo {
  filter: brightness(0) invert(1) !important;
}

body.subpage .header-icon-btn,
body:not(.homepage) .header-icon-btn {
  color: #ffffff !important;
}

body.subpage .header-icon-btn:hover,
body:not(.homepage) .header-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

body.subpage .nav-link,
body:not(.homepage) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.subpage .nav-link:hover,
body:not(.homepage) .nav-link:hover {
  color: #ffffff !important;
}

body.subpage .nav-link::after,
body:not(.homepage) .nav-link::after {
  background-color: #ffffff !important;
}

body.subpage .dropdown-menu,
body:not(.homepage) .dropdown-menu {
  background: rgba(7, 28, 43, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

body.subpage .dropdown-item,
body:not(.homepage) .dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.subpage .dropdown-item:hover,
body:not(.homepage) .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Contact Wrapper */
.narin-contact-wrap {
  background-color: #ffffff;
  color: #000000;
}

/* Section 1: Minimalist Line Form */
.nm-form-section {
  padding: 4.5rem 1.5rem 5rem;
  background-color: #ffffff;
}

.nm-form-container {
  max-width: 480px;
  margin: 0 auto;
}

.nm-main-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 1.2rem;
}

.nm-main-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #555555;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto;
}

.nm-alert {
  padding: 0.9rem 1.2rem;
  font-size: 13px;
}
.nm-alert-success { background-color: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.nm-alert-danger { background-color: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.nm-contact-form {
  width: 100%;
}

.nm-input-group {
  margin-bottom: 1.8rem;
}

.nm-input-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.nm-line-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #071c2b;
  border-radius: 0;
  padding: 0.4rem 0;
  font-size: 13.5px;
  font-family: inherit;
  color: #071c2b;
  background-color: transparent;
  outline: none;
  transition: border-bottom-color 0.2s ease;
}

.nm-line-input:focus {
  border-bottom: 2px solid #071c2b;
}

.nm-line-textarea {
  resize: none;
  min-height: 60px;
}

.nm-btn-black {
  background-color: #071c2b;
  color: #ffffff;
  border: 1px solid #071c2b;
  padding: 0.75rem 3.5rem;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.nm-btn-black:hover {
  background-color: #0d3450;
  border-color: #0d3450;
}

/* Section 2: "Size nasıl yardımcı olabiliriz?" */
.nm-help-split-section {
  padding: 4.5rem 1.5rem 5.5rem;
  background-color: #ffffff;
}

.nm-help-container {
  max-width: 860px;
  margin: 0 auto;
}

.nm-help-main-title {
  font-size: 28px;
  font-weight: 300;
  color: #071c2b;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.nm-help-top-desc {
  font-size: 13px;
  color: #666666;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.nm-black-box {
  background-color: #071c2b;
  color: #ffffff;
  padding: 3.5rem 2rem;
  border-radius: 0;
  text-align: center;
}

.nm-black-box-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.nm-btn-white {
  display: inline-block;
  background-color: #ffffff;
  color: #071c2b;
  padding: 0.75rem 2.4rem;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nm-btn-white:hover {
  background-color: #f0f0f0;
  color: #071c2b;
}

/* Section 3: Full Width Map */
.nm-map-section {
  width: 100%;
  line-height: 0;
  border-top: 1px solid #f0f0f0;
}

/* Section 4: Instagram Header & 12 Photos Grid */
.nm-instagram-section {
  width: 100%;
  background-color: #071c2b;
}

.nm-insta-header {
  background-color: #071c2b;
  color: #ffffff;
  padding: 3.5rem 1.5rem 2.5rem;
}

.nm-insta-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.nm-insta-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.nm-insta-handle {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nm-insta-handle:hover {
  opacity: 1;
  text-decoration: underline;
}

.nm-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: 100%;
  background-color: #071c2b;
}

.nm-insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 310 / 412;
  background-color: #071c2b;
}

.nm-insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.nm-insta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 28, 43, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.nm-insta-icon {
  color: #ffffff;
  font-size: 26px;
}

.nm-insta-item:hover .nm-insta-overlay {
  opacity: 1;
}

.nm-insta-item:hover .nm-insta-img {
  transform: scale(1.06);
}

@media (max-width: 992px) {
  .nm-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .nm-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nm-main-title {
    font-size: 30px;
  }
  .nm-insta-title {
    font-size: 22px;
  }
  .nm-black-box {
    padding: 2.5rem 1.2rem;
  }
}

/* ==========================================================================
   NARIN MODA ABOUT PAGE (HAKKIMIZDA) 1:1 STYLES
   ========================================================================== */
.narin-about-wrap {
  background-color: #ffffff;
  color: #000000;
}

.nm-about-intro-section {
  padding: 5rem 1.5rem 5.5rem;
  background-color: #ffffff;
}

.nm-about-intro-container {
  max-width: 680px;
  margin: 0 auto;
}

.nm-intro-subheading {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #666666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.nm-intro-main-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 2.2rem;
}

.nm-intro-text-content p {
  font-size: 13.5px;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 1.3rem;
  font-weight: 300;
}

/* Split Banner Section (Black Background 1:1) */
.nm-about-split-section {
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.nm-about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.nm-about-split-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.nm-about-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nm-about-split-content {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 3.5rem;
}

/* About Page Instagram Section Black Theme */
.narin-about-wrap .nm-instagram-section,
.narin-about-wrap .nm-insta-header,
.narin-about-wrap .nm-insta-grid,
.narin-about-wrap .nm-insta-item {
  background-color: #000000 !important;
}

.nm-about-content-inner {
  max-width: 520px;
  width: 100%;
}

.nm-vision-subheading {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.nm-vision-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.nm-vision-text p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

@media (max-width: 992px) {
  .nm-about-split-grid {
    grid-template-columns: 1fr;
  }
  .nm-about-split-media {
    height: 420px;
  }
  .nm-about-split-content {
    padding: 3.5rem 1.5rem;
  }
  .nm-intro-main-title {
    font-size: 30px;
  }
  .nm-vision-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   CATALOG CATEGORY (3-COLUMN GRID) & PRODUCT DETAIL (HOUSE OF ZARIF 1:1)
   ========================================================================== */

/* Catalog Page Layout */
.catalog-category-page {
  background-color: #ffffff;
  padding-bottom: 6.5rem;
}

.catalog-grid-container {
  padding-bottom: 4rem;
}

/* Breadcrumbs */
.catalog-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #777777;
  text-transform: uppercase;
  padding: 1.5rem 0 0.5rem;
}

.catalog-breadcrumb a {
  color: #333333;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.catalog-breadcrumb a:hover {
  color: #071c2b;
  text-decoration: underline;
}

.bc-sep {
  margin: 0 8px;
  color: #bbbbbb;
}

.bc-current {
  color: #071c2b;
  font-weight: 500;
}

/* Category Header & Filter Tabs */
.catalog-header-wrap {
  border-bottom: 1px solid #eef2f6;
}

.catalog-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #888888;
  margin-bottom: 0.4rem;
}

.catalog-main-title {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #071c2b;
  margin-bottom: 0.3rem;
}

.catalog-meta-count {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.catalog-filter-bar {
  margin-top: 1.5rem;
}

.catalog-tab-btn {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid #e2e8f0;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0;
  transition: all var(--transition-fast);
  background-color: #ffffff;
}

.catalog-tab-btn:hover,
.catalog-tab-btn.active {
  background-color: #071c2b;
  border-color: #071c2b;
  color: #ffffff;
}

/* 3-Column Luxury Product Grid (House of Zarif 1:1) */
.catalog-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

@media (max-width: 992px) {
  .catalog-3col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }
}

@media (max-width: 576px) {
  .catalog-3col-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* Product Card (House of Zarif 1:1 2/3 Aspect Ratio) */
.catalog-product-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: transform var(--transition-fast);
}

.catalog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background-color: #f7f7f7;
}

.catalog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
}

.catalog-card-media .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.catalog-card-media:hover .hover-img {
  opacity: 1;
}

.catalog-card-media:hover .main-img {
  transform: scale(1.04);
}

.catalog-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(7, 28, 43, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.catalog-card-media:hover .catalog-card-overlay {
  opacity: 1;
}

.catalog-quick-view-btn {
  background-color: #ffffff;
  color: #071c2b;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.catalog-card-info {
  padding-top: 1.2rem;
}

.catalog-card-collection {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888888;
  margin-bottom: 0.3rem;
}

.catalog-card-title {
  margin-bottom: 0.2rem;
}

.catalog-card-title a {
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
}

.catalog-card-title a:hover {
  color: #071c2b;
}

.catalog-card-code {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 0.2rem;
  font-family: inherit;
}

.catalog-card-price {
  margin-top: 0.4rem;
  font-size: 14px;
}

.catalog-card-price .old-price {
  text-decoration: line-through;
  color: #999999;
  margin-right: 8px;
  font-size: 13px;
  font-weight: 300;
}

.catalog-card-price .current-price {
  font-weight: 600;
  color: #071c2b;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (HOUSE OF ZARIF SWAN 1:1 WITH LEFT THUMBNAILS)
   ========================================================================== */
.product-page-wrap {
  background-color: #ffffff;
  padding-bottom: 5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* Product Media Column with Left Thumbnails */
.product-media-gallery-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.product-thumbnails-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 700px;
  overflow-y: auto;
  overflow-x: hidden !important;
  width: 96px;
  flex-shrink: 0;
  padding: 2px 4px 2px 2px;
  box-sizing: border-box;
}

.product-thumbnails-col::-webkit-scrollbar {
  width: 3px;
}
.product-thumbnails-col::-webkit-scrollbar-track {
  background: transparent;
}
.product-thumbnails-col::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.product-thumb-item {
  width: 86px;
  height: 128px;
  aspect-ratio: 2 / 3;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  background-color: #f7f7f7;
  box-sizing: border-box;
}

.product-thumb-item.active,
.product-thumb-item:hover {
  border-color: #071c2b;
  border-width: 2px;
}

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

.product-main-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background-color: #f7f7f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.2s ease;
  display: block;
}

/* Video Thumbnail Badge & Player */
.thumb-video-item {
  position: relative;
}

.thumb-video-badge {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 28, 43, 0.65);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background-color var(--transition-fast);
}

.thumb-video-badge i {
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.thumb-video-item:hover .thumb-video-badge,
.thumb-video-item.active .thumb-video-badge {
  background-color: rgba(7, 28, 43, 0.35);
}

.product-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000000;
}

@media (max-width: 576px) {
  .product-media-gallery-wrap {
    flex-direction: column-reverse;
  }
  .product-thumbnails-col {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .product-thumb-item {
    width: 65px;
    height: 95px;
  }
}

/* Product Info Column */
.product-info-sticky {
  position: sticky;
  top: 120px;
  padding-left: 1rem;
}

@media (max-width: 992px) {
  .product-info-sticky {
    position: static;
    padding-left: 0;
  }
}

.product-detail-code {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #071c2b;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.product-detail-subname {
  font-size: 15px;
  letter-spacing: 0.05em;
}

.product-detail-pricing {
  font-size: 24px;
  color: #071c2b;
  display: flex;
  align-items: baseline;
}

.detail-old-price {
  text-decoration: line-through;
  color: #888888;
  font-weight: 300;
  margin-right: 14px;
  font-size: 20px;
}

.detail-current-price {
  font-weight: 400;
  color: #071c2b;
}

.product-detail-description p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #444444;
  font-weight: 300;
  margin-bottom: 0;
}

.collection-tag-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 0.25rem;
}

.collection-tag-name {
  font-size: 15px;
  font-weight: 500;
  color: #071c2b;
  letter-spacing: 0.03em;
}

.product-appointment-btn {
  display: block;
  width: 100%;
  padding: 1.05rem 1.5rem;
  border: 1px solid #071c2b;
  color: #071c2b;
  background-color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.25s ease;
}

.product-appointment-btn:hover {
  background-color: #071c2b;
  color: #ffffff;
}

.product-meta-points .meta-point-item {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

/* ==========================================================================
   FRONTEND ADMIN TOP BAR & QUICK EDIT BUTTONS
   ========================================================================== */
.frontend-admin-bar {
  position: relative;
  background-color: #071c2b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-family: var(--font-sans);
  z-index: 10001;
  padding: 6px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.admin-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.admin-bar-left,
.admin-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-mode-pill {
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f1f5f9;
  font-size: 10px;
}

.admin-bar-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-bar-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.admin-bar-btn.active-btn {
  background-color: #c49b63;
  color: #071c2b;
  font-weight: 700;
  border-color: #c49b63;
}

.admin-bar-btn.active-btn:hover {
  background-color: #d8b27c;
  color: #071c2b;
}

.admin-bar-btn.btn-panel {
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.admin-bar-btn.btn-logout {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

.admin-bar-btn.btn-logout:hover {
  background: rgba(239, 68, 68, 0.4);
  color: #ffffff;
}

.admin-model-quick-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c49b63;
  color: #071c2b;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.admin-model-quick-edit-link:hover {
  background: #071c2b;
  color: #ffffff;
}

.catalog-card-admin-edit {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c49b63;
  color: #071c2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.catalog-card-admin-edit:hover {
  background: #071c2b;
  color: #ffffff;
  transform: scale(1.1);
}





