:root {
  --cream: #f8f4ee;
  --beige: #ebe0d4;
  --warm-beige: #d8c2b0;
  --rose: #d8aaa1;
  --clay: #b5785f;
  --brown: #66463b;
  --ink: #25211f;
  --muted: #776c65;
  --line: rgba(37, 33, 31, 0.15);
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.top-bar {
  padding: 10px 20px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.top-bar p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header {
  min-height: 86px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(14px);
}

.header.scrolled {
  border-color: var(--line);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.85;
}

.logo span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.logo small {
  margin-top: 8px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.navigation {
  display: flex;
  gap: 28px;
}

.navigation a {
  position: relative;
  padding: 7px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}

.navigation a:hover::after,
.navigation a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-contact-button {
  padding: 12px 24px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-contact-button:hover {
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
}

/* Genel */

.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  min-height: 49px;
  padding: 0 23px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button span {
  font-size: 19px;
  transition: transform 0.2s ease;
}

.text-button:hover span {
  transform: translateX(5px);
}

/* Ana Sayfa */

.home-hero {
  min-height: calc(100vh - 125px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 10vw;
  background: linear-gradient(115deg, #eadfd5 0%, #f6f1eb 48%, #c5917c 100%);
}

.hero-copy {
  z-index: 2;
  width: 50%;
}

.hero-copy h1,
.intro h2,
.section-heading h2,
.collection-banner h2,
.story-copy h2,
.category-hero h1,
.product-detail-info h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(62px, 8vw, 112px);
}

.hero-description {
  max-width: 385px;
  margin: 28px 0;
  color: #5f514a;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-art {
  width: 46%;
  height: 590px;
  position: absolute;
  right: 8%;
  bottom: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.hero-circle-one {
  width: 340px;
  height: 340px;
  top: 85px;
  right: 10%;
  background: rgba(247, 220, 195, 0.57);
}

.hero-circle-two {
  width: 155px;
  height: 155px;
  top: 30px;
  left: 4%;
  background: rgba(222, 178, 163, 0.7);
}

.large-bottle,
.detail-bottle,
.banner-bottle {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(20px 26px 18px rgba(70, 38, 24, 0.18));
}

.large-bottle {
  width: 263px;
  height: 421px;
  right: 29%;
  bottom: 42px;
  transform: rotate(-6deg);
  animation: bottleFloat 5s ease-in-out infinite;
}

.bottle-cap {
  width: 103px;
  height: 59px;
  margin: auto;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(90deg, #332b27, #897a6b, #2b2520);
}

.bottle-neck {
  width: 62px;
  height: 40px;
  margin: auto;
  border-right: 1px solid rgba(70, 40, 28, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(244, 211, 186, 0.73);
}

.bottle-body {
  height: 318px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 106px;
  border: 2px solid rgba(255, 237, 220, 0.6);
  border-radius: 25px 25px 42px 42px;
  color: #f9ecdf;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.5), transparent 23%),
    linear-gradient(120deg, #d2ad95, #9b6853 47%, #d6af90);
  letter-spacing: 0.13em;
}

.bottle-logo {
  font-family: var(--serif);
  font-size: 24px;
}

.bottle-body strong {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
}

.bottle-body small {
  margin-top: 8px;
  font-size: 7px;
}

.bottle-shadow {
  width: 390px;
  height: 56px;
  position: absolute;
  right: 15%;
  bottom: 15px;
  border-radius: 50%;
  background: rgba(74, 39, 27, 0.22);
  filter: blur(20px);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  bottom: 29px;
  left: 5vw;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 35px;
  height: 1px;
  display: inline-block;
  background: var(--ink);
}

.intro {
  max-width: 830px;
  padding: 145px 25px;
  margin: auto;
  text-align: center;
}

.intro h2,
.section-heading h2,
.collection-banner h2,
.story-copy h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.intro > p:last-child {
  max-width: 530px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.featured-products,
.related-products {
  padding: 35px 5vw 125px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 43px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.catalog-card {
  position: relative;
}

.product-card {
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image,
.catalog-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-image {
  height: 405px;
}

.product-selene {
  background: linear-gradient(145deg, #ead6cf, #b68e8f);
}

.product-nocturne {
  background: radial-gradient(circle at 70% 20%, #796961, transparent 22%), #282a27;
}

.product-marea {
  background: linear-gradient(145deg, #d7e0d9, #72958d);
}

.product-eclat {
  background: linear-gradient(145deg, #e8d4b9, #bd855f);
}

.mini-bottle {
  z-index: 2;
  width: 148px;
  height: 244px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 17px 17px 29px 29px;
  box-shadow: 18px 20px 31px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.12em;
}

.mini-bottle::before {
  content: "";
  width: 67px;
  height: 43px;
  position: absolute;
  top: -40px;
  border-radius: 5px 5px 0 0;
  background: #372f2a;
}

.mini-bottle span {
  font-family: var(--serif);
  font-size: 19px;
}

.mini-bottle strong {
  margin-top: 13px;
  font-size: 8px;
}

.mini-selene {
  color: #59413d;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(110deg, #fcf5ed, #d8a89d);
}

.mini-nocturne {
  color: #f1dabc;
  border: 1px solid rgba(235, 190, 125, 0.25);
  background: linear-gradient(110deg, #433632, #171212);
}

.mini-marea {
  color: #edf5ed;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(110deg, #8bc4bd, #316b6b);
}

.mini-eclat {
  color: #ffefd9;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(110deg, #de9a71, #a95f4c);
}

.petal,
.detail-petal {
  display: block;
  position: absolute;
  background: rgba(252, 236, 230, 0.57);
  border-radius: 50% 10% 50% 10%;
}

.petal {
  width: 130px;
  height: 130px;
}

.petal-one {
  top: 16%;
  left: 10%;
  transform: rotate(35deg);
}

.petal-two {
  right: 8%;
  bottom: 8%;
  transform: rotate(130deg) scale(0.72);
}

.smoke {
  width: 250px;
  height: 82px;
  position: absolute;
  border: 1px solid rgba(235, 207, 179, 0.43);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.smoke-one {
  top: 23%;
  left: -50px;
}

.smoke-two {
  right: -64px;
  bottom: 18%;
  transform: rotate(28deg);
}

.wave {
  width: 250px;
  height: 145px;
  position: absolute;
  border-top: 24px solid rgba(229, 242, 234, 0.26);
  border-right: 24px solid rgba(229, 242, 234, 0.26);
  border-radius: 0 100% 0 0;
  transform: rotate(35deg);
}

.wave-one {
  top: 14%;
  left: -72px;
}

.wave-two {
  right: -80px;
  bottom: -8%;
  transform: rotate(210deg);
}

.sun-shape {
  width: 190px;
  height: 190px;
  position: absolute;
  top: 40px;
  right: -34px;
  border-radius: 50%;
  background: rgba(255, 227, 185, 0.45);
}

.product-content {
  padding: 18px 4px 0;
}

.product-label,
.catalog-content > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-content h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.product-size {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-bottom,
.catalog-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-bottom strong,
.catalog-price-row strong {
  font-size: 14px;
}

.product-bottom a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-banner {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff7ef;
  background: #9c6d59;
}

.collection-banner-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 95px 15%;
}

.collection-banner-copy .eyebrow {
  color: #f8dccc;
}

.collection-banner-copy p:not(.eyebrow) {
  max-width: 400px;
  margin: 27px 0;
  color: #f9dfd0;
  line-height: 1.8;
}

.collection-banner-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #d0a18b, #805044);
}

.abstract-sun {
  width: 390px;
  height: 390px;
  position: absolute;
  top: 13%;
  left: 16%;
  border-radius: 50%;
  background: rgba(255, 224, 191, 0.45);
}

.abstract-arch {
  width: 410px;
  height: 590px;
  position: absolute;
  right: -90px;
  bottom: -130px;
  border: 2px solid rgba(255, 239, 218, 0.52);
  border-radius: 210px 210px 0 0;
}

.banner-bottle {
  width: 222px;
  height: 357px;
  left: 34%;
  bottom: 55px;
  transform: rotate(8deg);
}

.banner-bottle .bottle-cap {
  width: 90px;
  height: 50px;
}

.banner-bottle .bottle-neck {
  width: 54px;
  height: 33px;
}

.banner-bottle .bottle-body {
  height: 270px;
  padding-top: 88px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
  padding: 140px 9vw;
}

.story-art {
  min-height: 470px;
  position: relative;
  background: #d4c3b1;
}

.story-image-card {
  inset: 40px;
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 27px;
  color: #f9eee2;
  background:
    linear-gradient(0deg, rgba(47, 60, 40, 0.25), rgba(47, 60, 40, 0.1)),
    radial-gradient(circle at 25% 24%, #ccd6ae 0 5%, transparent 5.5%),
    radial-gradient(circle at 76% 62%, #849168 0 12%, transparent 12.5%),
    linear-gradient(130deg, #93a081, #4b5d45);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.85;
  letter-spacing: 0.09em;
}

.story-copy p:not(.eyebrow) {
  max-width: 420px;
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.8;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.trust-item {
  min-height: 175px;
  display: flex;
  gap: 16px;
  padding: 38px 11%;
  border-right: 1px solid var(--line);
}

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

.trust-item > span {
  font-size: 25px;
}

.trust-item h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Kategori */

.category-hero {
  padding: 105px 25px 85px;
  text-align: center;
  background: linear-gradient(125deg, #e8dcd0, #f8f3ed);
}

.category-hero h1 {
  font-size: clamp(58px, 7vw, 90px);
}

.category-hero > p:last-child {
  max-width: 540px;
  margin: 25px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-section {
  padding: 56px 5vw 120px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 30px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filter {
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-filter.active,
.catalog-filter:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.catalog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-toolbar-right span {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

#sortProducts {
  min-width: 160px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.catalog-card {
  transition: transform 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
}

.catalog-card.hidden {
  display: none;
}

.catalog-image {
  height: 360px;
}

.tag {
  z-index: 3;
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-image .mini-bottle {
  transform: scale(0.85);
}

.catalog-content {
  padding: 16px 2px 0;
}

.catalog-content h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.catalog-content > span {
  color: var(--muted);
  font-size: 12px;
}

.quick-add {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.no-products {
  display: none;
  padding: 50px 0;
  color: var(--muted);
  text-align: center;
}

/* Gerçek ürün fotoğrafları */

.product-image img,
.catalog-image img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-main-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section {
  padding: 0 5vw 70px;
}

.hero-section img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.ambalaj-tanitim {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 5vw;
  background: var(--beige);
}

.ambalaj-tanitim img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 22px 26px 50px rgba(37, 33, 31, 0.18);
}

.ambalaj-tanitim p {
  margin: 0;
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--brown);
}

.discovery-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 85px 10vw;
  color: #f9f1e8;
  background: #6d5a4f;
}

.discovery-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 61px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.discovery-banner p:not(.eyebrow) {
  max-width: 440px;
  color: #dfd0c5;
  line-height: 1.8;
}

.discovery-banner .eyebrow {
  color: #e8c4b0;
}

.discovery-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mood-choice {
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.31);
  color: #fff;
  background: transparent;
  text-align: left;
  font-family: var(--serif);
  font-size: 23px;
}

/* Ürün detay */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 25px 5vw;
  color: var(--muted);
  font-size: 10px;
}

.breadcrumbs strong {
  color: var(--ink);
  font-weight: 500;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7vw;
  padding: 20px 8vw 130px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: start;
}

.gallery-thumb {
  width: 66px;
  height: 84px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  display: grid;
  place-items: center;
  background: #e5d1cc;
}

.gallery-thumb.active {
  border-color: var(--ink);
}

.thumbnail-bottle {
  width: 27px;
  height: 45px;
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(130deg, #fff4ea, #bd887f);
}

.thumbnail-flower {
  width: 37px;
  height: 37px;
  border-radius: 50% 10% 50% 10%;
  background: #f7e8e4;
  transform: rotate(36deg);
}

.detail-main-image {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ead8d2, #bd9696);
}

.detail-petal {
  width: 200px;
  height: 200px;
}

.detail-petal-one {
  top: 5%;
  left: -5%;
  transform: rotate(40deg);
}

.detail-petal-two {
  right: -8%;
  bottom: 10%;
  transform: rotate(126deg);
}

.detail-petal-three {
  top: 40%;
  right: 1%;
  opacity: 0.42;
  transform: scale(0.55) rotate(70deg);
}

.detail-bottle {
  width: 290px;
  height: 460px;
  position: relative;
}

.detail-bottle .bottle-cap {
  width: 115px;
  height: 63px;
}

.detail-bottle .bottle-neck {
  width: 68px;
  height: 44px;
}

.detail-bottle .bottle-body {
  height: 350px;
  padding-top: 118px;
}

.product-detail-info {
  padding-top: 35px;
}

.title-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.product-detail-info h1 {
  max-width: 520px;
  font-size: clamp(47px, 5vw, 68px);
}

.detail-size {
  margin: 17px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.detail-price {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.detail-description {
  margin: 31px 0;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-description p {
  max-width: 500px;
  margin: 0;
  color: #645852;
  font-size: 14px;
  line-height: 1.9;
}

.scent-notes h2 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.notes-grid {
  display: grid;
  gap: 11px;
}

.notes-grid div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.notes-grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.notes-grid strong {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.stock-code {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.purchase-row {
  margin: 33px 0;
}

.contact-cta {
  width: 100%;
}

.product-accordions {
  border-top: 1px solid var(--line);
}

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary span {
  font-size: 18px;
  font-weight: 400;
}

.product-accordions p {
  max-width: 520px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

/* İletişim */

.contact-section {
  padding: 35px 5vw 130px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  padding: 46px 38px;
  background: var(--beige);
}

.contact-info-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.contact-info-card > p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list p {
  margin: 0;
  font-size: 14px;
}

.contact-form-card {
  padding: 46px 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-card label {
  display: block;
  margin-bottom: 20px;
}

.contact-form-card label span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--clay);
}

.contact-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit-button {
  width: 100%;
  margin-top: 4px;
}

.contact-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.copy-details-button {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

#contactFormMessage {
  min-height: 18px;
  margin: 14px 0 0;
  font-size: 12px;
}

#contactFormMessage.success {
  color: #4c7a5b;
}

#contactFormMessage.error {
  color: #a3423a;
}

/* Footer */

footer {
  padding: 75px 8vw 25px;
  color: #f7efe6;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 62px;
}

.footer-logo {
  color: #fff8f0;
}

.footer-description {
  margin-top: 23px;
  color: #b8aaa1;
  font-size: 13px;
}

.newsletter .eyebrow {
  color: #c9afa0;
}

.newsletter h3 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.newsletter form {
  max-width: 410px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.newsletter input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.newsletter input::placeholder {
  color: #aaa09a;
}

.newsletter button {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 23px;
}

#newsletterMessage {
  min-height: 18px;
  margin: 10px 0 0;
  color: #d8c1b2;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #aa9f98;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

/* Toast */

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 280px;
  padding: 14px 18px;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@keyframes bottleFloat {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateY(-12px);
  }
}

/* Responsive */

@media (max-width: 1000px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-art {
    right: 0;
  }

  .product-detail {
    padding-left: 5vw;
    padding-right: 5vw;
    gap: 4vw;
  }
}

@media (max-width: 760px) {
  .header {
    min-height: 72px;
    padding: 0 20px;
  }

  .logo span {
    font-size: 23px;
  }

  .mobile-menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-menu-button span {
    width: 20px;
    height: 1px;
    display: block;
    background: var(--ink);
  }

  .navigation {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    background: var(--cream);
  }

  .navigation.open {
    display: flex;
  }

  .header-contact-button {
    display: none;
  }

  .home-hero {
    min-height: 720px;
    align-items: flex-start;
    padding: 75px 24px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-art {
    width: 100%;
    height: 340px;
    right: 0;
  }

  .large-bottle {
    width: 195px;
    height: 315px;
    right: 25%;
    bottom: 10px;
  }

  .large-bottle .bottle-cap {
    width: 78px;
    height: 43px;
  }

  .large-bottle .bottle-neck {
    width: 48px;
    height: 28px;
  }

  .large-bottle .bottle-body {
    height: 232px;
    padding-top: 75px;
  }

  .large-bottle .bottle-logo {
    font-size: 18px;
  }

  .hero-scroll {
    display: none;
  }

  .intro {
    padding: 95px 24px;
  }

  .section-heading,
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-grid,
  .collection-banner,
  .story-section,
  .trust-section,
  .discovery-banner,
  .footer-main,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 390px;
  }

  .collection-banner-copy {
    padding: 80px 24px;
  }

  .collection-banner-art {
    min-height: 420px;
  }

  .banner-bottle {
    left: 31%;
  }

  .story-section {
    gap: 40px;
    padding: 95px 24px;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-section {
    padding: 42px 20px 90px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-image {
    height: 410px;
  }

  .hero-section {
    padding: 0 20px 42px;
  }

  .ambalaj-tanitim {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 24px;
    text-align: center;
  }

  .ambalaj-tanitim img {
    max-width: 320px;
    margin: 0 auto;
  }

  .ambalaj-tanitim p {
    margin: 0 auto;
  }

  .discovery-banner {
    gap: 30px;
    padding: 65px 24px;
  }

  .breadcrumbs {
    padding: 20px;
  }

  .product-detail {
    gap: 42px;
    padding: 0 20px 90px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumb {
    display: inline-grid;
    margin-right: 8px;
  }

  .detail-main-image {
    min-height: 490px;
  }

  .detail-bottle {
    transform: scale(0.78);
  }

  .product-detail-info {
    padding-top: 0;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 42px 20px 90px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
}