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

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #151515;
  background: #faf7f4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #faf7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-line {
  margin-top: 1.5rem;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, #b38a4c, #e2c89b, #b38a4c);
  background-size: 200% 100%;
  animation: loaderLine 1.2s infinite linear;
}

@keyframes loaderLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.top-bar {
  background: #151515;
  color: #f6f2eb;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-bar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar strong {
  color: #f1d7a4;
}

.top-bar__right {
  opacity: 0.8;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 244, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.main-header.scrolled {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: rgba(250, 247, 244, 0.96);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.logo-script {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #b38a4c;
  letter-spacing: 0.12em;
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  gap: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-desktop a {
  position: relative;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #151515;
  transition: width 0.25s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.icon-btn:hover {
  background: #151515;
  color: #f6f2eb;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.cc-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.cc-icon::before,
.cc-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.cc-icon-search::before {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
}

.cc-icon-search::after {
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(5px, 4px) rotate(45deg);
}

.cc-icon-user::before {
  width: 10px;
  height: 6px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  top: 9px;
}

.cc-icon-user::after {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  border-bottom-color: transparent;
  bottom: 7px;
}

.cc-icon-bag::before {
  width: 12px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid currentColor;
  bottom: 0;
}

.cc-icon-bag::after {
  width: 8px;
  height: 6px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  border-bottom-color: transparent;
  top: 1px;
}

.cc-icon-arrow-left::before,
.cc-icon-arrow-right::before {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.cc-icon-arrow-right::before {
  transform: rotate(135deg);
}

.cc-icon-arrow-up::before {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.cc-icon-badge {
  position: relative;
  display: inline-flex;
}

.cc-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #b38a4c;
  color: #fff;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: #151515;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.open span:first-child {
  transform: translateY(2px) rotate(45deg);
}

.burger.open span:last-child {
  transform: translateY(-2px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-mobile.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(21, 21, 21, 0.2),
      rgba(250, 247, 244, 0.4)
    ),
    url("https://images.pexels.com/photos/6311671/pexels-photo-6311671.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: 65% center;
  transform: scale(1.02);
  transform-origin: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: grayscale(0.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(250, 247, 244, 0.9), transparent),
    linear-gradient(90deg, #faf7f4 0%, rgba(250, 247, 244, 0.9) 35%, transparent 70%);
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3.2rem;
  padding: 5rem 1.5rem 4rem;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.hero-text h1 span:last-child {
  color: #a4782d;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-sub {
  max-width: 460px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #50463c;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
    box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: #151515;
  color: #f6f2eb;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: #b38a4c;
  border-color: #b38a4c;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: rgba(250, 247, 244, 0.82);
  border-color: rgba(0, 0, 0, 0.22);
}

.btn-ghost:hover {
  background: #151515;
  color: #f6f2eb;
}

.btn-text {
  padding-inline: 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.15em;
}

.btn-text:hover {
  color: #b38a4c;
  border-color: #b38a4c;
  box-shadow: none;
}

.btn-pill {
  border-radius: 999px;
  padding-inline: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-meta .meta-label {
  display: block;
  opacity: 0.6;
}

.hero-meta .meta-value {
  display: block;
  margin-top: 0.2rem;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.floating-card {
  width: 100%;
  max-width: 320px;
  background: rgba(250, 247, 244, 0.96);
  padding: 1.4rem 1.6rem;
  border-radius: 1.4rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  animation: floatCard 5.8s ease-in-out infinite alternate;
}

.floating-card.secondary {
  max-width: 260px;
  background: rgba(21, 21, 21, 0.9);
  color: #f6f2eb;
  animation-delay: 0.4s;
}

.floating-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b38a4c;
}

.floating-card h3 {
  margin: 0.4rem 0 0.3rem;
  font-size: 1.1rem;
}

.floating-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.9;
}

.floating-card .price {
  display: block;
  margin-top: 0.9rem;
  font-weight: 600;
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.category-shortcuts {
  padding: 3.5rem 0 2.5rem;
  background: #faf7f4;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.category-card {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #f1e5d4;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  color: #f6f2eb;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.2);
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.category-card:hover .category-bg {
  transform: scale(1.08);
  filter: grayscale(0);
}

.category-bg--dress {
  background-image: url("https://images.pexels.com/photos/6311579/pexels-photo-6311579.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.category-bg--knit {
  background-image: url("https://images.pexels.com/photos/7671168/pexels-photo-7671168.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.category-bg--coat {
  background-image: url("https://images.pexels.com/photos/6311654/pexels-photo-6311654.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.category-bg--denim {
  background-image: url("https://images.pexels.com/photos/7671248/pexels-photo-7671248.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.category-info {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.3rem 1.4rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}

.category-info h3 {
  font-size: 1.05rem;
}

.category-info p {
  font-size: 0.78rem;
  margin-top: 0.4rem;
  opacity: 0.9;
}

.category-info span {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-section {
  padding: 3.5rem 0;
}

.soft-bg {
  background: #f0e7de;
}

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-slider::-webkit-scrollbar {
  height: 4px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}

.product-card {
  background: #f8f4ef;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  min-height: 320px;
}

.product-image {
  height: 210px;
  background-image: linear-gradient(120deg, #e4d1bc, #f5ece0);
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/7671158/pexels-photo-7671158.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.product-card:nth-child(2) .product-image::after {
  background-image: url("https://images.pexels.com/photos/7671162/pexels-photo-7671162.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.product-card:nth-child(3) .product-image::after {
  background-image: url("https://images.pexels.com/photos/6311578/pexels-photo-6311578.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.product-card:nth-child(4) .product-image::after {
  background-image: url("https://images.pexels.com/photos/6311569/pexels-photo-6311569.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.product-card:hover .product-image::after {
  transform: scale(1.12);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.28rem 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.9);
  color: #f6f2eb;
}

.tag-bestseller .tag {
  background: rgba(179, 138, 76, 0.95);
}

.tag-limited .tag {
  background: rgba(193, 65, 65, 0.95);
}

.product-info {
  padding: 1.1rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-category {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

.product-info h3 {
  font-size: 1rem;
}

.product-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #4a4036;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
}

.price {
  font-weight: 600;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f4;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: #151515;
  color: #f6f2eb;
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-card--compact {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-thumb {
  height: 160px;
  background: linear-gradient(135deg, #d3b995, #f6ede3);
  background-size: cover;
  background-position: center;
}

.product-thumb--sweat {
  background-image: url("https://images.pexels.com/photos/7671163/pexels-photo-7671163.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--pants {
  background-image: url("https://images.pexels.com/photos/6311668/pexels-photo-6311668.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--knit {
  background-image: url("https://images.pexels.com/photos/6311582/pexels-photo-6311582.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* TÜM ÜRÜNLER & FİLTRELER */

.all-products {
  background: #faf7f4;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(250, 247, 244, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.filter-btn.is-active {
  background: #151515;
  color: #f6f2eb;
  border-color: #151515;
}

.filter-btn:not(.is-active):hover {
  background: #e5dacd;
  transform: translateY(-1px);
}

.product-grid--all {
  margin-top: 0.6rem;
}

.product-card--simple {
  cursor: pointer;
}

.product-card,
.product-card--compact {
  cursor: pointer;
}

.product-thumb--dress1 {
  background-image: url("https://images.pexels.com/photos/6311665/pexels-photo-6311665.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--dress2 {
  background-image: url("https://images.pexels.com/photos/6311572/pexels-photo-6311572.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--suit {
  background-image: url("https://images.pexels.com/photos/7671164/pexels-photo-7671164.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--knit2 {
  background-image: url("https://images.pexels.com/photos/6311581/pexels-photo-6311581.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--coat {
  background-image: url("https://images.pexels.com/photos/6311670/pexels-photo-6311670.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--denim {
  background-image: url("https://images.pexels.com/photos/7671159/pexels-photo-7671159.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--pants2 {
  background-image: url("https://images.pexels.com/photos/6311659/pexels-photo-6311659.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.product-thumb--sweat2 {
  background-image: url("https://images.pexels.com/photos/7671249/pexels-photo-7671249.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.stories {
  padding: 3.8rem 0;
  background: #151515;
  color: #f6f2eb;
}

.stories-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3.2rem;
  align-items: center;
}

.stories h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.9rem;
}

.stories p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #ddd2c5;
}

.stories-list {
  margin: 1.4rem 0 1.6rem;
  list-style: none;
}

.stories-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.86rem;
  color: #e5d5bf;
}

.stories-list li + li {
  margin-top: 0.5rem;
}

.stories-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #b38a4c;
}

.stories-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.stories-main-card {
  background: radial-gradient(circle at 0 0, #b38a4c, #151515);
  border-radius: 1.6rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

.stories-main-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.stories-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

.stories-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stories-mini-card {
  flex: 1;
  border-radius: 1.4rem;
  padding: 1.1rem 1.3rem;
  background: #201a14;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.stories-mini-card.secondary {
  background: #26201b;
}

.stories-mini-card span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #e8cda3;
}

.stories-mini-card p {
  font-size: 0.84rem;
}

.newsletter {
  padding: 3.4rem 0 3.8rem;
  background: #f6f2eb;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.newsletter h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.newsletter p {
  font-size: 0.92rem;
  color: #4a4036;
}

.newsletter-perks {
  list-style: none;
  margin-top: 1.4rem;
}

.newsletter-perks li {
  font-size: 0.86rem;
}

.newsletter-perks li + li {
  margin-top: 0.4rem;
}

.newsletter-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.input-row {
  display: flex;
  gap: 0.7rem;
}

.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  background: #fdfaf7;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-form input:focus {
  border-color: #b38a4c;
  box-shadow: 0 0 0 1px rgba(179, 138, 76, 0.25);
  background: #fff;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #7a6d5b;
}

.form-success {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #267a3d;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-success.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: #111111;
  color: #f6f2eb;
  padding-top: 2.8rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  padding: 0 1.5rem 2.4rem;
}

.footer-col h4 {
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: #e1d6c7;
}

.footer-col a + a {
  margin-top: 0.4rem;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.social-row a {
  position: relative;
  font-size: 0.84rem;
}

.social-row a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #f6f2eb;
  transition: width 0.2s ease;
}

.social-row a:hover::after {
  width: 100%;
}

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

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: #b7aa9b;
}

.scroll-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.92);
  color: #f6f2eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 30;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ARAMA PANELI, HESAP MODALI, SEPET DRAWER */

.cc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 35;
}

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

.search-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  pointer-events: none;
  z-index: 40;
}

.search-panel .search-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 1.5rem;
  background: #faf7f4;
  border-radius: 1.6rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
  padding: 1.6rem 1.8rem 1.4rem;
  transform: translateY(-16px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.search-panel.is-active {
  pointer-events: auto;
}

.search-panel.is-active .search-inner {
  transform: translateY(0);
  opacity: 1;
}

.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.search-close {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}

.search-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.search-bar input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  background: #fdfaf7;
}

.search-btn {
  white-space: nowrap;
}

.search-hint {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #7a6d5b;
}

.account-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 40;
}

.account-card {
  width: 100%;
  max-width: 380px;
  margin: 0 1.5rem;
  background: #faf7f4;
  border-radius: 1.6rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
  padding: 1.8rem 1.7rem 1.6rem;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.account-modal.is-active {
  pointer-events: auto;
}

.account-modal.is-active .account-card {
  transform: translateY(0);
  opacity: 1;
}

.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.account-header h3 {
  font-size: 1.1rem;
}

.account-close {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.account-form label {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.account-form input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.78rem 1.05rem;
  font-size: 0.88rem;
  background: #fdfaf7;
}

.account-secondary {
  margin-top: 0.3rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100%);
  background: #faf7f4;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.27s ease;
  z-index: 45;
}

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

.cart-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.cart-header h3 {
  font-size: 1.1rem;
}

.cart-close {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}

.cart-empty {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.cart-empty p {
  color: #4a4036;
}

.cart-items {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

.cart-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.86rem;
}

.cart-items li span {
  max-width: 70%;
}

.cart-footer {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.9rem;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.cart-total-row strong {
  font-size: 0.96rem;
}

.cart-drawer.has-items #cartEmptyState {
  display: none;
}

.cart-drawer.has-items .cart-items,
.cart-drawer.has-items .cart-footer {
  display: flex;
  flex-direction: column;
}

/* ÜRÜN DETAY MODALI */

.product-detail-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 50;
}

.product-detail-card {
  width: 100%;
  max-width: 960px;
  margin: 0 1.5rem;
  background: #faf7f4;
  border-radius: 1.8rem;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
  padding: 1.4rem 1.6rem 1.7rem;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.product-detail-modal.is-active {
  pointer-events: auto;
}

.product-detail-modal.is-active .product-detail-card {
  transform: translateY(0);
  opacity: 1;
}

.detail-close {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  float: right;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.8rem;
  margin-top: 0.6rem;
}

.product-detail-media {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #e7d6c1;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.product-detail-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0.2rem 0 0.3rem;
}

.product-detail-price {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.product-detail-text {
  font-size: 0.9rem;
  color: #4a4036;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.detail-section {
  margin-bottom: 0.9rem;
}

.detail-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.detail-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.detail-chip {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fdfaf7;
}

.detail-chip.is-selected {
  background: #151515;
  color: #f6f2eb;
  border-color: #151515;
}

.detail-colors {
  display: flex;
  gap: 0.4rem;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--dot-color, #ccc);
}

.color-dot.is-selected {
  border-color: #151515;
}

.detail-warning {
  font-size: 0.8rem;
  color: #b94444;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.detail-warning.visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.link-underlined {
  position: relative;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #151515;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.link-underlined:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .burger {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.2fr);
    padding-top: 4rem;
  }

  .hero-badges {
    align-items: flex-start;
    margin-top: 1rem;
  }

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

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

  .stories-inner,
  .newsletter-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-drawer {
    width: min(420px, 100%);
  }

  .product-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-container {
    padding-inline: 1.1rem;
    gap: 1rem;
  }

  .hero-content {
    padding-inline: 1.1rem;
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-meta {
    gap: 1.2rem;
  }

  .logo-script {
    font-size: 1.5rem;
  }

  .nav-mobile {
    font-size: 0.78rem;
  }

  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-inner {
    gap: 2rem;
  }

  .input-row {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top {
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .search-panel {
    align-items: flex-start;
    padding-top: 5rem;
  }

  .search-panel .search-inner {
    margin: 0 1.1rem;
    padding-inline: 1.2rem;
  }

  .account-card {
    margin: 0 1.1rem;
    padding-inline: 1.3rem;
  }

  .product-detail-card {
    margin: 0 1.1rem;
    padding-inline: 1.2rem;
    max-height: calc(100vh - 2.4rem);
    overflow-y: auto;
  }

  .detail-actions {
    flex-direction: column;
  }
}


