/*
Theme Name:   Blocksy Child - Myeisha
Template:     blocksy
Version:      1.5.0
*/

/* ===============================================================================
   1. VARIABLEN & DESIGN TOKENS
   =============================================================================== */
:root {
    --color-gray: #707070;
    --color-brown: #B0754A;
    --color-gold: #D8A356;
    --color-terracotta: #a84a33;
    --color-teal: #4e887f;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-text: #383b40; /* NEU — aus eurer eigenen Palette, ~14:1 Kontrast */
    --color-text-muted: #9d8666; /* NEU — für Eyebrows, Labels, Metainfos */
    
    --font-heading: 'Italiana', serif;
    --font-body: 'Montserrat Alternates', sans-serif;
    
    --font-h1: clamp(2.5rem, 4vw + 1rem, 6rem);
    --font-h2: clamp(2rem, 3vw + 0.8rem, 4rem);
    --font-h3: clamp(1.5rem, 2vw + 0.6rem, 2.8rem);
    
    --transition-mye: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --theme-link-color: var(--color-terracotta) !important;
}

/* ===============================================================================
   2. GLOBAL SETUP & RESET
   =============================================================================== */
body {
    font-family: var(--font-body);
    font-size: 18px; 
    color: var(--color-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* Sektion 2 / Body-Defaults — color-gray ersetzen */
body,
p,
.entry-content p,
li {
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-gray);
    margin: 0;
}

.text-center { 
    text-align: center; 
}

/* Full Width Breakout */
.mye-full-width {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
    position: relative;
    left: 0;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Blocksy vertikales Spacing deaktivieren (z.B. über Hero Sections) */
[data-vertical-spacing*="top"] {
    padding-top: 0 !important;
}

/* ===============================================================================
   3. HERO VIDEO SECTION
   =============================================================================== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: var(--color-black);
}

.hero-video {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    color: var(--color-white) !important;
    font-size: var(--font-h1);
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

/* Blocksy Hero komplett ausblenden (außer Startseite) */
body:not(.home) .hero-section.is-width-constrained {
    display: none !important;
}

/* Shop-Seite spezifisch */
body.woocommerce .hero-section.is-width-constrained,
body.woocommerce-page .hero-section.is-width-constrained,
body.archive .hero-section.is-width-constrained {
    display: none !important;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.hero-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    transition: all 0.3s ease;
}

.hero-btn--primary {
    background: #ffffff;
    color: #3a3530 !important;
}

.hero-btn--primary:hover {
    background: #c8a882;
    color: #ffffff !important;
}

.hero-btn--secondary {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.7);
}

.hero-btn--secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===============================================================================
   4. PREMIUM BAGS SECTION
   =============================================================================== */
.premium-bags-section {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-bags-section .section-title {
    font-size: var(--font-h2) !important;
    margin-bottom: 20px;
}

/* Premium Bags - Tabs */
.mye-premium-tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 30px 0 40px;
}

.mye-premium-tabs {
    display: flex;
    gap: 0;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
}

.mye-premium-tab {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-gray);
}

.mye-premium-tab.active {
    background: var(--color-gold);
    color: #ffffff;
}

.mye-premium-viewall {
    position: absolute;
    right: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray) !important;
    text-decoration: underline !important;
}

.mye-premium-products {
    position: absolute;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mye-premium-products.active {
    position: relative;
    visibility: visible;
    height: auto;
    overflow: visible;
    pointer-events: auto;
    opacity: 1;
}

/* ===============================================================================
   5. WOOCOMMERCE PRODUCTS STYLING
   =============================================================================== */
.products .product {
    text-align: center;
    transition: var(--transition-mye);
    overflow: hidden;
    padding-bottom: 15px;
    position: relative;
}

.products .product:hover {
    transform: translateY(-8px);
}

.products .product img {
    transition: all 0.5s ease;
}

.products .product:hover img {
    transform: scale(1.06);
}

.woocommerce-loop-product__title {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    margin: 20px 0 8px !important;
    color: var(--color-gray) !important;
}

.price {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--color-gray) !important;
}

.products .button { 
    display: none !important; 
}

