@import url("fonts.css");

:root{
  --bg:oklch(98% 0.006 90);
  --text:oklch(20% 0.01 90);
  --green:oklch(27% 0.045 150);
  --green-light:oklch(52% 0.07 150);
  --green-dark:oklch(20% 0.03 150);
  --border:oklch(90% 0.022 80);
  --border-light:oklch(85% 0.02 80);
  --card:oklch(96% 0.013 88);
  --card2:oklch(99% 0.002 90);
  --muted:oklch(45% 0.012 90);
  --muted2:oklch(40% 0.015 90);
  --muted3:oklch(35% 0.015 90);
  --muted4:oklch(55% 0.012 90);
  --ph1:oklch(90% 0.022 80);
  --ph2:oklch(94% 0.016 82);
  --star:oklch(55% 0.1 70);
  --star-empty:oklch(85% 0.01 80);
  --wish:oklch(45% 0.05 25);
  --white:oklch(99% 0.002 90);
  --cream:oklch(97% 0.01 90);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Work Sans',sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:var(--green);text-decoration:none;}
a:hover{color:var(--green-light);}
h1,h2,h3{font-family:'Newsreader',serif;}
input,select,button,textarea{font-family:'Work Sans',sans-serif;}
img{max-width:100%;display:block;}
button{font-family:inherit;}

@keyframes fadeSlideIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
@keyframes toastIn{from{opacity:0;transform:translate(-50%,10px)}to{opacity:1;transform:translate(-50%,0)}}

.container{max-width:1280px;margin:0 auto;padding:0 24px;}
main{flex:1;}

/* ---- topbar ---- */
.topbar{
  background:var(--green);color:var(--cream);text-align:center;
  font-size:13px;letter-spacing:0.03em;padding:8px 16px;
}

/* ---- header ---- */
.site-header{
  position:sticky;top:0;z-index:40;
  background:oklch(98% 0.006 90 / 0.97);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--border);
}
.header-row{
  max-width:1280px;margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.logo{display:flex;align-items:center;gap:10px;cursor:pointer;}
.logo-mark{
  width:18px;height:18px;background:var(--green);
  border-radius:50% 0 50% 50%;transform:rotate(45deg);flex:none;
}
.logo-text{font-family:'Newsreader',serif;font-size:24px;font-weight:600;letter-spacing:-0.01em;color:var(--text);}

.nav-desktop{display:flex;gap:28px;}
.nav-desktop a{font-size:15px;color:var(--text);white-space:nowrap;}
.nav-desktop a.active{color:var(--green);font-weight:600;}

.header-actions{display:flex;align-items:center;gap:18px;}
.header-actions .ico-link{cursor:pointer;font-size:14px;color:oklch(30% 0.01 90);background:none;border:none;padding:0;}
.header-actions .account{cursor:default;font-size:14px;color:var(--muted4);}
.cart-link{cursor:pointer;font-size:14px;font-weight:600;color:var(--green);display:flex;align-items:center;gap:6px;background:none;border:none;padding:0;}
.cart-badge{
  background:var(--green);color:var(--white);border-radius:999px;min-width:20px;height:20px;
  font-size:12px;display:inline-flex;align-items:center;justify-content:center;padding:0 5px;
}
.burger{display:none;cursor:pointer;font-size:22px;line-height:1;background:none;border:none;}

.search-bar{max-width:1280px;margin:0 auto;padding:0 24px 14px;display:none;}
.search-bar.open{display:block;}
.search-bar form{display:flex;gap:8px;max-width:420px;}
.search-bar input{
  width:100%;padding:10px 14px;border:1px solid var(--border);border-radius:10px;
  font-size:14px;outline:none;background:var(--card2);
}
.search-bar button{padding:10px 16px;border-radius:10px;border:none;background:var(--green);color:var(--white);font-size:13px;font-weight:600;cursor:pointer;}

.mobile-menu{
  position:fixed;inset:0;background:var(--bg);z-index:50;padding:24px;
  display:none;flex-direction:column;gap:22px;overflow-y:auto;
}
.mobile-menu.open{display:flex;}
.mobile-menu-top{display:flex;justify-content:space-between;align-items:center;}
.mobile-menu-top .logo-text{font-size:22px;}
.mobile-menu-close{font-size:26px;cursor:pointer;background:none;border:none;}
.mobile-menu a{font-size:20px;font-family:'Newsreader',serif;color:var(--text);}
.mobile-menu .cart-link,.mobile-menu .wish-link{font-size:18px;}
.mobile-menu .wish-link{color:var(--text);cursor:pointer;background:none;border:none;padding:0;text-align:left;}

.toast{
  position:fixed;bottom:24px;left:50%;transform:translateX(-50%);
  background:oklch(20% 0.01 90);color:var(--white);padding:12px 22px;border-radius:999px;
  font-size:14px;z-index:60;animation:toastIn 0.25s ease-out;
  box-shadow:0 8px 24px oklch(20% 0.01 90 / 0.3);display:none;
}
.toast.show{display:block;}

.breadcrumbs{max-width:1280px;margin:0 auto;padding:16px 24px 0;font-size:13px;color:var(--muted);}
.breadcrumbs a{color:var(--muted);}
.breadcrumbs a:hover{color:var(--green);}

@media (min-width:900px){
  .nav-desktop{display:flex;}
  .burger{display:none;}
  .search-toggle, .wish-header, .account{display:inline-flex;}
}
@media (max-width:899px){
  .nav-desktop{display:none;}
  .burger{display:block;}
  .search-toggle, .wish-header, .account{display:none;}
}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:none;border-radius:999px;cursor:pointer;font-weight:600;
  font-size:14px;letter-spacing:0.02em;padding:16px 30px;text-decoration:none;
}
.btn-primary{background:var(--green);color:var(--white);}
.btn-primary:hover{background:var(--green-light);color:var(--white);}
.btn-outline{background:transparent;color:var(--text);border:1px solid var(--border-light);}
.btn-outline:hover{border-color:var(--green);color:var(--green);}
.btn-on-dark{background:var(--cream);color:var(--green);}
.btn-small{padding:11px 20px;font-size:13px;}
.btn-block{width:100%;}

