/* ------------------------------------------------------ */
/* SHOP.4MEAND — LAYOUT (HEADER, HERO, SECTIONS, FOOTER)  */
/* ------------------------------------------------------ */


/* ------------------------------ */
/* ANNOUNCEMENT BAR               */
/* ------------------------------ */

.announcement {
  background: var(--moss);
  color: #fff;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
}

.announcement span {
  opacity: .7;
  margin: 0 .5rem;
}


/* ------------------------------ */
/* HEADER                         */
/* ------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,238,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--soft-gray);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--moss);
  white-space: nowrap;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: -.1rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.main-nav a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.main-nav a:hover {
  color: var(--terracotta);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-cart {
  background: var(--moss);
  color: #fff;
  padding: .5rem 1.4rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  font-weight: 400;
}

.btn-cart:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}


/* ------------------------------ */
/* HERO                           */
/* ------------------------------ */

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 7vw;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--moss);
  margin-bottom: .5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-haiku {
  font-family: var(--font-jp);
  font-size: .95rem;
  color: #666;
  line-height: 2.2;
  margin: 1.8rem 0 2.5rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--sage);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--moss);
  color: #fff;
  padding: .85rem 2.2rem;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s var(--ease);
  font-weight: 400;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,61,46,.2);
}

.btn-outline {
  border: 1.5px solid var(--moss);
  color: var(--moss);
  padding: .85rem 2.2rem;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s var(--ease);
  font-weight: 400;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--moss);
  color: #fff;
  transform: translateY(-2px);
}

.hero-right {
  background: var(--moss);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-deco {
  position: absolute;
  font-family: var(--font-jp);
  color: rgba(255,255,255,.06);
  font-size: 18rem;
  line-height: 1;
  font-weight: 300;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-feature-imgs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 2rem;
}

.hero-img-card {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blush);
  position: relative;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.hero-img-card:hover img {
  transform: scale(1.05);
}

.hero-img-card:first-child {
  margin-top: 3rem;
}

.hero-img-card:last-child {
  margin-top: -3rem;
  margin-bottom: 3rem;
}

.hero-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11,61,46,.8));
  color: #fff;
  padding: 1.2rem .8rem .7rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ------------------------------ */
/* PROMO STRIP                    */
/* ------------------------------ */

.promo-strip {
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.1rem 2rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.promo-strip span {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.promo-strip .sep {
  opacity: .4;
}


/* ------------------------------ */
/* SECTION SHARED                 */
/* ------------------------------ */

.section-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .6rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--moss);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
}

.section-sub {
  color: #777;
  font-size: .92rem;
  margin-top: .6rem;
  max-width: 420px;
}


/* ------------------------------ */
/* NEW ARRIVALS                   */
/* ------------------------------ */

.new-arrivals {
  padding: 7rem 7vw;
  background: var(--cream);
}

.new-arrivals-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-all {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  padding-bottom: 2px;
  transition: color .2s;
}

.view-all:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}


/* ------------------------------ */
/* PHILOSOPHY BAND                */
/* ------------------------------ */

.philosophy {
  background: var(--moss);
  color: #fff;
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,.9);
}

.philosophy-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  font-style: normal;
}

.philosophy-text .section-label {
  color: var(--gold);
}

.philosophy-text .section-title {
  color: #fff;
}

.philosophy-text p {
  color: rgba(255,255,255,.7);
  margin-top: 1.2rem;
  font-size: .9rem;
  line-height: 1.9;
}

.philosophy-text .btn-primary {
  background: var(--gold);
  color: var(--ink);
  margin-top: 2rem;
}

.philosophy-text .btn-primary:hover {
  background: #fff;
}


/* ------------------------------ */
/* COLLECTIONS                    */
/* ------------------------------ */

.collections {
  padding: 7rem 7vw;
  background: var(--parchment);
}

.collections-head {
  margin-bottom: 3.5rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.coll-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sage);
  cursor: pointer;
}

.coll-card--large {
  grid-column: span 2;
}

.coll-card-inner {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.coll-card--large .coll-card-inner {
  aspect-ratio: auto;
  height: 340px;
}

.coll-card_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.75) saturate(.85);
}

.coll-card:hover .coll-card_bg {
  transform: scale(1.06);
  filter: brightness(.6) saturate(.9);
}

.coll-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(11,61,46,.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.coll-card-title {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

.coll-card--large .coll-card-title {
  font-size: 1.7rem;
}

.coll-card-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
}

.coll-card-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: .8rem;
  transition: background .2s, border-color .2s;
}

.coll-card:hover .coll-card-arrow {
  background: var(--terracotta);
  border-color: var(--terracotta);
}


/* ------------------------------ */
/* BESTSELLERS                    */
/* ------------------------------ */

.bestsellers {
  padding: 7rem 7vw;
  background: var(--cream);
}

.bestsellers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ------------------------------ */
/* DIGITAL HIGHLIGHT              */
/* ------------------------------ */