/* Premium Bags - Card Styling */
.premium-bags-section ul.products li.product {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    padding: 15px !important;
}

.premium-bags-section ul.products li.product img {
    border-radius: 4px !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* Hide Categories */
.woocommerce-loop-category__title,
ul.products li.product .product-category,
.entry-meta {
    display: none !important;
}

/* ===============================================================================
   6. ADD TO CART ICON (statt Wishlist)
   =============================================================================== */
.products .product .add-to-cart-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.products .product .add-to-cart-icon:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.products .product .add-to-cart-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gray);
}

.products .product .add-to-cart-icon:hover svg {
    fill: #ffffff;
}

/* ===============================================================================
   7. COLLECTIONS SECTION
   =============================================================================== */
.collections-section.mye-full-width {
    padding: 0 !important;
    margin-top: 80px;
    background: var(--color-white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 0 !important;
}

.collection-card {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.collection-image-wrapper { 
    aspect-ratio: 1 / 1.35; 
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-mye);
    border-radius: 0 !important;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-mye);
}

.collection-name {
    color: var(--color-white) !important;
    font-size: var(--font-h3) !important;
    margin-bottom: 15px !important;
}

.collection-link {
    color: var(--color-white) !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.collection-card:hover img { 
    transform: scale(1.1); 
}

.collection-card:hover .collection-overlay { 
    background: rgba(0,0,0,0.45); 
}

.collection-card:hover .collection-link { 
    letter-spacing: 3px; 
}

/* ===============================================================================
   8. NAMIBIA STORY SECTION (40/60 Grid)
   =============================================================================== */
.mye-story-raster {
    display: grid;
    grid-template-columns: 40% 60%; 
    width: 100%;
    min-height: 600px;
    background: #ffffff;
}

.mye-story-image-box {
    position: relative;
    line-height: 0;
}

.mye-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mye-story-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;        /* ← neu */
    align-items: center;
    justify-content: flex-start;   /* ← war: flex-start, justify-content: center entfernt */
    padding: 5%;
}

.mye-story-overlay p {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.mye-story-title {
    color: #ffffff !important;
    font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    padding-top: 40px;
}

.mye-story-content-box {
    display: flex;
    align-items: center;
    padding: 10% 8%;
    background: #fcfcfc;
}

.mye-story-text-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.mye-story-raster {
    display: grid;
    grid-template-columns: 40% 60%; 
    width: 100%;
    min-height: 600px;
    background: #ffffff;
    margin: 80px 0;  /* ← neu */
}

/* ===============================================================================
   9. BUTTONS
   =============================================================================== */
.mye-btn-solid {
    display: inline-block !important;
    background-color: #707070 !important;
    color: #ffffff !important;
    padding: 18px 45px !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-mye);
    margin-top: 10px;
}

.mye-btn-solid:hover {
    background-color: #B0754A !important;
    transform: translateY(-3px);
}

.mye-btn-outline-white {
    display: inline-block;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    padding: 14px 35px;
    text-decoration: none !important;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition-mye);
    width: fit-content;
}

.mye-btn-outline-white:hover {
    background: #ffffff;
    color: var(--color-teal) !important;
}

/* ===============================================================================
   10. CRAFTED FOR YOUR JOURNEY (Parallax)
   =============================================================================== */
.mye-bfg-scroll-container {
    height: 700px; 
    position: relative;
    overflow: hidden;
    view-timeline-name: --bfgTimeline;
    view-timeline-axis: block;
}

.mye-bfg-parallax-img {
    width: 100%;
    height: 900px; 
    object-fit: cover;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 1;
    animation: parallax-move linear;
    animation-timeline: --bfgTimeline;
    animation-range: entry 0% exit 100%;
    will-change: transform;
}

@keyframes parallax-move {
    from { transform: translateY(0); }
    to { transform: translateY(200px); }
}

