/* --------------------------------------------------------------------------
   3. 01 ANA SAYFA (HOMEPAGE) STYLES
   -------------------------------------------------------------------------- */
.ash-hero-section {
  position: relative;
  min-height: calc(100vh - 72px);
  width: 100% !important;
  overflow: hidden;
  background-color: var(--ash-bg-main);
}

.ash-hero-copy-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(48%, 720px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 120px);
  background: transparent;
}

.ash-hero-visual {
  position: absolute;
  inset: 0;
}

.ash-hero-content {
  max-width: 560px;
}

.ash-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.08;
  color: var(--ash-text-dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.ash-title-gold {
  color: var(--ash-gold) !important;
  font-weight: 500;
}

.ash-hero-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  color: var(--ash-text-muted);
  max-width: 420px;
  margin-bottom: 35px;
  font-weight: 400;
}

.ash-hero-image-container {
  text-align: right;
}

.ash-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .ash-hero-section,
  .ash-hero-copy-panel {
    min-height: 620px;
  }

  .ash-hero-copy-panel {
    width: min(58%, 600px);
    padding: 56px 42px;
  }
}

@media (max-width: 640px) {
  .ash-hero-section {
    min-height: 760px;
    display: block;
  }

  .ash-hero-img {
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .ash-hero-visual {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .ash-hero-copy-panel {
    position: absolute;
    z-index: 1;
    top: 8.5%;
    left: 17.7%;
    display: block;
    width: 76%;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .ash-hero-title {
    font-size: clamp(40px, 12vw, 54px);
  }

  .ash-hero-desc {
    max-width: 290px;
  }
}

.ash-section-container {
  width: 100% !important;
  max-width: 1550px;
  margin: 0 auto;
  padding: 70px max(20px, 4vw);
}

.ash-section-header {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.5vw, 36px);
  letter-spacing: 3px;
  color: var(--ash-text-dark);
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 500;
}

.ash-collections-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ash-collection-card {
  position: relative;
  background-color: #0D1B16;
  border-radius: 2px;
  overflow: hidden;
  height: 260px;
  flex: 0 0 calc(20% - 13px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  text-decoration: none !important;
  transition: transform 0.4s ease;
}

.ash-collection-card:hover {
  transform: translateY(-5px);
}

.ash-collection-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.ash-collection-card:hover img {
  opacity: 0.8;
}

.ash-collection-title-box {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}

.ash-collection-main-title {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.ash-collection-sub-title {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--ash-gold);
  text-transform: uppercase;
  margin-top: 4px;
}

/* -------------------------------------------------------
   Sidebar context: koleksiyon kartları sidebar'da
   dikey liste olarak görünür, ana sayfadaki grid değil.
   ------------------------------------------------------- */
.ash-sidebar-filter .ash-collections-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ash-sidebar-filter .ash-collection-card {
  flex: 0 0 auto;
  height: 80px !important;
  border-radius: 4px;
  padding-bottom: 0;
  justify-content: flex-start;
  padding-left: 14px;
  transition: background-color 0.2s ease;
}

.ash-sidebar-filter .ash-collection-card:hover {
  transform: none;
  background-color: #1a3028;
}

.ash-sidebar-filter .ash-collection-card img {
  opacity: 0.25;
}

.ash-sidebar-filter .ash-collection-card:hover img {
  opacity: 0.35;
}

.ash-sidebar-filter .ash-collection-title-box {
  text-align: left;
}

.ash-sidebar-filter .ash-collection-main-title {
  font-size: 12px;
  letter-spacing: 1.5px;
}

.ash-sidebar-filter .ash-collection-sub-title {
  display: none;
}

.ash-bestsellers-wrapper {
  position: relative;
}

.ash-bestsellers-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px;
}

.ash-bestsellers-track::-webkit-scrollbar {
  display: none;
}

.ash-bestseller-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}

.ash-product-card-standard {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  padding: 25px 20px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ash-product-img-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ash-product-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ash-product-name {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ash-text-dark);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}

.ash-product-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ash-text-dark);
}

.ash-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(245, 242, 235, 0.9);
  border: 1px solid var(--ash-border);
  color: var(--ash-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s ease;
}