/* ---- hero ---- */
.hero{
  max-width:1280px;margin:0 auto;padding:48px 24px 0;
  display:flex;flex-wrap:wrap;gap:48px;align-items:center;
}
.hero-text{min-width:280px;flex:1 1 460px;}
.hero-text h1{font-size:clamp(36px,5vw,58px);line-height:1.08;margin:0 0 20px;font-weight:600;color:var(--text);}
.hero-text p{font-size:18px;line-height:1.6;color:var(--muted2);max-width:480px;margin:0 0 32px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.hero-media{
  aspect-ratio:4/3;border-radius:24px;overflow:hidden;min-width:280px;flex:1 1 400px;background:var(--ph1);
}
.hero-media img{width:100%;height:100%;object-fit:cover;}

.ph-media{
  border-radius:24px;overflow:hidden;display:flex;align-items:center;justify-content:center;
  background:repeating-linear-gradient(135deg,var(--ph1) 0px,var(--ph1) 14px,var(--ph2) 14px,var(--ph2) 28px);
}
.ph-media img{width:100%;height:100%;object-fit:cover;}

/* ---- generic section ---- */
.section{max-width:1280px;margin:0 auto;padding:80px 24px 0;}
.section-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:28px;flex-wrap:wrap;gap:10px;}
.section-head h2{font-size:32px;font-weight:600;margin:0;}
.section-title{font-size:32px;font-weight:600;margin:0 0 28px;}
.section-title-center{font-size:32px;font-weight:600;margin:0 0 32px;text-align:center;}

