:root{
  --green:#0b3b2a;
  --green-2:#14573f;
  --green-dark:#06281d;
  --cream:#f3efe6;
  --paper:#fbf9f4;
  --ink:#13231c;
  --muted:#6f776f;
  --line:rgba(19,35,28,.14);
  --white:#fff;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}

button,a{font:inherit}

button{cursor:pointer}

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

/* announcement */

.announcement{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:7px 20px;
  background:var(--green-dark);
  color:#fff;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

/* header */

.header{
  height:82px;
  padding:0 clamp(20px,4vw,64px);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  border-bottom:1px solid var(--line);
  background:rgba(251,249,244,.94);
  backdrop-filter:blur(18px);
  position:sticky;
  top:0;
  z-index:50;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
}

.brand-logo{
  display:block;
  width:auto;
  height:56px;
  max-width:190px;
  object-fit:contain;
}

.brand-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:white;
  font-size:11px;
  font-weight:700;
}

.brand-name{
  display:flex;
  flex-direction:column;
  line-height:.9;
}

.brand-name strong{
  font-size:14px;
  letter-spacing:.05em;
}

.brand-name small{
  margin-top:5px;
  font-size:9px;
  letter-spacing:.35em;
}

.nav{
  display:flex;
  gap:34px;
  font-size:12px;
}

.nav a{
  position:relative;
}

.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:1px;
  background:var(--green);
  transition:.25s;
}

.nav a:hover:after{width:100%}

.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:8px;
}

.icon-button,
.cart-button{
  border:0;
  background:transparent;
  min-height:42px;
}

.icon-button{
  width:42px;
  font-size:22px;
}

.cart-button{
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:100px;
}

.cart-button span{
  margin-left:8px;
  width:21px;
  height:21px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:white;
  font-size:10px;
}

/* HERO */

/* HERO — Brasilia Grande giriş */
.portal-hero{
  position:relative;
  min-height:100vh;
  background:#071d14;
}

.portal-sticky{
  height:100vh;
  min-height:650px;
  position:relative;
  top:auto;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;

  background-image:
    linear-gradient(
      180deg,
      rgba(3,20,13,.18) 0%,
      rgba(3,20,13,.22) 45%,
      rgba(3,20,13,.55) 100%
    ),
    url("/hero.png");

  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.portal-sticky:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at center,
      rgba(10,55,38,.04),
      rgba(0,0,0,.28) 100%
    );
  z-index:0;
  pointer-events:none;
}

.hero-entry{
  position:relative;
  z-index:5;
  width:min(720px,90vw);
  text-align:center;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-top:-2vh;
}

.hero-entry-logo{
  width:min(220px,52vw);
  max-height:110px;
  object-fit:contain;
  object-position:center;
  margin-bottom:26px;
  filter:brightness(0) invert(1);
}

.hero-entry-kicker{
  margin:0 0 13px;
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  opacity:.82;
}

.hero-entry-title{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,6vw,78px);
  line-height:.98;
  font-weight:400;
  letter-spacing:-.045em;
  text-shadow:0 3px 25px rgba(0,0,0,.3);
}

.hero-entry-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:32px;
  min-height:54px;
  padding:0 27px;
  border-radius:999px;
  background:#174f39;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 40px rgba(0,0,0,.24);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.hero-entry-button:hover{
  transform:translateY(-3px);
  background:#1d6146;
  box-shadow:0 18px 46px rgba(0,0,0,.3);
}

.hero-entry-button span{
  font-size:16px;
  line-height:1;
}

.scroll-hint{
  position:absolute;
  z-index:5;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  color:rgba(255,255,255,.8);
}

.portal-sticky:before{
  content:"";
  position:absolute;
  width:72vw;
  height:72vw;
  max-width:900px;
  max-height:900px;
  border-radius:50%;
  display:none;
}

.hero-topline{
  position:absolute;
  top:42px;
  left:5vw;
  right:5vw;
  display:flex;
  justify-content:space-between;
  font-size:10px;
  letter-spacing:.13em;
  color:#667069;
}

