/* ============================================================
   CLOVE FLORIST — HAUTE COUTURE DESIGN SYSTEM
   Aesthetic: Clean White Editorial × Black Minimalism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-deep:     #F5F5F5;
  --ink:         #000000;
  --ink-soft:    #111111;
  --ink-muted:   #555555;
  --gold:        #000000;
  --gold-light:  #FFFFFF;
  --cream:       #FFFFFF;
  --border:      rgba(0,0,0,0.12);
  --border-gold: rgba(0,0,0,0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: #FFFFFF;
  color: #000000;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: none;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #000000;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #000000;
}

/* ── HEADER ─────────────────────────────────────────── */

.header-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 901;
  background: #FFFFFF;
  color: #000000;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  transition: top 0.4s var(--ease-out);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.header-strip a { color: #000000; }

.header-strip.hide-strip {
  top: -36px;
}

.strip-marquee {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: strip-scroll 35s linear infinite;
  will-change: transform;
}
.strip-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 50px;
}
.strip-marquee .dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: #000000;
  border-radius: 50%;
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.header-strip:hover .strip-marquee {
  animation-play-state: running;
}
.main-header {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 900;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: background 0.5s var(--ease-out),
              height 0.4s var(--ease-out),
              top 0.4s var(--ease-out),
              box-shadow 0.4s ease;
}