/* ---- category grid ---- */
.grid-auto{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;}
.cat-card{cursor:pointer;border-radius:18px;overflow:hidden;background:var(--card);transition:transform 0.2s;display:block;}
.cat-card:hover{transform:translateY(-4px);}
.cat-card .cat-img{aspect-ratio:5/4;overflow:hidden;background:var(--ph1);}
.cat-card .cat-img img{width:100%;height:100%;object-fit:cover;}
.cat-card .cat-body{padding:16px 18px 20px;}
.cat-card h3{font-size:17px;font-weight:600;margin:0 0 6px;color:var(--text);}
.cat-card p{font-size:13.5px;color:var(--muted);margin:0;line-height:1.45;}

/* ---- product card ---- */
.product-card{
  position:relative;
  border-radius:18px;overflow:hidden;background:var(--card2);border:1px solid oklch(92% 0.018 82);
  display:flex;flex-direction:column;height:100%;
}
.product-card .p-img{
  cursor:pointer;position:relative;aspect-ratio:1;background:var(--ph1);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.product-card .p-img img{width:100%;height:100%;object-fit:cover;}
.product-card .p-badge{
  position:absolute;top:10px;left:10px;background:var(--green);color:var(--cream);
  font-size:10.5px;font-weight:700;letter-spacing:0.03em;padding:4px 9px;border-radius:999px;
}
.product-card .p-wish{
  position:absolute;top:8px;right:8px;font-size:18px;cursor:pointer;color:var(--star-empty);
  background:oklch(99% 0.002 90 / 0.85);border:none;border-radius:50%;width:30px;height:30px;
  display:flex;align-items:center;justify-content:center;
}
.product-card .p-wish.active{color:var(--wish);}
.product-card .p-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.product-card h3{font-size:15.5px;font-weight:600;margin:0;cursor:pointer;color:var(--text);}
.product-card .p-short{font-size:12.5px;color:var(--muted);margin:0;line-height:1.4;}
.product-card .p-stars{color:var(--star);font-size:12.5px;}
.product-card .p-stars .empty{color:var(--star-empty);}
.product-card .p-price-row{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:6px;}
.product-card .p-price{font-size:17px;font-weight:600;color:var(--green);}
.product-card .p-avail{font-size:11.5px;color:var(--muted);}
.product-card .p-add{
  width:100%;background:var(--green);color:var(--white);border:none;padding:11px;border-radius:999px;
  font-size:13px;font-weight:600;cursor:pointer;margin-top:4px;
}
.product-card .p-add:hover{background:var(--green-light);}

/* ---- brand story / journey ---- */
.story{max-width:1280px;margin:0 auto;padding:96px 24px 0;display:flex;flex-wrap:wrap;gap:56px;align-items:center;}
.story-media{aspect-ratio:4/5;border-radius:24px;overflow:hidden;min-width:260px;flex:1 1 380px;background:var(--ph1);}
.story-media img{width:100%;height:100%;object-fit:cover;}
.story-text{min-width:280px;flex:1 1 420px;}
.story-text h2{font-size:32px;font-weight:600;margin:0 0 18px;}
.story-text p{font-size:17px;line-height:1.7;color:var(--muted3);margin:0 0 22px;}
.story-list{display:flex;flex-direction:column;gap:10px;}
.story-list span{font-size:14.5px;color:oklch(30% 0.02 90);}

.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;}
.why-item{text-align:center;padding:8px;}
.why-item .dot{width:48px;height:48px;border-radius:50%;background:var(--ph1);margin:0 auto 16px;}
.why-item h3{font-size:16.5px;font-weight:600;margin:0 0 8px;}
.why-item p{font-size:13.5px;color:var(--muted);margin:0;line-height:1.5;}