.mye-bfg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.mye-bfg-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mye-bfg-title {
    color: var(--color-white) !important;
    font-size: var(--font-h1) !important;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

/* ===============================================================================
   11. JEDE TASCHE HILFT SECTION
   =============================================================================== */
.mye-tasche-hilft {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.mye-tasche-hilft-text {
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.mye-tasche-hilft-text h2 {
    font-size: var(--font-h2);
    margin-bottom: 20px;
}

.mye-tasche-hilft-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.mye-tasche-hilft-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mye-tasche-hilft-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================================================================
   12. FIND YOUR LOOK SECTION
   =============================================================================== */
.mye-find-look {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 700px;
    max-width: 1400px;
    margin: 80px auto;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

.mye-find-look-image {
    position: relative;
    height: 700px;
}

.mye-find-look-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mye-find-look-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.mye-find-look-image-title {
    color: #ffffff !important;
    font-size: var(--font-h2) !important;
    line-height: 1.1;
}

.mye-find-look-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mye-find-look-right h2 {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    margin-bottom: 15px;
}

.mye-find-look-right p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.mye-look-tabs {
    display: flex;
    gap: 0;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
    width: fit-content;
}

.mye-look-tab {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-gray);
}

.mye-look-tab.active {
    background: var(--color-gold);
    color: #ffffff;
}

.mye-look-products {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mye-look-products.active {
    display: block;
    opacity: 1;
}

.mye-look-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mye-look-products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    padding: 12px !important;
    text-align: center;
}

.mye-look-products ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

.mye-look-products .woocommerce-loop-product__title {
    font-size: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 8px 0 4px !important;
}

.mye-look-products .price {
    font-size: 12px !important;
}

.mye-look-products .products .add-to-cart-icon {
    top: 8px !important;
    right: 8px !important;
}

/* ===============================================================================
   13. NEW NEW NEW SECTION
   =============================================================================== */
.mye-new-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.mye-new-image {
    line-height: 0;
}

.mye-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mye-new-content {
    background: var(--color-teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 10%;
}

.mye-new-title {
    color: #ffffff !important;
    font-size: clamp(5rem, 12vw, 12rem) !important;
    line-height: 0.9 !important;
    margin-bottom: 40px !important;
    letter-spacing: -2px;
}

.mye-new-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ===============================================================================
   14. NEWSLETTER SECTION
   =============================================================================== */
.mye-newsletter {
    background: var(--color-terracotta);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.mye-newsletter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 60px;
}

.mye-newsletter h2 {
    color: #ffffff !important;
    font-size: var(--font-h2) !important;
    margin-bottom: 30px !important;
}

.mye-newsletter-input {
    width: 100%;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 15px;
    outline: none;
    box-sizing: border-box;
}

.mye-newsletter-input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.mye-newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.6;
}

.mye-newsletter-checkbox input {
    margin-top: 3px;
    flex-shrink: 0;
}

.mye-btn-newsletter {
    display: inline-block;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-mye);
    text-decoration: none !important;
}

.mye-btn-newsletter:hover {
    background: #ffffff;
    color: var(--color-terracotta) !important;
}

.mye-newsletter-promo {
    text-align: center;
}

.mye-newsletter-promo p {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 8px;
    line-height: 1.3;
    font-family: var(--font-body);
}

.is-layout-constrained > .mye-newsletter {
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* ===============================================================================
   15. FOOTER
   =============================================================================== */
footer,
footer *,
.ct-footer,
.ct-footer * {
    font-family: var(--font-body) !important;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.ct-footer h1, .ct-footer h2, .ct-footer h3, .ct-footer h4, .ct-footer h5, .ct-footer h6,
footer .widget-title,
.ct-footer .widget-title {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
}

footer a,
footer li,
.ct-footer a,
.ct-footer li,
footer .menu-item,
.ct-footer .menu-item {
    font-family: var(--font-body) !important;
}

footer p,
.ct-footer p {
    font-family: var(--font-body) !important;
}

.ct-footer-bottom,
.ct-footer-bottom * {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
}

.site-footer,
footer {
    background-color: #f5f5f5 !important;
}

/* Payment Icons */
.mye-payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mye-payment-icons img,
.mye-payment-icons svg {
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.mye-payment-icons img:nth-child(1),
.mye-payment-icons svg:nth-child(1) {
    height: 62px;
}

.mye-payment-icons img:nth-child(2),
.mye-payment-icons svg:nth-child(2) {
    height: 30px;
}

.mye-payment-icons img:nth-child(3),
.mye-payment-icons svg:nth-child(3) {
    height: 28px;
}

.mye-payment-icons img:hover,
.mye-payment-icons svg:hover {
    filter: grayscale(0%) opacity(1);
}


/* ===============================================================================
   16. RESPONSIVE BREAKPOINTS
   =============================================================================== */
@media (max-width: 1024px) {
    .collections-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .mye-story-raster { 
        grid-template-columns: 100%; 
    }
    
    .mye-story-content-box { 
        padding: 60px 20px; 
    }
    
    .mye-bfg-scroll-container { 
        height: 450px; 
    }
    
    .mye-bfg-parallax-img { 
        animation: none; 
        height: 100%; 
        top: 0; 
    }
    
    .mye-tasche-hilft {
        grid-template-columns: 1fr;
    }
    
    .mye-tasche-hilft-images {
        height: 400px;
    }
    
    .mye-find-look {
        grid-template-columns: 1fr;
    }
    
    .mye-find-look-image {
        height: 400px;
    }
    
    .mye-new-section {
        grid-template-columns: 1fr;
    }
    
    .mye-newsletter-inner {
        grid-template-columns: 1fr;
    }
    
    .mye-newsletter-promo {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .collections-grid { 
        grid-template-columns: 1fr; 
    }
    
    .premium-bags-section { 
        padding: 60px 20px; 
    }
}

/* ===============================================================================
/* ===============================================================================
   17. ABOUT US PAGE — neue Sektionen
   =============================================================================== */

/* Eyebrow Varianten (bleiben erhalten) */
.mye-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.mye-eyebrow--teal  { color: var(--color-teal); }
.mye-eyebrow--white-muted { color: rgba(255,255,255,0.6); }

/* Button Varianten (bleiben erhalten) */
.mye-btn-outline {
    display: inline-block;
    border: 1px solid var(--color-terracotta);
    color: var(--color-terracotta) !important;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    margin-top: 24px;
    transition: var(--transition-mye);
}
.mye-btn-outline:hover {
    background: var(--color-terracotta);
    color: #ffffff !important;
}
.mye-btn-outline--teal {
    border-color: var(--color-teal);
    color: var(--color-teal) !important;
}
.mye-btn-outline--teal:hover {
    background: var(--color-teal);
    color: #ffffff !important;
}
.mye-btn-outline--white {
    border-color: #ffffff;
    color: #ffffff !important;
}
.mye-btn-outline--white:hover {
    background: #ffffff;
    color: var(--color-teal) !important;
}

/* ── HERO (unverändert) ── */
.mye-about-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.mye-about-hero-bg {
    position: absolute;
    inset: 0;
}
.mye-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mye-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.mye-about-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
    margin: 0 auto;
    text-align: center;
}
.mye-about-hero-content .mye-eyebrow {
    color: #ffffff;
    margin-bottom: 20px;
}
.mye-about-hero-title {
    color: #ffffff !important;
    font-size: var(--font-h1);
    line-height: 1.05;
    margin-bottom: 24px !important;
}
.mye-about-hero-sub {
    color: var(--color-white) !important;;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    max-width: 540px;
    font-weight: 300;
    margin: 0 auto;
    text-align: center;
}

/* ── BLOCK 1: SANDRAS GESCHICHTE & DER NAME ── */
.mye-about-story {
    padding: 80px 0;
    background: #fff;
}
.mye-about-story__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.mye-about-story__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a882;
    margin-bottom: 32px;
}
.mye-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mye-about-story__title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    text-align: center;
    font-weight: 400;
    color: #3a3530;
    line-height: 1.3;
    margin-bottom: 24px !important;
}
.mye-about-story__text p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a524c;
    margin-bottom: 16px;
}
.mye-about-story__name {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e0d5;
}
.mye-about-story__name h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: #3a3530;
    margin-bottom: 12px !important;
}
.mye-about-story__name p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a524c;
}
.mye-about-story__image img {
    width: 50%;
    height: 560px;
    width: auto;
    /* object-fit: cover; */
}
@media (max-width: 900px) {
    .mye-about-story__grid { grid-template-columns: 1fr; gap: 40px; }
    .mye-about-story__image img { height: 380px; }
    .mye-about-story__inner { padding: 0 24px; }
    .mye-about-story__title { font-size: 1.8rem; }
}