.portal-word-wrap{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
}

.portal-word{
  margin:0;
  font-size:clamp(70px,15.5vw,280px);
  line-height:.75;
  letter-spacing:-.085em;
  color:var(--green);
  font-weight:900;
  transform:scale(var(--hero-scale,1));
  opacity:var(--hero-opacity,1);
  will-change:transform,opacity;
}

.hero-copy{
  position:absolute;
  z-index:4;
  left:50%;
  bottom:9vh;
  transform:translateX(-50%);
  width:min(650px,88vw);
  text-align:center;
  opacity:var(--copy-opacity,0);
}

.hero-copy p{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-copy h2{
  margin:0 0 28px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,5vw,68px);
  line-height:.98;
  font-weight:400;
  letter-spacing:-.045em;
}

.hero-copy em{
  color:var(--green-2);
  font-weight:400;
}

.primary-button{
  display:inline-flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
  min-height:52px;
  padding:0 20px;
  border:0;
  border-radius:7px;
  background:var(--green);
  color:#fff;
  font-size:12px;
  transition:.25s ease;
}

.primary-button:hover{
  background:var(--green-2);
  transform:translateY(-2px);
}

.scroll-hint{
  position:absolute;
  bottom:28px;
  right:5vw;
  font-size:10px;
  color:#717970;
  display:flex;
  gap:12px;
}

/* INTRO */

.shop-intro{
  padding:120px 5vw 90px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:8vw;
  align-items:end;
}

.eyebrow{
  display:block;
  margin-bottom:20px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.16em;
}

.shop-intro h2,
.section-heading h2,
.story h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(44px,6vw,88px);
  font-weight:400;
  line-height:.95;
  letter-spacing:-.055em;
}

.shop-intro p{
  max-width:460px;
  margin:0 0 8px;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

/* categories */

.categories{
  display:flex;
  gap:8px;
  padding:0 5vw 34px;
  overflow:auto;
}

.category{
  flex:none;
  padding:12px 18px;
  border:1px solid var(--line);
  border-radius:100px;
  background:transparent;
  color:var(--ink);
  font-size:11px;
}

.category:hover,
.category.active{
  background:var(--green);
  border-color:var(--green);
  color:white;
}

/* PRODUCTS */

.products-section{
  padding:30px 5vw 130px;
}

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

.section-heading h2{
  font-size:clamp(45px,5vw,70px);
}

#productTotal{
  font-size:11px;
  color:var(--muted);
}

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

.product-card{
  position:relative;
}

.product-image{
  position:relative;
  aspect-ratio:.82;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ece8df;
  border-radius:3px;
}

.product-image img{
  width:78%;
  height:78%;
  object-fit:contain;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-image img{
  transform:scale(1.055);
}

.product-badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:7px 9px;
  border-radius:100px;
  background:var(--paper);
  font-size:9px;
}

.quick-add{
  position:absolute;
  bottom:12px;
  left:12px;
  right:12px;
  min-height:45px;
  border:0;
  border-radius:4px;
  background:var(--green);
  color:#fff;
  opacity:0;
  transform:translateY(7px);
  transition:.25s;
}

.product-card:hover .quick-add{
  opacity:1;
  transform:none;
}

.product-info{
  padding:17px 3px 26px;
}