.journey{
  max-width:1280px;margin:96px auto 0;padding:64px 24px;background:var(--card);border-radius:28px;
  display:flex;flex-wrap:wrap;gap:44px;align-items:center;
}
.journey-text{min-width:260px;flex:1 1 380px;}
.journey-text h2{font-size:28px;font-weight:600;margin:0 0 16px;}
.journey-text p{font-size:16px;line-height:1.7;color:var(--muted3);margin:0 0 16px;}
.journey-text .more-link{font-size:14px;font-weight:600;color:var(--green);}
.journey-media{aspect-ratio:16/10;border-radius:18px;overflow:hidden;min-width:260px;flex:1 1 380px;background:var(--ph1);}
.journey-media img{width:100%;height:100%;object-fit:cover;}

.cta{max-width:1280px;margin:96px auto 0;padding:0 24px;}
.cta-inner{
  border-radius:28px;overflow:hidden;position:relative;background:var(--green);
  padding:72px 48px;display:flex;flex-direction:column;align-items:flex-start;gap:20px;
}
.cta-inner h2{font-size:34px;font-weight:600;margin:0;color:var(--cream);max-width:560px;}
.cta-inner p{font-size:16px;color:oklch(92% 0.015 90);max-width:480px;margin:0;}

.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px;}
.trust-item{text-align:center;padding:20px 12px;background:var(--card);border-radius:16px;}
.trust-item span{font-size:14.5px;font-weight:600;color:var(--green);}

.newsletter{max-width:900px;margin:96px auto 0;padding:0 24px 96px;text-align:center;}
.newsletter h2{font-size:28px;font-weight:600;margin:0 0 14px;}
.newsletter p{font-size:15.5px;color:var(--muted2);margin:0 0 26px;}
.newsletter form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.newsletter input{
  padding:14px 18px;border-radius:999px;border:1px solid var(--border-light);min-width:260px;font-size:14px;outline:none;
}
.newsletter button{
  background:var(--green);color:var(--white);border:none;padding:14px 28px;border-radius:999px;
  font-weight:600;font-size:13px;letter-spacing:0.03em;cursor:pointer;
}
.newsletter .done{color:var(--green);font-weight:600;}

/* ---- footer ---- */
.site-footer{background:var(--green-dark);color:oklch(90% 0.012 90);margin-top:40px;}
.footer-grid{
  max-width:1280px;margin:0 auto;padding:64px 24px 32px;display:flex;flex-wrap:wrap;gap:32px;justify-content:space-between;
}
.footer-col{flex:1 1 220px;min-width:160px;}
.footer-col .logo-text{font-size:22px;color:oklch(98% 0.01 90);margin-bottom:8px;display:block;}
.footer-col .tagline{font-size:13.5px;color:oklch(75% 0.012 90);margin:0;}
.footer-col h4{font-size:13px;letter-spacing:0.04em;color:oklch(75% 0.012 90);margin:0 0 14px;}
.footer-links{display:flex;flex-direction:column;gap:8px;font-size:13.5px;}
.footer-links a,.footer-links button{color:oklch(92% 0.01 90);background:none;border:none;padding:0;text-align:left;cursor:pointer;font-size:13.5px;}
.footer-links a:hover,.footer-links button:hover{color:var(--white);}
.footer-bottom{
  max-width:1280px;margin:0 auto;padding:24px 24px;border-top:1px solid oklch(30% 0.03 150);
  font-size:12.5px;color:oklch(65% 0.012 90);display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px;
}

/* ---- page header (inner pages) ---- */
.page-head{max-width:1280px;margin:0 auto;padding:24px 24px 0;}
.page-head h1{font-size:34px;font-weight:600;margin:0 0 28px;}

/* ---- legal / text pages ---- */
.text-page{max-width:760px;margin:0 auto;padding:24px 24px 96px;}
.text-page h1{font-size:32px;font-weight:600;margin:0 0 22px;}
.text-page h3{font-size:16px;font-weight:600;margin:24px 0 8px;}
.text-page h3:first-of-type{margin-top:0;}
.text-page p{font-size:14.5px;line-height:1.7;color:var(--muted3);margin:0 0 20px;}