/* ── BLOCK 2: UNSER VERSPRECHEN / WAS UNS ANTREIBT ── */
.mye-about-mission {
    padding: 80px 0;
    background: #faf8f5;
}
.mye-about-mission__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.mye-about-mission__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a882;
    margin-bottom: 32px;
}
.mye-about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mye-about-mission__title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: #3a3530;
    line-height: 1.3;
    margin-bottom: 24px !important;
}
.mye-about-mission__text p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a524c;
    margin-bottom: 16px;
}
.mye-about-mission__you {
    margin-top: 40px;
    padding: 32px;
    background: #fff;
    border-left: 3px solid #c8a882;
}
.mye-about-mission__you h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: #3a3530;
    margin-bottom: 12px !important;
}
.mye-about-mission__you p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a524c;
    margin-bottom: 0;
}
.mye-about-mission__image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .mye-about-mission__grid { grid-template-columns: 1fr; gap: 40px; }
    .mye-about-mission__image img { height: 320px; }
    .mye-about-mission__inner { padding: 0 24px; }
    .mye-about-mission__title { font-size: 1.8rem; }
}

/* ── BLOCK 3: VOM LEDER ZUR TASCHE ── */
.mye-about-craft {
    padding: 80px 0;
    background: #fff;
}
.mye-about-craft__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.mye-about-craft__header {
    text-align: center;
    margin-bottom: 64px;
}
.mye-about-craft__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a882;
    margin-bottom: 16px;
}
.mye-about-craft__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: #3a3530;
    margin-bottom: 16px !important;
}
.mye-about-craft__intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #8a7f78;
}
.mye-about-craft__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.mye-about-craft__step {
    position: relative;
}
.mye-about-craft__step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #e8e0d5;
    line-height: 1;
    margin-bottom: 16px;
}
.mye-about-craft__step img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 24px;
}
.mye-about-craft__step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #3a3530;
    margin-bottom: 12px !important;
}
.mye-about-craft__step p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5a524c;
}
@media (max-width: 900px) {
    .mye-about-craft__steps { grid-template-columns: 1fr; gap: 40px; }
    .mye-about-craft__inner { padding: 0 24px; }
    .mye-about-craft__title { font-size: 2rem; }
}

