@charset "utf-8";
/* CSS Document */

/* font */
@font-face {
  font-family: 'Comfortaa-Regular';
  src: url('fonts/comfortaa/Comfortaa-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'Comfortaa-Light';
  src: url('fonts/comfortaa/Comfortaa-Light.ttf') format('truetype'); 
}
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot?v=4.5.0');
  src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), 
  url('fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), 
  url('fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), 
  url('fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), 
  url('fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
:root{
  /* --- color --- */
  --ink:        #2B241C;
  --walnut:     #4A3526;
  --walnut-2:   #3A2A1E;
  --linen:      #EDE6D8;
  --linen-2:    #F7F3EA;
  --paper:      #FFFDF8;
  --brass:      #c00000;
  --brass2:      #A97C36;
  --brass-dark: #8C6528;
  --sage:       #6E7A5C;
  --sage-dark:  #576148;
  --line:       #DCD2BE;
  --line-dark:  rgba(255,255,255,.14);
  --muted:      #7A6E5C;
  --muted-inv:  #C9BFAE;
  --theme-white: #fff; 
  --bg: #F7F5F0;
  --text: #2C2C2C;
  --border: #D8E8E7;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 123, 116, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 123, 116, 0.14);

  /* --- type --- */
  --f-display: "Comfortaa-Regular", "Segoe UI", sans-serif;
  --f-body:    "Comfortaa-Regular", "Segoe UI", sans-serif;
  --f-mono:    "Comfortaa-Light", "Segoe UI", sans-serif;

  /* --- scale --- */
  --radius: 3px;
  --radius-lg: 6px;
  --shadow-card: 0 1px 2px rgba(43,36,28,.06), 0 8px 24px -12px rgba(43,36,28,.18);
  --shadow-lift: 0 18px 40px -16px rgba(43,36,28,.35);
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--linen);
  font-size:14px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; font-weight:600; color:var(--ink); }
.wrap{ max-width:var(--container); margin:0 auto; padding:0 32px; }

:focus-visible{ outline:2px solid var(--brass); outline-offset:3px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---steps--- */
.MultSteps {
  border-bottom: 1px solid #e6e6e6;
  padding: 4em 0;
  font-family: var(--f-display);
}
@media only screen and (min-width: 1170px) {
.MultSteps {
    padding: 3em 0;
  }
}
.multi-steps {
  width: 95%;
  max-width: 768px;
  padding: 0.5em 1em;
  margin: 1em auto;
  background-color: #edeff0;
  border-radius: .25em;
}
.multi-steps:after {
  content: "";
  display: table;
  clear: both;
}
.multi-steps li {
  display: inline-block;
  margin: 0.5em 0;
}
.multi-steps li::after {
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}
.multi-steps li:last-of-type::after {
  display: none;
}
.multi-steps li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--sage);
}
.multi-steps li.current > * {
  color: var(--brass-dark);
}
.multi-steps a, .multi-steps em {
  margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
	text-decoration:none;
}
.no-touch .multi-steps a:hover {
  color: var(--sage);
}
@media only screen and (min-width: 768px) {
.multi-steps {
    padding: 0 1.2em;
  }
.multi-steps li {
    margin: 1.2em 0;
  }
.multi-steps li::after {
    margin: 0 1em;
  }
.multi-steps li > * {
    font-size: .9em;
  }
}
@media only screen and (min-width: 768px) {
  .multi-steps {
    /* reset style */
    background-color: transparent;
    padding: 0;
    text-align: center;
  }
.multi-steps li {
    position: relative;
    float: none;
    margin: 0.4em 40px 0.4em 0;
}
.multi-steps li:last-of-type {
    margin-right: 0;
  }
.multi-steps li::after {
    position: absolute;
    content: '';
    height: 4px;
    background: var(--theme-white);
    margin: 0;
}
.multi-steps li.visited::after {
    background-color: var(--sage);
}
.multi-steps li > *, .multi-steps li.current > * {
    position: relative;
    color: var(--ink);
}
.multi-steps.text-bottom li {
    width: 80px;
    text-align: center;
}
.multi-steps.text-bottom li::after {
    position: absolute;
    left: 50%;
    width: calc(100% + 40px);
}
.multi-steps.text-bottom li > *::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--theme-white);
  }
.multi-steps.text-bottom li.visited > *::before,
 .multi-steps.text-bottom li.current > *::before {
    background-color: var(--sage);
}
.no-touch .multi-steps.text-bottom a:hover {
    color: var(--sage);
}
.no-touch .multi-steps.text-bottom a:hover::before {
    box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
}
.multi-steps.text-bottom li::after {
    top: 3px;
}
.multi-steps.text-bottom li > * {
    padding-top: 20px;
}
.multi-steps.text-bottom li > *::before {
    top: 0;
}
}
.multi-steps.count li {
  counter-increment: steps;
}