/* ---- about page ---- */
.about-page{max-width:800px;margin:0 auto;padding:24px 24px 96px;}
.about-page h1{font-size:34px;font-weight:600;margin:0 0 24px;}
.about-page h2{font-size:22px;font-weight:600;margin:0 0 12px;}
.about-page p{font-size:16px;line-height:1.75;color:var(--muted3);margin:0 0 28px;}
.about-page ul{font-size:15px;line-height:1.9;color:var(--muted3);padding-left:20px;margin:0 0 28px;}
.about-page .more-link{font-size:14px;font-weight:600;color:var(--green);cursor:pointer;}

/* ---- values page ---- */
.values-page{max-width:900px;margin:0 auto;padding:24px 24px 96px;}
.values-page h1{font-size:34px;font-weight:600;margin:0 0 32px;}
.values-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.value-card{background:var(--card);border-radius:16px;padding:24px;}
.value-card h3{font-size:19px;margin:0 0 10px;}
.value-card p{font-size:14.5px;line-height:1.7;color:var(--muted2);margin:0;}
@media (max-width:640px){.values-grid{grid-template-columns:1fr;}}

/* ---- shop page ---- */
.shop-page{max-width:1280px;margin:0 auto;padding:24px 24px 96px;}
.shop-layout{display:flex;flex-wrap:wrap;gap:36px;}
.shop-aside{display:flex;flex-direction:column;gap:26px;flex:0 1 240px;min-width:200px;}
.shop-aside h3{font-size:14px;font-weight:600;margin:0 0 12px;letter-spacing:0.02em;}
.filter-list{display:flex;flex-direction:column;gap:8px;}
.filter-list label{display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--muted3);cursor:pointer;}
.price-range{width:100%;}
.price-range-label{font-size:13px;color:var(--muted);}
.clear-filters{font-size:13px;color:var(--green);cursor:pointer;font-weight:600;background:none;border:none;padding:0;}
.shop-main{flex:1 1 480px;min-width:0;}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:10px;}
.results-count{font-size:13.5px;color:var(--muted);}
.sort-select{padding:10px 14px;border-radius:10px;border:1px solid var(--border-light);font-size:13.5px;background:var(--card2);}
.empty-results{color:var(--muted);padding:40px 0;}

/* ---- product detail page ---- */
.product-page{max-width:1280px;margin:0 auto;padding:24px 24px 96px;}
.product-detail{display:flex;flex-wrap:wrap;gap:48px;}
.product-gallery{flex:1 1 400px;min-width:260px;}
.product-gallery .main-img{
  aspect-ratio:1;border-radius:20px;overflow:hidden;margin-bottom:14px;background:var(--ph1);
}
.product-gallery .main-img img{width:100%;height:100%;object-fit:cover;}
.product-thumbs{display:flex;gap:10px;}
.product-thumbs .thumb{
  cursor:pointer;width:72px;height:72px;border-radius:10px;overflow:hidden;border:2px solid transparent;background:var(--ph1);
}
.product-thumbs .thumb.active{border-color:var(--green);}
.product-thumbs .thumb img{width:100%;height:100%;object-fit:cover;}
.product-info{flex:1 1 400px;min-width:260px;}
.product-info .badge-pill{
  display:inline-block;background:var(--ph1);color:var(--green);font-size:11px;font-weight:700;
  letter-spacing:0.04em;padding:5px 10px;border-radius:999px;margin-bottom:12px;
}
.product-info h1{font-size:32px;font-weight:600;margin:0 0 10px;}
.product-info .stars-row{color:var(--star);font-size:15px;margin-bottom:14px;}
.product-info .stars-row .empty{color:var(--star-empty);}
.product-info .stars-row .rating-num{color:var(--muted);font-size:13px;}
.product-info .price{font-size:28px;font-weight:600;color:var(--green);margin-bottom:14px;}
.product-info .avail{font-size:13.5px;color:var(--muted);margin-bottom:20px;}
.product-info .short{font-size:15px;line-height:1.7;color:var(--muted3);margin:0 0 24px;}
.buy-row{display:flex;align-items:center;gap:16px;margin-bottom:20px;flex-wrap:wrap;}
.qty-stepper{display:flex;align-items:center;border:1px solid var(--border-light);border-radius:999px;}
.qty-stepper button{padding:10px 16px;cursor:pointer;font-size:16px;background:none;border:none;}
.qty-stepper span{padding:10px 8px;min-width:20px;text-align:center;display:inline-block;}
.buy-row .btn-primary{flex:1;min-width:160px;}
.wish-btn{cursor:pointer;font-size:22px;color:var(--star-empty);background:none;border:none;}
.wish-btn.active{color:var(--wish);}
.spec-list{display:flex;flex-direction:column;gap:14px;border-top:1px solid var(--border);padding-top:20px;}
.spec-list div span{font-size:13.5px;color:var(--muted2);}
.spec-list strong{font-size:13.5px;}
.product-desc{margin-top:22px;}
.product-desc h3{font-size:15px;font-weight:600;margin:0 0 8px;}
.product-desc p{font-size:14.5px;line-height:1.7;color:var(--muted3);margin:0;}
.related-section{margin-top:80px;}
.related-section h2{font-size:26px;font-weight:600;margin:0 0 24px;}