/* ── BLOCK 4: LEDER & MATERIAL ── */
.mye-about-material {
    padding: 80px 0;
    background: #3a3530;
}
.mye-about-material__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.mye-about-material__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mye-about-material__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a882;
    margin-bottom: 20px;
}
.mye-about-material__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: #f5f0ea;
    line-height: 1.2;
    margin-bottom: 24px !important;
}
.mye-about-material__text p {
    font-size: 1rem;
    line-height: 1.85;
    color: #c8bfb5;
    margin-bottom: 16px;
}
.mye-about-material__link {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8a882;
    text-decoration: none;
    border-bottom: 1px solid #c8a882;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}
.mye-about-material__link:hover {
    color: #f5f0ea;
    border-color: #f5f0ea;
}
.mye-about-material__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .mye-about-material__grid { grid-template-columns: 1fr; gap: 40px; }
    .mye-about-material__image img { height: 300px; }
    .mye-about-material__inner { padding: 0 24px; }
    .mye-about-material__title { font-size: 2rem; }
}

/* ── FEATURED PRODUCTS (bleibt) ── */
.mye-about-products {
    background: #f5f3f0;
    padding: 0;
}
.mye-about-products-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}
.mye-about-products-header {
    margin-bottom: 60px;
}
.mye-about-products-header h2 {
    font-size: var(--font-h2);
    margin-top: 8px;
}
.mye-about-products ul.products li.product {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    padding: 15px !important;
}
.mye-about-products ul.products li.product img {
    border-radius: 4px !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    width: 100% !important;
}

/*   18. LEGAL PAGES (Impressum, Datenschutz, AGB)
   =============================================================================== */

.mye-legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    font-family: var(--font-body);
}