.digital-highlight {
  padding: 7rem 7vw;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.digital-highlight .section-label {
  color: var(--gold);
}

.digital-highlight .section-title {
  color: #fff;
}

.digital-highlight .section-sub {
  color: rgba(255,255,255,.55);
  max-width: 380px;
}

.digital-highlight .btn-primary {
  margin-top: 2rem;
  background: var(--terracotta);
}

.digital-highlight .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.digital-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.digital-thumb {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #2a2a28;
  position: relative;
}

.digital-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  opacity: .85;
}

.digital-thumb:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.digital-thumb:nth-child(2) {
  margin-top: 2rem;
}


/* ------------------------------ */
/* ABOUT STRIPE                   */
/* ------------------------------ */

.about-stripe {
  padding: 7rem 7vw;
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stripe .section-title {
  margin-bottom: 1.5rem;
}

.about-stripe p {
  color: #666;
  font-size: .9rem;
  line-height: 2;
  margin-bottom: .8rem;
}

.about-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.about-stripe .btn-outline {
  padding: .65rem 1.6rem;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-visual-main {
  border-radius: 4px;
  overflow: hidden;
  width: 80%;
  aspect-ratio: 3/4;
  background: var(--sage);
}

.about-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-accent {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush);
  border: 4px solid var(--cream);
}

.about-visual-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-jp-tag {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.1rem;
  padding: .6rem .9rem;
  border-radius: 3px;
  line-height: 1.8;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .15em;
}


/* ------------------------------ */
/* TRUST BADGES                   */
/* ------------------------------ */

.trust-row {
  border-top: 1px solid var(--soft-gray);
  border-bottom: 1px solid var(--soft-gray);
  background: var(--cream);
  displayAlles klar, Poul — ich mache direkt weiter und liefere dir **den Rest von `layout.css`**, sauber abgeschlossen und vollständig.  
Danach bekommst du **Datei 3/3: `woocommerce.css`**.

Hier kommt **der fehlende Teil + Abschluss von `layout.css`**:

---

# ⭐ **`layout.css` (Fortsetzung & Abschluss)**

```css
/* ------------------------------ */
/* TRUST BADGES (continued)       */
/* ------------------------------ */

.trust-row {
  border-top: 1px solid var(--soft-gray);
  border-bottom: 1px solid var(--soft-gray);
  background: var(--cream);
  display: flex;
  justify-content: center;
  gap: 0;
}

.trust-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--soft-gray);
}

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

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
}

.trust-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .25rem;
  color: var(--moss);
  letter-spacing: .05em;
}

.trust-item span {
  font-size: .78rem;
  color: #888;
}


/* ------------------------------ */
/* INSTAGRAM                      */
/* ------------------------------ */

.instagram {
  padding: 5rem 7vw;
  background: var(--cream);
  text-align: center;
}

.instagram .section-label {
  display: block;
  margin-bottom: .4rem;
}

.instagram .section-title {
  margin-bottom: 2.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .6rem;
  margin-bottom: 2rem;
}

.ig-tile {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: var(--sage);
  position: relative;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
  filter: saturate(.8);
}

.ig-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1);
}

.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,61,46,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: 1.3rem;
}

.ig-tile:hover .ig-tile-overlay {
  opacity: 1;
}

.ig-handle {
  font-size: .85rem;
  color: var(--moss);
  letter-spacing: .12em;
}

.ig-handle a {
  border-bottom: 1px solid currentColor;
}


/* ------------------------------ */
/* NEWSLETTER                     */
/* ------------------------------ */

.newsletter {
  background: var(--moss);
  padding: 6rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text .section-label {
  color: var(--gold);
}

.newsletter-text .section-title {
  color: #fff;
}

.newsletter-text p {
  color: rgba(255,255,255,.65);
  margin-top: .8rem;
  font-size: .88rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.newsletter-form input[type="email"] {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .85rem 1.2rem;
  font-family: var(--font-body);
  font-size: .88rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}

.newsletter-form button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.newsletter-note {
  color: rgba(255,255,255,.35);
  font-size: .7rem;
}


/* ------------------------------ */
/* FOOTER                         */
/* ------------------------------ */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 5rem 7vw 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.1rem;
}

.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  margin-top: .8rem;
  line-height: 1.8;
  max-width: 230px;
}

.footer-col h4 {
  color: #fff;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .75rem;
}

.footer-social {
  display: flex;
  gap: .8rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: border-color .2s, color .2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ------------------------------ */
/* RESPONSIVE BREAKPOINTS         */
/* ------------------------------ */

@media (max-width: 1100px) {
  .products-grid,
  .bestsellers .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-left {
    padding: 4rem 3rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 1rem 1.5rem;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    min-height: 55vw;
  }

  .hero-left {
    padding: 4rem 1.5rem 3rem;
  }

  .philosophy,
  .digital-highlight,
  .about-stripe,
  .newsletter {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    display: none;
  }

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

  .coll-card--large {
    grid-column: span 2;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 600px) {
  .promo-strip {
    font-size: .68rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .philosophy,
  .digital-highlight,
  .about-stripe,
  .newsletter,
  .new-arrivals,
  .bestsellers,
  .collections,
  .instagram {
    padding: 4rem 1.5rem;
  }

  .products-grid,
  .bestsellers .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .trust-row {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: none;
    width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--soft-gray);
  }
}