/* ---- cart page ---- */
.cart-page{max-width:1000px;margin:0 auto;padding:24px 24px 96px;}
.cart-page h1{font-size:32px;font-weight:600;margin:0 0 28px;}
.cart-empty{text-align:center;padding:60px 0;}
.cart-empty p{font-size:16px;color:var(--muted);margin:0 0 20px;}
.cart-items{display:flex;flex-direction:column;gap:16px;margin-bottom:32px;}
.cart-item{
  display:grid;grid-template-columns:80px 1fr auto auto;gap:16px;align-items:center;padding:16px;
  background:var(--card);border-radius:16px;
}
.cart-item .thumb{width:80px;height:80px;border-radius:10px;overflow:hidden;background:var(--ph1);}
.cart-item .thumb img{width:100%;height:100%;object-fit:cover;}
.cart-item .name{font-weight:600;font-size:15px;}
.cart-item .price{font-size:13px;color:var(--muted);}
.cart-item .remove{font-size:12.5px;color:var(--wish);cursor:pointer;background:none;border:none;padding:0;}
.cart-item .line-total{font-weight:600;}
.cart-summary{
  border-top:1px solid var(--border);padding-top:20px;display:flex;flex-direction:column;gap:10px;
  max-width:340px;margin-left:auto;
}
.cart-summary .row{display:flex;justify-content:space-between;font-size:14.5px;}
.cart-summary .row.muted{color:var(--muted);}
.cart-summary .row.total{font-size:18px;font-weight:600;margin-top:6px;}
.cart-summary .actions{display:flex;gap:10px;margin-top:16px;}
.cart-summary .actions .btn{flex:1;font-size:13.5px;padding:14px;}