.main-header.scrolled {
  top: 0;
  height: 72px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom-color: rgba(0,0,0,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: color 0.3s, font-size 0.4s var(--ease-out);
  position: relative;
}
.logo span { font-weight: 300; font-style: normal; }
.main-header.scrolled .logo { font-size: 26px; }
.logo-icon {
  font-size: 14px;
  color: #000000;
  transition: transform 0.6s var(--ease-out);
}
.logo:hover .logo-icon { transform: rotate(20deg) scale(1.1); }

.header-icon-btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
  transition: color 0.25s, transform 0.25s;
}
.header-icon-btn:hover { color: #333333; transform: scale(1.1); }

.cart-wrapper { position: relative; display: inline-flex; align-items: center; }
.cart-icon    { font-size: 17px; color: #000000; transition: color 0.25s, transform 0.25s; }
.cart-wrapper:hover .cart-icon { color: #333333; transform: scale(1.08); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  transition: background 0.3s;
}
.cart-wrapper:hover .cart-count { background: #333333; }

/* ── SIDEBAR / DRAWER ───────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sidebar-overlay.active { display: block; opacity: 1; }

.sidebar-menu {
  position: fixed;
  top: 0; left: -340px;
  width: 320px; height: 100vh;
  background: #FFFFFF;
  color: #000000;
  z-index: 2500;
  transition: left 0.45s var(--ease-out);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.sidebar-menu.active { left: 0; }

.sidebar-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 20px;
  color: #000000;
  cursor: pointer;
  transition: color 0.25s, transform 0.3s;
}
.sidebar-close:hover { color: #333333; transform: rotate(90deg); }

.sidebar-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: #000000;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.sidebar-section-label {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #555555;
  margin-bottom: 16px;
  margin-top: 32px;
}

.sidebar-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
  letter-spacing: 0.02em;
}
.sidebar-menu a:hover { color: #333333; padding-left: 8px; }
.sidebar-menu a i { font-size: 14px; margin-right: 12px; opacity: 0.7; width: 18px; }

.sidebar-menu .sidebar-sub-list a {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 20px 9px 52px;
  border-bottom: none;
  color: #000000;
  letter-spacing: 0.04em;
}
.sidebar-menu .sidebar-sub-list a:hover {
  color: #333333;
  padding-left: 52px;
  background: rgba(0,0,0,0.05);
}
.sidebar-sub-list { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); background: #F5F5F5; }
.sidebar-sub-list.open { max-height: 600px; }

/* ── MAIN CONTENT OFFSET ────────────────────────────── */
main.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 146px 40px 80px;
  background: #FFFFFF;
  color: #000000;
}

/* ── PRODUCT GRID ───────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
  transition: border-color 0.35s ease;
}
.product-card:hover { border-color: rgba(0,0,0,0.35); }

.product-card .img-block {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
}
.product-card .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.98) saturate(0.95);
}
.product-card:hover .img-block img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}

.vitrin-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 5;
}

.product-info {
  padding: 22px 24px 24px;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FFFFFF;
  color: #000000;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
}
.product-info .price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
}

.add-to-cart-btn {
  background: #000000;
  color: #FFFFFF;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 6px;
}
.add-to-cart-btn:hover {
  background: #222222;
  color: #FFFFFF;
}

/* ── SEARCH & FILTER ────────────────────────────────── */
.header-actions-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrapper { display: flex; align-items: center; position: relative; }
.search-input {
  width: 0; opacity: 0;
  border: none; border-bottom: 1px solid #000000;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  color: #000000;
  transition: all 0.45s var(--ease-out);
  padding: 0; outline: none;
  letter-spacing: 0.05em;
}
.search-wrapper.active .search-input {
  width: 170px; opacity: 1;
  padding: 5px 8px;
  margin-right: 4px;
}
.search-input::placeholder { color: #555555; font-size: 11px; }

.filter-wrapper { position: relative; display: inline-flex; align-items: center; }
.filter-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: -16px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 24px;
  width: 250px;
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column; gap: 14px;
}
.filter-wrapper.active .filter-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.filter-dropdown label {
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: #000000; margin-bottom: -6px;
}
.filter-dropdown select,
.filter-dropdown input[type="number"] {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  color: #000000;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.filter-dropdown select:focus,
.filter-dropdown input:focus { border-color: #000000; }
.price-inputs-row { display: flex; align-items: center; gap: 10px; }
.filter-submit-btn {
  background: #000000;
  color: #FFFFFF;
  border: none;
  padding: 11px;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  cursor: pointer; margin-top: 8px;
  transition: background 0.3s, color 0.3s;
}
.filter-submit-btn:hover { background: #222222; color: #FFFFFF; }

/* ── USER DROPDOWN ──────────────────────────────────── */
.user-dropdown-wrapper {
  position: relative; display: inline-flex;
  align-items: center; gap: 8px;
  cursor: pointer; color: #000000;
}
.user-greeting {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
}
.user-dropdown-content {
  display: none;
  position: absolute; top: calc(100% + 14px); right: 0;
  background: #FFFFFF;
  min-width: 185px;
  border: 1px solid rgba(0,0,0,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  padding: 8px 0; z-index: 1000;
}
.user-dropdown-wrapper::after {
  content: "";
  position: absolute; top: 100%; left: 0;
  width: 100%; height: 20px;
}
.user-dropdown-wrapper:hover .user-dropdown-content { display: block; }
.user-dropdown-content a {
  display: block;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #000000;
  transition: color 0.25s, padding-left 0.25s;
}
.user-dropdown-content a:hover { color: #333333; padding-left: 26px; }

/* ── SECTION HEADER ─────────────────────────────────── */
.section-header-clean {
  text-align: center;
  margin-bottom: 48px;
}
.section-header-clean h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.02em;
}
.section-header-clean .line {
  width: 40px; height: 1px;
  background: #000000;
  margin: 18px auto 0;
}

/* ── DIVIDER ────────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  margin: 0 auto 30px;
}

/* ── FOOTER ─────────────────────────────────────────── */
.main-footer {
  background: #000000;
  color: #FFFFFF;
  padding: 80px 40px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: #FFFFFF;
  max-width: 260px;
}
.footer-heading {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #FFFFFF;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: #FFFFFF;
  font-size: 12px;
  transition: color 0.25s;
}
.footer-links a:hover { color: #DDDDDD; }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-strip { font-size: 9px; padding: 8px 0; }
  .main-header { padding: 0 14px; height: 64px; top: 32px; }
  .main-header.scrolled { height: 56px; top: 0; }

  /* Logo mobilde küçük ve taşmasın */
  .logo { font-size: 19px; letter-spacing: 0.02em; white-space: nowrap; }
  .main-header.scrolled .logo { font-size: 17px; }
  .logo-icon { font-size: 15px; margin-right: 5px; }

  /* Sol ve sağ blokları daralt, logoya yer aç */
  .header-left { min-width: 40px !important; }
  .header-right { min-width: 40px !important; gap: 8px !important; }

  /* Sağdaki ikonlar arası boşluğu kıs */
  .header-actions-form { gap: 4px; }

  /* ── LÜKS VE SÜZÜLEREK AÇILAN MOBİL ARAMA DÜZELTMESİ ── */
  .search-wrapper { position: static !important; }
  .search-input {
      position: absolute !important;
      top: 100% !important; 
      left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      height: 0 !important;
      opacity: 0 !important;
      visibility: hidden !important;
      margin: 0 !important;
      padding: 0 24px !important;
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(10px) !important;
      border: none !important;
      border-bottom: 1px solid rgba(0,0,0,0.08) !important;
      font-size: 15px !important;
      color: #000000 !important;
      box-shadow: 0 16px 30px rgba(0,0,0,0.06) !important;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
      z-index: 850 !important;
  }
  .search-wrapper.active .search-input {
      height: 60px !important;
      opacity: 1 !important;
      visibility: visible !important;
  }

  main.container { padding: 108px 16px 60px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Kart içeriği mobilde sıkı ve zarif */
  .product-info { padding: 12px 12px 14px; gap: 6px; }
  .product-info h3 { font-size: 15px; line-height: 1.25; }
  .product-info .price { font-size: 12px; }
  .product-info .eyebrow { font-size: 8px; }
  .add-to-cart-btn { padding: 10px 12px; font-size: 9px; letter-spacing: 0.12em; margin-top: 3px; }
  .vitrin-badge { font-size: 8px; padding: 4px 9px; top: 10px; }
  .product-share-icon { width: 34px; height: 34px; font-size: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header-clean h2 { font-size: 30px; }

  /* Filtre dropdown'ı mobilde sağ kenara yapışmasın */
  .filter-dropdown { right: -10px; width: 250px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .logo { font-size: 17px; }
  .filter-dropdown { width: 220px; }
}

/* ── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FFFFFF; }
::-webkit-scrollbar-thumb { background: #000000; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #333333; }

/* ── SELECTION ──────────────────────────────────────── */
::selection {
  background: #000000;
  color: #FFFFFF;
}

/* ── PRODUCT SHARE SYSTEM ───────────────────────────── */
.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.share-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-share-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.88);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-share-icon:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  transform: translateY(-2px);
}

.product-card .img-block {
  position: relative;
}

/* Sipariş özeti butonu hover kaybolma düzeltmesi */
.checkout-summary .btn-lux-submit,
.order-summary .btn-lux-submit,
.summary-card .btn-lux-submit,
.btn-lux-submit {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 1px solid #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.checkout-summary .btn-lux-submit:hover,
.order-summary .btn-lux-submit:hover,
.summary-card .btn-lux-submit:hover,
.btn-lux-submit:hover {
    background-color: #222222 !important;
    color: #FFFFFF !important;
    border-color: #222222 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* ── CONTACT FORM ALERT / ANCHOR UX ─────────────────── */
.form-section#iletisim-formu {
    scroll-margin-top: 140px;
}

.form-alert {
    max-width: 720px;
    margin: 0 auto 30px;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: left;
    position: relative;
    line-height: 1.7;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert.success {
    background: rgba(39, 174, 96, 0.08);
    color: #1e8449;
    border: 1px solid #27ae60;
    text-align: center;
}

.form-alert.success::before {
    content: "✓ ";
    font-weight: 700;
}

.form-alert.error {
    background: rgba(192, 57, 43, 0.06);
    color: #c0392b;
    border: 1px solid #c0392b;
}

.form-alert.error::before {
    content: "Lütfen aşağıdaki hataları düzeltin:";
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ============================================================
   GARANTİ SIDEBAR FIX
   ============================================================ */
.sidebar-menu,
.sidebar-menu.active {
    background: #ffffff !important;
    color: #000000 !important;
    border-right: 1px solid rgba(0,0,0,0.12) !important;
}
.sidebar-menu *,
.sidebar-menu a,
.sidebar-menu button,
.sidebar-menu span,
.sidebar-menu div,
.sidebar-menu p,
.sidebar-menu h1,
.sidebar-menu h2,
.sidebar-menu h3,
.sidebar-menu h4,
.sidebar-menu h5,
.sidebar-menu i,
.sidebar-menu svg {
    color: #000000 !important;
    opacity: 1 !important;
}
.sidebar-logo,
.sidebar-logo *,
.sidebar-menu .sidebar-logo,
.sidebar-menu .sidebar-logo * {
    color: #000000 !important;
    opacity: 1 !important;
}
.sidebar-close,
.sidebar-close *,
.sidebar-menu .sidebar-close,
.sidebar-menu .sidebar-close * {
    color: #000000 !important;
    opacity: 1 !important;
}
.sidebar-section-label,
.sidebar-menu .sidebar-section-label {
    color: #555555 !important;
    opacity: 1 !important;
}
.sidebar-menu a {
    color: #000000 !important;
    opacity: 1 !important;
    border-bottom-color: rgba(0,0,0,0.10) !important;
}
.sidebar-menu a:hover {
    color: #000000 !important;
    background: rgba(0,0,0,0.04) !important;
}
.sidebar-menu button,
.sidebar-menu .sidebar-parent,
.sidebar-menu .sidebar-toggle,
.sidebar-menu .sidebar-category,
.sidebar-menu .sidebar-category-toggle,
.sidebar-menu .sidebar-dropdown-toggle,
.sidebar-menu .category-toggle,
.sidebar-menu .category-parent,
.sidebar-menu .has-submenu,
.sidebar-menu .menu-parent {
    color: #000000 !important;
    background: transparent !important;
    opacity: 1 !important;
}
.sidebar-menu button i,
.sidebar-menu .fa-chevron-down,
.sidebar-menu .fa-angle-down,
.sidebar-menu .fa-chevron-right,
.sidebar-menu .fa-angle-right,
.sidebar-menu .fa-seedling,
.sidebar-menu .fa-leaf,
.sidebar-menu .fa-gift,
.sidebar-menu .fa-ring,
.sidebar-menu .fa-spa,
.sidebar-menu .fa-table-cells,
.sidebar-menu .fa-envelope,
.sidebar-menu .fa-whatsapp {
    color: #000000 !important;
    opacity: 0.8 !important;
}
.sidebar-sub-list,
.sidebar-menu .sidebar-sub-list,
.sidebar-menu ul,
.sidebar-menu li {
    background: transparent !important;
    color: #000000 !important;
    opacity: 1 !important;
}
.sidebar-sub-list a,
.sidebar-menu .sidebar-sub-list a,
.sidebar-menu ul a,
.sidebar-menu li a {
    color: #111111 !important;
    opacity: 1 !important;
    background: transparent !important;
}
.sidebar-sub-list a:hover,
.sidebar-menu .sidebar-sub-list a:hover {
    color: #000000 !important;
    background: rgba(0,0,0,0.05) !important;
}
.sidebar-menu .disabled,
.sidebar-menu .muted,
.sidebar-menu .text-muted,
.sidebar-menu .inactive,
.sidebar-menu [aria-disabled="true"] {
    color: #222222 !important;
    opacity: 1 !important;
    pointer-events: auto;
}
.sidebar-menu::-webkit-scrollbar {
    width: 4px !important;
}
.sidebar-menu::-webkit-scrollbar-track {
    background: #ffffff !important;
}
.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25) !important;
    border-radius: 20px !important;
}
.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.45) !important;
}
.sidebar-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.25) #ffffff;
}

/* ============================================================
   CLOVE FLORIST — FINAL MOBILE + SEARCH + FILTER FIX
   Eski çakışan ve kaba arama ekranından arındırıldı.
   ============================================================ */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

.main-header {
    max-width: 100%;
}

.header-left,
.header-center,
.header-right {
    min-width: 0 !important;
}

.product-card,
.product-info,
.product-info h3,
.product-info .price {
    min-width: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}

.floating-whatsapp,
.whatsapp-floating,
.whatsapp-btn {
    z-index: 850 !important;
}

/* Mobil Overlay Araması Tamamen İptal Edildi */
.mobile-search-overlay {
    display: none !important;
}
/* Mobil Overlay Araması Tamamen İptal Edildi */
.mobile-search-overlay {
    display: none !important;
}

/* ============================================================
   TABLET & KÜÇÜK BİLGİSAYAR ARAMA KUTUSU (OVERLAP) ÇÖZÜMÜ
   ============================================================ */
@media (max-width: 1100px) and (min-width: 769px) {
    .search-wrapper {
        position: relative !important;
    }
    
    .search-input {
        position: absolute !important;
        top: 40px !important;
        right: 0 !important; 
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
        border-radius: 4px !important;
        z-index: 999 !important;
    }

    .search-wrapper.active .search-input {
        width: 220px !important;
        height: 45px !important;
        padding: 0 16px !important;
    }
}

/* ============================================================
   MOBİL HEADER - LOGO VE İKON DENGELEMESİ (SON DÜZELTME)
   ============================================================ */
@media (max-width: 768px) {
    /* Kapsayıcı tam merkezde kalır */
    .header-center {

/* ============================================================
   MOBİL HEADER - LOGO VE İKON DENGELEMESİ (SON DÜZELTME)
   ============================================================ */
@media (max-width: 768px) {
    /* Logoyu ortalamaktan vazgeçip SOLA (menünün yanına) yaslıyoruz */
    .header-center {
        position: static !important;
        left: auto !important;
        transform: none !important;
        margin-right: auto !important; /* Sağdaki boşluğu emip logoyu sola iter */
        margin-left: 14px !important; /* Hamburger menü ile logo arasına şık bir boşluk */
        width: auto !important;
        display: flex;
        justify-content: flex-start;
    }

    /* 1. KELİME: "Clove" (Kalın ve Flex boşluğu sıfırlandı) */
    .logo { 
        font-size: 20px !important; 
        font-weight: 600 !important; /* Clove kelimesi kalın */
        letter-spacing: 0 !important; 
        white-space: nowrap !important;
        color: #000000 !important;
        gap: 0 !important; /* SİHİRLİ DOKUNUŞ: Kelimeler arasına giren o devasa flex boşluğu kapatıldı */
    }
    
    /* 2. KELİME: "Florist" (Artık o da kalın ve Clove'a yakın) */
    .logo span {
        font-weight: 600 !important; /* Florist kelimesi de artık Clove ile aynı kalınlıkta */
        font-style: italic !important;
        color: #000000 !important;
        margin-left: 5px !important; /* İki kelime arasına olması gereken standart boşluğu manuel verdik */
    }

    .main-header.scrolled .logo {
        font-size: 18px !important;
    }

    /* Yaprak ikonunun yazıyla olan mesafesi */
    .logo-icon {
        font-size: 16px !important;
        margin-right: 8px !important;
        color: #000000 !important;
    }

    .header-right { 
        gap: 6px !important; 
        min-width: auto !important;
    }

    .header-left {
        min-width: auto !important;
    }

    .header-icon-btn {
        padding: 4px !important;
    }
}
/* ============================================================
   SIDEBAR (MENÜ) GEREKSİZ BOŞLUK DÜZELTMESİ
   ============================================================ */
.sidebar-logo {
    margin-bottom: 20px !important; /* Eskiden 50px'di, daralttık */
    padding-bottom: 16px !important; /* Eskiden 24px'di, daralttık */
}

.sidebar-section-label {
    margin-top: 16px !important; /* Eskiden 32px'di, daralttık */
}
/* ============================================================
   SIDEBAR (MENÜ) GEREKSİZ BOŞLUK SIFIRLAMA - KESİN ÇÖZÜM
   ============================================================ */
.sidebar-menu .sidebar-logo {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
}

.sidebar-menu .sidebar-section-label {
    margin-top: 15px !important;
}
/* ============================================================
   MOBİL KAMPANYA BUTONU TIKLAMA (DOKUNMA) DÜZELTMESİ
   ============================================================ */
@media (max-width: 768px) {
    .campaign-slide .overlay {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important; 
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding-bottom: 40px !important;
        pointer-events: none !important; /* Görünmez kalkanı kaldırır */
        z-index: 10 !important;
    }

    .btn-campaign {
        display: inline-block !important; 
        pointer-events: auto !important; /* Butonu tekrar dokunulabilir yapar */
        margin-top: 10px !important;
    }
}