.mye-legal-page h1 {
    font-family: var(--font-heading);
    font-size: var(--font-h2);
    color: var(--color-gray);
    margin-bottom: 40px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e2da;
}

.mye-legal-page h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: var(--color-gray);
    margin-top: 48px !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0ebe0;
}

.mye-legal-page p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-gray);
    font-weight: 300;
    margin-bottom: 16px;
}

.mye-legal-page strong {
    font-weight: 600;
    color: var(--color-gray);
}

.mye-legal-page a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.mye-legal-page ul,
.mye-legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.mye-legal-page li {
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 6px;
}

@media (max-width: 600px) {
    .mye-legal-page {
        padding: 40px 24px 60px;
    }
}

.mye-widerruf-form {
    border: 1px solid #e8e2da;
    padding: 32px 36px;
    margin-top: 24px;
    background: #faf8f5;
    line-height: 2.2;
}

.mye-widerruf-form p {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .mye-widerruf-form {
        padding: 20px;
    }
}

/* ===============================================================================
   19. CONTACT PAGE
   =============================================================================== */

/* Honeypot-Feld verstecken */
.mye-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.mye-contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.mye-contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.mye-contact-intro h1 {
    font-family: var(--font-heading);
    font-size: var(--font-h2);
    color: var(--color-gray);
    margin: 12px 0 16px;
}

.mye-contact-intro p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-gray);
    font-weight: 300;
}

/* Grid: 1/3 Info + 2/3 Formular */
.mye-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

/* Kontaktinfos links */
.mye-contact-info-block {
    margin-bottom: 36px;
}

.mye-contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-terracotta);
    margin-bottom: 6px !important;
    letter-spacing: 0.05em;
}

.mye-contact-info-block p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-gray);
    font-weight: 300;
    margin: 0;
}

.mye-contact-info-block a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mye-contact-info-block a:hover {
    color: var(--color-terracotta);
}

.mye-contact-info-block small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Formular */
.mye-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mye-form-row {
    width: 100%;
}

.mye-form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mye-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mye-form-field label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.mye-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
    opacity: 0.6;
}

.mye-form-field input,
.mye-form-field select,
.mye-form-field textarea {
    width: 100%;
    padding: 4px 16px;
    border: 1px solid #e0d9d0;
    background: #faf8f5;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-gray);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.mye-form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.mye-form-field input:focus,
.mye-form-field select:focus,
.mye-form-field textarea:focus {
    border-color: var(--color-teal);
    background: #fff;
}

.mye-form-field input:invalid:not(:placeholder-shown),
.mye-form-field textarea:invalid:not(:placeholder-shown) {
    border-color: var(--color-terracotta);
}

.mye-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Datenschutz Checkbox */
.mye-form-row--privacy {
    padding-top: 4px;
}

.mye-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-gray);
    font-weight: 300;
}

.mye-checkbox-label input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-teal);
    cursor: pointer;
}

.mye-checkbox-label a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* Submit Button */
.mye-contact-submit {
    align-self: flex-start;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mye-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Spinner Animation */
.mye-spinner {
    width: 18px;
    height: 18px;
    animation: mye-spin 0.8s linear infinite;
}

@keyframes mye-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Erfolgs- & Fehlermeldungen */
.mye-form-success,
.mye-form-error {
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mye-form-success {
    background: #f0f7f5;
    border-left: 3px solid var(--color-teal);
    color: var(--color-teal);
}

.mye-form-success svg {
    width: 28px;
    min-width: 28px;
    color: var(--color-teal);
}

.mye-form-success p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.mye-form-error {
    background: #fdf0ee;
    border-left: 3px solid var(--color-terracotta);
}

.mye-form-error p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.mye-form-error a {
    color: var(--color-terracotta);
}

/* Responsive */
@media (max-width: 900px) {
    .mye-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mye-contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .mye-contact-page {
        padding: 40px 24px 60px;
    }
    .mye-form-row--two {
        grid-template-columns: 1fr;
    }
    .mye-contact-info {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------
   Sektion 20: Returns Page (.mye-returns-page)
----------------------------------------------- */

.mye-returns-intro {
    max-width: 760px;
    margin-bottom: 60px;
}

.mye-returns-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b6259;
    margin-top: 16px;
}

/* Schritte */
.mye-returns-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 64px;
    border-left: 2px solid #e8e2da;
    padding-left: 40px;
}

.mye-returns-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.mye-returns-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #c8a882;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -61px; /* zieht Zahl auf die Linie */
}

.mye-returns-step-content h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2420;
}