.multi-steps.count li > *::before {
  content: counter(steps) " - ";
}

@media only screen and (min-width: 768px) {
  .multi-steps.text-bottom.count li > *::before {
    content: counter(steps);
    height: 26px;
    width: 26px;
    line-height: 26px;
    font-size: 1em;
    color: #ffffff;
  }

.multi-steps.text-bottom.count li:not(.current) em::before {
    color: #2c3f4c;
}
  .multi-steps.text-bottom.count .visited em::before {
    color: var(--theme-white) !important;
}
.multi-steps.text-bottom.count li::after {
    top: 11px;
}
.multi-steps.text-bottom.count li > * {
    padding-top: 34px;
  }
}
@media only screen and (max-width: 600px) {
.MultSteps {
  padding: 1em 0;
}
}
/* ---steps--- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brass-dark);
}
.eyebrow.on-dark{ color:#D8B876; }

.stitch-divider{
  height:0;
  border-top:1.5px dashed var(--line);
  margin:0;
}
.stitch-divider.on-dark{ border-top-color:var(--line-dark); }

.main_content {
  width: 100%;
  max-width: var(--container);
  display:block;
  margin:auto;
  position: relative;
    z-index: 0;
}
.main_content .text {
  width: 100%;
  padding:0 80px;
}
.main_content .text h1 {
  font-size: 26px;
  margin-bottom:20px;
}
.main_content .text h2 {
  font-size: 24px;
}
.main_content .text .article-top-photo {
  width: 100%;
  margin: 0 auto;
  display:block;
}
.main_content .text .article-top-photo figure {
  width: 100%;
  margin:0;
  padding:0;
  height:500px;
}
.main_content .text .article-top-photo figure img {
  width: 100%;
  height:100%;
  object-fit:cover;
}

.main_content .text h3, .main_content .text h4 {
  font-size: 18px;
}
.main_content .text.bpr {
  background: var(--theme-white);
  border-radius: var(--radius-md);
}

.resources-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}
.resource-card {
  background: var(--theme-white);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,79,94,0.08);
  display: flex;
  align-items: flex-start;
  padding: 18px 24px;
  min-width: 320px;
  flex: 1 1 320px;
}
.resource-icon {
  font-size: 2.2em;
  color: var(--scdcolor);
  margin-right: 18px;
  margin-top: 4px;
}
.resource-info {
  flex: 1;
}
.resource-title {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 8px;
}
.resource-action {
  display: inline-block;
  background: var(--muted-inv);
  color: var(--theme-white);
  border-radius: 6px;
  padding: 7px 18px;
  text-decoration: none;
  font-size: 0.95em;
  margin-top: 6px;
  transition: background 0.2s;
}
.resource-action:hover {
  background: var(--muted-inv);
}
.gallery-grid {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.gallery-grid a {
  width: calc(25% - 10px);
  height: 150px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(40,79,94,0.10);
  transition: transform 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Topbar + header
   -------------------------------------------------------------------------- */