.ash-slider-arrow:hover {
  background-color: var(--ash-dark-green);
  border-color: var(--ash-dark-green);
  color: #FFFFFF;
}

.ash-slider-arrow.left {
  left: 10px;
}

.ash-slider-arrow.right {
  right: 10px;
}

.ash-story-card-box {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: clamp(30px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.ash-story-content h2 {
  font-size: 28px;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ash-story-content h3 {
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 16px;
  font-weight: 600;
}

.ash-story-content p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ash-text-muted);
  margin-bottom: 30px;
}

.ash-video-card-preview {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.ash-video-card-preview img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.ash-play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: rgba(13, 27, 22, 0.85);
  border: 1px solid var(--ash-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-gold);
  font-size: 18px;
  cursor: pointer;
}

.ash-play-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.ash-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.ash-insta-card {
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ash-border);
}

.ash-insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Header Search Input Form Styles */
.ash-header-search-form {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.ash-header-search-input {
  background-color: transparent;
  border: 1px solid var(--ash-border);
  border-radius: 20px;
  padding: 6px 36px 6px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ash-text-dark);
  outline: none;
  width: 140px;
  transition: width 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.ash-header-search-input:focus {
  width: 200px;
  border-color: var(--ash-gold);
  background-color: #FFFFFF;
}

.ash-header-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ash-text-dark);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ash-header-search-btn:hover {
  color: var(--ash-gold);
}

/* Mobile Search Box inside drawer */
.ash-mobile-search-box {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ash-border);
}

.ash-mobile-search-form {
  display: flex;
  position: relative;
  width: 100%;
}

.ash-mobile-search-input {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: 10px 40px 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ash-text-dark);
  outline: none;
}

.ash-mobile-search-input:focus {
  border-color: var(--ash-gold);
}


/* --------------------------------------------------------------------------
   LUXURY 5-COLUMN MEGA MENU STYLES
   -------------------------------------------------------------------------- */
.ash-nav-item.has-megamenu {
  position: static;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -15px;
  margin-bottom: -15px;
}

.ash-header-main {
  position: relative;
}

#header .ash-header-main {
  padding-top: 6px;
  padding-bottom: 6px;
}

#header .ash-main-logo {
  height: 58px !important;
}

#header .ash-logo-text {
  font-size: 19px !important;
}

#header .ash-logo-subtext {
  font-size: 8px !important;
}

.ash-menu-arrow {
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.ash-nav-item.has-megamenu:hover .ash-menu-arrow {
  transform: rotate(180deg);
  color: var(--ash-gold);
}

.ash-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(245, 242, 235, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--ash-border);
  border-bottom: 2px solid var(--ash-gold);
  box-shadow: 0 20px 40px rgba(13, 27, 22, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

/* Invisible Hover Bridge to prevent dropdown closure during mouse movement */
.ash-megamenu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
  display: block;
}

.ash-nav-item.has-megamenu:hover .ash-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ash-megamenu-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px max(20px, 4vw);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.ash-megamenu-col {
  display: flex;
  flex-direction: column;
}

.ash-megamenu-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ash-dark-green);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ash-border);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.ash-megamenu-title i {
  color: var(--ash-gold);
  font-size: 12px;
}

.ash-megamenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ash-megamenu-list li {
  margin-bottom: 10px;
}

.ash-megamenu-list li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--ash-text-dark);
  text-decoration: none !important;
  text-transform: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.ash-megamenu-list li a:hover {
  color: var(--ash-gold) !important;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   LUXURY FLOATING CART BUTTON (YÜZEN SEPET BUTONU)
   -------------------------------------------------------------------------- */
.ash-floating-cart-btn {
  display: none !important;
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: var(--ash-dark-green);
  color: var(--ash-gold) !important;
  border: 1.5px solid var(--ash-gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(13, 27, 22, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 9998;
  cursor: pointer;
}

@media (max-width: 991px) {
  .ash-floating-cart-btn {
    display: flex !important;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
}

.ash-float-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--ash-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@keyframes ash-cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.6); }
  100% { transform: scale(1); }
}

.ash-float-cart-count.ash-bump,
.ash-cart-badge.ash-bump {
  animation: ash-cart-bump 0.45s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* --------------------------------------------------------------------------