.mye-returns-step-content p {
    margin: 0;
    color: #5a524c;
    line-height: 1.75;
}

/* Zwei-Spalten-Karten */
.mye-returns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 72px;
}

.mye-returns-card {
    background: #faf8f5;
    border: 1px solid #e8e2da;
    padding: 32px;
}

.mye-returns-card h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2420;
}

.mye-returns-card ul {
    padding-left: 18px;
    margin: 12px 0 16px;
    color: #5a524c;
    line-height: 1.8;
}

.mye-returns-card p {
    color: #5a524c;
    line-height: 1.75;
    margin-bottom: 0;
}

.mye-returns-card a {
    color: #c8a882;
    text-decoration: none;
}

/* Kontakt CTA */
.mye-returns-contact {
    background: #f5f1ec;
    padding: 48px;
    text-align: center;
}

.mye-returns-contact h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    color: #2c2420;
}

.mye-returns-contact > p {
    color: #6b6259;
    margin-bottom: 36px;
}

.mye-returns-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mye-returns-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mye-returns-contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a0998f;
}

.mye-returns-contact-item a {
    color: #2c2420;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.mye-returns-contact-item a:hover {
    color: #c8a882;
}

.mye-returns-contact-hint {
    font-size: 0.8rem;
    color: #a0998f;
}

/* Responsive */
@media (max-width: 768px) {
    .mye-returns-grid {
        grid-template-columns: 1fr;
    }
    .mye-returns-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mye-returns-contact {
        padding: 32px 20px;
    }
    .mye-returns-steps {
        padding-left: 28px;
    }
    .mye-returns-step-number {
        margin-left: -49px;
    }
}

/* -----------------------------------------------
   Sektion 21: FAQ Page (.mye-faq-page)
----------------------------------------------- */

.mye-faq-intro {
    max-width: 760px;
    margin-bottom: 56px;
}

.mye-faq-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a0998f;
    margin: 52px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e2da;
}

.mye-faq-item {
    border-bottom: 1px solid #e8e2da;
}

.mye-faq-item summary {
    padding: 20px 40px 20px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c2420;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.2s;
}

.mye-faq-item summary::-webkit-details-marker {
    display: none;
}

/* Pfeil rechts */
.mye-faq-item summary::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a882' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.25s ease;
}

.mye-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.mye-faq-item summary:hover {
    color: #c8a882;
}

.mye-faq-item > p,
.mye-faq-item > div {
    padding: 0 40px 24px 0;
    color: #5a524c;
    line-height: 1.8;
    margin: 0;
}

.mye-faq-item a {
    color: #c8a882;
    text-decoration: none;
}

.mye-faq-item a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .mye-faq-item summary {
        padding-right: 32px;
        font-size: 0.9rem;
    }
}

/* -----------------------------------------------
   Sektion 23: ACF Pflegehinweise
----------------------------------------------- */
.mye-pflege-text {
    max-width: 860px;
    margin: 0 auto 48px;
    padding: 48px 56px;
    background: #faf8f5;
    border-top: 2px solid #c8a882;
}

.mye-pflege-text h3 {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #3a3530;
    margin-bottom: 24px;
}

.mye-pflege-text p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a524c;
    margin-bottom: 16px;
}

.mye-pflege-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mye-pflege-text {
        padding: 32px 24px;
        margin-bottom: 32px;
    }
}

/* ===============================================================================
   WOOCOMMERCE — ALLE BUTTONS (kein Blau, Myeisha-Design)
   =============================================================================== */

/* BASE: Gilt für alle WooCommerce-Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    /* letter-spacing: 0.2em !important; */
    text-transform: uppercase !important;
    padding: 1rem 2rem !important;
    transition: background 0.3s ease !important;
    box-shadow: none !important;
    cursor: pointer !important;
    margin-bottom: 20px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #payment #place_order:hover {
    background: var(--color-brown) !important;
    color: var(--color-white) !important;
}