.topbar{
  background:var(--walnut-2);
  color:var(--muted-inv);
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:.02em;
}
.topbar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 32px;
}
.topbar .topbar-links{ display:flex; gap:22px; }
.topbar a:hover{ color:#fff; }

.site-header{
  background:var(--linen-2);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:40;
}
.site-header .wrap{
  display:flex; align-items:center; gap:40px;
  padding-top:18px; padding-bottom:18px;
}
.logo{
  font-family:var(--f-display);
  font-weight:600;
  font-size:18px;
  letter-spacing:.01em;
  display:flex; flex-direction:column; line-height:1.1;
  white-space:nowrap;
}
.logo img {
  width:100px;
}
.logo small{
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.16em;
  color:var(--brass-dark);
  font-weight:500;
  margin-top:3px;
}
.main-nav{ display:flex; gap:6px; flex:1; }
.nav-item{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:5px;
  font-size:14px; font-weight:500;
  padding:10px 12px; border-radius:var(--radius);
  border-bottom:2px solid transparent;
  transition:background .15s, color .15s;
}
.nav-link:hover, .nav-item:hover .nav-link, .nav-item.open .nav-link{
  background:var(--linen); color:var(--brass-dark);
}
.nav-link .chev{ width:11px; height:11px; stroke:currentColor; fill:none; stroke-width:2; transition:transform .18s ease; }
.nav-item:hover .nav-link .chev, .nav-item.open .nav-link .chev{ transform:rotate(180deg); }
.nav-item:not(.has-dropdown) .chev{ display:none; }
.nav-link.current{ background:var(--linen); color:var(--brass-dark); }
.m-nav-row a.current{ color:var(--brass-dark); }

/* Desktop dropdown panel */
.dropdown-panel{
  position:absolute; top:calc(100% + 8px); left:0;
  min-width:230px;
  background:var(--linen-2);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lift);
  padding:20px;
  display:flex; gap:32px;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s;
  z-index:50;
}
.dropdown-panel.dropdown-panel-wide{ min-width:420px; }
/* keep the last couple of panels from spilling off the right edge of the viewport */
.nav-item:nth-last-child(2) .dropdown-panel,
.nav-item:nth-last-child(3) .dropdown-panel{ left:auto; right:0; }
.nav-item:hover .dropdown-panel,
.nav-item:focus-within .dropdown-panel,
.nav-item.open .dropdown-panel{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown-col{ display:flex; flex-direction:column; gap:2px; min-width:170px; }
.dropdown-col h5{
  font-family:var(--f-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--walnut-2); margin:0 0 8px; font-weight:600;
}
.dropdown-col a{
  font-size:12px; padding:7px 8px; border-radius:var(--radius); color:var(--ink);
  transition:background .12s, color .12s;
}
.dropdown-col a:hover{ background:var(--linen); color:var(--brass-dark); }
.dropdown-col a.view-all{
  margin-top:8px; padding-top:11px; border-top:1px dashed var(--line);
  font-family:var(--f-mono); font-size:11px; color:var(--brass-dark); font-weight:600;
}

.header-actions{ display:flex; align-items:center; gap:20px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid transparent;
  transition:background .15s, border-color .15s;
  flex-shrink:0;
}
.icon-btn:hover{ background:var(--linen); border-color:var(--line); }
.icon-btn svg{ width:19px; height:19px; stroke:var(--ink); fill:none; stroke-width:1.6; }
.cart-btn{ position:relative; }
.cart-count{
  position:absolute; top:-2px; right:-2px;
  background:var(--brass); color:#fff;
  font-family:var(--f-mono); font-size:10px; font-weight:600;
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* Hamburger — hidden on desktop */
.menu-toggle{
  display:none;
  width:42px; height:42px; border-radius:50%;
  border:1px solid transparent; background:transparent;
  align-items:center; justify-content:center; flex-shrink:0;
}
.menu-toggle:hover{ background:var(--linen); border-color:var(--line); }
.menu-toggle svg{ width:21px; height:21px; stroke:var(--ink); fill:none; stroke-width:1.7; }

/* --------------------------------------------------------------------------
   Mobile menu (off-canvas)
   -------------------------------------------------------------------------- */
.mobile-menu-scrim{
  display:none; position:fixed; inset:0; background:rgba(28,22,15,.5);
  z-index:90; opacity:0; visibility:hidden; transition:opacity .2s ease, visibility .2s;
}
.mobile-menu-scrim.open{ opacity:1; visibility:visible; }
.mobile-menu{
  position:fixed; top:0; right:0; bottom:0; width:min(360px, 88vw);
  background:var(--linen-2); z-index:95;
  transform:translateX(100%); transition:transform .26s ease;
  display:flex; flex-direction:column;
  box-shadow:-16px 0 40px -20px rgba(28,22,15,.5);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px; border-bottom:1px solid var(--line); flex-shrink:0;
}
.mobile-menu-head span{ font-family:var(--f-display); font-weight:600; font-size:14px; }
.mobile-menu-close{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:none;
  display:flex; align-items:center; justify-content:center;
}
.mobile-menu-close svg{ width:17px; height:17px; stroke:var(--ink); fill:none; stroke-width:1.8; }
.mobile-menu-body{ overflow-y:auto; padding:10px 10px 24px; flex:1; -webkit-overflow-scrolling:touch; }
.m-nav-item{ border-bottom:1px solid var(--line); }
.m-nav-item:last-child{ border-bottom:none; }
.m-nav-row{ display:flex; align-items:stretch; }
.m-nav-row > a{
  flex:1; padding:16px 10px; font-size:14px; font-weight:600; font-family:var(--f-body);
}
.m-nav-expand{
  width:52px; background:none; border:none; display:flex; align-items:center; justify-content:center;
}
.m-nav-expand svg{ width:15px; height:15px; stroke:var(--ink); fill:none; stroke-width:2; transition:transform .18s ease; }
.m-nav-item.open .m-nav-expand svg{ transform:rotate(180deg); }
.m-nav-sub{
  max-height:0; overflow:hidden; transition:max-height .22s ease;
  padding:0 10px;
}
.m-nav-item.open .m-nav-sub{ max-height:600px; padding-bottom:10px; }
.m-nav-sub a{
  display:block; padding:10px 12px; font-size:14px; color:var(--walnut-2); border-radius:var(--radius);
}
.m-nav-sub a:hover{ background:var(--linen); color:var(--ink); }
.m-nav-sub-head{
  font-family:var(--f-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--walnut-2); padding:10px 12px 2px;
}
.mobile-menu-foot{
  border-top:1px solid var(--line); padding:16px 20px; flex-shrink:0;
  display:flex; flex-direction:column; gap:10px;
  font-family:var(--f-mono); font-size:12px; color:var(--walnut-2);
}
.mobile-menu-foot a:hover{ color:var(--brass-dark); }
body.menu-lock{ overflow:hidden; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--f-body); font-weight:600; font-size:14px;
  padding:14px 26px; border-radius:var(--radius);
  border:1px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--brass); color:#fff; }
.btn-primary:hover{ background:var(--brass-dark); box-shadow:var(--shadow-card); }
.btn-dark{ background:var(--ink); color:var(--linen-2); }
.btn-dark:hover{ background:#000; }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--linen-2); }
.btn-outline.on-dark{ color:#fff; border-color:rgba(255,255,255,.5); }
.btn-outline.on-dark:hover{ background:#fff; color:var(--walnut); }
.btn-block{ width:100%; }
.btn-lg{ padding:16px 30px; font-size:15px; }

.tag{
  --tag-bg: var(--paper);
  position:relative;
  display:inline-flex; align-items:baseline; gap:6px;
  background:var(--tag-bg);
  border:1.5px dashed var(--brass);
  border-radius:2px;
  padding:6px 12px 6px 20px;
  font-family:var(--f-mono);
  color:var(--ink);
}
.tag::before{
  /* punch hole */
  content:"";
  position:absolute; left:8px; top:50%; transform:translateY(-50%);
  width:5px; height:5px; border-radius:50%;
  background:var(--linen);
  border:1.5px solid var(--brass);
}
.tag .tag-price{ font-size:15px; font-weight:600; }
.tag .tag-old{ font-size:12px; color:var(--walnut-2); text-decoration:line-through; }
.tag.tag-sale{ border-color:var(--sage); }
.tag.tag-sale::before{ border-color:var(--sage); }
.tag.tag-sale .tag-price{ color:var(--sage-dark); }
.tag.tag-lg{ padding:10px 18px 10px 28px; }
.tag.tag-lg .tag-price{ font-size:22px; }
.tag.tag-lg::before{ left:12px; width:6px; height:6px; }

.pct-badge{
  font-family:var(--f-mono); font-size:11px; font-weight:600;
  background:var(--sage); color:#fff;
  padding:4px 8px; border-radius:2px; letter-spacing:.02em;
}

/* --------------------------------------------------------------------------
   Hero (index)
   -------------------------------------------------------------------------- */
.hero{
  background:var(--linen);
  padding:64px 0 0;
  overflow:hidden;
}
.hero .wrap{
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:center;
}
.hero-copy .eyebrow{ margin-bottom:18px; display:inline-block; }
.hero-copy h1{
  font-size:clamp(38px, 4vw, 60px);
  line-height:1.04;
  letter-spacing:-.01em;
  margin-bottom:22px;
}
.hero-copy h1 em{ font-style:italic; color:var(--brass-dark); }
.hero-copy p{
  font-size:15px; color:var(--walnut-2); max-width:44ch; margin-bottom:32px;
}
.hero-actions{ display:flex; gap:14px; align-items:center; }
.hero-since{
  display:flex; align-items:center; gap:10px;
  margin-top:40px; font-family:var(--f-mono); font-size:12px; color:var(--walnut-2);
}
.hero-since .since-badge{
  width:52px; height:52px; border-radius:50%;
  border:1.5px dashed var(--brass);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-display); font-weight:600; color:var(--brass-dark); font-size:12px;
  flex-shrink:0;
}
.hero-media{ position:relative; }
.hero-media img{
  width:100%; height:560px; object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lift);
}
.hero-media .float-tag{
  position:absolute; left:-18px; bottom:44px;
  background:var(--paper);
  box-shadow:var(--shadow-card);
  transform:rotate(-3deg);
}

/* --------------------------------------------------------------------------
   Category strip
   -------------------------------------------------------------------------- */
.section{ padding:88px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:40px; gap:24px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(26px,2.6vw,34px); margin-top:10px; }
.section-head p{ color:var(--walnut-2); max-width:48ch; margin-top:10px; }
.section-head .see-all{
  font-family:var(--f-mono); font-size:12px; letter-spacing:.05em;
  border-bottom:1px solid var(--ink); padding-bottom:2px; white-space:nowrap;
}

.cat-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.cat-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:3/4; background:var(--walnut);
}
.cat-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(43,36,28,0) 40%, rgba(28,22,15,.82) 100%);
}
.cat-card-label{
  position:absolute; left:18px; bottom:16px; right:18px; z-index:2;
  color:#fff; display:flex; justify-content:space-between; align-items:flex-end;
}
.cat-card-label h3{ color:#fff; font-size:16px; }
.cat-card-label span{
  font-family:var(--f-mono); font-size:11px; color:var(--muted-inv);
}

/* --------------------------------------------------------------------------
   Heritage / story band
   -------------------------------------------------------------------------- */
.story{
  background:linear-gradient(155deg, var(--walnut) 0%, var(--walnut-2) 100%);
  color:var(--linen-2);
  padding:96px 0;
}
.story .wrap{ display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center; }
.story h2{
  color:#fff; font-size:clamp(28px,3vw,40px); line-height:1.12; margin:14px 0 22px;
}
.story p{ color:var(--muted-inv); font-size:16px; max-width:52ch; margin-bottom:16px; }
.story-stats{
  display:flex; gap:40px; margin-top:36px; padding-top:32px;
  border-top:1.5px dashed var(--line-dark);
}
.story-stats div strong{
  display:block; font-family:var(--f-display); font-size:26px; color:#fff;
}
.story-stats div span{ font-family:var(--f-mono); font-size:11px; color:var(--muted-inv); }
.story-media{ position:relative; }
.story-media img{ width:100%; border-radius:var(--radius-lg); height:420px; object-fit:cover; }

/* --------------------------------------------------------------------------
   Product cards + grid
   -------------------------------------------------------------------------- */
.product-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.product-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.product-card{
  background:var(--linen-2);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-3px); border-color:transparent; }