.product-info small{
  display:block;
  margin-bottom:7px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.product-info h3{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  font-weight:400;
}

.product-price{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

/* ORIGINS */

.origins{
  padding:120px 6vw;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10vw;
  background:var(--green);
  color:#fff;
}

.eyebrow.light{
  color:rgba(255,255,255,.65);
}

.origins-copy h2{
  margin:0 0 32px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(45px,6vw,84px);
  line-height:.95;
  font-weight:400;
  letter-spacing:-.055em;
}

.origins-copy p{
  max-width:500px;
  color:rgba(255,255,255,.68);
  line-height:1.8;
}

.text-link{
  display:inline-block;
  margin-top:28px;
  padding-bottom:5px;
  border-bottom:1px solid rgba(255,255,255,.45);
  font-size:12px;
}

.origin-list{
  border-top:1px solid rgba(255,255,255,.22);
}

.origin-list :is(button, a){
  width:100%;
  min-height:79px;
  display:grid;
  grid-template-columns:55px 1fr auto;
  align-items:center;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:#fff;
  text-align:left;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  transition:.2s;
}

.origin-list :is(button, a) span{
  font-family:Arial,sans-serif;
  font-size:9px;
  opacity:.5;
}

.origin-list :is(button, a) strong{
  font-family:Arial,sans-serif;
  font-size:16px;
  font-weight:400;
}

.origin-list :is(button, a):hover{
  padding-left:14px;
  background:rgba(255,255,255,.05);
}

/* FEATURED */

.featured-product{
  min-height:850px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
}

.featured-visual{
  display:grid;
  place-items:center;
  min-height:700px;
  background:#e8e1d5;
}

.featured-placeholder{
  padding:80px 50px;
  border:1px solid rgba(11,59,42,.18);
  color:var(--green);
  text-align:center;
  font-size:32px;
  letter-spacing:.12em;
}

.featured-placeholder strong{
  display:block;
  margin-top:5px;
  font-size:52px;
}

.featured-copy{
  padding:10vw 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.featured-copy h2{
  margin:0 0 28px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(60px,7vw,110px);
  line-height:.82;
  font-weight:400;
  letter-spacing:-.065em;
}

.featured-copy p{
  max-width:420px;
  color:var(--muted);
  line-height:1.8;
}

.featured-meta{
  margin:30px 0 40px;
  padding:18px 0;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:10px;
}

/* STORY */

.story{
  padding:150px 5vw;
  text-align:center;
  background:var(--cream);
}

.story h2{
  max-width:950px;
  margin:auto;
}

.story p{
  max-width:570px;
  margin:35px auto 0;
  color:var(--muted);
  line-height:1.8;
}

/* wholesale */

.wholesale{
  min-height:650px;
  padding:8vw;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  background:var(--green-dark);
  color:white;
}

.wholesale>span{
  font-size:10px;
  letter-spacing:.16em;
  opacity:.6;
}

.wholesale h2{
  margin:25px 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(60px,8vw,120px);
  line-height:.86;
  font-weight:400;
  letter-spacing:-.06em;
}

.wholesale p{
  max-width:450px;
  color:rgba(255,255,255,.68);
  line-height:1.7;
}

.outline-button{
  margin-top:25px;
  padding:16px 22px;
  border:1px solid rgba(255,255,255,.5);
  border-radius:4px;
  font-size:11px;
}

/* CART */

.cart-drawer{
  position:fixed;
  z-index:101;
  top:0;
  right:0;
  width:min(470px,100%);
  height:100vh;
  padding:30px;
  display:flex;
  flex-direction:column;
  background:var(--paper);
  transform:translateX(102%);
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
}

.cart-drawer.open{
  transform:none;
}

.drawer-overlay{
  position:fixed;
  z-index:100;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.drawer-overlay.open{
  opacity:1;
  visibility:visible;
}

.cart-header{
  display:flex;
  align-items:start;
  justify-content:space-between;
  padding-bottom:25px;
  border-bottom:1px solid var(--line);
}

.cart-header span{
  font-size:9px;
  letter-spacing:.15em;
}

.cart-header h2{
  margin:4px 0 0;
  font-family:Georgia,serif;
  font-size:35px;
  font-weight:400;
}

.cart-header button{
  border:0;
  background:transparent;
  font-size:28px;
}

.cart-items{
  flex:1;
  overflow:auto;
  padding:20px 0;
}

.cart-item{
  display:grid;
  grid-template-columns:75px 1fr auto;
  gap:15px;
  padding:15px 0;
  border-bottom:1px solid var(--line);
}

.cart-item-image{
  width:75px;
  height:90px;
  object-fit:contain;
  background:#eee9df;
}

.cart-item h4{
  margin:5px 0;
  font-family:Georgia,serif;
  font-weight:400;
}

.cart-item small{
  color:var(--muted);
}

.remove-item{
  border:0;
  background:transparent;
  color:var(--muted);
}

.cart-footer{
  padding-top:20px;
  border-top:1px solid var(--line);
}

.cart-total{
  display:flex;
  justify-content:space-between;
  margin-bottom:18px;
}

.checkout-button{
  width:100%;
  min-height:55px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  border-radius:4px;
  background:var(--green);
  color:white;
}

.cart-footer small{
  display:block;
  margin-top:12px;
  text-align:center;
  color:var(--muted);
}

/* footer */

.footer{
  padding:80px 5vw 35px;
  display:grid;
  grid-template-columns:2fr repeat(3,1fr);
  gap:50px;
  background:#071c15;
  color:white;
}

.footer-brand{
  display:flex;
  flex-direction:column;
}

.footer-brand strong{
  font-size:25px;
}

.footer-brand span{
  margin-top:3px;
  font-size:12px;
  letter-spacing:.35em;
}

.footer>div:not(.footer-brand){
  display:flex;
  flex-direction:column;
  gap:12px;
  font-size:11px;
}

.footer>div>span:first-child{
  margin-bottom:8px;
  opacity:.45;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.footer a{
  color:rgba(255,255,255,.75);
}

.footer p{
  grid-column:1/-1;
  margin:50px 0 0;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:9px;
  opacity:.45;
}

/* responsive */

@media(max-width:900px){

  .header{
    grid-template-columns:1fr auto;
  }

  .nav{display:none}

  .shop-intro,
  .origins,
  .featured-product{
    grid-template-columns:1fr;
  }

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

  .featured-visual{
    min-height:550px;
  }

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

  .footer-brand{
    grid-column:1/-1;
  }
}

@media(max-width:600px){

  .announcement{
    font-size:8px;
  }

  .header{
    height:68px;
    padding:0 16px;
  }

  .brand-mark{
    width:33px;
    height:33px;
  }

  .brand-name strong{font-size:12px}

  .icon-button{display:none}

  .cart-button{
    padding:0 11px;
    font-size:10px;
  }

  .portal-sticky{
    min-height:560px;
  }

  .hero-topline{
    top:24px;
    left:20px;
    right:20px;
    font-size:8px;
  }

  .hero-topline span:last-child{
    display:none;
  }

  .portal-word{
    font-size:19vw;
  }

  .hero-copy{
    bottom:13vh;
  }

  .hero-copy h2{
    font-size:38px;
  }

  .scroll-hint{
    right:20px;
  }

  .shop-intro{
    padding:85px 20px 55px;
    gap:35px;
  }

  .categories{
    padding-left:20px;
    padding-right:20px;
  }

  .products-section{
    padding:25px 20px 90px;
  }

  .product-grid{
    gap:9px;
  }

  .product-info h3{
    font-size:17px;
  }

  .quick-add{
    opacity:1;
    transform:none;
    font-size:10px;
  }

  .origins{
    padding:90px 20px;
  }

  .featured-copy{
    padding:80px 20px;
  }

  .story{
    padding:100px 20px;
  }

  .wholesale{
    padding:90px 20px;
  }

  .footer{
    padding:65px 20px 30px;
    gap:40px 25px;
  }
}

/* Catalog photos keep the existing card backgrounds and package fallbacks. */
[hidden] { display: none !important; }
.store-product-photo { width: 100%; height: 100%; object-fit: contain; min-height: 0; }
.product-gallery > .store-product-photo { position: relative; max-height: 620px; }
.featured-visual > .store-product-photo { max-height: 550px; }
.store-image-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-info h3 a { color: inherit; text-decoration: none; }
.origin-list a { text-decoration: none; }
.categories, .catalog-filters { flex-wrap: wrap; }

/* Shared cart and accessible feedback */
button:disabled { opacity: .5; cursor: not-allowed; }
.cart-notice { position: fixed; bottom: 18px; left: 18px; max-width: min(520px, calc(100vw - 36px)); padding: 14px 20px; background: #0b3b2a; color: white; z-index: 1000; border-radius: 5px; font-size: 14px; }
.cart-notice:empty { display: none; }
.cart-refresh { margin: 12px 0; padding: 10px 16px; background: transparent; border: 1px solid #8e998e; border-radius: 4px; }
.cart-shared-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid #d8ddd5; }
.cart-shared-row .cart-visual { display: grid; place-items: center; aspect-ratio: .82; background: #eee9df; overflow: hidden; }
.cart-shared-row h2 { font-family: Georgia, serif; font-size: 22px; margin: 8px 0; }
.cart-shared-row p, .cart-shared-row small { font-size: 12px; }
.cart-shared-row .cart-controls, .cart-shared-row .qty { display: flex; align-items: center; gap: 6px; margin: 12px 0; flex-wrap: wrap; }
.cart-shared-row input { width: 56px; min-height: 36px; text-align: center; }
.cart-shared-row button { min-width: 32px; min-height: 36px; }
.cart-drawer .cart-shared-row { grid-template-columns: 65px minmax(0, 1fr); }
.cart-drawer .line-price { grid-column: 2; }
.cart-drawer .cart-items { overflow-y: auto; }
:focus-visible { outline: 3px solid #b48a45; outline-offset: 3px; }
.checkout:disabled { width: 100%; border: 0; cursor: not-allowed; }
@media(max-width:600px) { .cart-shared-row { grid-template-columns: 70px minmax(0, 1fr); } .cart-shared-row .line-price { grid-column: 2; } .cart-page-head { flex-wrap: wrap; gap: 16px; } }



/* HERO — sade giriş */
.portal-sticky .hero-entry{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.portal-sticky .hero-entry-logo{
  position:absolute;
  top:42px;
  left:50%;
  transform:translateX(-50%);
  width:170px;
  max-width:42vw;
  max-height:78px;
  margin:0;
  filter:brightness(0) invert(1);
  z-index:6;
}

.portal-sticky .hero-entry-button{
  pointer-events:auto;
  position:relative;
  z-index:6;
  margin:0;
}

.portal-sticky .hero-entry-kicker,
.portal-sticky .hero-entry-title{
  display:none !important;
}



/* HERO — son düzenleme */
.portal-sticky .hero-entry-logo{
  display:none !important;
}

.portal-sticky .hero-entry-button{
  transform:translateY(90px);
}

/* Shared category navigation: a dedicated row keeps every heading accessible. */
:root{--store-header-height:130px}
.header{
  height:var(--store-header-height);
  grid-template-columns:1fr auto;
  grid-template-rows:78px 52px;
}
.header .brand{grid-column:1;grid-row:1}
.header .header-actions{grid-column:2;grid-row:1}
.header .nav{
  grid-column:1/-1;
  grid-row:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(16px,2.4vw,38px);
  min-width:0;
  height:100%;
  overflow-x:auto;
  white-space:nowrap;
  font-size:13px;
  border-top:1px solid var(--line);
  scrollbar-width:thin;
}
.header .nav a{flex:none;padding:10px 0}
.header .nav a:after{bottom:4px}
.header .nav a[aria-current="page"]{font-weight:700}
.header .nav a[aria-current="page"]:after{width:100%}
.header .nav a:focus-visible{outline:2px solid var(--green);outline-offset:3px}
#hikaye{scroll-margin-top:calc(var(--store-header-height) + 20px)}
@media(max-width:1100px){
  .header .nav{justify-content:flex-start;gap:24px}
}
@media(max-width:600px){
  :root{--store-header-height:116px}
  .header{grid-template-rows:68px 48px}
  .header .nav{font-size:12px;gap:22px}
}