/* Add to Cart — Single Product: volle Breite */
.single_add_to_cart_button.button {
    width: 100% !important;
    padding: 1.1rem 2rem !important;
}

/* Proceed to Checkout */
.wc-proceed-to-checkout a.checkout-button {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    padding: 1.1rem 2rem !important;
    display: block !important;
    text-align: center !important;
    transition: background 0.3s ease !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--color-brown) !important;
}

/* Apply Coupon + Update Cart — Outline-Stil als Kontrast */
.woocommerce-cart .woocommerce-cart-form .button[name="apply_coupon"],
.woocommerce-cart .woocommerce-cart-form .button[name="update_cart"] {
    background: transparent !important;
    border: 1px solid var(--color-terracotta) !important;
    color: var(--color-terracotta) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    /* letter-spacing: 0.2em !important; */
    text-transform: uppercase !important;
    padding: 0.85rem 1.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.woocommerce-cart .woocommerce-cart-form .button[name="apply_coupon"]:hover,
.woocommerce-cart .woocommerce-cart-form .button[name="update_cart"]:hover {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
}

/* Mini Cart — View Cart / Checkout Links */
.widget_shopping_cart .buttons a {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    padding: 0.75rem 1.2rem !important;
    border: none !important;
    transition: background 0.3s ease !important;
}

.widget_shopping_cart .buttons a:hover {
    background: var(--color-brown) !important;
    color: var(--color-white) !important;
}

/* Disabled-State (z.B. Update Cart inaktiv) */
.woocommerce button.button:disabled,
.woocommerce button.button[disabled] {
    background: #d0c9c0 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

/* Blocksy Mini Cart — Button Layout */
.ct-cart-content .cart-footer,
[data-id="cart-sidebar"] .cart-footer {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}

.ct-cart-content .cart-footer a,
[data-id="cart-sidebar"] .cart-footer a {
    white-space: nowrap !important;
    text-align: center !important;
    padding: 0.85rem 1rem !important;
}

.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #e0d9d0 !important;
}

.woocommerce-tabs ul.tabs li.active a {
    border-bottom-color: var(--color-terracotta) !important;
}

/* Die zwei horizontalen Linien verstecken */
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
    display: none !important;
}

/* WooCommerce Tabs — Streifen entfernen */
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
    content: none !important;
}

.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #e0d9d0 !important;
    padding: 0 !important;
}

/* Mobile: Abstand unter den zwei Bildern */
@media (max-width: 1024px) {
    .mye-tasche-hilft-text .mye-btn-solid,
    .mye-tasche-hilft-text a[href] {
        margin-bottom: 40px;
    }
    
    .mye-tasche-hilft {
    grid-template-columns: 1fr;
    padding-bottom: 60px; /* verhindert Kollaps */
}
.mye-tasche-hilft-images {
    grid-template-columns: 1fr 1fr; /* nebeneinander bis 600px */
    height: 300px;
    gap: 10px;
}
}

@media (max-width: 1024px) {
    .mye-find-look {
        padding: 0 20px;
        gap: 40px;
        overflow-x: hidden;
    }

    .mye-look-tabs {
        width: 100%;
        justify-content: center;
    }

    /* Cards untereinander statt 3-spaltig */
    .mye-look-products ul.products {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .mye-find-look {
        margin: 40px auto;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    /* Blocksy hat eigenen Remove-Button — WC Standard verstecken */
.woocommerce-cart-form td.product-remove a.remove {
    display: none !important;
}

/* Nur Blocksy-eigenen Button zeigen */
.woocommerce-cart-form td.product-remove .blocksy-remove,
.woocommerce-cart-form td.product-remove [data-type="remove"] {
    display: inline-block !important;
}
}

.mye-edit-cart-link {
    text-align: right;
    margin-bottom: 16px;
}
.mye-edit-cart-link a {
    font-size: 0.8rem;
    color: var(--color-terracotta);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.mye-edit-cart-link a:hover {
    text-decoration: underline;
}