.product-media{
  position:relative; aspect-ratio:1/1; background:var(--paper); overflow:hidden;
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .product-media img{ transform:scale(1.05); }
.product-media .pct-badge{ position:absolute; top:12px; left:12px; }
.wish-btn{
  position:absolute; top:10px; right:10px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,253,248,.9); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(-4px);
  transition:opacity .18s ease, transform .18s ease;
}
.product-card:hover .wish-btn{ opacity:1; transform:none; }
.wish-btn svg{ width:15px; height:15px; stroke:var(--ink); fill:none; stroke-width:1.6; }
.quick-add{
  position:absolute; left:12px; right:12px; bottom:-46px;
  transition:bottom .2s ease;
}
.product-card:hover .quick-add{ bottom:12px; }
.product-body{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-cat{ font-family:var(--f-mono); font-size:11px; color:var(--brass-dark); letter-spacing:.05em; }
.product-body h3{ font-size:16px; font-weight:600; line-height:1.3; }
.product-body h3 a:hover{ color:var(--brass-dark); }
.product-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; }

/* --------------------------------------------------------------------------
   Value props
   -------------------------------------------------------------------------- */
.value-strip{
  background:var(--linen-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.value-strip .wrap{ padding:44px 32px; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.value-item{ display:flex; gap:14px; align-items:flex-start; }
.value-item svg{ width:26px; height:26px; stroke:var(--brass-dark); fill:none; stroke-width:1.4; flex-shrink:0; margin-top:2px; }
.value-item h4{ font-size:14px; margin-bottom:4px; }
.value-item p{ font-size:13px; color:var(--walnut-2); margin:0; }

/* --------------------------------------------------------------------------
   Promo split (φοιτητικό / επαγγελματικό)
   -------------------------------------------------------------------------- */
.promo-split{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.promo-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:340px;
  display:flex; align-items:flex-end; padding:36px;
}
.promo-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.promo-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(28,22,15,.86), rgba(28,22,15,.1) 65%); }
.promo-content{ position:relative; z-index:2; color:#fff; max-width:34ch; }
.promo-content .eyebrow{ color:#D8B876; }
.promo-content h3{ color:#fff; font-size:22px; margin:10px 0 10px; }
.promo-content p{ color:var(--muted-inv); font-size:14px; margin-bottom:18px; }

/* --------------------------------------------------------------------------
   Newsletter / contact CTA
   -------------------------------------------------------------------------- */
.cta-band{ background:var(--brass); color:#fff; }
.cta-band .wrap{
  padding:64px 32px; display:flex; justify-content:space-between; align-items:center; gap:32px;
}
.cta-band h2{ color:#fff; font-size:clamp(24px,2.6vw,32px); max-width:20ch; }
.cta-band p{ color:rgba(255,255,255,.82); margin-top:10px; max-width:46ch; }
.cta-band .btn-outline{ color:#fff; border-color:rgba(255,255,255,.55); }
.cta-band .btn-outline:hover{ background:#fff; color:var(--sage-dark); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer{ background:var(--walnut-2); color:var(--muted-inv); }
.footer-top{ padding:72px 32px 48px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:32px; }
.footer-brand .logo{ color:#fff; }
.footer-brand p{ font-size:13px; margin-top:16px; max-width:32ch; color:var(--muted-inv); }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center;
}
.footer-social svg{ width:15px; height:15px; stroke:var(--muted-inv); fill:none; stroke-width:1.5; }
.footer-col h4{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:#fff; margin-bottom:18px; font-weight:600;
}
.footer-col li{ margin-bottom:11px; font-size:13px; }
.footer-col a:hover{ color:#fff; }
.footer-contact li{ font-size:13px; margin-bottom:12px; color:var(--muted-inv); }
.footer-bottom{
  border-top:1px solid var(--line-dark);
  padding:22px 32px; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--f-mono); font-size:11px; color:#8f8271; flex-wrap:wrap; gap:12px;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb{
  padding:20px 0; font-family:var(--f-mono); font-size:12px; color:var(--walnut-2);
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.breadcrumb a:hover{ color:var(--brass-dark); }
.breadcrumb span{ opacity:.5; }

/* --------------------------------------------------------------------------
   Product list page (filters + grid)
   -------------------------------------------------------------------------- */
.category-header{ padding:8px 0 44px; border-bottom:1px solid var(--line); }
.category-header h1{ font-size:clamp(30px,3.4vw,44px); }
.category-header p{ color:var(--walnut-2); max-width:60ch; margin-top:14px; font-size:15px; }

.listing{ padding:48px 0 96px; display:grid; grid-template-columns:250px 1fr; gap:48px; align-items:flex-start; }
.filters{ position:sticky; top:96px; }
.filter-group{ padding-bottom:26px; margin-bottom:26px; border-bottom:1px dashed var(--line); }
.filter-group:last-child{ border-bottom:none; }
.filter-group h4{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink); margin-bottom:16px;
}
.filter-opt{ display:flex; align-items:center; gap:10px; margin-bottom:11px; font-size:12px; color:var(--walnut-2); cursor:pointer; }
.filter-opt input{ accent-color:var(--brass); width:15px; height:15px; }
.filter-opt:hover{ color:var(--ink); }
.filter-opt .count{ margin-left:auto; font-family:var(--f-mono); font-size:11px; color:var(--walnut-2); }
.swatch-row{ display:flex; gap:8px; flex-wrap:wrap; }
.swatch{
  width:26px; height:26px; border-radius:50%; border:1.5px solid var(--line); cursor:pointer;
  box-shadow:0 0 0 1.5px transparent;
}
.swatch:hover, .swatch.active{ box-shadow:0 0 0 1.5px var(--paper), 0 0 0 3px var(--brass); }

.listing-toolbar{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:24px;
  font-size:13px; color:var(--walnut-2);
}
.listing-toolbar select{
  font-family:var(--f-body); font-size:13px; border:1px solid var(--line);
  background:var(--linen-2); padding:9px 14px; border-radius:var(--radius); color:var(--ink);
}
.pagination{ display:flex; gap:8px; justify-content:center; margin-top:56px; font-family:var(--f-mono); font-size:13px; }
.pagination a, .pagination span{
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:var(--radius);
}
.pagination .active{ background:var(--ink); color:#fff; border-color:var(--ink); }
.pagination a:hover{ border-color:var(--brass); color:var(--brass-dark); }

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */
.product-detail{ padding:16px 0 100px; display:grid; grid-template-columns:1.05fr 1fr; gap:64px; }
.gallery-main{
  aspect-ratio:1/1; border-radius:var(--radius-lg); overflow:hidden; background:var(--paper);
  border:1px solid var(--line); margin-bottom:14px; position:relative;
}
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.gallery-thumbs button{
  aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; padding:0;
  border:1.5px solid var(--line); background:var(--paper);
}
.gallery-thumbs button.active{ border-color:var(--brass); }
.gallery-thumbs img{ width:100%; height:100%; object-fit:cover; }

.pd-info .eyebrow{ margin-bottom:12px; display:block; }
.pd-info h1{ font-size:clamp(28px,3vw,38px); line-height:1.1; margin-bottom:14px; }
.pd-rating{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--walnut-2); margin-bottom:22px; }
.pd-rating .stars{ color:var(--brass); letter-spacing:1px; }
.pd-price-row{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.pd-desc{ color:var(--walnut-2); font-size:15px; margin-bottom:28px; max-width:52ch; }

.option-group{ margin-bottom:24px; }
.option-group h4{ font-size:13px; font-weight:600; margin-bottom:12px; display:flex; gap:8px; }
.option-group h4 .sel{ font-weight:400; color:var(--walnut-2); font-family:var(--f-mono); font-size:12px; }
.option-row{ display:flex; gap:10px; flex-wrap:wrap; }
.opt-pill{
  padding:9px 16px; border:1px solid var(--line); border-radius:20px; font-size:13px;
  background:var(--linen-2); transition:border-color .15s, background .15s;
}
.opt-pill:hover{ border-color:var(--brass); }
.opt-pill.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.qty-cart-row{ display:flex; gap:14px; margin:30px 0 22px; }
.qty-input{
  display:flex; align-items:center; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
}
.qty-input button{ width:42px; height:52px; background:var(--linen-2); border:none; font-size:14px; }
.qty-input button:hover{ background:var(--line); }
.qty-input input{
  width:44px; text-align:center; border:none; background:transparent; font-family:var(--f-mono); font-size:14px;
  height:52px;
}

.trust-row{ display:flex; flex-direction:column; gap:14px; padding-top:22px; border-top:1px dashed var(--line); }
.trust-item{ display:flex; gap:12px; align-items:center; font-size:13px; color:var(--walnut-2); }
.trust-item svg{ width:19px; height:19px; stroke:var(--sage-dark); fill:none; stroke-width:1.5; flex-shrink:0; }

.pd-tabs{ margin-top:0px; }
.tab-headers{ display:flex; gap:0; border-bottom:1px solid var(--line); margin-bottom:32px; }
.tab-headers button{
  background:none; border:none; padding:16px 26px; font-family:var(--f-body); font-weight:600;
  font-size:14px; color:var(--walnut-2); border-bottom:2px solid transparent; margin-bottom:-1px;
}
.tab-headers button.active{ color:var(--ink); border-color:var(--brass); }
.tab-panel{ display:none; max-width:760px; color:var(--walnut-2); font-size:15px; line-height:1.7; }
.tab-panel.active{ display:block; }
.spec-table{ width:100%; border-collapse:collapse; margin-top:8px; }
.spec-table tr{ border-bottom:1px dashed var(--line); }
.spec-table td{ padding:12px 0; font-size:14px; }
.spec-table td:first-child{ color:var(--walnut-2); width:220px; font-family:var(--f-mono); font-size:12px; }
.spec-table td:last-child{ color:var(--ink); font-weight:500; }

/* --------------------------------------------------------------------------
   Filter toggle (mobile, product listing)
   -------------------------------------------------------------------------- */
.filter-toggle{
  display:none; width:100%; align-items:center; justify-content:space-between;
  padding:14px 18px; margin-bottom:18px;
  background:var(--linen-2); border:1px solid var(--line); border-radius:var(--radius);
  font-family:var(--f-body); font-weight:600; font-size:14px;
}
.filter-toggle svg{ width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.8; transition:transform .18s ease; }
.filter-toggle.open svg{ transform:rotate(180deg); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px){
  .main-nav{ display:none; }
  .menu-toggle{ display:flex; }
  .mobile-menu-scrim{ display:block; }
}

@media (max-width: 1080px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid.cols-3{ grid-template-columns:repeat(2,1fr); }
  .value-strip .wrap{ grid-template-columns:repeat(2,1fr); }
  .listing{ grid-template-columns:1fr; gap:0; }
  .filters{ position:static; display:none; padding-bottom:8px; margin-bottom:8px; border-bottom:1px solid var(--line); }
  .filters.open{ display:block; }
  .filter-toggle{ display:flex; }
  .product-detail{ grid-template-columns:1fr; gap:36px; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .promo-split{ grid-template-columns:1fr; }
  .story .wrap{ grid-template-columns:1fr; }
  .story-media img{ height:280px; }
  .gallery-thumbs{ grid-template-columns:repeat(5,1fr); }
}

@media (max-width: 720px){
  .wrap{ padding:0 20px; }
  .topbar .wrap{ padding:8px 20px; }
  .topbar .topbar-links:first-child span:last-child{ display:none; }
  .site-header .wrap{ padding-top:14px; padding-bottom:14px; gap:12px;justify-content: space-around; }
  .logo{ font-size:16px; }
  .logo small{ font-size:9px; letter-spacing:.1em; }
  .header-actions{ gap:6px; }
  .icon-btn{ width:38px; height:38px; }

  .hero{ padding-top:36px; }
  .hero .wrap{ grid-template-columns:1fr; gap:32px; }
  .hero-media img{ height:300px; }
  .hero-media .float-tag{ left:12px; bottom:-16px; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-since{ margin-top:32px; }

  .cat-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .product-grid, .product-grid.cols-3{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .product-body{ padding:14px 14px 16px; gap:8px; }
  .quick-add{ display:none; }
  .wish-btn{ opacity:1; transform:none; }

  .section{ padding:52px 0; }
  .section-head{ margin-bottom:26px; }
  .story{ padding:64px 0; }

  .footer-top{ grid-template-columns:1fr 1fr; padding:44px 20px; gap:28px 20px; }
  .footer-brand{ grid-column:1 / -1; }
  .footer-bottom{ padding:18px 20px; flex-direction:column; align-items:flex-start; }
  .cta-band .wrap{ flex-direction:column; align-items:flex-start; padding:44px 20px; }
  .value-strip .wrap{ grid-template-columns:1fr; padding:28px 20px; gap:22px; }

  .breadcrumb{ padding:14px 0; }
  .category-header{ padding-bottom:28px; }
  .listing-toolbar{ flex-direction:column; align-items:flex-start; gap:10px; }
  .listing{ padding:32px 0 64px; }

  .product-detail{ padding-top:8px; padding-bottom:64px; }
  .gallery-thumbs{ grid-template-columns:repeat(4,1fr); }
  .pd-price-row{ flex-wrap:wrap; }
  .qty-cart-row{ flex-wrap:wrap; }
  .qty-cart-row .btn{ flex-basis:100%; order:1; }
  .qty-input{ order:2; }
  .qty-cart-row .icon-btn{ order:3; }
  .pd-tabs{ margin-top:0px; }
  .tab-headers{ overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .tab-headers::-webkit-scrollbar{ display:none; }
  .tab-headers button{ padding:14px 16px; white-space:nowrap; }
  .spec-table td:first-child{ width:150px; }

  .promo-card{ min-height:280px; padding:26px; }
  .gallery-grid a {
  width: calc(50% - 10px);
  height: 150px;
}
.main_content .text {
  padding:0 10px;
}
}

@media (max-width: 420px){
  .cat-grid{ grid-template-columns:1fr; }
  .product-grid, .product-grid.cols-3{ grid-template-columns:1fr 1fr; }
  .gallery-thumbs{ grid-template-columns:repeat(4,1fr); }
  .footer-top{ grid-template-columns:1fr; }
   .gallery-grid a {
  width: calc(50% - 10px);
  height: 100px;
}
.main_content .text {
  padding:0 10px;
}
}


.paymentBold {
	font-family: 'Comfortaa-Regular', sans-serif;
	font-weight:normal;
	padding:20px;
	display:block;
	margin:auto;
	width:95%;
	color: #333;
	text-align:left;
}
.paymentBold .bankBox {
	display:flex!important;
	flex-direction: column;
	width:100%;
	margin:0 auto;
}
.paymentBold .bankBox img {
	margin-bottom: .75rem;
	width:150px;
}
.paymentBold .bank {
	vertical-align:top;
	display:flex;
	flex-direction: column;
	width:100%;
	margin:0 3px;
}
.paymentBold img {
	display:inline-block;
	margin-right:5px;
	width:30px;
}
.paymentBold .m1 {
	display:flex;
	align-items: center;
	margin:8px auto;
}
.GenText {
	font-family: 'Comfortaa-Regular', sans-serif;
	font-weight:normal;
	padding:20px;
	display:block;
	margin:auto;
	width:95%;
	color: #333;
	text-align:left;
}
.CouponText {
	font-family: 'Comfortaa-Regular', sans-serif;
	font-weight:normal;
	padding:10px;
	display:block;
	margin:auto;
	width:100%;
	color: #fff;
	text-align:left;
	background:#e68a00;
	border:solid 1px #e68a00;
}
.contactrowform {
	width:100%;
	padding:0 50px 20px 50px;
}
.CoupnBox {
	border:solid 1px #e68a00;
	display:block;
	margin:auto;
	width:100%;
	padding:0 0 10px 0;
}
.CouponText i {
	display:inline-block;
	margin-right:5px;
	font-size:1em;
	color: #fff;
}
.points {
	font-family: 'Comfortaa-Regular', sans-serif;
	font-weight:normal;
	padding:10px;
	display:block;
	margin:auto;
	width:100%;
	color: #333;
	text-align:left;
}
.points i {
	display:inline-block;
	margin-right:5px;
	font-size:1em;
	color: #333;
}
.bubble {
	font-weight:400;
	font-size:1.15em;
	background:#8e6842;
	padding:5px;
	color:#fff;
	margin-left:10px;
}
.pflexfinal {
	width:100%;
	display: flex;
	flex-direction: row;
	gap:10px;
}
table.recipientTable {
	width:100%;
	border-collapse: collapse;
	font-family: 'Comfortaa-Regular', sans-serif;
	color: #333;
	font-size: .9em;
	overflow: scroll;
	margin:0 auto .75rem auto;
}
table.recipientTable thead th {
	color:#fff;
	background-color: #333;
	padding:5px;
	border-left: rgba(239,239,239,.35) solid 1px;
}
table.recipientTable tbody td {
	padding:5px;
	border-left: rgba(239,239,239,.35) solid 1px;
}
@media all and (max-width:768px) {
	.pflexfinal {
		flex-direction: column;
	}
	table.recipientTable {
		 display: block;
	}
}

.Final_thank_you {
	font-family: 'Comfortaa-Regular', sans-serif;
	font-weight:normal;
	padding:25px 0;
	display:block;
	margin:1rem auto;
	text-align:center;
	font-size:1.25em;
	color: var(--theme-white);
    background-color: var(--sage);
    border-color: var(--sage);
	position: relative;
    padding:1.25rem;
    border-radius: .25rem;
}
.Final_thank_you h6 {
	margin:.75rem 0;
}
.Final_thank_you.prime {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
	margin:0 auto 3% auto;
}


@media (max-width: 450px) {
.Final_thank_you {
	padding:20px 0;
	font-size:1.25em;
	line-height:1.5;
}
.GenText {
	padding:10px;
}
.paymentBold {
	padding:10px;
}
	
}