/* ---- checkout page ---- */
.checkout-page{max-width:1100px;margin:0 auto;padding:24px 24px 96px;}
.checkout-page h1{font-size:32px;font-weight:600;margin:0 0 28px;}
.order-success{text-align:center;padding:60px 0;}
.order-success h2{font-size:26px;margin:0 0 12px;}
.order-success p{color:var(--muted);margin:0 0 24px;}
.checkout-form{display:flex;flex-wrap:wrap;gap:40px;}
.checkout-fields{display:flex;flex-direction:column;gap:18px;flex:1 1 420px;min-width:260px;}
.field-row-2{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.field-row-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;}
.checkout-fields input{padding:13px 16px;border-radius:10px;border:1px solid var(--border-light);font-size:14px;width:100%;}
.radio-group h3{font-size:14px;font-weight:600;margin:0 0 10px;}
.radio-group label{display:flex;align-items:center;gap:8px;font-size:14px;margin-bottom:6px;cursor:pointer;}
.radio-group .hint{font-size:12px;color:var(--muted4);margin:6px 0 0;}
.order-summary{background:var(--card);border-radius:18px;padding:24px;align-self:start;flex:1 1 300px;min-width:260px;}
.order-summary h3{font-size:16px;font-weight:600;margin:0 0 16px;}
.order-summary .line{display:flex;justify-content:space-between;font-size:13.5px;}
.order-summary .lines{display:flex;flex-direction:column;gap:10px;margin-bottom:16px;}
.order-summary .total-row{
  border-top:1px solid oklch(88% 0.02 80);padding-top:12px;display:flex;justify-content:space-between;
  font-weight:600;font-size:16px;
}
.order-summary .submit-btn{
  width:100%;margin-top:20px;background:var(--green);color:var(--white);border:none;padding:16px;
  border-radius:999px;font-weight:700;font-size:13px;letter-spacing:0.03em;cursor:pointer;
}
.order-summary .submit-btn:hover{background:var(--green-light);}
@media (max-width:640px){.field-row-2,.field-row-3{grid-template-columns:1fr;}}

/* ---- contact page ---- */
.contact-page{max-width:1000px;margin:0 auto;padding:24px 24px 96px;}
.contact-page h1{font-size:34px;font-weight:600;margin:0 0 28px;}
.contact-layout{display:flex;flex-wrap:wrap;gap:44px;}
.contact-info{flex:1 1 320px;min-width:260px;}
.contact-info h3{font-size:15px;font-weight:600;margin:0 0 6px;}
.contact-info p{font-size:14px;color:var(--muted3);line-height:1.7;margin:0 0 18px;}
.contact-info p.muted-short{color:var(--muted);margin:0 0 18px;}
.contact-map{aspect-ratio:16/9;border-radius:14px;overflow:hidden;border:none;width:100%;}
.contact-form{display:flex;flex-direction:column;gap:12px;flex:1 1 320px;min-width:260px;}
.contact-form input,.contact-form textarea{
  padding:13px 16px;border-radius:10px;border:1px solid var(--border-light);font-size:14px;font-family:inherit;
}
.contact-form textarea{resize:vertical;}
.contact-form button{
  background:var(--green);color:var(--white);border:none;padding:15px;border-radius:999px;font-weight:600;cursor:pointer;
}
.contact-form .success{color:var(--green);font-weight:600;}

/* ---- wishlist page ---- */
.wishlist-page{max-width:1280px;margin:0 auto;padding:24px 24px 96px;}
.wishlist-page h1{font-size:32px;font-weight:600;margin:0 0 28px;}
.wishlist-empty{color:var(--muted);}

/* ---- cookie consent ---- */
.cookie-banner{
  position:fixed;left:16px;right:16px;bottom:16px;max-width:560px;margin:0 auto;
  background:oklch(20% 0.01 90);color:var(--white);padding:18px 20px;border-radius:16px;
  box-shadow:0 8px 24px oklch(20% 0.01 90 / 0.35);z-index:70;display:none;
  flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;
}
.cookie-banner.show{display:flex;}
.cookie-banner p{font-size:13px;line-height:1.5;margin:0;flex:1 1 280px;color:oklch(92% 0.01 90);}
.cookie-banner a{color:var(--white);text-decoration:underline;}
.cookie-banner .actions{display:flex;gap:8px;}
.cookie-banner button{
  border:none;border-radius:999px;padding:9px 16px;font-size:12.5px;font-weight:600;cursor:pointer;
}
.cookie-banner .accept{background:var(--white);color:oklch(20% 0.01 90);}
.cookie-banner .reject{background:transparent;color:var(--white);border:1px solid oklch(50% 0.01 90);}

@media (max-width:640px){
  .hero,.story,.journey{gap:28px;}
  .cta-inner{padding:48px 28px;}
}
