.body-home .page { width: min(1290px, calc(100% - 40px)); }
.modave-home { width: 100%; }
.home-hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 55vw, 700px);
  overflow: hidden;
  border-radius:0 0 15px 15px;
  background: #181219;
  box-shadow: 0 30px 80px rgba(20,13,18,.12);
}
.home-hero__media,
.home-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__media img { object-fit: cover; object-position: center; transform: scale(1.015); transition: transform 8s ease; }
.home-hero:hover .home-hero__media img { transform: scale(1.05); }
.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(199,133,92,.24), transparent 28%),
    linear-gradient(90deg, rgba(16,10,15,.88) 0%, rgba(19,12,18,.64) 46%, rgba(19,12,18,.12) 78%);
}
.home-hero__content {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 78px);
  top: 50%;
  width: min(650px, 56%);
  color: #fff;
  transform: translateY(-50%);
}
.home-hero .home-kicker { color: rgba(255,255,255,.68); }
.home-hero h1 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 82px);
  font-weight: 600;
  line-height: .93;
  letter-spacing: -.065em;
}
.home-hero p { max-width: 560px; margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.8; }
.home-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.home-hero__actions .home-primary-button { background: #fff; color: var(--ink); }
.home-hero__actions .home-primary-button:hover { background: var(--accent); color: #fff; }
.home-hero__link { color: #fff; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.5); }
.home-hero__panel {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  width: min(330px, 31%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius:15px;
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(10,7,10,.22);
}
.home-hero__panel > span { display: block; color: rgba(255,255,255,.52); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.home-hero__panel > strong { display: block; margin-top: 10px; font-size: 30px; line-height: 1.02; letter-spacing: -.045em; }
.home-hero__panel ul { display: grid; gap: 9px; margin-top: 20px; }
.home-hero__panel li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: 12px; }
.home-hero__panel li::before { content: ""; width: 6px; height: 6px; border-radius:50%; background: #6f8cff; }

.home-section { padding-top: 86px; }
.home-section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.home-section__header h2 { margin: 7px 0 0; font-size: clamp(27px, 3vw, 40px); line-height: 1.02; letter-spacing: -.045em; }
.home-section__header > a { display: inline-flex; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-weight: 800; }
.home-section__header > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.75; }

.home-category-grid.home-category-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  grid-template-areas:
    "a a b c d d"
    "a a e f d d";
  gap: 18px;
}
.home-category-card {
  position: relative;
  min-width: 0;
  min-height: 250px;
  display: block;
  overflow: hidden;
  border-radius:15px;
  color: #fff;
  background: #3c222e;
  box-shadow: 0 18px 48px rgba(63, 31, 46, .10);
  isolation: isolate;
  transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease;
}
.home-category-card[data-area="a"] { grid-area: a; }
.home-category-card[data-area="b"] { grid-area: b; }
.home-category-card[data-area="c"] { grid-area: c; }
.home-category-card[data-area="d"] { grid-area: d; }
.home-category-card[data-area="e"] { grid-area: e; }
.home-category-card[data-area="f"] { grid-area: f; }
.home-category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(63, 31, 46, .18);
}
.home-category-card__image {
  position: absolute;
  inset: 0;
  display: block;
  background-image: url(../images/home-category-tiles-v2.jpg);
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transform: scale(1.02);
  transition: transform .65s cubic-bezier(.2,.75,.25,1), filter .45s ease;
}
.home-category-card:hover .home-category-card__image { transform: scale(1.075); }
/* Uploaded category covers are standalone images, not the legacy 3x2 sprite. */
.home-category-card__image--custom,
.home-category-card.has-custom-cover .home-category-card__image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: none;
}
.home-category-card.has-custom-cover:hover .home-category-card__image {
  transform: scale(1.035);
}
.home-category-card--1 .home-category-card__image { background-position: 0 0; }
.home-category-card--2 .home-category-card__image { background-position: 50% 0; }
.home-category-card--3 .home-category-card__image { background-position: 100% 0; }
.home-category-card--4 .home-category-card__image { background-position: 0 100%; }
.home-category-card--5 .home-category-card__image { background-position: 50% 100%; }
.home-category-card--6 .home-category-card__image { background-position: 100% 100%; }
.home-category-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(35,20,29,.04) 14%, rgba(35,20,29,.18) 52%, rgba(35,20,29,.82) 100%);
}
.home-category-card[data-area="a"] .home-category-card__shade,
.home-category-card[data-area="d"] .home-category-card__shade {
  background: linear-gradient(180deg, rgba(35,20,29,.03) 12%, rgba(35,20,29,.12) 46%, rgba(35,20,29,.86) 100%);
}
.home-category-card__tag {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius:15px;
  background: rgba(255,250,247,.88);
  color: #5f263e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .10em;
  backdrop-filter: blur(12px);
}
.home-category-card__content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 3px 14px;
}
.home-category-card__content small {
  grid-column: 1;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.4;
}
.home-category-card__content strong {
  grid-column: 1;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.home-category-card[data-area="a"] .home-category-card__content strong,
.home-category-card[data-area="d"] .home-category-card__content strong {
  font-size: clamp(18px, 1.55vw, 24px);
}
.home-category-card__content b {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius:50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(12px);
}

.daily-favorite { padding-top: 96px; }
.daily-favorite__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.daily-favorite__header h2 { margin: 8px 0 0; font-size: clamp(36px, 4.5vw, 60px); line-height: .95; letter-spacing: -.06em; }
.daily-favorite__trust { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.daily-favorite__trust span { min-height: 36px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius:15px; color: var(--muted); font-size: 11px; font-weight: 700; }
.daily-favorite__layout {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
  gap: 24px;
  padding: 24px;
  border-radius:15px;
  background: linear-gradient(145deg,#171219 0%,#211723 100%);
  box-shadow: 0 34px 90px rgba(18,12,18,.16);
}
.daily-favorite__visual { position: relative; min-height: 620px; }
.daily-favorite__main,
.daily-favorite__secondary { position: absolute; display: block; overflow: hidden; border-radius:15px; background: rgba(255,255,255,.06); }
.daily-favorite__main { inset: 0 100px 0 0; padding: 8px; }
.daily-favorite__secondary { right: 0; bottom: 24px; width: 42%; height: 46%; padding: 8px; transform: rotate(3deg); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.daily-favorite__main img,
.daily-favorite__secondary img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 24px 26px rgba(0,0,0,.28)); }
.daily-favorite__main > span { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 7px 11px; border-radius:15px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; }
.daily-favorite__info { align-self: center; padding: 28px; border: 1px solid rgba(255,255,255,.08); border-radius:15px; background: rgba(255,255,255,.045); color: #fff; }
.daily-favorite__label { display: inline-flex; min-height: 34px; padding: 0 13px; align-items: center; border-radius:15px; background: rgba(194,59,111,.18); color: #f0c7ad; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.daily-favorite__info h3 { margin: 18px 0 0; font-size: clamp(34px,4vw,52px); line-height: .98; letter-spacing: -.055em; }
.daily-favorite__info h3 a { color: #fff; }
.daily-favorite__info > p { margin: 18px 0 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.8; }
.daily-favorite__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.daily-favorite__meta > span { min-height: 34px; padding: 0 12px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.08); border-radius:15px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); font-size: 11px; }
.daily-favorite__stars { color: #f5c348 !important; letter-spacing: 1px; }
.daily-favorite__meta .is-stock { color: #8dde9e; }
.daily-favorite__price { display: flex; align-items: baseline; gap: 10px; margin-top: 24px; }
.daily-favorite__price del { color: rgba(255,255,255,.38); font-size: 15px; }
.daily-favorite__price strong { color: #fff; font-size: 30px; letter-spacing: -.04em; }
.daily-favorite__options { margin: 20px 0 0; padding: 0; border: 0; }
.daily-favorite__options legend { margin-bottom: 10px; color: rgba(255,255,255,.62); font-size: 12px; }
.daily-favorite__options > div { display: flex; flex-wrap: wrap; gap: 8px; }
.daily-favorite__options label { position: relative; cursor: pointer; }
.daily-favorite__options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.daily-favorite__options label span { min-height: 36px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.1); border-radius:15px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; }
.daily-favorite__options input:checked + span { background: #fff; color: var(--ink); }
.daily-favorite__actions { display: grid; grid-template-columns: 145px 1fr; gap: 10px; margin-top: 26px; }
.daily-favorite__quantity { display: grid; grid-template-columns: 42px 1fr 42px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius:15px; background: rgba(255,255,255,.04); }
.daily-favorite__quantity button,
.daily-favorite__quantity input { border: 0; background: transparent; color: #fff; }
.daily-favorite__quantity input { min-width: 0; text-align: center; font-weight: 800; -moz-appearance: textfield; }
.daily-favorite__quantity input::-webkit-outer-spin-button,
.daily-favorite__quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.daily-favorite__add { min-height: 48px; border: 0; border-radius:15px; background: linear-gradient(135deg,#c23b6f,#8e244f); color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 18px 34px rgba(194,59,111,.26); }
.daily-favorite__add:hover { transform: translateY(-2px); }
.daily-favorite__add:disabled { opacity: .6; cursor: wait; }
.daily-favorite__detail { display: inline-flex; gap: 10px; margin-top: 18px; color: #fff; font-size: 12px; font-weight: 700; }

.home-products { grid-template-columns: repeat(4,minmax(0,1fr)); }
.home-products__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding: 20px 22px; border-radius:15px; background: var(--ink); color: #fff; }
.home-products__footer > span { color: rgba(255,255,255,.68); font-size: 13px; }
.home-products__footer .home-outline-button { border: 0; background: #fff; color: var(--ink); }

.home-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 86px; }
.home-promo-card { position: relative; height: 420px; overflow: hidden; border-radius:15px; color: #fff; box-shadow: var(--shadow); }
.home-promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.home-promo-card:hover img { transform: scale(1.05); }
.home-promo-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 20%,rgba(13,9,13,.78) 100%); }
.home-promo-card__content { position: absolute; left: 32px; right: 32px; bottom: 32px; }
.home-promo-card__content small { display: block; margin-bottom: 12px; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.home-promo-card__content strong { display: block; font-size: clamp(32px,3.4vw,46px); line-height: 1; letter-spacing: -.05em; }
.home-promo-card__content b { display: inline-block; margin-top: 18px; font-size: 12px; }

.home-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding-top: 82px; }
.home-services article { display: flex; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius:15px; background: linear-gradient(145deg,#fff,#f7f3f5); box-shadow: var(--shadow-sm); }
.home-services i { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius:50%; background: var(--ink); color: #fff; font-size: 10px; font-style: normal; font-weight: 800; }
.home-services span { display: grid; gap: 5px; }
.home-services strong { font-size: 14px; }
.home-services small { color: var(--muted); font-size: 11px; line-height: 1.55; }

.home-manifesto { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: 38px; align-items: center; margin-top: 88px; padding: clamp(30px,5vw,58px); border-radius:15px; background: radial-gradient(circle at 100% 0,rgba(199,133,92,.24),transparent 30%),linear-gradient(145deg,#171219,#241926); color: #fff; box-shadow: 0 34px 90px rgba(18,12,18,.16); }
.home-manifesto .home-kicker { color: rgba(255,255,255,.5); }
.home-manifesto h2 { margin: 12px 0 0; color: #fff; font-size: clamp(38px,4.8vw,64px); line-height: .97; letter-spacing: -.06em; }
.home-manifesto__copy > p { max-width: 670px; margin: 22px 0 28px; color: rgba(255,255,255,.67); line-height: 1.85; }
.home-manifesto__copy .home-primary-button { background: #fff; color: var(--ink); }
.home-manifesto__values { display: grid; gap: 12px; }
.home-manifesto__values article { padding: 20px 22px; border: 1px solid rgba(255,255,255,.08); border-radius:15px; background: rgba(255,255,255,.05); }
.home-manifesto__values small { color: #e8b98f; font-weight: 800; }
.home-manifesto__values strong { display: block; margin-top: 8px; font-size: 20px; }
.home-manifesto__values p { margin: 6px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }


/* Homepage featured products: stable 1290px editorial grid */
.home-products-section {
  position: relative;
  padding: 64px clamp(16px, 2vw, 26px) 28px;
  margin-top: 86px;
  border: 1px solid rgba(83,46,61,.10);
  border-radius:15px;
  background:
    radial-gradient(circle at 95% 0%, rgba(199,133,92,.13), transparent 28%),
    linear-gradient(145deg, #fffdfb 0%, #f8eeeb 100%);
  box-shadow: 0 28px 74px rgba(63,31,46,.08);
}
.home-products-section.home-section { padding-top: 54px; }
.home-products-section .home-section__header { padding-inline: 4px; }
.home-products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px 18px !important;
  margin: 0 !important;
}
.home-products .product-card-luxe .item-cnt {
  padding: 5px 5px 15px;
  border-radius:15px;
  background: rgba(255,255,255,.94);
}
.home-products .product-card-luxe .product-image {
  aspect-ratio: 4 / 5;
  border-radius:15px;
  background: radial-gradient(circle at 50% 12%, #fff 0%, #f8efec 58%, #eadbd7 100%);
}
.home-products .product-card-luxe .product-image img {
  padding: 2px;
  transform: scale(1.09);
}
.home-products .product-card-luxe:hover .product-image img { transform: scale(1.14); }
.home-products .product-card__content { padding: 14px 7px 0; }
.home-products__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 22px;
  border-radius:15px;
  background: linear-gradient(135deg, #4a2033 0%, #7a294d 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(91,35,63,.16);
}
.home-products__footer > span { color: rgba(255,255,255,.76); font-size: 13px; }
.home-products__footer .home-outline-button { border: 0; background: #fffaf7; color: #4a2033; }

@media (max-width: 1080px) {
  .body-home .page { width: min(1290px, calc(100% - 24px)); }
  .home-hero__content { width: 68%; }
  .home-hero__panel { display: none; }
  .home-category-grid { grid-template-columns: repeat(3,1fr); }
  .daily-favorite__layout { grid-template-columns: 1fr; }
  .daily-favorite__visual { min-height: 560px; }
  .home-products { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .home-services { grid-template-columns: repeat(2,1fr); }
  .home-manifesto { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .home-hero { min-height: 540px; border-radius:0 0 15px 15px; }
  .home-hero__shade { background: linear-gradient(0deg,rgba(16,10,15,.88) 0%,rgba(16,10,15,.3) 62%,rgba(16,10,15,.08) 100%); }
  .home-hero__content { left: 22px; right: 22px; bottom: 30px; top: auto; width: auto; transform: none; }
  .home-hero h1 { font-size: 42px; }
  .home-hero p { font-size: 14px; }
  .home-section { padding-top: 62px; }
  .home-section__header,
  .daily-favorite__header { align-items: flex-start; flex-direction: column; }
  .home-section__header > p { max-width: none; }
  .home-category-grid { display: flex; gap: 13px; overflow-x: auto; margin-right: -12px; padding-right: 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-category-grid::-webkit-scrollbar { display: none; }
  .home-category-card { flex: 0 0 70%; scroll-snap-align: start; }
  .daily-favorite { padding-top: 68px; }
  .daily-favorite__layout { padding: 14px; border-radius:15px; }
  .daily-favorite__visual { min-height: 430px; }
  .daily-favorite__main { inset: 0 50px 0 0; border-radius:15px; }
  .daily-favorite__secondary { width: 42%; height: 40%; border-radius:15px; }
  .daily-favorite__info { padding: 20px; border-radius:15px; }
  .daily-favorite__info h3 { font-size: 34px; }
  .daily-favorite__actions { grid-template-columns: 1fr; }
  .home-products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-products__footer { align-items: flex-start; flex-direction: column; }
  .home-products__footer .home-outline-button { width: 100%; }
  .home-promo-grid { grid-template-columns: 1fr; padding-top: 64px; }
  .home-promo-card { height: 340px; border-radius:15px; }
  .home-services { grid-template-columns: 1fr; padding-top: 62px; }
  .home-manifesto { margin-top: 64px; padding: 26px 20px; border-radius:15px; }
  .home-manifesto h2 { font-size: 38px; }
}


@media (max-width: 1080px) {
  .home-category-grid.home-category-bento {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: repeat(3, minmax(250px,1fr));
    grid-template-areas: "a b" "c d" "e f";
  }
  .home-products { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}
@media (max-width: 720px) {
  .home-category-grid.home-category-bento {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-right: -12px;
    padding-right: 12px;
    scroll-snap-type: x mandatory;
  }
  .home-category-grid.home-category-bento .home-category-card {
    flex: 0 0 78%;
    min-height: 390px;
    scroll-snap-align: start;
  }
  .home-category-grid.home-category-bento .home-category-card.has-custom-cover .home-category-card__image {
    background-size: cover !important;
    background-position: center center !important;
  }
  .home-products-section { margin-top: 62px; padding: 42px 10px 18px; border-radius:15px; }
  .home-products { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 14px 10px !important; }
}

/* ==========================================================================\n   Homepage latest articles — footer üstü rehber vitrini\n   ========================================================================== */
.home-latest-articles {
  position: relative;
  margin-top: 92px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(91, 43, 62, .10);
  border-radius:15px;
  background:
    radial-gradient(circle at 96% 2%, rgba(202, 139, 102, .16), transparent 27%),
    radial-gradient(circle at 3% 96%, rgba(178, 65, 105, .10), transparent 26%),
    linear-gradient(145deg, #fffdfb 0%, #f8efec 100%);
  box-shadow: 0 30px 80px rgba(62, 29, 43, .08);
}
.home-latest-articles::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 42px;
  width: 106px;
  height: 106px;
  border-top: 1px solid rgba(177, 58, 99, .22);
  border-right: 1px solid rgba(177, 58, 99, .22);
  border-top-right-radius: 28px;
  pointer-events: none;
}
.home-latest-articles__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.home-latest-articles__header .home-kicker {
  margin-bottom: 11px;
  color: #b43a67;
}
.home-latest-articles__header h2 {
  margin: 0;
  color: #241820;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.058em;
}
.home-latest-articles__header > p {
  max-width: 470px;
  margin: 0;
  color: #76676f;
  font-size: 14px;
  line-height: 1.8;
}
.home-latest-articles__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.home-article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(75, 36, 53, .09);
  border-radius:15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(67, 31, 47, .07);
  transform: translateZ(0);
  transition:
    transform .42s cubic-bezier(.2, .75, .25, 1),
    border-color .3s ease,
    box-shadow .42s ease;
}
.home-article-card:hover {
  z-index: 2;
  border-color: rgba(180, 58, 103, .22);
  box-shadow: 0 28px 62px rgba(67, 31, 47, .14);
  transform: translateY(-8px);
}
.home-article-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: #eadbd7;
}
.home-article-card__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  width: 76px;
  height: 43px;
  border-bottom-left-radius: 25px;
  background: #fff;
  box-shadow: -8px 8px 18px rgba(50, 24, 35, .04);
  pointer-events: none;
}
.home-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .65s cubic-bezier(.2, .75, .25, 1), filter .4s ease;
}
.home-article-card:hover .home-article-card__media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.075);
}
.home-article-card__number {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 13px;
  display: grid;
  width: 42px;
  height: 24px;
  place-items: center;
  color: #8a5065;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.home-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.home-article-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #95878e;
  font-size: 11px;
  font-weight: 700;
}
.home-article-card__meta > span {
  color: #a83761;
}
.home-article-card__meta i {
  color: #c9bfc3;
  font-style: normal;
}
.home-article-card h3 {
  margin: 15px 0 0;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 650;
  line-height: 1.17;
  letter-spacing: -.036em;
}
.home-article-card h3 a {
  color: #241820;
  text-decoration: none;
  transition: color .22s ease;
}
.home-article-card:hover h3 a {
  color: #aa315f;
}
.home-article-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 0;
  color: #776a71;
  font-size: 12px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home-article-card__footer {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: auto;
  padding-top: 22px;
}
.home-article-card__details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #95888e;
  font-size: 11px;
  font-weight: 650;
}
.home-article-card__details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.home-article-card__details b {
  color: #b33b67;
  font-size: 14px;
  font-weight: 500;
}
.home-article-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius:15px;
  background: linear-gradient(135deg, #fff0eb 0%, #f5ddd8 100%);
  color: #8d294f;
  font-size: 12px;
  font-weight: 850;
  box-sizing: border-box;
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}
.home-article-card__button:hover {
  background: linear-gradient(135deg, #4b2033 0%, #792a4d 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(99, 36, 63, .18);
  transform: translateY(-2px);
  text-decoration: none;
}
.home-article-card__button span {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .home-latest-articles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .home-latest-articles {
    margin-top: 64px;
    padding: 26px 16px 18px;
    border-radius:15px;
  }
  .home-latest-articles::before { display: none; }
  .home-latest-articles__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
  .home-latest-articles__header h2 { font-size: 38px; }
  .home-latest-articles__header > p { max-width: none; }
  .home-latest-articles__grid { grid-template-columns: 1fr; gap: 16px; }
  .home-article-card { border-radius:15px; }
  .home-article-card__media { aspect-ratio: 16 / 9.5; }
  .home-article-card__body { padding: 20px; }
  .home-article-card h3 { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-article-card,
  .home-article-card__media img,
  .home-article-card__button { transition: none !important; }
  .home-article-card:hover,
  .home-article-card:hover .home-article-card__media img,
  .home-article-card__button:hover { transform: none !important; }
}


/* Footer üstü yönetilebilir dört görsel */
.home-footer-promos{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:clamp(52px,7vw,90px) 0 0}.home-footer-promo{position:relative;min-width:0;aspect-ratio:1/1;display:block;overflow:hidden;border-radius:15px;background:#f4eef1;box-shadow:0 16px 42px rgba(44,24,35,.08)}.home-footer-promo img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}.home-footer-promo:hover img{transform:scale(1.025)}.home-footer-promo>span{position:absolute;left:12px;right:12px;bottom:12px;padding:12px 14px;display:grid;gap:2px;border:1px solid rgba(255,255,255,.55);border-radius:14px;background:rgba(255,255,255,.87);backdrop-filter:blur(14px);color:#261922}.home-footer-promo strong{font-size:12px}.home-footer-promo small{color:#786a72;font-size:9px}.home-kicker{font-size:10px!important;letter-spacing:.16em!important}.home-section__header>p{font-size:13px;line-height:1.65}.home-daily-favorite h2,.home-products-section h2,.home-categories h2{font-size:clamp(27px,3vw,40px)!important}
@media(max-width:900px){.home-footer-promos{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.home-footer-promos{gap:10px}.home-footer-promo{border-radius:15px}.home-footer-promo>span{left:8px;right:8px;bottom:8px;padding:9px}.home-footer-promo strong{font-size:10px}.home-footer-promo small{display:none}.home-section__header h2,.home-daily-favorite h2,.home-products-section h2,.home-categories h2{font-size:28px!important}}

/* NoktaShop homepage refinements v2.5.12 */
.home-categories .home-section__header,
.home-products-section .home-section__header,
.home-latest-articles__header{
  align-items:flex-end;
  gap:24px;
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(83,46,61,.09);
}
.home-categories .home-section__header h2,
.home-products-section .home-section__header h2,
.home-latest-articles__header h2{
  margin:6px 0 0!important;
  font-size:clamp(27px,2.8vw,38px)!important;
  font-weight:620!important;
  line-height:1.05!important;
  letter-spacing:-.04em!important;
}
.home-categories .home-kicker,
.home-products-section .home-kicker,
.home-latest-articles .home-kicker{
  font-size:9px!important;
  font-weight:700!important;
  letter-spacing:.15em!important;
}
.home-products-section{padding-top:44px!important}
.home-latest-articles{
  padding:clamp(24px,3vw,38px);
  border-radius:15px;
}
.home-latest-articles::before{display:none}
.home-latest-articles__header>p,
.home-products-section .home-section__header>p{
  max-width:430px;
  font-size:12px;
  line-height:1.65;
}

.home-footer-promos{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin:clamp(46px,6vw,72px) 0 0;
}
.home-footer-promo{
  aspect-ratio:auto;
  display:grid;
  grid-template-rows:auto auto;
  align-content:start;
  overflow:hidden;
  padding:8px;
  border:1px solid rgba(72,42,56,.10);
  border-radius:15px;
  background:#fff;
  box-shadow:0 12px 34px rgba(44,24,35,.055);
}
.home-footer-promo img{
  width:100%;
  height:auto;
  aspect-ratio:5/4;
  padding:0;
  object-fit:contain;
  object-position:center;
  border-radius:14px;
  background:#f8f4f5;
  transform:none!important;
  transition:opacity .25s ease;
}
.home-footer-promo:hover img{transform:none!important;opacity:.96}
.home-footer-promo>span{
  position:static;
  left:auto;
  right:auto;
  bottom:auto;
  min-width:0;
  margin:7px 2px 0;
  padding:6px 6px 8px;
  border:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
}
.home-footer-promo strong{
  overflow:hidden;
  color:#2a1d24;
  font-size:12px;
  font-weight:650;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.home-footer-promo small{
  overflow:hidden;
  color:#82747b;
  font-size:10px;
  line-height:1.4;
  text-overflow:ellipsis;
  white-space:nowrap;
}

@media(max-width:900px){
  .home-footer-promos{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
}
@media(max-width:720px){
  .home-categories .home-section__header,
  .home-products-section .home-section__header,
  .home-latest-articles__header{align-items:flex-start;gap:10px;margin-bottom:18px;padding-bottom:14px}
  .home-categories .home-section__header h2,
  .home-products-section .home-section__header h2,
  .home-latest-articles__header h2{font-size:28px!important}
  .home-latest-articles{padding:20px 14px;border-radius:15px}
}
@media(max-width:520px){
  .home-footer-promos{gap:10px}
  .home-footer-promo{padding:6px;border-radius:15px}
  .home-footer-promo img{border-radius:11px}
  .home-footer-promo>span{margin-top:4px;padding:5px 4px 6px}
  .home-footer-promo strong{font-size:10.5px}
  .home-footer-promo small{display:block;font-size:8.5px}
}

/* NoktaShop gift concept + homepage media v2.5.13 */
.home-hero-slider{position:relative;min-height:clamp(560px,56vw,720px);overflow:hidden;background:#f6eef1}
.home-hero-slider__track,.home-hero-slide{position:absolute;inset:0}
.home-hero-slide{opacity:0;visibility:hidden;transition:opacity .55s ease,visibility .55s ease}
.home-hero-slide.is-active{opacity:1;visibility:visible;z-index:1}
.home-hero-slide .home-hero__media img{object-fit:cover;object-position:center}
.home-hero-slider .home-hero__shade{background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.82) 36%,rgba(255,255,255,.28) 64%,rgba(255,255,255,.05) 100%)}
.home-hero-slider .home-hero__content{z-index:3;color:#241820;max-width:680px;width:54%}
.home-hero-slider .home-hero .home-kicker,.home-hero-slider .home-kicker{color:#a12659}
.home-hero-slider h1,.home-hero-slider h2{margin:10px 0 0;color:#241820;font-size:clamp(42px,5.3vw,76px);font-weight:620;line-height:.96;letter-spacing:-.055em}
.home-hero-slider p{color:#695a63;max-width:610px}
.home-hero-slider .home-primary-button{background:#241820;color:#fff}
.home-hero-slider .home-hero__link{color:#241820;border-color:rgba(36,24,32,.35)}
.home-hero-slider__controls{position:absolute;z-index:5;left:clamp(24px,5vw,76px);bottom:28px;display:flex;align-items:center;gap:12px}
.home-hero-slider__controls>button{width:38px;height:38px;border:1px solid rgba(52,30,42,.12);border-radius:50%;background:rgba(255,255,255,.88);color:#2b1a23;font-size:24px;line-height:1;box-shadow:0 10px 30px rgba(58,29,44,.09);cursor:pointer}
.home-hero-slider__dots{display:flex;gap:7px;padding:0 4px}.home-hero-slider__dots button{width:7px;height:7px;padding:0;border:0;border-radius:15px;background:rgba(43,26,35,.23);transition:width .25s ease,background .25s ease}.home-hero-slider__dots button.is-active{width:24px;background:#a12659}

.home-promo-grid--gift{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;padding-top:64px}
.home-gift-promo{display:block;overflow:hidden;border:1px solid rgba(83,46,61,.09);border-radius:15px;background:#fff;box-shadow:0 16px 46px rgba(52,28,40,.07);transition:transform .3s ease,box-shadow .3s ease}
.home-gift-promo:hover{transform:translateY(-4px);box-shadow:0 24px 60px rgba(52,28,40,.11)}
.home-gift-promo img{display:block;width:100%;height:auto;aspect-ratio:1.58/1;object-fit:cover}

.home-social-videos,.home-customer-reviews{margin-top:clamp(62px,7vw,94px);padding:clamp(26px,3.5vw,42px);border:1px solid rgba(83,46,61,.09);border-radius:15px;background:#fff;box-shadow:0 20px 62px rgba(57,30,43,.06)}
.home-social-videos__header,.home-customer-reviews__header{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:24px;padding-bottom:18px;border-bottom:1px solid rgba(83,46,61,.08)}
.home-social-videos__header h2,.home-customer-reviews__header h2{margin:6px 0 0;font-size:clamp(28px,3.2vw,42px);font-weight:620;line-height:1.02;letter-spacing:-.045em}
.home-social-videos__header>p{max-width:430px;margin:0;color:#786b72;font-size:12px;line-height:1.65}
.home-customer-reviews__aside{max-width:460px;display:flex;align-items:flex-end;justify-content:flex-end;gap:18px}
.home-customer-reviews__aside>p{max-width:340px;margin:0;color:#786b72;font-size:12px;line-height:1.65;text-align:right}
.home-customer-reviews__controls{display:flex;flex:0 0 auto;gap:9px}
.home-customer-reviews__controls button{width:42px;height:42px;padding:0;display:grid;place-items:center;border:1px solid rgba(99,56,75,.12);border-radius:50%;background:linear-gradient(145deg,#fff,#f8f3f5);color:#432c37;box-shadow:0 10px 24px rgba(62,34,47,.08),inset 0 1px 0 rgba(255,255,255,.96);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,color .18s ease,opacity .18s ease}
.home-customer-reviews__controls button:hover:not(:disabled){transform:translateY(-2px);color:#a52d5b;box-shadow:0 14px 28px rgba(62,34,47,.11),inset 0 1px 0 rgba(255,255,255,.98)}
.home-customer-reviews__controls button:active:not(:disabled){transform:translateY(0);box-shadow:0 5px 13px rgba(62,34,47,.08),inset 0 2px 5px rgba(82,46,63,.07)}
.home-customer-reviews__controls button:disabled{opacity:.34;cursor:default}
.home-customer-reviews__controls svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.home-customer-reviews.is-static .home-customer-reviews__controls{visibility:hidden}
.home-social-videos__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.home-social-video-card{min-width:0}.home-social-video-card__frame{position:relative;overflow:hidden;aspect-ratio:9/16;border-radius:15px;background:#171219;box-shadow:0 14px 34px rgba(25,15,20,.12)}
.home-social-video-card iframe{position:absolute;inset:0;width:100%;height:100%;border:0;background:#171219}
.home-social-video-card>strong{display:block;margin:10px 4px 0;overflow:hidden;color:#2b1d25;font-size:12px;font-weight:650;text-overflow:ellipsis;white-space:nowrap}

.home-customer-reviews{background:linear-gradient(145deg,#fff 0%,#fff8fb 100%)}
.home-customer-reviews__track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(285px,1fr);gap:16px;overflow-x:auto;overflow-y:hidden;padding:2px 2px 8px;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none;overscroll-behavior-x:contain;-webkit-overflow-scrolling:touch;outline:none}
.home-customer-reviews__track::-webkit-scrollbar{display:none;width:0;height:0}
.home-customer-reviews__track:focus-visible{border-radius:15px;box-shadow:0 0 0 3px rgba(165,45,91,.10)}
.home-review-card{scroll-snap-align:start;min-height:245px;display:flex;flex-direction:column;padding:24px;border:1px solid rgba(108,54,80,.10);border-radius:15px;background:#fff;box-shadow:0 12px 34px rgba(56,30,42,.055)}
.home-review-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.home-review-card__stars{color:#d8942c;font-size:15px;letter-spacing:1px}.home-review-card__quote{color:#ead3dd;font:700 52px/1 Georgia,serif}
.home-review-card>p{margin:12px 0 24px;color:#675a61;font-size:13px;line-height:1.8}.home-review-card footer{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between;gap:16px;padding-top:16px;border-top:1px solid rgba(83,46,61,.08)}
.home-review-card footer>div{display:grid;gap:3px}.home-review-card footer strong{font-size:13px}.home-review-card footer small{color:#8d7d85;font-size:10px}.home-review-card footer a{max-width:140px;color:#8d2852;font-size:10px;font-weight:700;text-align:right}

@media(max-width:980px){.home-social-videos__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-hero-slider .home-hero__content{width:62%}.home-promo-grid--gift{grid-template-columns:1fr 1fr}.home-gift-promo:last-child{grid-column:1/-1;max-width:620px;width:100%;justify-self:center}}
@media(max-width:720px){.home-hero-slider{min-height:620px}.home-hero-slider .home-hero__shade{background:linear-gradient(0deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.90) 42%,rgba(255,255,255,.18) 78%,rgba(255,255,255,.05) 100%)}.home-hero-slider .home-hero__content{left:20px;right:20px;bottom:92px;top:auto;width:auto;max-width:none;transform:none}.home-hero-slider h1,.home-hero-slider h2{font-size:42px}.home-hero-slider__controls{left:20px;bottom:26px}.home-promo-grid--gift{grid-template-columns:1fr;gap:14px;padding-top:46px}.home-gift-promo:last-child{grid-column:auto;max-width:none}.home-social-videos,.home-customer-reviews{padding:20px 14px;border-radius:15px}.home-social-videos__header,.home-customer-reviews__header{align-items:flex-start;flex-direction:column;gap:8px}.home-customer-reviews__aside{width:100%;max-width:none;align-items:center;justify-content:space-between}.home-customer-reviews__aside>p{max-width:calc(100% - 106px);text-align:left}.home-customer-reviews__controls button{width:40px;height:40px}.home-social-videos__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.home-social-video-card__frame{border-radius:15px}.home-customer-reviews__track{grid-auto-columns:minmax(82vw,1fr)}}
@media(max-width:480px){.home-social-videos__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.home-social-video-card>strong{font-size:10px}.home-hero-slider h1,.home-hero-slider h2{font-size:36px}}

/* Nokta Hediye premium hero + minimal section labels v2.7.1 */
.home-hero-premium{
  min-height:clamp(590px,52vw,700px);
  border:1px solid rgba(78,47,58,.10);
  border-radius:15px;
  background:#eee5df;
  box-shadow:0 28px 82px rgba(56,34,42,.10);
}
.home-hero-premium .home-hero-slide{
  isolation:isolate;
  opacity:0;
  visibility:hidden;
  transform:scale(1.012);
  transition:opacity .75s ease,visibility .75s ease,transform 1.1s cubic-bezier(.2,.75,.25,1);
}
.home-hero-premium .home-hero-slide.is-active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:1;
}
.home-hero-premium .home-hero__media img{
  object-fit:cover;
  object-position:center;
  transform:scale(1.005);
  transition:transform 8s cubic-bezier(.2,.7,.2,1);
}
.home-hero-premium .home-hero-slide.is-active .home-hero__media img{transform:scale(1.035)}
.home-hero-premium .home-hero__shade{
  background:
    linear-gradient(90deg,rgba(251,247,242,.97) 0%,rgba(251,247,242,.90) 28%,rgba(251,247,242,.60) 46%,rgba(251,247,242,.14) 66%,rgba(251,247,242,0) 82%),
    linear-gradient(0deg,rgba(47,25,34,.08),rgba(47,25,34,0) 34%);
}
.home-hero-premium .home-hero__content{
  left:clamp(30px,5.2vw,70px);
  top:50%;
  width:min(610px,46%);
  max-width:610px;
  color:#24171c;
  transform:translateY(-50%);
}
.home-hero__meta{display:flex;align-items:center;gap:11px;margin-bottom:17px}
.home-hero__index{font-size:10px;font-weight:700;letter-spacing:.14em;color:#8b2849}
.home-hero__rule{width:38px;height:1px;background:rgba(139,40,73,.36)}
.home-hero-premium .home-kicker{
  color:#78656c!important;
  font-size:9px!important;
  font-weight:700!important;
  letter-spacing:.17em!important;
}
.home-hero-premium h1,
.home-hero-premium h2{
  max-width:590px;
  margin:0;
  color:#26181e;
  font-family:"Barlow",Arial,sans-serif;
  font-size:clamp(46px,5.15vw,72px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-.048em;
  text-wrap:balance;
}
.home-hero-premium p{
  max-width:520px;
  margin:22px 0 0;
  color:#6c5b62;
  font-size:15px;
  line-height:1.72;
}
.home-hero-premium .home-hero__actions{gap:18px;margin-top:28px}
.home-hero-premium .home-primary-button{
  min-height:48px;
  padding:0 20px;
  border:1px solid #291920;
  border-radius:15px;
  background:#291920!important;
  color:#fff!important;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  box-shadow:0 12px 30px rgba(41,25,32,.14);
}
.home-hero-premium .home-primary-button:hover{transform:translateY(-2px);background:#8b2849!important;border-color:#8b2849}
.home-hero-premium .home-hero__link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:44px;
  border:0;
  color:#3d2d34;
  font-size:11px;
  font-weight:650;
}
.home-hero-premium .home-hero__link:hover{color:#8b2849}
.home-hero__signature{display:flex;align-items:center;gap:9px;margin-top:30px;color:#8c7b82;font-size:9px;letter-spacing:.11em;text-transform:uppercase}
.home-hero__signature span{font-weight:700;color:#4f3c44}
.home-hero__signature small{font-size:9px}
.home-hero-slider__rail{
  position:absolute;
  z-index:5;
  right:clamp(26px,4vw,52px);
  bottom:34px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#6a555e;
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
}
.home-hero-slider__rail i{display:block;width:58px;height:1px;background:rgba(84,56,68,.24)}
.home-hero-premium .home-hero-slider__controls{
  left:clamp(30px,5.2vw,70px);
  bottom:30px;
  gap:9px;
}
.home-hero-premium .home-hero-slider__controls>button{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border:1px solid rgba(72,46,57,.14);
  border-radius:50%;
  background:rgba(255,252,249,.82);
  color:#342128;
  font-size:16px;
  box-shadow:none;
  backdrop-filter:blur(12px);
  transition:background .25s ease,color .25s ease,transform .25s ease,border-color .25s ease;
}
.home-hero-premium .home-hero-slider__controls>button:hover{transform:translateY(-1px);border-color:#8b2849;background:#8b2849;color:#fff}
.home-hero-premium .home-hero-slider__dots{gap:5px;padding:0 3px}
.home-hero-premium .home-hero-slider__dots button{width:18px;height:2px;border-radius:2px;background:rgba(69,42,53,.20)}
.home-hero-premium .home-hero-slider__dots button.is-active{width:34px;background:#8b2849}

/* Semantic h2 headings rendered as compact premium label-buttons. */
#home-categories-title,
#home-products-title,
#home-latest-articles-title,
#daily-favorite-title{
  display:inline-flex!important;
  align-items:center;
  min-height:44px;
  width:auto;
  margin:8px 0 0!important;
  padding:0 18px!important;
  border:1px solid rgba(126,42,75,.18);
  border-radius:15px;
  background:rgba(255,255,255,.96);
  color:#2f2026;
  box-shadow:0 9px 24px rgba(47,28,36,.055);
  font-family:"Barlow","Segoe UI",Arial,Helvetica,sans-serif!important;
  font-size:16px!important;
  font-weight:700!important;
  line-height:1.15!important;
  letter-spacing:-.012em!important;
}
#home-categories-title::before,
#home-products-title::before,
#home-latest-articles-title::before,
#daily-favorite-title::before{
  content:"";
  width:7px;
  height:7px;
  margin-right:10px;
  border-radius:50%;
  background:#9f3158;
  box-shadow:0 0 0 4px rgba(159,49,88,.08);
}

@media(max-width:900px){
  .home-hero-premium{min-height:620px}
  .home-hero-premium .home-hero__content{width:56%}
  .home-hero-premium h1,.home-hero-premium h2{font-size:clamp(42px,6.6vw,62px)}
}
@media(max-width:720px){
  .home-hero-premium{min-height:660px;border-radius:15px}
  .home-hero-premium .home-hero__media{height:52%;bottom:auto}
  .home-hero-premium .home-hero__media img{object-position:67% center}
  .home-hero-premium .home-hero__shade{
    background:linear-gradient(0deg,#fbf7f2 0%,#fbf7f2 46%,rgba(251,247,242,.88) 58%,rgba(251,247,242,.10) 82%);
  }
  .home-hero-premium .home-hero__content{
    left:22px;
    right:22px;
    top:auto;
    bottom:94px;
    width:auto;
    max-width:none;
    transform:none;
  }
  .home-hero-premium h1,.home-hero-premium h2{max-width:520px;font-size:clamp(38px,10vw,49px)}
  .home-hero-premium p{margin-top:15px;font-size:14px;line-height:1.6}
  .home-hero__signature{display:none}
  .home-hero-premium .home-hero-slider__controls{left:22px;bottom:26px}
  .home-hero-slider__rail{right:22px;bottom:39px}
  #home-categories-title,#home-products-title,#home-latest-articles-title,#daily-favorite-title{min-height:40px;padding:0 15px!important;font-size:14px!important}
}
@media(max-width:480px){
  .home-hero-premium{min-height:640px}
  .home-hero-premium .home-hero__media{height:47%}
  .home-hero-premium .home-hero__content{bottom:88px}
  .home-hero__meta{margin-bottom:13px}
  .home-hero-premium h1,.home-hero-premium h2{font-size:37px}
  .home-hero-premium .home-primary-button{width:100%;justify-content:center;text-align:center}
  .home-hero-premium .home-hero__actions{gap:9px;margin-top:20px}
  .home-hero-premium .home-hero__link{min-height:36px}
  .home-hero-slider__rail{display:none}
}
@media(prefers-reduced-motion:reduce){
  .home-hero-premium .home-hero-slide,
  .home-hero-premium .home-hero__media img,
  .home-hero-premium .home-primary-button,
  .home-hero-premium .home-hero-slider__controls>button{transition:none!important;transform:none!important}
}

/* NoktaShop v2.7.6 — mobile editorial refinements */
@media (max-width: 720px) {
  /* Give the two-column product grid more of the viewport. */
  .body-home .page {
    width: calc(100% - 10px);
  }
  .home-products-section {
    margin-inline: -1px;
    padding: 34px 3px 14px;
    border-radius:15px;
  }
  .home-products {
    gap: 10px 5px !important;
  }
  .home-products .product-card-luxe .item-cnt {
    padding: 2px 2px 10px;
    border-radius:15px;
  }
  .home-products .product-card-luxe .product-image {
    width: 100%;
    aspect-ratio: 650 / 900;
    border-radius:13px;
    background: #fff;
  }
  .home-products .product-card-luxe .product-image img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
  .home-products .product-card__content {
    padding: 9px 3px 0;
  }

  /* Articles become a compact swipe rail like customer reviews. */
  .home-latest-articles {
    margin-top: 56px;
    padding: 20px 0 16px;
    overflow: visible;
    border: 0;
    border-radius:0;
    background: transparent;
    box-shadow: none;
  }
  .home-latest-articles__header {
    gap: 8px;
    margin: 0 0 14px;
    padding: 0 2px;
  }
  .home-latest-articles__header > p {
    display: none;
  }
  .home-latest-articles__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78vw, 1fr);
    grid-template-columns: none;
    gap: 10px;
    margin-right: -5px;
    padding: 1px 5px 10px 1px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-latest-articles__grid::-webkit-scrollbar {
    display: none;
  }
  .home-article-card {
    display: grid;
    grid-template-columns: 104px minmax(0,1fr);
    min-height: 136px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    border-radius:15px;
    box-shadow: 0 10px 26px rgba(67,31,47,.06);
  }
  .home-article-card__media {
    height: 100%;
    min-height: 136px;
    aspect-ratio: auto;
    border-radius:0;
  }
  .home-article-card__media::after,
  .home-article-card__number {
    display: none;
  }
  .home-article-card__media img {
    transform: none;
    object-fit: cover;
  }
  .home-article-card__body {
    min-width: 0;
    padding: 13px 13px 12px;
  }
  .home-article-card__meta {
    gap: 5px;
    font-size: 9px;
    line-height: 1.3;
  }
  .home-article-card__meta > span,
  .home-article-card__meta i {
    display: none;
  }
  .home-article-card h3 {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -.025em;
  }
  .home-article-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .home-article-card__body > p,
  .home-article-card__details {
    display: none;
  }
  .home-article-card__footer {
    margin-top: auto;
    padding-top: 10px;
  }
  .home-article-card__button {
    width: auto;
    min-height: 32px;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    border-radius:0;
    background: transparent;
    color: #8d294f;
    font-size: 10px;
    box-shadow: none;
  }
  .home-article-card__button span {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .home-latest-articles__grid {
    grid-auto-columns: minmax(84vw, 1fr);
  }
  .home-article-card {
    grid-template-columns: 92px minmax(0,1fr);
    min-height: 126px;
  }
  .home-article-card__media {
    min-height: 126px;
  }
}
/* NoktaShop v2.7.7 — Günün seçimi: önceki tasarım korunur, görsel yalnızca kendi alanına orantılı sığar. */
.daily-favorite__main img,
.daily-favorite__secondary img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}


/* NoktaShop v2.7.8 — Günün seçimi görseli: mevcut alanı büyütmeden 650x900 görsel ile tamamen doldurur. */
.daily-favorite__main {
  padding: 0;
}
.daily-favorite__main img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

/* NoktaShop V2.10.0 — compact mobile manifesto + editorial customer reviews */
.home-review-card{
  position:relative;
  min-height:258px;
  padding:25px 24px 22px;
  overflow:hidden;
  border:1px solid rgba(79,50,64,.09);
  border-radius:15px;
  background:linear-gradient(150deg,#fff 0%,#fff 72%,#fbf6f8 100%);
  box-shadow:0 16px 38px rgba(51,29,40,.055),inset 0 1px 0 rgba(255,255,255,.96);
}
.home-review-card:before{content:"";position:absolute;left:0;top:0;width:4px;height:100%;background:linear-gradient(180deg,#b23568,#e1a036);opacity:.9}
.home-review-card__identity{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.home-review-card__identity>div{min-width:0;display:grid;gap:4px}
.home-review-card__identity strong{color:#32242b;font-size:24px;font-weight:520;line-height:1.06;letter-spacing:-.035em}
.home-review-card__identity small{color:#756970;font-size:11.5px;line-height:1.35}
.home-review-card__quote{position:absolute;right:20px;top:12px;color:#f1dfe7;font:700 64px/1 Georgia,serif;pointer-events:none}
.home-review-card__stars{position:relative;z-index:1;display:block;margin-top:12px;color:#f19a00;font-size:18px;letter-spacing:1px}
.home-review-card>p{position:relative;z-index:1;margin:19px 0 22px;color:#665a61;font-size:12.5px;line-height:1.78}
.home-review-card footer{position:relative;z-index:1;margin-top:auto;padding-top:14px;border-top:1px solid rgba(83,46,61,.07)}
.home-review-card footer a,.home-review-card footer>span{display:inline-flex;align-items:center;gap:6px;color:#8f3158;font-size:10px;font-weight:740}
.home-customer-reviews__track{grid-auto-columns:minmax(285px,calc((100% - 48px)/4))}
@media(max-width:720px){
  .home-manifesto__values{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .home-manifesto__values article{padding:14px;border-radius:15px}
  .home-manifesto__values article:nth-child(3){grid-column:1/-1}
  .home-manifesto__values strong{margin-top:5px;font-size:15px}
  .home-manifesto__values p{font-size:9.5px;line-height:1.5}
  .home-review-card{min-height:235px;padding:21px 19px 18px;border-radius:15px}
  .home-review-card__identity strong{font-size:21px}
  .home-review-card__identity small{font-size:10.5px}
  .home-review-card__stars{margin-top:10px;font-size:16px}
  .home-review-card>p{margin:16px 0 18px;font-size:12px;line-height:1.68}
  .home-customer-reviews__track{grid-auto-columns:minmax(82vw,1fr)}
}


/* NoktaShop V2.10.3 — homepage advantages stay visible; compact 2x2 on mobile */
@media(max-width:720px){
  .home-services{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
    padding-top:52px;
  }
  .home-services article{
    min-width:0;
    min-height:126px;
    padding:16px 14px;
    display:grid;
    grid-template-columns:34px minmax(0,1fr);
    align-content:center;
    align-items:start;
    gap:10px;
    border-radius:15px;
  }
  .home-services i{
    width:34px;
    height:34px;
    flex-basis:34px;
    font-size:9px;
  }
  .home-services span{min-width:0;gap:4px}
  .home-services strong{font-size:12px;line-height:1.25}
  .home-services small{font-size:9.5px;line-height:1.45}
}
@media(max-width:390px){
  .home-services{gap:9px !important}
  .home-services article{min-height:118px;padding:14px 11px;grid-template-columns:30px minmax(0,1fr);gap:8px;border-radius:15px}
  .home-services i{width:30px;height:30px;flex-basis:30px;font-size:8px}
  .home-services strong{font-size:11px}
  .home-services small{font-size:8.8px}
}

/* NoktaShop V2.10.4 — compact premium 2x2 advantage cards on mobile */
@media(max-width:720px){
  .home-services{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:9px !important;
    padding-top:38px;
  }
  .home-services article{
    position:relative;
    min-width:0;
    min-height:88px;
    padding:12px 12px 11px;
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    grid-template-rows:auto auto;
    column-gap:9px;
    row-gap:3px;
    align-content:center;
    align-items:center;
    overflow:hidden;
    border-radius:15px;
    border-color:rgba(76,45,59,.11);
    background:
      radial-gradient(circle at 100% 0%,rgba(165,45,91,.055),transparent 42%),
      linear-gradient(145deg,#fff 0%,#faf7f8 100%);
    box-shadow:0 8px 20px rgba(48,29,39,.045),inset 0 1px 0 rgba(255,255,255,.95);
  }
  .home-services article::after{
    content:"";
    position:absolute;
    right:-14px;
    bottom:-18px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(165,45,91,.035);
    pointer-events:none;
  }
  .home-services i{
    grid-row:1/3;
    align-self:center;
    width:26px;
    height:26px;
    flex-basis:26px;
    border-radius:9px;
    background:linear-gradient(145deg,#35212c,#1d1118);
    box-shadow:0 5px 12px rgba(32,17,25,.13),inset 0 1px 0 rgba(255,255,255,.08);
    font-size:7.5px;
    letter-spacing:.02em;
  }
  .home-services span{
    min-width:0;
    display:contents;
  }
  .home-services strong{
    align-self:end;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#2a1d24;
    font-size:11.5px;
    line-height:1.15;
    letter-spacing:-.015em;
  }
  .home-services small{
    align-self:start;
    min-width:0;
    display:-webkit-box;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    color:#8b7b83;
    font-size:8.6px;
    line-height:1.32;
  }
}
@media(max-width:390px){
  .home-services{gap:8px !important;padding-top:34px}
  .home-services article{
    min-height:82px;
    padding:10px 10px 9px;
    grid-template-columns:24px minmax(0,1fr);
    column-gap:8px;
    border-radius:15px;
  }
  .home-services i{width:24px;height:24px;flex-basis:24px;border-radius:8px;font-size:7px}
  .home-services strong{font-size:10.7px}
  .home-services small{font-size:8.1px;line-height:1.28}
}

/* NoktaShop V2.11.2 — admin-managed premium hero media */
.home-hero-premium .home-hero__media picture,
.home-hero-premium .home-hero__media video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.home-hero-premium .home-hero__media picture{display:block}
.home-hero-premium .home-hero__media picture img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.home-hero-premium .home-hero__media video{
  z-index:1;
  display:block;
  object-fit:cover;
  object-position:center;
  opacity:0;
  background:transparent;
  transition:opacity .45s ease;
}
.home-hero-premium .home-hero__media video.is-playing{opacity:1}
.home-hero-premium .home-hero-slide.has-video .home-hero__poster{z-index:0}
@media(max-width:720px){
  .home-hero-premium .home-hero__media picture img,
  .home-hero-premium .home-hero__media video{object-position:center}
}
@media(prefers-reduced-motion:reduce){
  .home-hero-premium .home-hero__media video{display:none!important}
}

/* NoktaShop V2.11.4 — media-only mobile hero fills the banner without empty lower area */
@media(max-width:720px){
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__media{
    top:0;
    bottom:0;
    height:100%;
  }
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__content{display:none}
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__poster,
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__poster img,
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__media video{
    width:100%;
    height:100%;
  }
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__poster img,
  .home-hero-premium .home-hero-slide.is-media-only .home-hero__media video{
    object-fit:cover;
    object-position:center;
  }
}


/* NoktaShop V2.11.6 — responsive mobile hero sizing
   Media-only mobile banners are designed around the 650x900 upload ratio.
   They no longer inherit the legacy 640/660px fixed minimum height. */
@media (max-width: 720px) {
  .home-hero-premium.is-media-only-active {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 650 / 900;
    border-radius:15px;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__track,
  .home-hero-premium.is-media-only-active .home-hero-slide,
  .home-hero-premium.is-media-only-active .home-hero__media,
  .home-hero-premium.is-media-only-active .home-hero__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .home-hero-premium.is-media-only-active .home-hero__poster img,
  .home-hero-premium.is-media-only-active .home-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__controls {
    left: 16px;
    bottom: 16px;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__controls > button {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 480px) {
  .home-hero-premium.is-media-only-active {
    min-height: 0 !important;
    aspect-ratio: 650 / 900;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__controls {
    left: 14px;
    bottom: 14px;
  }
}

/* NoktaShop V2.11.7 — mobile hero creative standard: 9:16, no crop */
@media (max-width:720px){
  .home-hero-premium.is-media-only-active{
    width:100%;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:9 / 16!important;
    overflow:hidden;
    border-radius:0 0 15px 15px;
    background:#12090d;
    box-shadow:0 18px 42px rgba(35,18,25,.10);
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__track,
  .home-hero-premium.is-media-only-active .home-hero-slide,
  .home-hero-premium.is-media-only-active .home-hero__media,
  .home-hero-premium.is-media-only-active .home-hero__poster{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
  .home-hero-premium.is-media-only-active .home-hero__poster img,
  .home-hero-premium.is-media-only-active .home-hero__media video,
  .home-hero-premium.is-media-only-active .home-hero-slide.is-active .home-hero__media img{
    width:100%;
    height:100%;
    object-fit:contain!important;
    object-position:center!important;
    transform:none!important;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__controls{
    left:50%!important;
    right:auto!important;
    bottom:12px!important;
    transform:translateX(-50%)!important;
    gap:7px;
    padding:5px 8px;
    border:1px solid rgba(255,255,255,.42);
    border-radius:15px;
    background:rgba(255,255,255,.82);
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 24px rgba(31,18,24,.15);
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__controls>button{
    width:30px!important;
    height:30px!important;
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
    font-size:18px!important;
  }
  .home-hero-premium.is-media-only-active .home-hero-slider__dots{gap:5px;padding:0 2px}
  .home-hero-premium.is-media-only-active .home-hero-slider__dots button{height:3px;width:15px;background:rgba(57,34,44,.24)}
  .home-hero-premium.is-media-only-active .home-hero-slider__dots button.is-active{width:26px;background:#a12659}
}
