/* =========================================================
   MMK EMERGENCY FIX — HEADER + HOME + SLIDER + MOBILE
   Pune acest bloc la finalul fișierului slider.css
   ========================================================= */

/* RESET DE BAZĂ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    background: #fffaf7 !important;
    color: #222222 !important;
    font-family: "Josefin Sans", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* =========================================================
   HEADER
   ========================================================= */

.mmk-site-header {
    position: relative !important;
    z-index: 1000 !important;
    width: 100% !important;
    background: #fffaf7 !important;
    border-bottom: 1px solid rgba(189, 130, 109, 0.10) !important;
    box-shadow: none !important;
}

.mmk-header-inner {
    width: min(1500px, 90%) !important;
    height: 92px !important;
    min-height: 92px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 50px !important;
}

.mmk-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 210px !important;
    max-width: 240px !important;
}

.mmk-logo-img {
    display: block !important;
    width: auto !important;
    max-width: 150px !important;
    max-height: 58px !important;
    height: auto !important;
    object-fit: contain !important;
}

.mmk-main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 42px !important;
    flex-wrap: nowrap !important;
}

.mmk-nav-item {
    position: relative !important;
}

.mmk-nav-link,
.mmk-main-nav > a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 42px !important;
    color: #242424 !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: 0.2px !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}

.mmk-nav-link:hover,
.mmk-main-nav > a:hover {
    color: #b9826c !important;
}

.mmk-nav-link::before,
.mmk-main-nav > a::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 4px !important;
    height: 1px !important;
    background: #b9826c !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.25s ease !important;
}

.mmk-nav-link:hover::before,
.mmk-main-nav > a:hover::before {
    transform: scaleX(1) !important;
}

.mmk-has-dropdown > .mmk-nav-link::after {
    content: "" !important;
    width: 7px !important;
    height: 7px !important;
    border-right: 1px solid #b9826c !important;
    border-bottom: 1px solid #b9826c !important;
    transform: rotate(45deg) !important;
    margin-left: 10px !important;
    margin-top: -5px !important;
}

.mmk-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    width: 180px !important;
    padding: 14px 18px !important;
    background: rgba(255, 250, 247, 0.98) !important;
    border: 1px solid rgba(180, 122, 79, 0.16) !important;
    box-shadow: 0 18px 42px rgba(55, 38, 28, 0.10) !important;
    transform: translateX(-50%) translateY(8px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    z-index: 9999 !important;
}

.mmk-has-dropdown:hover .mmk-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.mmk-dropdown a {
    display: block !important;
    padding: 13px 10px !important;
    color: #5f5753 !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    border-bottom: 1px solid rgba(180, 122, 79, 0.12) !important;
}

.mmk-dropdown a:last-child {
    border-bottom: 0 !important;
}

.mmk-dropdown a:hover {
    color: #b9826c !important;
    padding-left: 16px !important;
}

/* =========================================================
   HERO IMAGE SLIDER — ÎNGUST
   ========================================================= */

.mmk-image-hero {
    position: relative !important;
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
    overflow: hidden !important;
    background: #fbf5f1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mmk-image-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition: opacity 1s ease, visibility 1s ease !important;
}

.mmk-image-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.mmk-image-slide img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

.mmk-image-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 250, 247, 0.28) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.mmk-image-hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 4 !important;
    width: min(820px, calc(100% - 40px)) !important;
    max-width: 820px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.mmk-image-hero-content .mmk-eyebrow {
    display: block !important;
    margin: 0 0 14px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: 7px !important;
    text-transform: uppercase !important;
    color: #3d3430 !important;
}

.mmk-image-hero-content h1 {
    margin: 0 !important;
    font-family: "Josefin Sans", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
    font-size: clamp(48px, 5vw, 82px) !important;
    line-height: 1 !important;
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    color: #222222 !important;
}

.mmk-image-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mmk-image-dots button {
    width: 46px !important;
    height: 3px !important;
    padding: 0 !important;
    border: 0 !important;
    background: rgba(60, 45, 38, 0.24) !important;
    cursor: pointer !important;
}

.mmk-image-dots button.is-active {
    width: 62px !important;
    background: #b88470 !important;
}

/* =========================================================
   HOME SECTIONS
   ========================================================= */

.mmk-home {
    width: 100% !important;
    overflow: hidden !important;
    background: #fffaf7 !important;
}

.mmk-container {
    width: min(1320px, 92%) !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.mmk-products {
    position: relative !important;
    background: #fffaf7 !important;
    padding: 90px 0 110px !important;
    overflow: hidden !important;
}

.mmk-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 60px !important;
    align-items: start !important;
    text-align: center !important;
}

.mmk-product-item img {
    display: block !important;
    width: 92px !important;
    height: 92px !important;
    object-fit: contain !important;
    margin: 0 auto 24px !important;
}

.mmk-product-item h4 {
    margin: 0 0 14px !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    line-height: 1.25 !important;
    color: #2d2b2a !important;
}

.mmk-product-item p {
    max-width: 250px !important;
    margin: 0 auto !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #817773 !important;
}

.mmk-featured {
    position: relative !important;
    width: min(1320px, 92%) !important;
    margin: 0 auto !important;
    min-height: 520px !important;
    padding: 95px 0 !important;
    overflow: hidden !important;
    background:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
        url("../img/bg-dark.jpg") center center / cover no-repeat !important;
    color: #ffffff !important;
}

.mmk-featured-content {
    position: relative !important;
    z-index: 2 !important;
}

.mmk-featured-grid {
    width: min(880px, 86%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 120px !important;
}

.mmk-featured-grid > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 42px !important;
}

.mmk-featured h4 {
    margin: 0 0 12px !important;
    font-size: 27px !important;
    font-weight: 300 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
}

.mmk-featured p {
    margin: 0 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.88) !important;
}

.mmk-testimonial {
    position: relative !important;
    padding: 100px 0 90px !important;
    text-align: center !important;
    background: linear-gradient(180deg, #fffaf7 0%, #f8f2ee 100%) !important;
    overflow: hidden !important;
}

.mmk-testimonial .mmk-container {
    position: relative !important;
    min-height: 230px !important;
}

.mmk-testimonial-slide {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.8s ease, visibility 0.8s ease !important;
}

.mmk-testimonial-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mmk-testimonial h2 {
    margin: 0 0 18px !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    color: #2d2b2a !important;
}

.mmk-testimonial-text {
    max-width: 620px !important;
    margin: 0 auto 28px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #817773 !important;
}

.mmk-testimonial-author {
    margin: 0 0 24px !important;
    font-size: 17px !important;
    font-weight: 300 !important;
    color: #5d5551 !important;
}

.mmk-dots {
    position: absolute !important;
    left: 50% !important;
    bottom: -16px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
}

.mmk-dots button {
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #dfc389 !important;
    opacity: 0.55 !important;
    cursor: pointer !important;
}

.mmk-dots button.is-active {
    opacity: 1 !important;
    background: #c79a54 !important;
}

.mmk-split {
    position: relative !important;
    padding: 110px 0 120px !important;
    background: #f7f2ed !important;
    overflow: hidden !important;
}

.mmk-split-inner {
    position: relative !important;
    z-index: 2 !important;
    min-height: 420px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 80px !important;
}

.mmk-split-image {
    min-height: 360px !important;
}

.mmk-split-content {
    max-width: 560px !important;
    padding-left: 30px !important;
}

.mmk-split-content h2 {
    margin: 0 0 20px !important;
    font-size: 40px !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    color: #2d2b2a !important;
}

.mmk-split-content p {
    margin: 0 0 34px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
    color: #817773 !important;
}

.mmk-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 14px 28px !important;
    font-size: 13px !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.mmk-btn-dark {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #111111 !important;
}

.mmk-btn-dark:hover {
    background: #bd826d !important;
    border-color: #bd826d !important;
    color: #ffffff !important;
}

/* =========================================================
   FOOTER
   ========================================================= */

.mmk-prefooter {
    background: #f7f1ed !important;
    border-top: 1px solid rgba(199, 154, 132, 0.10) !important;
    border-bottom: 1px solid rgba(199, 154, 132, 0.10) !important;
    padding: 38px 0 !important;
}

.mmk-prefooter-inner {
    width: min(1320px, 92%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

.mmk-prefooter-item {
    text-align: center !important;
    padding: 12px 26px !important;
    position: relative !important;
}

.mmk-prefooter-item h4 {
    margin: 0 0 8px !important;
    color: #3a3430 !important;
    font-size: 22px !important;
    font-weight: 300 !important;
}

.mmk-prefooter-item p {
    margin: 0 !important;
    color: #7a716c !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.mmk-site-footer {
    background: #151515 !important;
    color: #ffffff !important;
    margin-top: 0 !important;
}

.mmk-footer-main {
    padding: 64px 0 0 !important;
    background: #151515 !important;
}

.mmk-footer-inner {
    width: min(1320px, 92%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1.15fr 0.95fr 1.05fr 0.8fr !important;
    gap: 54px !important;
    align-items: start !important;
}

.mmk-footer-logo-img {
    display: block !important;
    width: 210px !important;
    height: auto !important;
    object-fit: contain !important;
}

.mmk-footer-desc,
.mmk-site-footer p {
    color: rgba(255,255,255,0.72) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.mmk-footer-col h4 {
    margin: 0 0 24px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.4px !important;
}

.mmk-footer-links {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.mmk-footer-links li {
    margin-bottom: 15px !important;
}

.mmk-footer-links a,
.mmk-site-footer a {
    color: rgba(255,255,255,0.74) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    text-decoration: none !important;
}

.mmk-footer-links a:hover,
.mmk-site-footer a:hover {
    color: #c79a84 !important;
}

.mmk-footer-bottom {
    width: min(1320px, 92%) !important;
    margin: 48px auto 0 !important;
    padding: 22px 0 28px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    text-align: center !important;
}

/* =========================================================
   RESPONSIVE — TABLETĂ
   ========================================================= */

@media (max-width: 1024px) {
    .mmk-header-inner {
        width: 94% !important;
        gap: 28px !important;
    }

    .mmk-main-nav {
        gap: 24px !important;
    }

    .mmk-nav-link,
    .mmk-main-nav > a {
        font-size: 15px !important;
    }

    .mmk-image-hero {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }

    .mmk-image-hero-content h1 {
        font-size: clamp(42px, 7vw, 66px) !important;
    }

    .mmk-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 50px !important;
    }

    .mmk-featured-grid {
        gap: 70px !important;
    }

    .mmk-split-inner {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .mmk-split-content {
        padding-left: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .mmk-footer-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* =========================================================
   RESPONSIVE — TELEFON
   ========================================================= */

@media (max-width: 767px) {
    body {
        font-size: 15px !important;
    }

    .mmk-header-inner {
        width: 92% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 18px 0 !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 16px !important;
    }

    .mmk-logo {
        justify-content: center !important;
        min-width: auto !important;
        max-width: none !important;
    }

    .mmk-logo-img {
        max-width: 145px !important;
        max-height: 54px !important;
    }

    .mmk-main-nav {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px 16px !important;
    }

    .mmk-nav-link,
    .mmk-main-nav > a {
        min-height: 30px !important;
        font-size: 13px !important;
    }

    .mmk-dropdown {
        left: 0 !important;
        top: 100% !important;
        transform: translateX(0) translateY(8px) !important;
    }

    .mmk-has-dropdown:hover .mmk-dropdown {
        transform: translateX(0) translateY(0) !important;
    }

    .mmk-image-hero {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .mmk-image-overlay {
        background: rgba(255, 250, 247, 0.34) !important;
    }

    .mmk-image-hero-content {
        width: calc(100% - 28px) !important;
    }

    .mmk-image-hero-content .mmk-eyebrow {
        margin-bottom: 10px !important;
        font-size: 10px !important;
        letter-spacing: 4px !important;
    }

    .mmk-image-hero-content h1 {
        font-size: clamp(34px, 11vw, 48px) !important;
        line-height: 1.05 !important;
        letter-spacing: 2px !important;
    }

    .mmk-image-dots {
        bottom: 18px !important;
        gap: 10px !important;
    }

    .mmk-image-dots button {
        width: 34px !important;
    }

    .mmk-image-dots button.is-active {
        width: 46px !important;
    }

    .mmk-products {
        padding: 65px 0 !important;
    }

    .mmk-products-grid {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
    }

    .mmk-featured {
        width: 100% !important;
        min-height: auto !important;
        padding: 70px 0 !important;
    }

    .mmk-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
        text-align: center !important;
    }

    .mmk-testimonial {
        padding: 72px 0 !important;
    }

    .mmk-split {
        padding: 75px 0 !important;
    }

    .mmk-split-image {
        min-height: 220px !important;
    }

    .mmk-split-content h2 {
        font-size: 32px !important;
    }

    .mmk-prefooter-inner {
        grid-template-columns: 1fr !important;
    }

    .mmk-prefooter-item:not(:last-child)::after {
        display: none !important;
    }

    .mmk-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .mmk-footer-logo-img {
        width: 180px !important;
    }

    .mmk-footer-bottom {
        margin-top: 28px !important;
    }
}

/* TELEFON MIC */

@media (max-width: 420px) {
    .mmk-image-hero {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .mmk-image-hero-content h1 {
        font-size: 36px !important;
    }

    .mmk-image-hero-content .mmk-eyebrow {
        font-size: 9px !important;
        letter-spacing: 3px !important;
    }
}
/* LOGO HEADER - puțin mai mare */

.mmk-logo {
    min-width: 240px !important;
    max-width: 280px !important;
}

.mmk-logo-img {
    max-width: 280px !important;
    max-height: 100px !important;
    width: auto !important;
    height: auto !important;
}
@media (max-width: 767px) {
    .mmk-logo-img {
        max-width: 165px !important;
        max-height: 62px !important;
    }
}
/* =========================================================
   LOGO FOOTER — MARINA MASTER CAKE
   Desktop + mobil
   ========================================================= */

.mmk-footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.mmk-footer-logo-img {
    display: block !important;
    width: 360px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dacă imaginea are fundal negru în fișier, o integrăm mai curat în footer */
.mmk-site-footer .mmk-footer-logo-img {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* TABLETĂ */

@media (max-width: 1024px) {
    .mmk-footer-logo {
        justify-content: flex-start !important;
        margin-bottom: 24px !important;
    }

    .mmk-footer-logo-img {
        width: 300px !important;
    }
}

/* TELEFON */

@media (max-width: 767px) {
    .mmk-footer-logo {
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 22px !important;
    }

    .mmk-footer-logo-img {
        width: 240px !important;
        max-width: 86vw !important;
        margin: 0 auto !important;
        object-position: center center !important;
    }
}

/* TELEFON MIC */

@media (max-width: 420px) {
    .mmk-footer-logo-img {
        width: 210px !important;
        max-width: 82vw !important;
    }
}
/* =========================================================
   PAGINA GUSTURI — FIX FINAL MARINA MASTER CAKE
   Layout + hover pop-out + responsive
   ========================================================= */

.mmk-gusturi-page {
    background: #fffaf7 !important;
    color: #2b2524 !important;
    font-family: "Josefin Sans", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
}

/* Container general */

.mmk-gusturi-page .mmk-container,
.mmk-custom-gusturi .mmk-container {
    width: min(1180px, calc(100% - 40px)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* HERO PAGINA GUSTURI */

.mmk-gusturi-hero,
.mmk-custom-gusturi .mmk-gusturi-hero {
    padding: 115px 0 70px !important;
    text-align: center !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(199, 154, 132, 0.08), transparent 35%),
        linear-gradient(180deg, #fffaf7 0%, #ffffff 100%) !important;
}

.mmk-gusturi-hero .mmk-eyebrow,
.mmk-custom-gusturi .mmk-gusturi-hero .mmk-eyebrow {
    display: block !important;
    margin: 0 0 18px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    color: #7b7370 !important;
}

.mmk-gusturi-hero h1,
.mmk-custom-gusturi .mmk-gusturi-hero h1 {
    max-width: 760px !important;
    margin: 0 auto 22px !important;
    font-size: clamp(44px, 5.4vw, 76px) !important;
    line-height: 1.08 !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em !important;
    color: #2b2928 !important;
}

.mmk-gusturi-hero-text,
.mmk-gusturi-hero p,
.mmk-custom-gusturi .mmk-gusturi-hero-text {
    max-width: 620px !important;
    margin: 0 auto !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    color: #6e6663 !important;
}

/* SECȚIUNE LISTĂ GUSTURI */

.mmk-gusturi-section,
.mmk-gusturi-list,
.mmk-custom-gusturi .mmk-gusturi-list {
    padding: 55px 0 120px !important;
    background: #ffffff !important;
}

/* GRID 2 COLOANE */

.mmk-gusturi-grid,
.mmk-custom-gusturi .mmk-gusturi-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 95px 86px !important;
    align-items: start !important;
}

/* CARD GUST */

.mmk-gust-card,
.mmk-custom-gusturi .mmk-gust-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 180px minmax(0, 1fr) !important;
    gap: 34px !important;
    align-items: center !important;
    min-height: 250px !important;
    padding: 18px 18px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease !important;
}

/* EFECT LA ATINGERE / HOVER — IESE ÎN AFARĂ */

.mmk-gust-card:hover,
.mmk-custom-gusturi .mmk-gust-card:hover {
    transform: translateY(-10px) scale(1.025) !important;
    background: #fffaf7 !important;
    border-color: rgba(189, 130, 109, 0.18) !important;
    box-shadow: 0 26px 48px rgba(55, 38, 28, 0.12) !important;
    z-index: 5 !important;
}

/* IMAGINE */

.mmk-gust-image-wrap,
.mmk-gust-image-box,
.mmk-custom-gusturi .mmk-gust-image-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mmk-gust-image,
.mmk-custom-gusturi .mmk-gust-image {
    display: block !important;
    width: 100% !important;
    max-width: 165px !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 18px 24px rgba(45, 34, 32, 0.14)) !important;
    transition:
        transform 0.32s ease,
        filter 0.32s ease !important;
}

/* Imaginea iese puțin mai mult decât cardul */

.mmk-gust-card:hover .mmk-gust-image,
.mmk-custom-gusturi .mmk-gust-card:hover .mmk-gust-image {
    transform: translateY(-8px) scale(1.08) !important;
    filter: drop-shadow(0 28px 34px rgba(45, 34, 32, 0.22)) !important;
}

/* TEXT CARD */

.mmk-gust-content,
.mmk-custom-gusturi .mmk-gust-content {
    min-width: 0 !important;
}

.mmk-gust-content h2,
.mmk-custom-gusturi .mmk-gust-content h2 {
    margin: 0 0 8px !important;
    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    color: #2e2928 !important;
}

.mmk-gust-price,
.mmk-custom-gusturi .mmk-gust-price {
    display: block !important;
    margin: 0 0 16px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #2e2928 !important;
}

.mmk-gust-short,
.mmk-gust-desc,
.mmk-custom-gusturi .mmk-gust-short,
.mmk-custom-gusturi .mmk-gust-desc {
    margin: 0 0 22px !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: #6d625f !important;
}

/* Ingrediente, dacă există listă */

.mmk-gust-ingredients,
.mmk-custom-gusturi .mmk-gust-ingredients {
    margin: 0 0 18px !important;
    padding: 0 !important;
    list-style: none !important;
}

.mmk-gust-ingredients li,
.mmk-custom-gusturi .mmk-gust-ingredients li {
    position: relative !important;
    margin-bottom: 6px !important;
    padding-left: 14px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: #6d625f !important;
}

.mmk-gust-ingredients li::before,
.mmk-custom-gusturi .mmk-gust-ingredients li::before {
    content: "-" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #b98b9b !important;
}

/* BUTON */

.mmk-gust-btn,
.mmk-custom-gusturi .mmk-gust-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 14px 24px !important;
    background: #b68a9a !important;
    border: 1px solid #2a2524 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}

.mmk-gust-btn:hover,
.mmk-custom-gusturi .mmk-gust-btn:hover {
    background: #9f7586 !important;
    border-color: #9f7586 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 24px rgba(159, 117, 134, 0.28) !important;
}

/* Dacă butonul are span/săgeată în interior */

.mmk-gust-btn span,
.mmk-custom-gusturi .mmk-gust-btn span {
    display: none !important;
}

/* =========================================================
   TABLETĂ
   ========================================================= */

@media (max-width: 1100px) {
    .mmk-gusturi-grid,
    .mmk-custom-gusturi .mmk-gusturi-grid {
        grid-template-columns: 1fr !important;
        gap: 65px !important;
    }

    .mmk-gust-card,
    .mmk-custom-gusturi .mmk-gust-card {
        max-width: 760px !important;
        margin: 0 auto !important;
    }
}

/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 680px) {
    .mmk-gusturi-hero,
    .mmk-custom-gusturi .mmk-gusturi-hero {
        padding: 80px 0 42px !important;
    }

    .mmk-gusturi-hero h1,
    .mmk-custom-gusturi .mmk-gusturi-hero h1 {
        font-size: clamp(36px, 11vw, 52px) !important;
        line-height: 1.12 !important;
        letter-spacing: 0.04em !important;
    }

    .mmk-gusturi-hero-text,
    .mmk-gusturi-hero p,
    .mmk-custom-gusturi .mmk-gusturi-hero-text {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .mmk-gusturi-section,
    .mmk-gusturi-list,
    .mmk-custom-gusturi .mmk-gusturi-list {
        padding: 40px 0 80px !important;
    }

    .mmk-gusturi-grid,
    .mmk-custom-gusturi .mmk-gusturi-grid {
        grid-template-columns: 1fr !important;
        gap: 54px !important;
    }

    .mmk-gust-card,
    .mmk-custom-gusturi .mmk-gust-card {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        text-align: center !important;
        min-height: unset !important;
        padding: 22px 18px !important;
    }

    .mmk-gust-card:hover,
    .mmk-custom-gusturi .mmk-gust-card:hover {
        transform: translateY(-6px) scale(1.015) !important;
    }

    .mmk-gust-image,
    .mmk-custom-gusturi .mmk-gust-image {
        max-width: 155px !important;
        margin: 0 auto !important;
    }

    .mmk-gust-content h2,
    .mmk-custom-gusturi .mmk-gust-content h2 {
        font-size: 21px !important;
    }

    .mmk-gust-btn,
    .mmk-custom-gusturi .mmk-gust-btn {
        margin: 0 auto !important;
        min-width: 190px !important;
    }
}
/* CANDY BAR PAGE */

.mmk-candy-page {
    background: #fbf7f3;
    color: #252525;
    font-family: "Arial", sans-serif;
}

.mmk-candy-hero {
    position: relative;
    min-height: 520px;
    background: #fbf7f3;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mmk-candy-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            90deg,
            rgba(251, 247, 243, 0.96) 0%,
            rgba(251, 247, 243, 0.86) 38%,
            rgba(251, 247, 243, 0.18) 70%
        ),
        url("../img/candy-bar-hero.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.mmk-candy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: 11%;
    padding: 70px 0;
    text-align: center;
}

.mmk-eyebrow {
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 13px;
    color: #b98676;
    margin-bottom: 20px;
}

.mmk-candy-hero h1 {
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 400;
    color: #2b2b2b;
    margin: 0;
}

.mmk-divider {
    width: 54px;
    height: 1px;
    background: #b98676;
    margin: 24px auto;
    position: relative;
}

.mmk-divider::before,
.mmk-divider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 22px;
    height: 1px;
    background: #d8ccc5;
}

.mmk-divider::before {
    left: -32px;
}

.mmk-divider::after {
    right: -32px;
}

.mmk-hero-text {
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #5f5855;
}

.mmk-candy-packages {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.mmk-section-title {
    text-align: center;
    margin-bottom: 34px;
}

.mmk-section-title h2 {
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 22px;
    font-weight: 400;
    color: #8f6a60;
    margin: 0;
}

.mmk-section-title span {
    display: block;
    width: 48px;
    height: 1px;
    background: #c49a8d;
    margin: 12px auto 0;
}

.mmk-section-title.small h2 {
    font-size: 20px;
    line-height: 1.35;
}

.mmk-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mmk-package-card {
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 10px 30px rgba(80, 50, 38, 0.08);
    overflow: hidden;
    text-align: center;
}

.mmk-package-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.mmk-package-body {
    padding: 24px 20px 26px;
}

.mmk-package-body h3 {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px;
    color: #5b4943;
}

.mmk-package-body p {
    min-height: 58px;
    font-size: 14px;
    line-height: 1.65;
    color: #756b67;
    margin: 0 0 16px;
}

.mmk-price {
    font-family: Georgia, serif;
    color: #9d7a70;
    margin-bottom: 18px;
    font-size: 18px;
}

.mmk-price strong {
    font-size: 31px;
    font-weight: 400;
    color: #7a5a51;
}

.mmk-btn,
.mmk-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 28px;
    background: #a66d7d;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    border: 0;
    cursor: pointer;
    transition: 0.25s ease;
}

.mmk-btn:hover,
.mmk-submit-btn:hover {
    background: #8e5969;
}

.mmk-note-box {
    margin-top: 24px;
    border: 1px solid #eadbd5;
    background: #f9eeee;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #6c5b55;
}

.mmk-note-icon {
    width: 54px;
    height: 54px;
    border: 1px solid #d7b4aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmk-note-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.mmk-candy-request {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px 60px;
    display: grid;
    grid-template-columns: 1.8fr 0.9fr;
    gap: 24px;
}

.mmk-request-form,
.mmk-why-box {
    background: #fff;
    border: 1px solid #eadfd8;
    padding: 34px;
}

.mmk-request-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mmk-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mmk-form-row:first-of-type {
    grid-template-columns: 1.2fr 0.8fr 1fr;
}

.mmk-request-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #6f625d;
}

.mmk-request-form input,
.mmk-request-form select,
.mmk-request-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid #e3d7d1;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.mmk-request-form textarea {
    min-height: 110px;
    padding: 14px;
    resize: vertical;
}

.mmk-submit-btn {
    margin: 8px auto 0;
}

.mmk-why-box {
    background: #fbf1ef;
}

.mmk-why-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    margin-top: 28px;
}

.mmk-why-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #d4afa6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmk-why-item h3 {
    font-size: 16px;
    margin: 0 0 6px;
    color: #5d4b45;
}

.mmk-why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #766a65;
}

.mmk-benefits-strip {
    background: #f5ece7;
    border-top: 1px solid #eadfd8;
    border-bottom: 1px solid #eadfd8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 34px 8%;
}

.mmk-benefits-strip div {
    padding: 0 28px;
    border-right: 1px solid #e1d4ce;
}

.mmk-benefits-strip div:last-child {
    border-right: 0;
}

.mmk-benefits-strip span {
    display: block;
    color: #ba8b7e;
    font-size: 25px;
    margin-bottom: 8px;
}

.mmk-benefits-strip h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #8a6b62;
    margin: 0 0 8px;
}

.mmk-benefits-strip p {
    font-size: 13px;
    line-height: 1.6;
    color: #746761;
    margin: 0;
}

@media (max-width: 1024px) {
    .mmk-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mmk-candy-request {
        grid-template-columns: 1fr;
    }

    .mmk-benefits-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mmk-benefits-strip div {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .mmk-candy-hero {
        min-height: 460px;
    }

    .mmk-candy-hero-content {
        margin: 0 auto;
        padding: 50px 24px;
    }

    .mmk-candy-hero h1 {
        font-size: 38px;
    }

    .mmk-package-grid,
    .mmk-form-row,
    .mmk-form-row:first-of-type,
    .mmk-benefits-strip {
        grid-template-columns: 1fr;
    }

    .mmk-request-form,
    .mmk-why-box {
        padding: 24px;
    }
}
/* FOOTER */

.mmk-site-footer {
    background: #151515;
    color: #d8d2cf;
    padding: 86px 7% 76px;
}

.mmk-footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mmk-footer-brand img {
    width: 360px;
    max-width: 100%;
    display: block;
    margin-bottom: 60px;
}

.mmk-footer-brand p {
    max-width: 470px;
    font-size: 24px;
    line-height: 1.75;
    color: #d9d4d1;
    margin: 0 0 28px;
}

.mmk-footer-socials {
    display: flex;
    gap: 15px;
}

.mmk-footer-socials a {
    color: #d9d4d1;
    text-decoration: none;
    font-size: 22px;
}

.mmk-footer-col h3 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 42px;
}

.mmk-footer-col a,
.mmk-footer-col p {
    display: block;
    color: #d9d4d1;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 26px;
}

.mmk-footer-col a:hover {
    color: #c49a8d;
}

@media (max-width: 1200px) {
    .mmk-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 700px) {
    .mmk-site-footer {
        padding: 60px 28px;
    }

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

    .mmk-footer-brand img {
        width: 280px;
        margin-bottom: 36px;
    }

    .mmk-footer-brand p,
    .mmk-footer-col a,
    .mmk-footer-col p {
        font-size: 18px;
    }

    .mmk-footer-col h3 {
        font-size: 18px;
        letter-spacing: 5px;
    }
}
/* =========================================================
   MARINA MASTER CAKE — CANDY BAR PAGE
   Pentru page-candy-bar.php existent
   ========================================================= */

:root {
    --mmk-bg: #fbf7f3;
    --mmk-bg-soft: #f7eee9;
    --mmk-card: #ffffff;
    --mmk-text: #222222;
    --mmk-muted: #756b66;
    --mmk-brown: #b98676;
    --mmk-brown-dark: #8d6258;
    --mmk-pink: #a66d7d;
    --mmk-pink-dark: #8f5968;
    --mmk-border: #eadfd8;
    --mmk-footer: #151515;
    --mmk-footer-text: #d9d4d1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.mmk-custom-candybar {
    margin: 0;
    background: var(--mmk-bg);
    color: var(--mmk-text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.mmk-custom-candybar img {
    max-width: 100%;
    height: auto;
}

body.mmk-custom-candybar a {
    text-decoration: none;
}

.mmk-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.mmk-site-header {
    width: 100%;
    background: var(--mmk-bg);
    border-bottom: 1px solid rgba(185, 134, 118, 0.16);
    position: relative;
    z-index: 9999;
}

.mmk-header-inner {
    min-height: 120px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.mmk-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.mmk-logo-img {
    display: block;
    width: 315px;
    height: auto;
}

.mmk-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 44px;
    flex: 1;
}

.mmk-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #111;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.mmk-nav-link:hover,
.mmk-nav-active {
    color: var(--mmk-brown);
}

.mmk-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 0;
    height: 1px;
    background: var(--mmk-brown);
    transition: width 0.25s ease;
}

.mmk-nav-link:hover::after,
.mmk-nav-active::after {
    width: 100%;
}

.mmk-nav-item {
    position: relative;
}

.mmk-has-dropdown > .mmk-nav-link::before {
    content: "⌄";
    order: 2;
    margin-left: 8px;
    font-size: 18px;
    color: var(--mmk-brown);
}

.mmk-dropdown {
    position: absolute;
    top: calc(100% + 26px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 210px;
    background: #fff;
    border: 1px solid rgba(185, 134, 118, 0.18);
    box-shadow: 0 20px 45px rgba(55, 38, 31, 0.10);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 10000;
}

.mmk-has-dropdown:hover .mmk-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mmk-dropdown a {
    display: block;
    padding: 11px 24px;
    color: #5b4a44;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
    transition: 0.2s ease;
}

.mmk-dropdown a:hover {
    background: var(--mmk-bg);
    color: var(--mmk-brown);
    padding-left: 30px;
}


/* =========================================================
   HERO CANDY BAR
   ========================================================= */

.mmk-candybar-page {
    background: var(--mmk-bg);
}

.mmk-candy-hero {
    background: var(--mmk-bg);
    padding: 0;
    overflow: hidden;
}

.mmk-candy-hero-inner {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    min-height: 560px;
    width: 100%;
}

.mmk-candy-hero-text {
    padding-left: 11%;
    padding-right: 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 13px;
    color: var(--mmk-brown);
    margin: 0 0 20px;
}

.mmk-candy-hero-text h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 400;
    color: #292929;
    margin: 0;
}

.mmk-candy-hero-separator {
    width: 54px;
    height: 1px;
    background: var(--mmk-brown);
    margin: 24px auto;
    position: relative;
}

.mmk-candy-hero-separator::before,
.mmk-candy-hero-separator::after {
    content: "";
    position: absolute;
    top: 0;
    width: 24px;
    height: 1px;
    background: #d8ccc5;
}

.mmk-candy-hero-separator::before {
    left: -34px;
}

.mmk-candy-hero-separator::after {
    right: -34px;
}

.mmk-candy-hero-text p:not(.mmk-eyebrow) {
    max-width: 520px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #5f5855;
}

.mmk-candy-hero-image {
    height: 560px;
    overflow: hidden;
}

.mmk-candy-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.mmk-candy-section-title,
.mmk-candy-form-heading {
    text-align: center;
    margin-bottom: 36px;
}

.mmk-candy-section-title h2,
.mmk-candy-form-heading h2,
.mmk-candy-benefits-box h2 {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    color: #8f6a60;
    margin: 0;
}

.mmk-candy-section-title p,
.mmk-candy-form-heading p {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--mmk-muted);
}

.mmk-candy-title-line {
    width: 48px;
    height: 1px;
    background: var(--mmk-brown);
    margin: 14px auto 0;
}


/* =========================================================
   PACHETE CANDY BAR
   ========================================================= */

.mmk-candy-packages {
    padding: 66px 0 34px;
    background: var(--mmk-bg);
}

.mmk-candy-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mmk-candy-package-card {
    background: #fff;
    border: 1px solid var(--mmk-border);
    box-shadow: 0 12px 32px rgba(75, 45, 35, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mmk-candy-package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(75, 45, 35, 0.13);
}

.mmk-candy-package-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f5eee9;
}

.mmk-candy-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mmk-candy-package-card:hover .mmk-candy-package-image img {
    transform: scale(1.045);
}

.mmk-candy-package-content {
    padding: 24px 20px 28px;
}

.mmk-candy-package-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    color: #5b4943;
    margin: 0 0 10px;
}

.mmk-candy-package-content p {
    min-height: 64px;
    font-size: 14px;
    line-height: 1.65;
    color: #746964;
    margin: 0 0 18px;
}

.mmk-candy-package-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
    color: #8f6a60;
    margin-bottom: 20px;
}

.mmk-candy-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 28px;
    background: var(--mmk-pink);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    line-height: 1;
    transition: 0.25s ease;
}

.mmk-candy-small-btn:hover {
    background: var(--mmk-pink-dark);
    color: #fff;
}

.mmk-candy-note {
    margin-top: 28px;
    padding: 22px 28px;
    background: #f8eeee;
    border: 1px solid #eadbd5;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
}

.mmk-candy-note-icon {
    width: 54px;
    height: 54px;
    border: 1px solid #d7b4aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mmk-brown);
    font-size: 24px;
}

.mmk-candy-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #6c5b55;
}


/* =========================================================
   FORMULAR + BENEFICII
   ========================================================= */

.mmk-candy-request {
    padding: 34px 0 70px;
    background: var(--mmk-bg);
}

.mmk-candy-request-grid {
    display: grid;
    grid-template-columns: 1.75fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.mmk-candy-form-box,
.mmk-candy-benefits-box {
    background: #fff;
    border: 1px solid var(--mmk-border);
    padding: 36px;
    box-shadow: 0 12px 32px rgba(75, 45, 35, 0.05);
}

.mmk-candy-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mmk-form-row {
    display: grid;
    gap: 16px;
}

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

.mmk-form-row-3 {
    grid-template-columns: 1.2fr 0.8fr 1fr;
}

.mmk-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mmk-form-field label {
    font-size: 13px;
    line-height: 1.4;
    color: #6d5f5a;
}

.mmk-form-field label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #b98676;
    color: #fff;
    font-size: 11px;
    margin-left: 5px;
}

.mmk-form-field input,
.mmk-form-field select,
.mmk-form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #e3d7d1;
    background: #fff;
    color: #2d2d2d;
    font-size: 14px;
    line-height: 1.4;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmk-form-field textarea {
    min-height: 118px;
    padding: 14px;
    resize: vertical;
}

.mmk-form-field input:focus,
.mmk-form-field select:focus,
.mmk-form-field textarea:focus {
    border-color: var(--mmk-brown);
    box-shadow: 0 0 0 3px rgba(185, 134, 118, 0.13);
}

.mmk-form-field small {
    font-size: 12px;
    line-height: 1.55;
    color: #8b7b75;
}

.mmk-allergy-field {
    padding: 16px;
    background: #fbf4f1;
    border: 1px solid #eadbd5;
}

.mmk-candy-submit {
    align-self: center;
    min-height: 46px;
    margin-top: 8px;
    padding: 0 34px;
    border: 0;
    background: var(--mmk-pink);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.9px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.mmk-candy-submit:hover {
    background: var(--mmk-pink-dark);
}

.mmk-candy-benefits-box {
    background: #fbf1ef;
}

.mmk-candy-benefits-box h2 {
    text-align: center;
    font-size: 23px;
}

.mmk-candy-benefit {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    margin-top: 28px;
}

.mmk-candy-benefit-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #d4afa6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mmk-brown);
    font-size: 22px;
    background: rgba(255, 255, 255, 0.45);
}

.mmk-candy-benefit h4 {
    font-size: 16px;
    line-height: 1.35;
    color: #5d4b45;
    margin: 0 0 6px;
}

.mmk-candy-benefit p {
    font-size: 14px;
    line-height: 1.65;
    color: #766a65;
    margin: 0;
}

.mmk-candy-side-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eadbd5;
    font-size: 14px;
    line-height: 1.7;
    color: #6f625d;
}

.mmk-candy-side-note strong {
    color: #5c4740;
}


/* =========================================================
   PRE-FOOTER
   ========================================================= */

.mmk-prefooter {
    background: #f5ece7;
    border-top: 1px solid #eadfd8;
    border-bottom: 1px solid #eadfd8;
}

.mmk-prefooter-inner {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.mmk-prefooter-item {
    padding: 34px 30px 36px;
    border-right: 1px solid #e1d4ce;
}

.mmk-prefooter-item:last-child {
    border-right: 0;
}

.mmk-prefooter-icon {
    color: var(--mmk-brown);
    font-size: 25px;
    margin-bottom: 10px;
}

.mmk-prefooter-item h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 1.35;
    color: #8a6b62;
    margin: 0 0 9px;
}

.mmk-prefooter-item p {
    max-width: 220px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    color: #746761;
}


/* =========================================================
   FOOTER PRINCIPAL
   ========================================================= */

.mmk-site-footer {
    background: var(--mmk-footer);
}

.mmk-footer-main {
    background: var(--mmk-footer);
    color: var(--mmk-footer-text);
    padding: 86px 7% 76px;
}

.mmk-footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 78px;
    align-items: start;
}

.mmk-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 58px;
}

.mmk-footer-logo-img {
    width: 360px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: none;
}

.mmk-footer-desc {
    max-width: 500px;
    margin: 0 0 28px;
    color: var(--mmk-footer-text);
    font-size: 24px;
    line-height: 1.75;
}

.mmk-footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mmk-footer-socials a {
    color: var(--mmk-footer-text);
    font-size: 22px;
    line-height: 1;
    transition: color 0.2s ease;
}

.mmk-footer-socials a:hover {
    color: var(--mmk-brown);
}

.mmk-footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0 0 42px;
}

.mmk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmk-footer-links li {
    margin: 0 0 25px;
}

.mmk-footer-links a {
    color: var(--mmk-footer-text);
    font-size: 22px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.mmk-footer-links a:hover {
    color: var(--mmk-brown);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1400px) {
    .mmk-header-inner {
        padding: 0 5%;
        gap: 30px;
    }

    .mmk-logo-img {
        width: 270px;
    }

    .mmk-main-nav {
        gap: 30px;
    }

    .mmk-nav-link {
        font-size: 19px;
    }

    .mmk-footer-inner {
        gap: 54px;
    }
}

@media (max-width: 1180px) {
    .mmk-header-inner {
        min-height: 100px;
    }

    .mmk-logo-img {
        width: 235px;
    }

    .mmk-main-nav {
        gap: 22px;
    }

    .mmk-nav-link {
        font-size: 17px;
    }

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

    .mmk-candy-request-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .mmk-header-inner {
        min-height: auto;
        padding: 22px 24px;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .mmk-logo-img {
        width: 250px;
    }

    .mmk-main-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }

    .mmk-nav-link {
        font-size: 17px;
    }

    .mmk-dropdown {
        top: calc(100% + 14px);
    }

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

    .mmk-candy-hero-text {
        padding: 52px 24px 34px;
    }

    .mmk-candy-hero-image {
        height: 360px;
    }

    .mmk-candy-hero-text h1 {
        font-size: 44px;
    }

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

    .mmk-prefooter-item {
        border-right: 0;
        border-bottom: 1px solid #e1d4ce;
    }

    .mmk-prefooter-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 700px) {
    .mmk-container,
    .mmk-prefooter-inner {
        width: min(100% - 32px, 1240px);
    }

    .mmk-main-nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .mmk-nav-link {
        padding: 12px 0;
    }

    .mmk-nav-link::after {
        display: none;
    }

    .mmk-nav-item {
        width: 100%;
        text-align: center;
    }

    .mmk-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0 0 12px;
        display: none;
    }

    .mmk-nav-item:hover .mmk-dropdown {
        display: block;
        transform: none;
    }

    .mmk-dropdown a {
        padding: 8px 0;
    }

    .mmk-dropdown a:hover {
        padding-left: 0;
        background: transparent;
    }

    .mmk-candy-hero-text h1 {
        font-size: 36px;
    }

    .mmk-candy-hero-image {
        height: 280px;
    }

    .mmk-candy-packages {
        padding-top: 46px;
    }

    .mmk-candy-packages-grid,
    .mmk-form-row-2,
    .mmk-form-row-3,
    .mmk-prefooter-inner,
    .mmk-footer-inner {
        grid-template-columns: 1fr;
    }

    .mmk-candy-form-box,
    .mmk-candy-benefits-box {
        padding: 24px;
    }

    .mmk-prefooter-item {
        border-right: 0;
        border-bottom: 1px solid #e1d4ce;
    }

    .mmk-prefooter-item:last-child {
        border-bottom: 0;
    }

    .mmk-footer-main {
        padding: 60px 28px;
    }

    .mmk-footer-logo {
        margin-bottom: 36px;
    }

    .mmk-footer-logo-img {
        width: 280px;
    }

    .mmk-footer-desc,
    .mmk-footer-links a {
        font-size: 18px;
    }

    .mmk-footer-col h4 {
        font-size: 18px;
        letter-spacing: 5px;
        margin-bottom: 28px;
    }

    .mmk-footer-links li {
        margin-bottom: 18px;
    }
}

@media (max-width: 460px) {
    .mmk-logo-img {
        width: 210px;
    }

    .mmk-candy-hero-text h1 {
        font-size: 32px;
    }

    .mmk-candy-section-title h2,
    .mmk-candy-form-heading h2,
    .mmk-candy-benefits-box h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .mmk-candy-package-image {
        height: 190px;
    }
}
/* =========================================================
   FIX — CANDY BAR FORM SECTION FULL WIDTH
   Secțiunea "Cere ofertă personalizată"
   ========================================================= */

body.mmk-custom-candybar .mmk-candy-request {
    width: 100%;
    padding: 60px 0 80px;
    background: #fbf7f3;
}

body.mmk-custom-candybar .mmk-candy-request .mmk-container,
body.mmk-custom-candybar .mmk-candy-request-grid {
    width: min(1240px, calc(100vw - 80px)) !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.mmk-custom-candybar .mmk-candy-request-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.9fr) !important;
    gap: 32px !important;
    align-items: stretch !important;
}

body.mmk-custom-candybar .mmk-candy-form-box {
    width: 100% !important;
    max-width: none !important;
    padding: 44px 46px !important;
    background: #ffffff;
    border: 1px solid #eadfd8;
    box-shadow: 0 14px 36px rgba(75, 45, 35, 0.06);
}

body.mmk-custom-candybar .mmk-candy-benefits-box {
    width: 100% !important;
    max-width: none !important;
    padding: 44px 34px !important;
    background: #fbf1ef;
    border: 1px solid #eadfd8;
    box-shadow: 0 14px 36px rgba(75, 45, 35, 0.05);
}

body.mmk-custom-candybar .mmk-candy-form {
    width: 100%;
}

body.mmk-custom-candybar .mmk-form-row {
    width: 100%;
}

body.mmk-custom-candybar .mmk-form-row-3 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
}

body.mmk-custom-candybar .mmk-form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

body.mmk-custom-candybar .mmk-form-field input,
body.mmk-custom-candybar .mmk-form-field select,
body.mmk-custom-candybar .mmk-form-field textarea {
    width: 100%;
}

body.mmk-custom-candybar .mmk-candy-form-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

body.mmk-custom-candybar .mmk-candy-benefits-box h2 {
    max-width: 100%;
    text-align: center;
}

body.mmk-custom-candybar .mmk-candy-benefit {
    grid-template-columns: 54px 1fr;
    gap: 16px;
}
/* =========================================================
   CANDY BAR — 5 PACHETE + FEREASTRĂ FLOTANTĂ
   ========================================================= */

body.mmk-custom-candybar .mmk-candy-packages {
    padding: 70px 0 40px;
    background: #fbf7f3;
    overflow: visible;
}

body.mmk-custom-candybar .mmk-candy-packages .mmk-container {
    width: min(1420px, calc(100% - 70px));
    max-width: 1420px;
    margin: 0 auto;
    overflow: visible;
}

body.mmk-custom-candybar .mmk-candy-packages-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    overflow: visible;
}

body.mmk-custom-candybar .mmk-candy-package-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eadfd8;
    box-shadow: 0 12px 32px rgba(75, 45, 35, 0.08);
    text-align: center;
    overflow: visible;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    z-index: 1;
}

body.mmk-custom-candybar .mmk-candy-package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(75, 45, 35, 0.16);
    border-color: #d8b9ae;
    z-index: 50;
}

body.mmk-custom-candybar .mmk-candy-package-image {
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: #f5eee9;
}

body.mmk-custom-candybar .mmk-candy-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

body.mmk-custom-candybar .mmk-candy-package-card:hover .mmk-candy-package-image img {
    transform: scale(1.045);
}

body.mmk-custom-candybar .mmk-candy-package-content {
    padding: 22px 16px 26px;
}

body.mmk-custom-candybar .mmk-candy-package-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 400;
    color: #5b4943;
    margin: 0 0 10px;
}

body.mmk-custom-candybar .mmk-candy-package-content p {
    min-height: 72px;
    font-size: 13px;
    line-height: 1.6;
    color: #746964;
    margin: 0 0 16px;
}

body.mmk-custom-candybar .mmk-candy-package-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.2;
    color: #8f6a60;
    margin-bottom: 18px;
}

body.mmk-custom-candybar .mmk-candy-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 24px;
    background: #a66d7d;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 11px;
    line-height: 1;
    transition: 0.25s ease;
}

body.mmk-custom-candybar .mmk-candy-small-btn:hover {
    background: #8f5968;
    color: #ffffff;
}


/* FEREASTRA FLOTANTĂ */

body.mmk-custom-candybar .mmk-candy-package-tooltip {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 340px;
    min-height: 360px;
    transform: translate(-50%, 14px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #dfc6bd;
    box-shadow: 0 24px 60px rgba(48, 31, 25, 0.20);
    padding: 24px 26px 26px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.28s ease;
    z-index: 100;
}

body.mmk-custom-candybar .mmk-candy-package-card:hover .mmk-candy-package-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

body.mmk-custom-candybar .mmk-candy-package-tooltip h4 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #5b4943;
    margin: 0 0 4px;
    text-align: center;
}

body.mmk-custom-candybar .mmk-candy-tooltip-price {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    color: #a66d7d;
    margin-bottom: 16px;
    text-align: center;
}

body.mmk-custom-candybar .mmk-candy-package-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.mmk-custom-candybar .mmk-candy-package-tooltip li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #5f5551;
}

body.mmk-custom-candybar .mmk-candy-package-tooltip li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #b98676;
    font-size: 18px;
    line-height: 1.1;
}

/* corecție ca fereastra să nu iasă prea mult din ecran */
body.mmk-custom-candybar .mmk-candy-package-card:first-child .mmk-candy-package-tooltip {
    left: 0;
    transform: translate(0, 14px);
}

body.mmk-custom-candybar .mmk-candy-package-card:first-child:hover .mmk-candy-package-tooltip {
    transform: translate(0, 0);
}

body.mmk-custom-candybar .mmk-candy-package-card:last-child .mmk-candy-package-tooltip {
    left: auto;
    right: 0;
    transform: translate(0, 14px);
}

body.mmk-custom-candybar .mmk-candy-package-card:last-child:hover .mmk-candy-package-tooltip {
    transform: translate(0, 0);
}


/* NOTE BOX */

body.mmk-custom-candybar .mmk-candy-note {
    margin-top: 30px;
    padding: 22px 28px;
    background: #f8eeee;
    border: 1px solid #eadbd5;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
}

body.mmk-custom-candybar .mmk-candy-note-icon {
    width: 54px;
    height: 54px;
    border: 1px solid #d7b4aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b98676;
    font-size: 24px;
}

body.mmk-custom-candybar .mmk-candy-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #6c5b55;
}


/* RESPONSIVE */

@media (max-width: 1280px) {
    body.mmk-custom-candybar .mmk-candy-packages-grid-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.mmk-custom-candybar .mmk-candy-package-tooltip {
        width: 330px;
    }
}

@media (max-width: 860px) {
    body.mmk-custom-candybar .mmk-candy-packages .mmk-container {
        width: calc(100% - 36px);
    }

    body.mmk-custom-candybar .mmk-candy-packages-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.mmk-custom-candybar .mmk-candy-package-tooltip {
        position: static;
        width: auto;
        min-height: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        margin-top: 0;
        padding: 22px;
    }

    body.mmk-custom-candybar .mmk-candy-package-card:hover .mmk-candy-package-tooltip,
    body.mmk-custom-candybar .mmk-candy-package-card:first-child:hover .mmk-candy-package-tooltip,
    body.mmk-custom-candybar .mmk-candy-package-card:last-child:hover .mmk-candy-package-tooltip {
        transform: none;
    }
}

@media (max-width: 560px) {
    body.mmk-custom-candybar .mmk-candy-packages-grid-5 {
        grid-template-columns: 1fr;
    }

    body.mmk-custom-candybar .mmk-candy-package-image {
        height: 220px;
    }

    body.mmk-custom-candybar .mmk-candy-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.mmk-custom-candybar .mmk-candy-note-icon {
        margin: 0 auto;
    }
}
/* HERO CANDY BAR */
.mmk-candy-hero {
    background: #f6f2ee;
    padding: 0;
}

.mmk-candy-hero-inner {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 620px;
    align-items: stretch;
}

.mmk-candy-hero-text {
    background: #f6f2ee;
    padding: 90px 70px 90px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mmk-candy-hero-text .mmk-eyebrow {
    font-size: 14px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c79a85;
    margin-bottom: 26px;
}

.mmk-candy-hero-text h1 {
    font-size: 74px;
    line-height: 1.05;
    font-weight: 400;
    color: #242424;
    margin: 0 0 24px;
}

.mmk-candy-hero-separator {
    width: 140px;
    height: 2px;
    margin: 0 auto 26px;
    background: linear-gradient(to right, #d8d0ca 0%, #c79a85 50%, #d8d0ca 100%);
}

.mmk-candy-hero-text p:last-child {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.9;
    color: #5f5a57;
    margin: 0;
}

/* COLOANA CU IMAGINE */
.mmk-candy-hero-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #f6f2ee;
}

/* imaginea umple total coloana */
.mmk-candy-hero-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: right center;
    display: block;
}
/* =========================================================
   TOOLTIP CANDY BAR — SOFT LUXURY
   ========================================================= */

body.mmk-custom-candybar .mmk-candy-package-tooltip {
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(196, 154, 141, 0.45) !important;
    box-shadow:
        0 24px 55px rgba(72, 48, 39, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset !important;
    backdrop-filter: blur(8px);
    transform: translate(-50%, 18px) scale(0.96) !important;
    transition:
        opacity 0.38s ease,
        visibility 0.38s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s ease !important;
}

body.mmk-custom-candybar .mmk-candy-package-card:hover .mmk-candy-package-tooltip {
    transform: translate(-50%, 0) scale(1) !important;
    box-shadow:
        0 30px 68px rgba(72, 48, 39, 0.20),
        0 0 0 1px rgba(255, 255, 255, 0.75) inset !important;
}

/* luciu fin diagonal */
body.mmk-custom-candybar .mmk-candy-package-tooltip::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -55%;
    width: 45%;
    height: 170%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.20) 35%,
        rgba(255,255,255,0.70) 50%,
        rgba(255,255,255,0.20) 65%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-22deg) translateX(-180%);
    pointer-events: none;
    transition: transform 1.05s ease;
    z-index: 1;
}

body.mmk-custom-candybar .mmk-candy-package-card:hover .mmk-candy-package-tooltip::before {
    transform: skewX(-22deg) translateX(430%);
}

/* lumină discretă în colțuri */
body.mmk-custom-candybar .mmk-candy-package-tooltip::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 238, 230, 0.75), transparent 24%),
        radial-gradient(circle at 88% 92%, rgba(255, 244, 238, 0.65), transparent 28%);
    pointer-events: none;
    z-index: 0;
}

body.mmk-custom-candybar .mmk-candy-package-tooltip > * {
    position: relative;
    z-index: 2;
}
/* =========================================================
   MARINA MASTER CAKE — CONTACT PAGE
   ========================================================= */

body.mmk-custom-contact {
    background: #fbf7f3;
    color: #252525;
    overflow-x: hidden;
}

body.mmk-custom-contact a {
    text-decoration: none;
}

.mmk-contact-page {
    background: #fbf7f3;
}

.mmk-contact-hero {
    background: #fbf7f3;
    padding: 86px 0 60px;
    border-top: 1px solid rgba(185, 134, 118, 0.12);
}

.mmk-contact-hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.mmk-contact-hero-text {
    max-width: 820px;
    margin: 0 auto;
}

.mmk-contact-hero-text .mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #b98676;
    font-size: 13px;
    margin: 0 0 22px;
}

.mmk-contact-hero-text h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 76px;
    line-height: 1.05;
    font-weight: 400;
    color: #242424;
    margin: 0 0 22px;
}

.mmk-contact-separator,
.mmk-contact-title-line {
    width: 140px;
    height: 1px;
    margin: 0 auto 26px;
    background: linear-gradient(
        90deg,
        #d7ccc6 0%,
        #d7ccc6 28%,
        #b98676 28%,
        #b98676 72%,
        #d7ccc6 72%,
        #d7ccc6 100%
    );
}

.mmk-contact-hero-text p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: #5f5a57;
}


/* CONTACT RAPID */

.mmk-contact-main {
    padding: 30px 0 34px;
    background: #fbf7f3;
}

.mmk-contact-grid {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
}

.mmk-contact-card {
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 16px 42px rgba(75, 45, 35, 0.07);
    padding: 42px;
}

.mmk-contact-label {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: #b98676;
    font-size: 12px;
    margin: 0 0 18px;
}

.mmk-contact-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
    color: #2b2b2b;
    margin: 0 0 18px;
}

.mmk-contact-card p:not(.mmk-contact-label) {
    font-size: 16px;
    line-height: 1.8;
    color: #655b57;
    margin: 0 0 26px;
}

.mmk-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 28px;
    background: #25d366;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.mmk-whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.mmk-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mmk-phone-link {
    display: block;
    margin-top: 18px;
    color: #8f6a60;
    font-size: 21px;
    font-family: Georgia, "Times New Roman", serif;
}

.mmk-phone-link:hover {
    color: #b98676;
}


/* DATE FIRMĂ */

.mmk-company-list {
    display: grid;
    gap: 15px;
    margin-top: 22px;
}

.mmk-company-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee1db;
}

.mmk-company-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mmk-company-list span {
    color: #9a7a70;
    font-size: 14px;
}

.mmk-company-list strong,
.mmk-company-list a {
    color: #3c3633;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.mmk-company-list a:hover {
    color: #b98676;
}


/* FORMULAR CONTACT */

.mmk-contact-form-section {
    padding: 32px 0 76px;
    background: #fbf7f3;
}

.mmk-contact-form-grid {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.mmk-contact-form-box,
.mmk-contact-side-box {
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 16px 42px rgba(75, 45, 35, 0.06);
}

.mmk-contact-form-box {
    padding: 44px 46px;
}

.mmk-contact-section-title {
    text-align: center;
    margin-bottom: 36px;
}

.mmk-contact-section-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    color: #8f6a60;
    margin: 0;
}

.mmk-contact-section-title p {
    max-width: 650px;
    margin: 0 auto;
    color: #716762;
    font-size: 15px;
    line-height: 1.75;
}

.mmk-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mmk-form-row {
    display: grid;
    gap: 16px;
}

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

.mmk-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mmk-form-field label {
    color: #6d5f5a;
    font-size: 13px;
}

.mmk-form-field input,
.mmk-form-field select,
.mmk-form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #e3d7d1;
    background: #fff;
    color: #2d2d2d;
    font-size: 14px;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmk-form-field textarea {
    min-height: 140px;
    padding: 14px;
    resize: vertical;
}

.mmk-form-field input:focus,
.mmk-form-field select:focus,
.mmk-form-field textarea:focus {
    border-color: #b98676;
    box-shadow: 0 0 0 3px rgba(185, 134, 118, 0.13);
}

.mmk-contact-submit {
    align-self: center;
    min-height: 48px;
    margin-top: 10px;
    padding: 0 36px;
    border: 0;
    background: #a66d7d;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.mmk-contact-submit:hover {
    background: #8f5968;
}


/* SIDE INFO */

.mmk-contact-side {
    display: grid;
    gap: 24px;
}

.mmk-contact-side-box {
    padding: 32px;
}

.mmk-contact-side-box h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    color: #5b4943;
    margin: 0 0 15px;
}

.mmk-contact-side-box p {
    color: #6d625d;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.mmk-contact-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmk-contact-links li {
    border-bottom: 1px solid #eadfd8;
}

.mmk-contact-links li:last-child {
    border-bottom: 0;
}

.mmk-contact-links a {
    display: block;
    padding: 13px 0;
    color: #5d4f49;
    font-size: 15px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mmk-contact-links a:hover {
    color: #b98676;
    padding-left: 8px;
}

.mmk-contact-note {
    background: #fbf1ef;
}


/* RESPONSIVE CONTACT */

@media (max-width: 1100px) {
    .mmk-contact-grid,
    .mmk-contact-form-grid {
        grid-template-columns: 1fr;
    }

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

    .mmk-contact-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .mmk-contact-hero {
        padding: 60px 0 42px;
    }

    .mmk-contact-hero-text h1 {
        font-size: 52px;
    }

    .mmk-contact-grid,
    .mmk-contact-form-grid {
        width: calc(100% - 32px);
    }

    .mmk-contact-card,
    .mmk-contact-form-box,
    .mmk-contact-side-box {
        padding: 26px 22px;
    }

    .mmk-form-row-2,
    .mmk-contact-side {
        grid-template-columns: 1fr;
    }

    .mmk-company-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .mmk-whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================================================
   MARINA MASTER CAKE — PRODUCT CATEGORY PAGES
   Nuntă / Botez / Corporativ / Zile de naștere
   ========================================================= */

body.mmk-custom-products {
    background: #fbf7f3;
    color: #242424;
    overflow-x: hidden;
}

.mmk-products-page {
    background: #fbf7f3;
}

.mmk-products-hero {
    padding: 86px 0 64px;
    background:
        radial-gradient(circle at 78% 12%, rgba(185, 134, 118, 0.08), transparent 30%),
        linear-gradient(180deg, #fbf7f3 0%, #f7f1ed 100%);
    border-top: 1px solid rgba(185, 134, 118, 0.12);
}

.mmk-products-hero-inner {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.mmk-products-hero .mmk-eyebrow,
.mmk-products-empty .mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #b98676;
    font-size: 13px;
    margin: 0 0 22px;
}

.mmk-products-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 400;
    color: #242424;
    margin: 0 0 24px;
}

.mmk-products-separator,
.mmk-products-title-line {
    width: 150px;
    height: 1px;
    margin: 0 auto 28px;
    background: linear-gradient(
        90deg,
        #d7ccc6 0%,
        #d7ccc6 28%,
        #b98676 28%,
        #b98676 72%,
        #d7ccc6 72%,
        #d7ccc6 100%
    );
}

.mmk-products-hero p:not(.mmk-eyebrow) {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: #5f5a57;
}

.mmk-products-hero-actions,
.mmk-products-empty-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.mmk-products-whatsapp,
.mmk-products-contact,
.mmk-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.25s ease;
}

.mmk-products-whatsapp {
    background: #25d366;
    color: #fff;
}

.mmk-products-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

.mmk-products-contact,
.mmk-product-btn {
    background: #a66d7d;
    color: #fff;
}

.mmk-products-contact:hover,
.mmk-product-btn:hover {
    background: #8f5968;
    color: #fff;
    transform: translateY(-2px);
}


/* PRODUSE */

.mmk-products-list-section {
    padding: 70px 0 88px;
    background: #fbf7f3;
}

.mmk-products-list-section .mmk-container {
    width: min(1320px, calc(100% - 70px));
    max-width: 1320px;
    margin: 0 auto;
}

.mmk-products-section-title {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.mmk-products-section-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 400;
    color: #8f6a60;
    margin: 0;
}

.mmk-products-section-title p {
    max-width: 680px;
    margin: 0 auto;
    color: #716762;
    font-size: 15px;
    line-height: 1.75;
}

.mmk-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.mmk-product-card {
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 14px 36px rgba(75, 45, 35, 0.07);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mmk-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(75, 45, 35, 0.14);
    border-color: #d8b9ae;
}

.mmk-product-image {
    display: block;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #f5eee9;
}

.mmk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

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

.mmk-product-content {
    padding: 26px 24px 30px;
    text-align: center;
}

.mmk-product-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 400;
    color: #5b4943;
    margin: 0 0 12px;
}

.mmk-product-content h3 a {
    color: inherit;
    text-decoration: none;
}

.mmk-product-content h3 a:hover {
    color: #b98676;
}

.mmk-product-content p {
    min-height: 54px;
    font-size: 14px;
    line-height: 1.65;
    color: #746964;
    margin: 0 0 16px;
}

.mmk-product-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.2;
    color: #8f6a60;
    margin: 0 0 20px;
}

.mmk-product-price del {
    opacity: 0.55;
    margin-right: 6px;
}

.mmk-product-price ins {
    text-decoration: none;
}

.mmk-product-actions {
    display: flex;
    justify-content: center;
}


/* EMPTY STATE */

.mmk-products-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 54px 48px;
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 16px 42px rgba(75, 45, 35, 0.07);
    text-align: center;
}

.mmk-products-empty h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 400;
    color: #2b2b2b;
    margin: 0 0 18px;
}

.mmk-products-empty p:not(.mmk-eyebrow) {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #6c625e;
}


/* PAGINATION */

.mmk-products-pagination {
    margin-top: 48px;
    text-align: center;
}

.mmk-products-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmk-products-pagination a,
.mmk-products-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border: 1px solid #eadfd8;
    background: #fff;
    color: #6a5a54;
    text-decoration: none;
    transition: 0.2s ease;
}

.mmk-products-pagination a:hover,
.mmk-products-pagination .current {
    background: #a66d7d;
    border-color: #a66d7d;
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 1180px) {
    .mmk-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .mmk-products-hero h1 {
        font-size: 48px;
    }

    .mmk-products-list-section .mmk-container {
        width: calc(100% - 36px);
    }

    .mmk-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .mmk-product-image {
        height: 260px;
    }
}

@media (max-width: 560px) {
    .mmk-products-hero {
        padding: 64px 0 48px;
    }

    .mmk-products-hero h1 {
        font-size: 38px;
    }

    .mmk-products-hero p:not(.mmk-eyebrow) {
        font-size: 15px;
    }

    .mmk-products-hero-actions,
    .mmk-products-empty-actions {
        flex-direction: column;
    }

    .mmk-products-whatsapp,
    .mmk-products-contact,
    .mmk-product-btn {
        width: 100%;
    }

    .mmk-products-grid {
        grid-template-columns: 1fr;
    }

    .mmk-product-image {
        height: 300px;
    }

    .mmk-products-empty {
        padding: 36px 24px;
    }

    .mmk-products-empty h3 {
        font-size: 28px;
    }
}
/* =========================================================
   FIX FINAL — CANDY BAR HERO LA ZOOM 100%
   imagine fundal + înălțime controlată
   ========================================================= */

body.mmk-custom-candybar .mmk-candy-hero {
    position: relative !important;
    height: clamp(440px, 34vw, 560px) !important;
    min-height: unset !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #fbf7f3 !important;
    border-top: 1px solid rgba(185, 134, 118, 0.10);
}

/* imaginea devine fundal real */
body.mmk-custom-candybar .mmk-candy-hero-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    flex: none !important;
    max-width: none !important;
}

/* imaginea se întinde pe toată secțiunea, dar rămâne poziționată corect */
body.mmk-custom-candybar .mmk-candy-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 72% center !important;
    display: block !important;
}

/* gradient peste imagine — face trecerea naturală spre text */
body.mmk-custom-candybar .mmk-candy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            #fbf7f3 0%,
            rgba(251, 247, 243, 0.98) 24%,
            rgba(251, 247, 243, 0.82) 42%,
            rgba(251, 247, 243, 0.34) 58%,
            rgba(251, 247, 243, 0.04) 100%
        );
    pointer-events: none;
}

/* conținutul stă peste fundal */
body.mmk-custom-candybar .mmk-candy-hero-inner {
    position: relative !important;
    z-index: 3 !important;
    width: min(1240px, calc(100% - 72px)) !important;
    height: 100% !important;
    min-height: unset !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* textul nu mai împinge secțiunea */
body.mmk-custom-candybar .mmk-candy-hero-text {
    width: 46% !important;
    max-width: 560px !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* titlul nu mai devine enorm la 100% */
body.mmk-custom-candybar .mmk-candy-hero-text h1 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(48px, 4.4vw, 68px) !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    color: #242424 !important;
    margin: 0 !important;
}

/* eyebrow */
body.mmk-custom-candybar .mmk-candy-hero-text .mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.38em !important;
    color: #b98676 !important;
    font-size: 13px !important;
    margin: 0 0 20px !important;
}

/* descriere */
body.mmk-custom-candybar .mmk-candy-hero-text p:not(.mmk-eyebrow) {
    max-width: 540px !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: #5f5a57 !important;
}

/* separator */
body.mmk-custom-candybar .mmk-candy-hero-separator {
    width: 160px !important;
    height: 1px !important;
    margin: 24px auto 24px !important;
    background: linear-gradient(
        90deg,
        #d7ccc6 0%,
        #d7ccc6 28%,
        #b98676 28%,
        #b98676 72%,
        #d7ccc6 72%,
        #d7ccc6 100%
    ) !important;
}
/* =========================================================
   FIX CANDY BAR HERO — text prea mare / panou prea lat
   ========================================================= */

body.mmk-custom-candybar .mmk-candy-hero {
    height: 520px !important;
    min-height: 520px !important;
}

/* imaginea rămâne fundal */
body.mmk-custom-candybar .mmk-candy-hero-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
}

body.mmk-custom-candybar .mmk-candy-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 74% center !important;
}

/* gradientul să nu creeze bloc alb dur peste imagine */
body.mmk-custom-candybar .mmk-candy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            #fbf7f3 0%,
            rgba(251, 247, 243, 0.98) 22%,
            rgba(251, 247, 243, 0.86) 36%,
            rgba(251, 247, 243, 0.45) 50%,
            rgba(251, 247, 243, 0.08) 68%,
            rgba(251, 247, 243, 0) 100%
        );
    pointer-events: none;
}

/* conținutul rămâne peste imagine */
body.mmk-custom-candybar .mmk-candy-hero-inner {
    position: relative !important;
    z-index: 3 !important;
    width: min(1240px, calc(100% - 72px)) !important;
    height: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* aici era problema: blocul era prea lat */
body.mmk-custom-candybar .mmk-candy-hero-text {
    width: 430px !important;
    max-width: 430px !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    text-align: center !important;
}

/* titlul controlat, să nu mai intre peste imagine */
body.mmk-custom-candybar .mmk-candy-hero-text h1 {
    max-width: 430px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 56px !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    color: #242424 !important;
    margin: 0 auto !important;
    letter-spacing: 0 !important;
}

/* subtitlu mic de sus */
body.mmk-custom-candybar .mmk-candy-hero-text .mmk-eyebrow {
    font-size: 13px !important;
    letter-spacing: 0.38em !important;
    color: #b98676 !important;
    margin: 0 0 20px !important;
}

/* separator */
body.mmk-custom-candybar .mmk-candy-hero-separator {
    width: 150px !important;
    height: 1px !important;
    margin: 24px auto 24px !important;
}

/* descriere */
body.mmk-custom-candybar .mmk-candy-hero-text p:not(.mmk-eyebrow) {
    max-width: 420px !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: #5f5a57 !important;
}


/* ECRANE MARI — puțin mai aerisit */
@media (min-width: 1500px) {
    body.mmk-custom-candybar .mmk-candy-hero {
        height: 560px !important;
        min-height: 560px !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero-text {
        width: 480px !important;
        max-width: 480px !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero-text h1 {
        max-width: 480px !important;
        font-size: 62px !important;
    }
}


/* MOBILE */
@media (max-width: 760px) {
    body.mmk-custom-candybar .mmk-candy-hero {
        height: auto !important;
        min-height: auto !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero::before {
        background: rgba(251, 247, 243, 0.92) !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero-inner {
        width: calc(100% - 32px) !important;
        height: auto !important;
        padding: 72px 0 !important;
        justify-content: center !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.mmk-custom-candybar .mmk-candy-hero-text h1 {
        max-width: 100% !important;
        font-size: 42px !important;
    }
}
/* =========================================================
   MARINA MASTER CAKE — ZILE DE NAȘTERE CATALOG PAGE
   ========================================================= */

body.mmk-custom-birthday {
    background: #fbf7f3;
    color: #242424;
    overflow-x: hidden;
}

body.mmk-custom-birthday a {
    text-decoration: none;
}

.mmk-birthday-page {
    background: #fbf7f3;
}


/* HERO */

.mmk-birthday-hero {
    position: relative;
    min-height: 520px;
    background: #fbf7f3;
    border-top: 1px solid rgba(185, 134, 118, 0.10);
    overflow: hidden;
}

.mmk-birthday-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #fbf7f3 0%, rgba(251, 247, 243, 0.96) 32%, rgba(251, 247, 243, 0.45) 58%, rgba(251, 247, 243, 0.18) 100%),
        var(--mmk-birthday-hero);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.96;
}

.mmk-birthday-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 24%, rgba(255,255,255,0.72), transparent 32%);
    pointer-events: none;
}

.mmk-birthday-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 72px));
    min-height: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.mmk-birthday-hero-content {
    max-width: 560px;
    text-align: center;
}

.mmk-birthday-hero .mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #b98676;
    font-size: 13px;
    margin: 0 0 20px;
}

.mmk-birthday-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 70px;
    line-height: 1.08;
    font-weight: 400;
    color: #242424;
    margin: 0;
}

.mmk-birthday-separator {
    width: 170px;
    height: 1px;
    margin: 28px auto 28px;
    background: linear-gradient(
        90deg,
        #d7ccc6 0%,
        #d7ccc6 28%,
        #b98676 28%,
        #b98676 72%,
        #d7ccc6 72%,
        #d7ccc6 100%
    );
}

.mmk-birthday-hero-content p:not(.mmk-eyebrow) {
    font-size: 17px;
    line-height: 1.85;
    color: #5f5a57;
    margin: 0 auto;
}

.mmk-birthday-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.mmk-birthday-main-btn,
.mmk-birthday-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 30px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    transition: 0.25s ease;
}

.mmk-birthday-main-btn {
    background: #a66d7d;
    color: #fff;
}

.mmk-birthday-main-btn:hover {
    background: #8f5968;
    color: #fff;
    transform: translateY(-2px);
}

.mmk-birthday-secondary-btn {
    background: rgba(255,255,255,0.72);
    color: #8f6a60;
    border-color: #d9c4bc;
}

.mmk-birthday-secondary-btn:hover {
    background: #fff;
    color: #8f5968;
    transform: translateY(-2px);
}


/* SUBCATEGORII */

.mmk-birthday-categories {
    padding: 34px 0 20px;
    background: #fbf7f3;
}

.mmk-birthday-categories-inner {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.mmk-birthday-cat-card {
    display: block;
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 16px 38px rgba(75, 45, 35, 0.06);
    overflow: hidden;
    color: #5b4943;
    transition: 0.28s ease;
}

.mmk-birthday-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(75, 45, 35, 0.12);
    border-color: #d7b7ad;
}

.mmk-birthday-cat-img {
    height: 170px;
    background: #f4eee9;
    overflow: hidden;
}

.mmk-birthday-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.mmk-birthday-cat-card:hover .mmk-birthday-cat-img img {
    transform: scale(1.045);
}

.mmk-birthday-cat-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    color: #b98676;
    font-size: 22px;
}

.mmk-birthday-cat-name {
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 18px;
    background: #fff;
}

.mmk-birthday-cat-name span {
    color: #b98676;
    font-size: 22px;
}

.mmk-birthday-cat-name strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    color: #6a4f47;
}

.mmk-birthday-cat-name em {
    font-style: normal;
    color: #9c7469;
    font-size: 24px;
}


/* CATALOG */

.mmk-birthday-catalog {
    padding: 42px 0 80px;
    background: #fbf7f3;
}

.mmk-birthday-catalog-inner {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 275px 1fr;
    gap: 42px;
}

.mmk-birthday-sidebar {
    padding-right: 26px;
    border-right: 1px solid #e6d8d0;
}

.mmk-filter-block {
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid #eadfd8;
}

.mmk-filter-block h3 {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.4;
    color: #4f4743;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.mmk-filter-block label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0;
    color: #6d625d;
    font-size: 14px;
    cursor: pointer;
}

.mmk-filter-block input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #b98676;
}

.mmk-category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmk-category-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(234, 223, 216, 0.75);
}

.mmk-category-menu li:last-child {
    border-bottom: 0;
}

.mmk-category-menu a {
    display: block;
    padding: 10px 0;
    color: #6d625d;
    font-size: 14px;
    transition: 0.2s ease;
}

.mmk-category-menu a:hover {
    color: #b98676;
    padding-left: 6px;
}

#mmkPriceRange {
    width: 100%;
    accent-color: #b98676;
}

.mmk-price-range-label {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #6d625d;
    font-size: 12px;
}

.mmk-clear-filters {
    width: 100%;
    min-height: 46px;
    background: transparent;
    border: 1px solid #cdb7ae;
    color: #6d625d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.mmk-clear-filters:hover {
    background: #a66d7d;
    border-color: #a66d7d;
    color: #fff;
}


/* PRODUCTS AREA */

.mmk-catalog-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.mmk-catalog-top h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 8px;
}

.mmk-catalog-top p {
    margin: 0;
    color: #716762;
    font-size: 15px;
    line-height: 1.65;
}

.mmk-catalog-controls {
    display: flex;
    gap: 14px;
    align-items: center;
}

.mmk-catalog-controls select,
.mmk-catalog-controls input {
    height: 42px;
    border: 1px solid #d9c9c1;
    background: #fff;
    color: #5e5551;
    padding: 0 14px;
    outline: none;
    font-size: 14px;
}

.mmk-catalog-controls input {
    width: 210px;
}

.mmk-catalog-controls select:focus,
.mmk-catalog-controls input:focus {
    border-color: #b98676;
}

.mmk-catalog-count {
    margin-bottom: 18px;
    color: #716762;
    font-size: 14px;
}

.mmk-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.mmk-catalog-card {
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 14px 36px rgba(75, 45, 35, 0.06);
    transition: 0.28s ease;
    overflow: hidden;
}

.mmk-catalog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(75, 45, 35, 0.13);
    border-color: #d7b7ad;
}

.mmk-catalog-img {
    display: block;
    width: 100%;
    height: 245px;
    background: #f4eee9;
    overflow: hidden;
}

.mmk-catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.38s ease;
}

.mmk-catalog-card:hover .mmk-catalog-img img {
    transform: scale(1.045);
}

.mmk-catalog-card-body {
    padding: 22px 20px 26px;
    text-align: center;
}

.mmk-catalog-card-body h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
    color: #5b4943;
}

.mmk-catalog-card-body h3 a {
    color: inherit;
}

.mmk-catalog-card-body h3 a:hover {
    color: #b98676;
}

.mmk-catalog-card-body p {
    min-height: 48px;
    margin: 0 0 13px;
    font-size: 14px;
    line-height: 1.6;
    color: #746964;
}

.mmk-catalog-price {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    color: #9a6d63;
}

.mmk-catalog-price del {
    opacity: 0.52;
    margin-right: 5px;
}

.mmk-catalog-price ins {
    text-decoration: none;
}

.mmk-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    background: #a66d7d;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
    transition: 0.25s ease;
}

.mmk-catalog-btn:hover {
    background: #8f5968;
    color: #fff;
}

.mmk-no-results {
    display: none;
    margin-top: 28px;
    padding: 32px;
    background: #fff;
    border: 1px solid #eadfd8;
    text-align: center;
    color: #6d625d;
}


/* EMPTY */

.mmk-products-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 54px 48px;
    background: #fff;
    border: 1px solid #eadfd8;
    box-shadow: 0 16px 42px rgba(75, 45, 35, 0.07);
    text-align: center;
}

.mmk-products-empty .mmk-eyebrow {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: #b98676;
    font-size: 13px;
    margin: 0 0 18px;
}

.mmk-products-empty h3 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    color: #2b2b2b;
}

.mmk-products-empty p {
    max-width: 620px;
    margin: 0 auto;
    color: #6c625e;
    font-size: 16px;
    line-height: 1.8;
}

.mmk-products-empty-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}


/* INFO STRIP */

.mmk-birthday-info-strip {
    padding: 0 0 82px;
    background: #fbf7f3;
}

.mmk-birthday-info-inner {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 34px 42px;
    background: #fbefed;
    border: 1px solid #ead6d0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.mmk-birthday-info-inner h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    color: #5b4943;
}

.mmk-birthday-info-inner p {
    margin: 0;
    color: #6d625d;
    font-size: 15px;
    line-height: 1.65;
}


/* RESPONSIVE */

@media (max-width: 1280px) {
    .mmk-birthday-categories-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mmk-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .mmk-birthday-catalog-inner {
        grid-template-columns: 1fr;
    }

    .mmk-birthday-sidebar {
        border-right: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .mmk-filter-block {
        margin-bottom: 0;
    }

    .mmk-clear-filters {
        grid-column: 1 / -1;
    }

    .mmk-catalog-top {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .mmk-birthday-hero {
        min-height: auto;
    }

    .mmk-birthday-hero::before {
        background:
            linear-gradient(180deg, rgba(251,247,243,0.92), rgba(251,247,243,0.92)),
            var(--mmk-birthday-hero);
        background-size: cover;
        background-position: center;
    }

    .mmk-birthday-hero-inner {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 72px 0;
    }

    .mmk-birthday-hero-content {
        max-width: 100%;
    }

    .mmk-birthday-hero h1 {
        font-size: 44px;
    }

    .mmk-birthday-categories-inner,
    .mmk-birthday-catalog-inner,
    .mmk-birthday-info-inner {
        width: calc(100% - 32px);
    }

    .mmk-birthday-categories-inner {
        grid-template-columns: 1fr;
    }

    .mmk-birthday-sidebar {
        grid-template-columns: 1fr;
    }

    .mmk-catalog-controls {
        width: 100%;
        flex-direction: column;
    }

    .mmk-catalog-controls select,
    .mmk-catalog-controls input {
        width: 100%;
    }

    .mmk-catalog-grid {
        grid-template-columns: 1fr;
    }

    .mmk-catalog-img {
        height: 300px;
    }

    .mmk-birthday-info-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .mmk-birthday-main-btn,
    .mmk-birthday-secondary-btn {
        width: 100%;
    }
}
/* =========================================================
   MARINA MASTER CAKE — TRADITIA NOASTRA SECTION
   ========================================================= */

.mmk-tradition-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 105px 20px 115px;
    isolation: isolate;
}

.mmk-tradition-container {
    width: min(1320px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mmk-tradition-decor {
    position: absolute;
    left: -65px;
    top: 120px;
    width: 390px;
    max-width: 32vw;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.mmk-tradition-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.mmk-tradition-heading h2 {
    margin: 0;
    font-family: inherit;
    font-size: clamp(34px, 3.2vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    color: #171717;
    letter-spacing: 0.01em;
}

.mmk-tradition-heading span {
    display: block;
    width: 92px;
    height: 2px;
    background: #c8a35d;
    margin: 28px auto 26px;
}

.mmk-tradition-heading p {
    margin: 0 auto;
    max-width: 860px;
    font-size: clamp(18px, 1.35vw, 25px);
    line-height: 1.55;
    color: #777;
    font-family: Georgia, "Times New Roman", serif;
}

.mmk-tradition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    align-items: start;
}

.mmk-tradition-card {
    text-align: center;
    padding: 0 8px;
    transition: transform 0.35s ease;
}

.mmk-tradition-card:hover {
    transform: translateY(-8px);
}

.mmk-tradition-img-wrap {
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 28px;
}

.mmk-tradition-img-wrap img {
    max-width: 115px;
    max-height: 115px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 10px rgba(0, 0, 0, 0.13));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.mmk-tradition-card:hover .mmk-tradition-img-wrap img {
    transform: scale(1.06);
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.18));
}

.mmk-tradition-card h3 {
    margin: 0 0 18px;
    font-family: inherit;
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    color: #1c1c1c;
}

.mmk-tradition-card p {
    margin: 0 auto;
    max-width: 310px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.05vw, 21px);
    line-height: 1.45;
    color: #777;
}

/* TABLET */
@media (max-width: 1100px) {
    .mmk-tradition-section {
        padding: 85px 22px 90px;
    }

    .mmk-tradition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 34px;
    }

    .mmk-tradition-decor {
        width: 300px;
        left: -90px;
        top: 130px;
        opacity: 0.75;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .mmk-tradition-section {
        padding: 68px 18px 72px;
    }

    .mmk-tradition-heading {
        margin-bottom: 48px;
    }

    .mmk-tradition-heading h2 {
        font-size: 34px;
    }

    .mmk-tradition-heading span {
        width: 70px;
        margin: 22px auto 20px;
    }

    .mmk-tradition-heading p {
        font-size: 17px;
        line-height: 1.55;
    }

    .mmk-tradition-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .mmk-tradition-card {
        padding: 0;
    }

    .mmk-tradition-img-wrap {
        height: 100px;
        margin-bottom: 20px;
    }

    .mmk-tradition-img-wrap img {
        max-width: 96px;
        max-height: 96px;
    }

    .mmk-tradition-card h3 {
        font-size: 27px;
        margin-bottom: 12px;
    }

    .mmk-tradition-card p {
        max-width: 340px;
        font-size: 16.5px;
    }

    .mmk-tradition-decor {
        width: 210px;
        max-width: none;
        left: -105px;
        top: 80px;
        opacity: 0.38;
    }
}
.mmk-flavor-section {
    width: 100%;
    min-height: 560px;
    padding: 90px 0;
    display: flex;
    align-items: center;

    background-image: url("../img/flavor-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* păstrează culoarea apropiată de site în caz că nu se încarcă imaginea */
    background-color: #f3ede8;
}

.mmk-flavor-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    justify-content: flex-end; /* împinge textul în dreapta */
    align-items: center;
}

.mmk-flavor-content {
    max-width: 520px;
    text-align: left;
}

.mmk-flavor-content h2 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 300;
    color: #2e2926;
    margin-bottom: 28px;
}

.mmk-flavor-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #7a6f69;
    margin-bottom: 34px;
}

.mmk-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 64px;
    background: #111;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
}

.mmk-btn-dark:hover {
    opacity: 0.9;
}
.mmk-flavor-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    padding: 90px 0;
    background: url("../img/flavor-bg.jpg") no-repeat center center / cover;
    background-color: #f3ede8;
}

.mmk-flavor-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 237, 232, 0.10);
}

.mmk-flavor-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.mmk-flavor-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    padding: 90px 0;
    background: url("../img/flavor-bg.jpg") no-repeat center center / cover;
    background-color: #f3ede8;
}

.mmk-flavor-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 237, 232, 0.10);
}

.mmk-flavor-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* =========================================================
   CANDY BAR — GALLERY CAROUSEL
   ========================================================= */

.mmk-candy-gallery-section {
    width: min(1120px, calc(100% - 32px));
    margin: 56px auto 48px;
    padding: 34px 28px 38px;
    background: #fffaf6;
    border: 1px solid rgba(123, 73, 52, 0.14);
    box-shadow: 0 18px 45px rgba(70, 38, 28, 0.06);
}

.mmk-candy-gallery-head {
    max-width: 640px;
    margin: 0 auto 28px;
    text-align: center;
}

.mmk-gallery-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a66a5b;
    font-weight: 600;
}

.mmk-candy-gallery-head h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f3f35;
}

.mmk-candy-gallery-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #7a625b;
}

.mmk-candy-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mmk-candy-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.mmk-candy-carousel-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.mmk-candy-gallery-card {
    flex: 0 0 calc((100% - 54px) / 4);
    margin: 0;
    height: 270px;
    overflow: hidden;
    background: #f7ede7;
    border: 1px solid rgba(129, 79, 62, 0.14);
    box-shadow: 0 12px 28px rgba(72, 42, 31, 0.08);
}

.mmk-candy-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fără click, fără zoom, fără lightbox */
.mmk-candy-gallery-card,
.mmk-candy-gallery-card img {
    cursor: default;
    pointer-events: none;
}

.mmk-candy-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(131, 82, 67, 0.22);
    background: #ffffff;
    color: #8f5b50;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(83, 51, 39, 0.08);
}

.mmk-candy-arrow:hover {
    background: #a96b79;
    color: #ffffff;
    border-color: #a96b79;
    transform: translateY(-1px);
}

.mmk-candy-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

/* TABLET */
@media (max-width: 900px) {
    .mmk-candy-gallery-section {
        width: min(760px, calc(100% - 28px));
        padding: 30px 20px 34px;
    }

    .mmk-candy-gallery-card {
        flex: 0 0 calc((100% - 18px) / 2);
        height: 260px;
    }
}

/* MOBILE */
@media (max-width: 560px) {
    .mmk-candy-gallery-section {
        margin: 38px auto 34px;
        padding: 26px 14px 30px;
    }

    .mmk-candy-gallery-head {
        margin-bottom: 22px;
    }

    .mmk-candy-gallery-head h2 {
        font-size: 24px;
        letter-spacing: 0.06em;
    }

    .mmk-candy-gallery-head p {
        font-size: 13px;
    }

    .mmk-candy-carousel {
        gap: 8px;
    }

    .mmk-candy-gallery-card {
        flex: 0 0 100%;
        height: 300px;
    }

    .mmk-candy-arrow {
        position: absolute;
        top: 50%;
        z-index: 5;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        font-size: 30px;
        background: rgba(255, 255, 255, 0.9);
    }

    .mmk-candy-prev {
        left: 8px;
    }

    .mmk-candy-next {
        right: 8px;
    }

    .mmk-candy-arrow:hover {
        transform: translateY(-50%);
    }
}
/* =========================================================
   MARINA MASTER CAKE — POVESTEA MEA SECTION
   Stil compatibil cu pagina actuală Sweet Tooth
   ========================================================= */

.mmk-story-preview {
    width: 100%;
    background: #f6f1ec;
    padding: 90px 20px 95px;
    position: relative;
    overflow: hidden;
}

.mmk-story-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(218, 178, 145, 0.12), transparent 34%),
        radial-gradient(circle at 85% 70%, rgba(191, 143, 104, 0.08), transparent 32%);
    pointer-events: none;
}

.mmk-story-inner {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 58px;
    position: relative;
    z-index: 2;
}

.mmk-story-image-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #efe5dc;
    box-shadow: 0 18px 45px rgba(84, 58, 42, 0.10);
}

.mmk-story-image-wrap::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    pointer-events: none;
}

.mmk-story-image {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.mmk-story-content {
    max-width: 390px;
}

.mmk-story-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b98764;
    font-weight: 500;
}

.mmk-story-content h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 400;
    color: #2b2522;
    letter-spacing: 0.01em;
}

.mmk-story-divider {
    width: 42px;
    height: 1px;
    background: #c89b78;
    margin: 17px 0 22px;
}

.mmk-story-content p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #6d625c;
}

.mmk-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-width: 150px;
    height: 42px;
    padding: 0 24px;
    background: #121212;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.28s ease;
}

.mmk-story-btn:hover {
    background: #b98764;
    color: #ffffff;
    transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 900px) {
    .mmk-story-preview {
        padding: 72px 20px 78px;
    }

    .mmk-story-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 650px;
        text-align: center;
    }

    .mmk-story-content {
        max-width: 520px;
        margin: 0 auto;
    }

    .mmk-story-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .mmk-story-image {
        height: 340px;
    }
}

/* MOBILE */
@media (max-width: 560px) {
    .mmk-story-preview {
        padding: 56px 16px 64px;
    }

    .mmk-story-inner {
        gap: 28px;
    }

    .mmk-story-image {
        height: 260px;
    }

    .mmk-story-content h2 {
        font-size: 30px;
    }

    .mmk-story-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .mmk-story-btn {
        width: 100%;
        max-width: 230px;
    }
}
/* =========================================================
   MARINA MASTER CAKE — TESTIMONIALS FIX FINAL
========================================================= */

.mmk-ro-reviews {
    width: 100%;
    padding: 85px 20px 95px !important;
    background:
        radial-gradient(circle at top left, rgba(210, 171, 126, 0.13), transparent 35%),
        linear-gradient(180deg, #fffaf7 0%, #f8efe8 100%) !important;
    overflow: hidden;
}

.mmk-ro-reviews-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto !important;
}

.mmk-ro-reviews-heading {
    max-width: 680px;
    margin: 0 auto 46px !important;
    text-align: center !important;
}

.mmk-ro-reviews-heading span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b78b56;
}

.mmk-ro-reviews-heading h2 {
    margin: 0 !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    color: #161616;
}

.mmk-ro-reviews-line {
    width: 72px;
    height: 1px;
    margin: 18px auto 20px;
    background: #c79b61;
}

.mmk-ro-reviews-heading p {
    margin: 0 auto !important;
    max-width: 580px;
    font-size: 16px;
    line-height: 1.8;
    color: #5b4d45;
}

.mmk-ro-reviews-slider {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto !important;
}

.mmk-ro-reviews-viewport {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 34px;
}

.mmk-ro-reviews-track {
    display: flex !important;
    gap: 24px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.mmk-ro-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 275px;
    padding: 34px 32px 30px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(197, 158, 105, 0.24);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(75, 54, 36, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mmk-ro-review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(75, 54, 36, 0.13);
    border-color: rgba(197, 158, 105, 0.45);
}

.mmk-ro-review-stars {
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: 3px;
    color: #c89a5c;
}

.mmk-ro-review-card p {
    margin: 0 0 24px !important;
    font-size: 15px;
    line-height: 1.85;
    color: #4e433d;
}

.mmk-ro-review-card h4 {
    margin: 0 0 6px !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    color: #151515;
}

.mmk-ro-review-card small {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #b78b56;
}

.mmk-ro-review-btn {
    position: absolute;
    top: 45%;
    z-index: 20;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border: 1px solid rgba(183, 139, 86, 0.42) !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #7b5a35 !important;
    font-size: 36px !important;
    line-height: 36px !important;
    font-family: Arial, sans-serif !important;
    font-weight: 300 !important;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(75, 54, 36, 0.13);
    transition: all 0.3s ease;
}

.mmk-ro-review-btn:hover {
    background: #151515 !important;
    color: #ffffff !important;
    border-color: #151515 !important;
}

.mmk-ro-review-prev {
    left: -60px;
}

.mmk-ro-review-next {
    right: -60px;
}

@media (max-width: 1280px) {
    .mmk-ro-review-prev {
        left: 8px;
    }

    .mmk-ro-review-next {
        right: 8px;
    }

    .mmk-ro-reviews-viewport {
        padding-left: 58px;
        padding-right: 58px;
        box-sizing: border-box;
    }
}

@media (max-width: 1100px) {
    .mmk-ro-review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 767px) {
    .mmk-ro-reviews {
        padding: 65px 16px 76px !important;
    }

    .mmk-ro-reviews-heading {
        margin-bottom: 34px !important;
    }

    .mmk-ro-reviews-heading h2 {
        font-size: 34px;
    }

    .mmk-ro-reviews-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mmk-ro-reviews-viewport {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 60px;
    }

    .mmk-ro-reviews-track {
        gap: 18px;
    }

    .mmk-ro-review-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 30px 24px 28px;
    }

    .mmk-ro-review-card p {
        font-size: 14px;
        line-height: 1.75;
    }

    .mmk-ro-review-btn {
        top: auto;
        bottom: 0;
        width: 38px;
        height: 38px;
        font-size: 30px !important;
        line-height: 32px !important;
    }

    .mmk-ro-review-prev {
        left: calc(50% - 48px);
    }

    .mmk-ro-review-next {
        right: calc(50% - 48px);
    }
}
/* =========================================================
   EFECT HOVER — STELELE IES IN AFARA CARDULUI
========================================================= */

.mmk-ro-review-card {
    position: relative;
    overflow: visible !important;
    padding-top: 62px; /* lasam loc pentru stele */
}

.mmk-ro-review-stars {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0;
    font-size: 15px;
    letter-spacing: 3px;
    color: #c89a5c;
    background: transparent;
    border-radius: 999px;
    transition:
        top 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        padding 0.35s ease,
        border-color 0.35s ease;
}

.mmk-ro-review-card:hover .mmk-ro-review-stars {
    top: -18px;
    padding: 8px 16px;
    background: #fffaf6;
    border: 1px solid rgba(200, 154, 92, 0.30);
    box-shadow: 0 14px 26px rgba(75, 54, 36, 0.12);
    transform: scale(1.06);
}

/* optional: cardul se ridica putin mai elegant */
.mmk-ro-review-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.mmk-ro-review-card:hover {
    transform: translateY(-10px);
}

/* mobil - pastreaza stelele in card, ca sa nu iasa prea mult */
@media (max-width: 767px) {
    .mmk-ro-review-card {
        padding-top: 56px;
    }

    .mmk-ro-review-stars {
        top: 20px;
        left: 24px;
    }

    .mmk-ro-review-card:hover .mmk-ro-review-stars {
        top: 8px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
    }
}
.mmk-main-nav .mmk-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mmk-main-nav .mmk-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.mmk-main-nav .mmk-menu > li > a {
    text-decoration: none;
    color: #b78946;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.mmk-main-nav .mmk-menu > li > a:hover,
.mmk-main-nav .mmk-menu > li.current-menu-item > a,
.mmk-main-nav .mmk-menu > li.current-menu-ancestor > a {
    color: #6b3f25;
}

.mmk-main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fffaf4;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(80, 45, 25, 0.12);
    list-style: none;
    margin: 14px 0 0;
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.mmk-main-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mmk-main-nav .sub-menu li a {
    display: block;
    padding: 9px 18px;
    color: #6b3f25;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.mmk-main-nav .sub-menu li a:hover {
    background: #f6eadc;
    color: #b78946;
}
/* Dropdown mai stabil pentru Zile de naștere */
.mmk-nav-item.mmk-has-dropdown {
    position: relative;
}

/* zona invizibilă dintre link și dropdown */
.mmk-nav-item.mmk-has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 240px;
    height: 18px;
    background: transparent;
}

/* dropdown ascuns inițial */
.mmk-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: #fffaf4;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(80, 45, 25, 0.12);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease 0.25s,
        transform 0.25s ease 0.25s,
        visibility 0s linear 0.45s;
    z-index: 9999;
}

/* dropdown deschis */
.mmk-nav-item.mmk-has-dropdown:hover .mmk-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        opacity 0.2s ease 0s,
        transform 0.2s ease 0s,
        visibility 0s linear 0s;
}

/* linkuri dropdown */
.mmk-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #6b3f25;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.mmk-dropdown a:hover {
    background: #f6eadc;
    color: #b78946;
}
.mmk-product-tastes-section {
    max-width: 1180px;
    margin: 70px auto;
    padding: 50px 30px;
    background: #fffaf4;
    border-radius: 32px;
}

.mmk-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.mmk-section-head .mmk-eyebrow {
    display: block;
    color: #b78946;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.mmk-section-head h2 {
    font-size: 38px;
    color: #4f3426;
    margin-bottom: 14px;
}

.mmk-section-head p {
    color: #7a6658;
    font-size: 16px;
    line-height: 1.7;
}

.mmk-tastes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.mmk-taste-card {
    display: block;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #ead8c5;
    border-radius: 22px;
    padding: 14px;
    text-align: center;
    transition: 0.25s ease;
}

.mmk-taste-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(80, 45, 25, 0.10);
}

.mmk-taste-card input {
    display: none;
}

.mmk-taste-card input:checked + img {
    border: 3px solid #b78946;
}

.mmk-taste-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.mmk-taste-card span {
    display: block;
    color: #4f3426;
    font-size: 14px;
}

.mmk-calculator-box {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 16px 45px rgba(80, 45, 25, 0.08);
}

.mmk-calculator-box h3 {
    color: #4f3426;
    font-size: 26px;
    margin-bottom: 18px;
}

.mmk-calculator-box label {
    display: block;
    color: #6b3f25;
    margin-bottom: 12px;
}

.mmk-calculator-box input[type="range"] {
    width: 100%;
    margin-bottom: 20px;
}

.mmk-calc-results p {
    margin: 8px 0;
    color: #5f4c40;
    font-size: 16px;
}

.mmk-calc-note {
    margin-top: 18px;
    font-size: 13px;
    color: #8b7565;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .mmk-tastes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .mmk-product-tastes-section {
        margin: 40px 15px;
        padding: 30px 18px;
    }

    .mmk-tastes-grid {
        grid-template-columns: 1fr;
    }

    .mmk-section-head h2 {
        font-size: 30px;
    }
}
/* =========================================================
   MMK — Stil pentru secțiunea Gusturi pe pagina produsului
   ========================================================= */

.single-product .mmk-product-tastes-section {
    max-width: 1180px !important;
    margin: 70px auto !important;
    padding: 55px 35px !important;
    background: #fffaf4 !important;
    border-radius: 34px !important;
    box-shadow: 0 18px 55px rgba(80, 45, 25, 0.08) !important;
}

.single-product .mmk-section-head {
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto 42px !important;
}

.single-product .mmk-section-head .mmk-eyebrow {
    display: block !important;
    color: #b78946 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
}

.single-product .mmk-section-head h2 {
    font-size: 38px !important;
    line-height: 1.2 !important;
    color: #4f3426 !important;
    margin-bottom: 14px !important;
}

.single-product .mmk-section-head p {
    color: #7a6658 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.single-product .mmk-tastes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 45px !important;
}

.single-product .mmk-taste-card {
    display: block !important;
    cursor: pointer !important;
    background: #ffffff !important;
    border: 1px solid #ead8c5 !important;
    border-radius: 22px !important;
    padding: 14px !important;
    text-align: center !important;
    transition: 0.25s ease !important;
}

.single-product .mmk-taste-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(80, 45, 25, 0.10) !important;
}

.single-product .mmk-taste-card input {
    display: none !important;
}

.single-product .mmk-taste-card input:checked + img {
    border: 3px solid #b78946 !important;
}

.single-product .mmk-taste-card img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    margin-bottom: 12px !important;
}

.single-product .mmk-taste-card span {
    display: block !important;
    color: #4f3426 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.single-product .mmk-calculator-box {
    max-width: 620px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border-radius: 26px !important;
    padding: 30px !important;
    box-shadow: 0 16px 45px rgba(80, 45, 25, 0.08) !important;
}

.single-product .mmk-calculator-box h3 {
    color: #4f3426 !important;
    font-size: 26px !important;
    margin-bottom: 18px !important;
}

.single-product .mmk-calculator-box label {
    display: block !important;
    color: #6b3f25 !important;
    margin-bottom: 12px !important;
}

.single-product .mmk-calculator-box input[type="range"] {
    width: 100% !important;
    margin-bottom: 20px !important;
}

.single-product .mmk-calc-results p {
    margin: 8px 0 !important;
    color: #5f4c40 !important;
    font-size: 16px !important;
}

.single-product .mmk-calc-note {
    margin-top: 18px !important;
    font-size: 13px !important;
    color: #8b7565 !important;
    line-height: 1.6 !important;
}

/* Scoate stilul default Sweet Tooth din zona produsului similar */
.single-product .related.products {
    display: none !important;
}

/* Mobile */
@media (max-width: 900px) {
    .single-product .mmk-tastes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 560px) {
    .single-product .mmk-product-tastes-section {
        margin: 40px 15px !important;
        padding: 30px 18px !important;
        border-radius: 24px !important;
    }

    .single-product .mmk-tastes-grid {
        grid-template-columns: 1fr !important;
    }

    .single-product .mmk-section-head h2 {
        font-size: 30px !important;
    }
}
/* =========================================================
   MMK GLOBAL HEADER — pentru toate paginile, inclusiv produse
   ========================================================= */

.mmk-site-header {
    width: 100%;
    background: #fffaf4;
    border-bottom: 1px solid rgba(183, 137, 70, 0.12);
    position: relative;
    z-index: 9999;
}

.mmk-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.mmk-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mmk-logo-img {
    max-height: 76px;
    width: auto;
    display: block;
}

.mmk-main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.mmk-main-nav a,
.mmk-nav-link {
    text-decoration: none;
    color: #b78946;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: color 0.25s ease;
}

.mmk-main-nav a:hover,
.mmk-nav-link:hover {
    color: #6b3f25;
}

.mmk-nav-item {
    position: relative;
}

.mmk-nav-item.mmk-has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 240px;
    height: 28px;
    background: transparent;
}

.mmk-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    background: #fffaf4;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(80, 45, 25, 0.14);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease 0.25s,
        transform 0.25s ease 0.25s,
        visibility 0s linear 0.55s;
    z-index: 99999;
}

.mmk-nav-item.mmk-has-dropdown:hover .mmk-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        opacity 0.2s ease 0s,
        transform 0.2s ease 0s,
        visibility 0s linear 0s;
}

.mmk-dropdown a {
    display: block;
    padding: 11px 18px;
    color: #6b3f25;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
}

.mmk-dropdown a:hover {
    background: #f6eadc;
    color: #b78946;
}

/* ascunde titlul mare Sweet Tooth de pe produse, dacă apare */
.single-product .eltdf-title-holder,
.single-product .eltdf-page-title {
    display: none !important;
}

/* corecție spațiere produs */
.single-product .eltdf-content,
.woocommerce-page .eltdf-content {
    background: #fffaf4;
}

/* Mobile */
@media (max-width: 900px) {
    .mmk-header-inner {
        padding: 16px 22px;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .mmk-logo-img {
        max-height: 62px;
    }

    .mmk-main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 20px;
    }

    .mmk-main-nav a,
    .mmk-nav-link {
        font-size: 13px;
    }

    .mmk-dropdown {
        left: 50%;
        transform: translate(-50%, 8px);
    }

    .mmk-nav-item.mmk-has-dropdown:hover .mmk-dropdown {
        transform: translate(-50%, 0);
    }
}
/* =========================================================
   MMK PRE-FOOTER BENEFITS
   ========================================================= */

.mmk-prefooter-benefits {
    background: #111111;
    padding: 70px 0 0;
}

.mmk-prefooter-inner {
    max-width: 1280px;
    margin: 0 auto;
    background: #fffaf4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 40px;
}

.mmk-benefit-item {
    text-align: center;
    padding: 18px 34px;
    border-right: 1px solid rgba(183, 137, 70, 0.22);
}

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

.mmk-benefit-icon {
    display: block;
    color: #c58b72;
    font-size: 18px;
    margin-bottom: 14px;
}

.mmk-benefit-item h4 {
    color: #4f3426;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 12px;
}

.mmk-benefit-item p {
    color: #b7a79a;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   MMK FOOTER
   ========================================================= */

.mmk-site-footer {
    background: #111111;
    color: #ffffff;
    padding: 70px 0 0;
}

.mmk-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 70px;
    padding: 0 30px 55px;
}

.mmk-footer-brand {
    max-width: 320px;
}

.mmk-footer-logo img {
    max-width: 210px;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.mmk-footer-brand p {
    color: #d7d0ca;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 24px;
}

.mmk-footer-socials {
    display: flex;
    gap: 14px;
}

.mmk-footer-socials a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
}

.mmk-footer-socials a:hover {
    color: #c58b72;
    opacity: 1;
}

.mmk-footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 26px;
}

.mmk-footer-col a,
.mmk-footer-col p {
    display: block;
    color: #d7d0ca;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    margin: 0 0 15px;
}

.mmk-footer-col a:hover {
    color: #c58b72;
}

.mmk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    text-align: center;
}

.mmk-footer-bottom p {
    color: #9f958e;
    font-size: 13px;
    margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .mmk-prefooter-benefits {
        padding-top: 45px;
    }

    .mmk-prefooter-inner {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 18px;
        padding: 24px 20px;
    }

    .mmk-benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(183, 137, 70, 0.18);
        padding: 22px 16px;
    }

    .mmk-benefit-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .mmk-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 560px) {
    .mmk-prefooter-inner {
        grid-template-columns: 1fr;
    }

    .mmk-benefit-item {
        border-bottom: 1px solid rgba(183, 137, 70, 0.18);
    }

    .mmk-benefit-item:last-child {
        border-bottom: none;
    }

    .mmk-footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .mmk-site-footer {
        padding-top: 45px;
    }

    .mmk-footer-logo img {
        max-width: 190px;
    }
}
/* Logo footer mai mare */
.mmk-footer-logo img {
    max-width: 280px !important;
    width: 280px !important;
    height: auto !important;
}
.mmk-price-alert {
    margin: 22px auto 0;
    padding: 14px 18px;
    max-width: 760px;
    background: #fff3e8;
    border: 1px solid #e2c2a7;
    border-radius: 16px;
    color: #6b3f25;
    font-size: 14px;
    line-height: 1.6;
}

.mmk-taste-price {
    display: block;
    margin-top: 6px;
    color: #b78946;
    font-size: 13px;
    font-weight: 600;
}
/* Elimină spațiul mare de sus pe pagina produsului */
.single-product .eltdf-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.single-product .eltdf-content-inner {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.single-product .eltdf-title-holder,
.single-product .eltdf-title,
.single-product .eltdf-page-title,
.single-product .eltdf-title-wrapper {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .woocommerce-notices-wrapper {
    max-width: 1180px;
    margin: 35px auto 25px !important;
}

.single-product .product {
    margin-top: 20px !important;
}
//* =========================================================
   MMK — PRODUCT PAGE CLEAN FINAL
   ========================================================= */

/* container principal */
.single-product .eltdf-container,
.single-product .eltdf-container-inner,
.single-product .eltdf-content,
.single-product .eltdf-content-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* produs principal */
.single-product div.product {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 50px auto 80px !important;
    padding: 0 25px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 520px 1fr !important;
    gap: 60px !important;
    align-items: start !important;
}

/* coloana stânga */
.single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 !important;
    float: none !important;
}

/* imagine principală */
.single-product div.product .woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    border-radius: 22px !important;
    object-fit: cover !important;
}

/* miniaturi */
.single-product div.product .flex-control-thumbs {
    display: flex !important;
    gap: 12px !important;
    margin-top: 16px !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product div.product .flex-control-thumbs li {
    width: 82px !important;
    height: 82px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    border: 1px solid #ead8c5 !important;
    margin: 0 !important;
}

.single-product div.product .flex-control-thumbs li img {
    width: 82px !important;
    height: 82px !important;
    object-fit: cover !important;
}

/* coloana dreapta */
.single-product div.product .summary {
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 !important;
    padding-top: 10px !important;
    float: none !important;
}

/* titlu */
.single-product .product_title {
    font-size: 42px !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
}

/* preț */
.single-product .summary .price {
    font-size: 24px !important;
    margin-bottom: 18px !important;
}

/* descriere */
.single-product .woocommerce-product-details__short-description {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 26px !important;
}

/* ascunde reviews */
.single-product .woocommerce-tabs,
.single-product .woocommerce-Reviews,
.single-product #reviews {
    display: none !important;
}

/* =========================================================
   GUSTURI SUB PRODUS
   ========================================================= */

.single-product .mmk-product-tastes-section {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto 80px !important;
    padding: 55px 35px !important;
    background: #fffaf4 !important;
    border-radius: 32px !important;
    box-sizing: border-box !important;
}

/* grid gusturi */
.single-product .mmk-tastes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
}

/* card */
.single-product .mmk-taste-card {
    min-height: 220px !important;
    padding: 14px !important;
}

/* imagine gust */
.single-product .mmk-taste-card img {
    width: 100% !important;
    height: 150px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
}

/* calculator */
.single-product .mmk-calculator-box {
    max-width: 620px !important;
    margin: 45px auto 0 !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .single-product div.product {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 0 18px !important;
    }

    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary {
        max-width: 100% !important;
    }

    .single-product .mmk-product-tastes-section {
        margin: 40px 18px 60px !important;
        padding: 35px 18px !important;
    }

    .single-product .mmk-tastes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .single-product .product_title {
        font-size: 34px !important;
    }
}

@media (max-width: 560px) {

    .single-product .mmk-tastes-grid {
        grid-template-columns: 1fr !important;
    }

    .single-product .product_title {
        font-size: 28px !important;
    }
}
/* =========================================================
   MMK — WooCommerce product layout corect
   ========================================================= */

body.single-product .eltdf-container,
body.single-product .eltdf-container-inner,
body.single-product .eltdf-content,
body.single-product .eltdf-content-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Produs: imagine stânga, informații dreapta */
body.single-product div.product {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 55px auto 70px !important;
    padding: 0 30px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 520px 1fr !important;
    gap: 60px !important;
    align-items: start !important;
}

/* Imagine produs */
body.single-product div.product .woocommerce-product-gallery {
    width: 520px !important;
    max-width: 520px !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product div.product .woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    border-radius: 22px !important;
    object-fit: cover !important;
}

/* Miniaturi */
body.single-product div.product .flex-control-thumbs {
    display: flex !important;
    gap: 12px !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.single-product div.product .flex-control-thumbs li,
body.single-product div.product .flex-control-thumbs li img {
    width: 82px !important;
    height: 82px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Informații produs */
body.single-product div.product .summary {
    width: 100% !important;
    max-width: 560px !important;
    float: none !important;
    margin: 0 !important;
    padding-top: 15px !important;
}

body.single-product .product_title {
    font-size: 42px !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
}

body.single-product .summary .price {
    font-size: 24px !important;
    margin-bottom: 18px !important;
}

body.single-product .woocommerce-product-details__short-description {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 26px !important;
}

/* Ascunde recenziile dacă nu le vrei aici */
body.single-product .woocommerce-tabs,
body.single-product .woocommerce-Reviews,
body.single-product #reviews {
    display: none !important;
}

/* Gusturi: sub produs, separat */
body.single-product .mmk-product-tastes-section {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto 85px !important;
    padding: 55px 35px !important;
    box-sizing: border-box !important;
    background: #fffaf4 !important;
    border-radius: 32px !important;
}

/* Gusturi pe 4 coloane */
body.single-product .mmk-tastes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
}

body.single-product .mmk-taste-card {
    min-height: 220px !important;
    padding: 14px !important;
}

body.single-product .mmk-taste-card img {
    width: 100% !important;
    height: 150px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
}

body.single-product .mmk-calculator-box {
    max-width: 620px !important;
    margin: 45px auto 0 !important;
}

/* Mobile */
@media (max-width: 900px) {
    body.single-product div.product {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 0 18px !important;
    }

    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.single-product .mmk-product-tastes-section {
        width: auto !important;
        margin: 40px 18px 60px !important;
        padding: 35px 18px !important;
    }

    body.single-product .mmk-tastes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 560px) {
    body.single-product .mmk-tastes-grid {
        grid-template-columns: 1fr !important;
    }

    body.single-product .product_title {
        font-size: 30px !important;
    }
}
/* =========================================================
   MMK — Dropdown meniu principal
   ========================================================= */

.mmk-site-header,
.mmk-header-inner,
.mmk-main-nav {
    position: relative !important;
    z-index: 999999 !important;
    overflow: visible !important;
}

.mmk-main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 34px !important;
}

.mmk-nav-item {
    position: relative !important;
    overflow: visible !important;
}

.mmk-nav-link {
    display: inline-flex !important;
    align-items: center !important;
    padding: 26px 0 !important;
    text-decoration: none !important;
    color: #1f1715 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    position: relative !important;
}

/* dropdown ascuns */
.mmk-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
    min-width: 220px !important;
    background: #fffaf6 !important;
    border: 1px solid rgba(190, 143, 110, 0.25) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(70, 45, 30, 0.14) !important;
    padding: 14px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 9999999 !important;
    transition: all .25s ease !important;
}

/* zonă tampon ca să nu se închidă imediat */
.mmk-has-dropdown::after {
    content: "" !important;
    position: absolute !important;
    left: -25px !important;
    right: -25px !important;
    top: 100% !important;
    height: 28px !important;
}

/* deschide submeniul */
.mmk-has-dropdown:hover .mmk-dropdown,
.mmk-has-dropdown:focus-within .mmk-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* linkuri submeniu */
.mmk-dropdown a {
    display: block !important;
    padding: 12px 24px !important;
    color: #4d3429 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    background: transparent !important;
}

.mmk-dropdown a:hover {
    background: #f7ece4 !important;
    color: #a76f5d !important;
}
.mmk-nav-item {
    position: relative !important;
}

.mmk-dropdown {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;
    background: #fff !important;
    padding: 12px 0 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.15) !important;
    z-index: 999999 !important;
}

.mmk-has-dropdown:hover .mmk-dropdown {
    display: block !important;
}

.mmk-dropdown a {
    display: block !important;
    padding: 10px 20px !important;
    color: #3d2a23 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.mmk-dropdown a:hover {
    background: #f8eee8 !important;
}
/* TEST DROPDOWN MMK */
.mmk-site-header,
.mmk-header-inner,
.mmk-main-nav,
.mmk-nav-item {
    overflow: visible !important;
    z-index: 999999 !important;
}

.mmk-nav-item {
    position: relative !important;
}

.mmk-dropdown {
    display: none !important;
    position: absolute !important;
    top: 45px !important;
    left: 0 !important;
    width: 200px !important;
    background: #ffffff !important;
    border: 1px solid #e6cbbb !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18) !important;
    padding: 10px 0 !important;
    z-index: 9999999 !important;
}

.mmk-has-dropdown:hover .mmk-dropdown {
    display: block !important;
}

.mmk-dropdown a {
    display: block !important;
    padding: 11px 18px !important;
    color: #3b2a24 !important;
    text-decoration: none !important;
    background: #fffaf6 !important;
    font-size: 14px !important;
}

.mmk-dropdown a:hover {
    background: #f1dfd3 !important;
}
.mmk-main-nav .menu-item {
    position: relative;
}

.mmk-main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.mmk-main-nav .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.mmk-main-nav .sub-menu li {
    display: block;
}

.mmk-main-nav .sub-menu a {
    display: block;
    padding: 8px 18px;
    white-space: nowrap;
    color: #222;
    text-decoration: none;
}

.mmk-main-nav .sub-menu a:hover {
    color: #c89b7b;
}


.mmk-flavors {
    padding-top: 10px;
}

.mmk-flavors__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px 78px;
    padding: 0 26px 8px;
}

.mmk-flavor-card {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    min-height: 250px;
    padding: 18px 18px 22px;
    border: 1px solid transparent;
    background: #fff;
    color: #3d3734;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mmk-flavor-card:hover {
    border-color: #eadbd3;
    box-shadow: 0 18px 36px rgba(117, 75, 58, 0.08);
}

.mmk-flavor-card__image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.mmk-flavor-card__image img {
    width: 100%;
    max-width: 126px;
    height: 168px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 16px 18px rgba(71, 43, 31, 0.1));
}

.mmk-flavor-card h3 {
    margin: 0 0 8px;
    color: #2f2927;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.mmk-flavor-card strong {
    display: block;
    margin-bottom: 18px;
    color: #111;
    font-size: 10px;
    font-weight: 700;
}

.mmk-flavor-card p {
    margin: 0 0 18px;
    color: #413b38;
    font-size: 12px;
    line-height: 1.72;
}

.mmk-flavor-card button {
    min-width: 150px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid #191514;
    background: #b9899a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.mmk-flavor-card button:hover {
    background: #a77588;
}

@media (max-width: 900px) {
    .mmk-flavors__grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 0;
    }

    .mmk-flavor-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
        min-height: 0;
        padding: 14px;
    }

    .mmk-flavor-card__image img {
        max-width: 94px;
        height: 126px;
    }
}
.single-product .mmk-shop-clean-header {
    width: 100%;
    background: #fffaf7;
    border-bottom: 1px solid #eee2da;
    position: relative;
    z-index: 999;
}

.single-product .mmk-shop-clean-inner {
    width: min(1320px, calc(100% - 48px));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.single-product .mmk-shop-clean-logo {
    display: flex;
    align-items: center;
    flex: 0 0 230px;
    width: 230px;
}

.single-product .mmk-shop-clean-logo img {
    display: block;
    width: 230px;
    max-width: 230px;
    height: auto;
}

.single-product .mmk-shop-clean-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    flex: 1 1 auto;
}

.mmk-flavor-card h3 {
    margin: 0 0 8px;
    color: #2f2927;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.mmk-flavor-card span {
.mmk-flavor-card strong {
    display: block;
    margin-top: 12px;
    text-align: center;
    margin-bottom: 18px;
    color: #111;
    font-size: 10px;
    font-weight: 700;
}

.mmk-flavor-card p {
    margin: 0 0 18px;
    color: #413b38;
    font-size: 12px;
    line-height: 1.3;
    line-height: 1.72;
}

.mmk-flavor-card button {
    min-width: 150px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid #191514;
    background: #b9899a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.mmk-flavor-card button:hover {
    background: #a77588;
}
    .mmk-flavors__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 0;
    }
    .mmk-flavors__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .mmk-flavor-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
        min-height: 0;
        padding: 14px;
    }

    .mmk-flavor-card__image img {
        max-width: 94px;
        height: 126px;
    }
    .mmk-custom-shop .mmk-site-header {
    background: #fffaf7;
    border-bottom: 1px solid #f0e4dc;
}

.mmk-custom-shop .mmk-header-inner {
    width: min(1320px, calc(100% - 48px));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mmk-custom-shop .mmk-shop-logo,
.mmk-custom-shop .mmk-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.mmk-custom-shop .mmk-logo-img {
    display: block;
    width: 230px;
    max-width: 230px;
    height: auto;
}

.mmk-custom-shop .mmk-main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.mmk-custom-shop .eltdf-title-holder,
.mmk-custom-shop .eltdf-page-title,
.mmk-custom-shop .eltdf-title,
.mmk-custom-shop .eltdf-title-wrapper,
.mmk-custom-shop .eltdf-breadcrumbs-holder {
    display: none !important;
}
.mmk-shop-clean-header {
    width: 100%;
    background: #fffaf7;
    border-bottom: 1px solid #eee2da;
    position: relative;
    z-index: 50;
}

.mmk-shop-clean-inner {
    width: min(1320px, calc(100% - 48px));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.mmk-shop-clean-logo {
    display: flex;
    align-items: center;
    flex: 0 0 230px;
    width: 230px;
    text-decoration: none;
}

.mmk-shop-clean-logo img {
    display: block;
    width: 230px;
    max-width: 230px;
    height: auto;
}

.mmk-shop-clean-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    flex: 1 1 auto;
}

.mmk-shop-clean-nav .mmk-nav-link {
    color: #a66f45;
    text-decoration: none;
    font-size: 16px;
}

.mmk-shop-clean-nav .mmk-nav-item {
    position: relative;
}

.mmk-shop-clean-nav .mmk-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #fffaf7;
    border: 1px solid #eadbd2;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(78, 42, 24, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 160ms ease;
    overflow: hidden;
    z-index: 100;
}

.mmk-shop-clean-nav .mmk-nav-item:hover .mmk-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mmk-shop-clean-nav .mmk-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #3a2b25;
    text-decoration: none;
    border-bottom: 1px solid #f0e5dd;
}

.mmk-shop-clean-nav .mmk-dropdown a:last-child {
    border-bottom: 0;
}
/* MMK single product premium layout */
body.single-product .eltdf-title-holder,
body.single-product .eltdf-page-title,
body.single-product .woocommerce-tabs,
body.single-product .product_meta,
body.single-product .related.products,
body.single-product .upsells.products {
    display: none !important;
}

body.single-product .eltdf-container,
body.single-product .eltdf-container-inner,
body.single-product .eltdf-content,
body.single-product .eltdf-content-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mmk-single-product {
    background: #fffaf7;
    color: #2d2927;
}

.mmk-product-hero {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0 54px;
    display: grid;
    grid-template-columns: minmax(360px, 560px) minmax(420px, 1fr);
    gap: 68px;
    align-items: start;
}

.mmk-product-main-image {
    aspect-ratio: 1 / 1.12;
    background: #f6f1ee;
    overflow: hidden;
}

.mmk-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mmk-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.mmk-product-thumb {
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid #eadbd3;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.mmk-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mmk-product-breadcrumb {
    margin-bottom: 18px;
    color: #9b8d86;
    font-size: 13px;
}

.mmk-product-breadcrumb a {
    color: #9b8d86;
}

.mmk-product-summary h1 {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 300;
}

.mmk-product-price {
    margin-bottom: 8px;
    color: #b36f56;
    font-size: 24px;
    font-family: Georgia, "Times New Roman", serif;
}

.mmk-product-rating {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}
/* MMK - Single product repair without PHP override */

body.single-product .eltdf-container,
body.single-product .eltdf-container-inner,
body.single-product .eltdf-content,
body.single-product .eltdf-content-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product div.product {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin: 58px auto 80px !important;
    padding: 0 !important;
}

body.single-product .eltdf-single-product-content {
    display: grid !important;
    grid-template-columns: minmax(360px, 560px) minmax(420px, 1fr) !important;
    gap: 70px !important;
    align-items: start !important;
    width: 100% !important;
}

body.single-product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 560px !important;
    float: none !important;
    opacity: 1 !important;
    margin: 0 !important;
}

body.single-product .woocommerce-product-gallery__wrapper {
    width: 100% !important;
}

body.single-product .woocommerce-product-gallery__image:first-child {
    width: 100% !important;
    overflow: hidden !important;
    background: #f7f2ee !important;
}

body.single-product .woocommerce-product-gallery__image:first-child img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

body.single-product .flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
}

body.single-product .flex-control-thumbs li {
    width: 100% !important;
    margin: 0 !important;
    list-style: none !important;
}

body.single-product .flex-control-thumbs img {
    width: 100% !important;
    height: 110px !important;
    object-fit: cover !important;
    display: block !important;
}

body.single-product .eltdf-single-product-summary,
body.single-product .summary.entry-summary {
    width: 100% !important;
    max-width: 620px !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product .eltdf-single-product-title {
    margin: 0 0 12px !important;
    font-size: 38px !important;
    line-height: 1.15 !important;
    font-weight: 300 !important;
    color: #2c2724 !important;
}

body.single-product .summary .price {
    margin: 0 0 18px !important;
    color: #b36f56 !important;
    font-size: 24px !important;
}

body.single-product .woocommerce-product-details__short-description {
    margin: 0 0 24px !important;
    color: #5f5753 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

body.single-product .product_meta {
    margin: 0 0 26px !important;
    color: #6b625d !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

body.single-product form.cart {
    display: grid !important;
    grid-template-columns: 110px minmax(220px, 1fr) !important;
    gap: 18px !important;
    align-items: center !important;
    margin: 0 0 30px !important;
}

body.single-product form.cart .quantity {
    width: 110px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #eadbd3 !important;
}

body.single-product form.cart .qty {
    width: 60px !important;
    border: 0 !important;
    text-align: center !important;
}

body.single-product .single_add_to_cart_button {
    height: 52px !important;
    background: #111 !important;
    color: #fff !important;
    border: 0 !important;
    padding: 0 34px !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}

body.single-product .woocommerce-tabs {
    max-width: 1180px !important;
    margin: 36px auto 0 !important;
    border-top: 1px solid #eadbd3 !important;
}

body.single-product .woocommerce-tabs ul.tabs {
    display: flex !important;
    gap: 34px !important;
    margin: 0 0 18px !important;
    padding: 16px 0 0 !important;
}

body.single-product .woocommerce-tabs ul.tabs li {
    list-style: none !important;
}

body.single-product .woocommerce-tabs ul.tabs a {
    color: #2c2724 !important;
    font-size: 15px !important;
}

body.single-product .woocommerce-Tabs-panel {
    color: #5f5753 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

body.single-product .mmk-product-footer {
    margin-top: 80px !important;
}

@media (max-width: 980px) {
    body.single-product .eltdf-single-product-content {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    body.single-product .eltdf-single-product-summary,
    body.single-product .summary.entry-summary {
        max-width: 100% !important;
    }
}

@media (max-width: 560px) {
    body.single-product div.product {
        width: calc(100% - 32px) !important;
        margin-top: 34px !important;
    }

    body.single-product form.cart {
        grid-template-columns: 1fr !important;
    }
}
/* MMK HEADER CART */

.mmk-header-inner {
    display: flex !important;
    align-items: center !important;
}

.mmk-main-nav {
    margin-left: auto !important;
}

.mmk-header-cart {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: 22px !important;
    color: #2b2826 !important;
    text-decoration: none !important;
}

.mmk-header-cart-icon {
    font-size: 20px !important;
    line-height: 1 !important;
}

.mmk-header-cart-count {
    position: absolute !important;
    top: 3px !important;
    right: 1px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #b36f56 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .mmk-header-cart {
        width: 38px !important;
        height: 38px !important;
        margin-left: 12px !important;
    }
}

/* END MMK HEADER CART */
.mmk-header-inner,
.mmk-shop-clean-inner {
    display: flex !important;
    align-items: center !important;
}

.mmk-main-nav,
.mmk-shop-clean-nav {
    margin-left: auto !important;
}

.mmk-header-cart {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: 22px !important;
    color: #2b2826 !important;
    text-decoration: none !important;
    font-size: 18px !important;
}
/* FIX MMK - mobile menu spacing */
@media (max-width: 768px) {
    .mmk-site-header {
        background: #fffaf7 !important;
    }

    .mmk-header-inner {
        height: auto !important;
        min-height: 70px !important;
        padding: 12px 20px !important;
        gap: 10px !important;
    }

    .mmk-main-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 18px 0 !important;
    }

    .mmk-main-nav > a,
    .mmk-main-nav .mmk-nav-link,
    .mmk-main-nav .menu-item > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 46px !important;
        height: auto !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
        color: #333 !important;
    }

    .mmk-main-nav .menu-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .mmk-main-nav .sub-menu,
    .mmk-dropdown {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mmk-header-cart {
        margin-left: 0 !important;
    }
}
/* MMK FINAL FIX - acelasi meniu pe mobil peste tot */
@media (max-width: 768px) {
    body .mmk-site-header {
        position: relative !important;
        background: #fffaf7 !important;
        overflow: visible !important;
        z-index: 999999 !important;
    }

    body .mmk-header-inner {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 22px 18px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 18px !important;
    }

    body .mmk-logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    body .mmk-logo-img {
        width: 230px !important;
        max-width: 70vw !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
    }

    body .mmk-main-nav {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
    }

    body .mmk-main-nav > a,
    body .mmk-main-nav .mmk-nav-link {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 14px 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 22px !important;
        line-height: 1.2 !important;
        color: #333 !important;
        text-align: center !important;
        letter-spacing: 0 !important;
    }

    body .mmk-nav-item,
    body .mmk-has-dropdown {
        width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body .mmk-dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 6px 0 !important;
        background: #fffaf7 !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    body .mmk-has-dropdown:hover > .mmk-dropdown,
    body .mmk-has-dropdown:focus-within > .mmk-dropdown {
        display: block !important;
    }

    body .mmk-dropdown a {
        width: 100% !important;
        display: block !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        text-align: center !important;
        font-size: 18px !important;
        line-height: 1.2 !important;
        color: #5a4b45 !important;
        background: transparent !important;
        border: 0 !important;
        white-space: normal !important;
    }

    body .mmk-header-cart {
        margin: 0 !important;
    }
}
/* MMK MOBILE MENU REAL FIX - wp_nav_menu */
@media (max-width: 768px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .mmk-site-header {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        background: #fffaf7 !important;
    }

    .mmk-header-inner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 18px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 14px !important;
    }

    .mmk-logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .mmk-logo-img {
        max-width: 220px !important;
        width: 70vw !important;
        height: auto !important;
    }

    .mmk-main-nav {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        text-align: center !important;
    }

    .mmk-main-nav ul,
    .mmk-menu {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .mmk-main-nav li,
    .mmk-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        position: relative !important;
    }

    .mmk-main-nav a,
    .mmk-menu a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 12px 0 !important;
        margin: 0 !important;
        font-size: 21px !important;
        line-height: 1.25 !important;
        text-align: center !important;
        color: #333 !important;
    }

    .mmk-main-nav .sub-menu,
    .mmk-menu .sub-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        background: #fffaf7 !important;
        border: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mmk-main-nav li:hover > .sub-menu,
    .mmk-main-nav li:focus-within > .sub-menu,
    .mmk-menu li:hover > .sub-menu,
    .mmk-menu li:focus-within > .sub-menu {
        display: block !important;
    }

    .mmk-main-nav .sub-menu a,
    .mmk-menu .sub-menu a {
        font-size: 18px !important;
        padding: 9px 0 !important;
        color: #6b5a52 !important;
    }

    .mmk-header-cart {
        margin: 0 !important;
    }
}
/* MMK MOBILE DROPDOWN - corect pe telefon */
@media only screen and (max-width: 768px) {
    body .mmk-main-nav .mmk-has-dropdown {
        position: relative !important;
        width: 100% !important;
    }

    body .mmk-main-nav .mmk-dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .mmk-main-nav .mmk-has-dropdown:hover > .mmk-dropdown,
    body .mmk-main-nav .mmk-has-dropdown:focus-within > .mmk-dropdown {
        display: block !important;
    }

    body .mmk-main-nav .mmk-dropdown a {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 8px 0 !important;
        font-size: 18px !important;
        text-align: center !important;
        background: transparent !important;
        border: 0 !important;
    }
}
/* MMK HEADER MENU - SweetTooth final */
@media only screen and (min-width: 769px) {
    .mmk-site-header .mmk-header-inner {
        height: 92px !important;
        min-height: 92px !important;
        padding: 0 46px !important;
        align-items: center !important;
    }

    .mmk-site-header .mmk-main-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 44px !important;
        margin-left: auto !important;
        flex-wrap: nowrap !important;
    }

    .mmk-site-header .mmk-main-nav > a,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link {
        font-family: "Josefin Sans", "Montserrat", Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: 300 !important;
        letter-spacing: 2px !important;
        line-height: 1 !important;
        color: #111 !important;
        padding: 0 !important;
        min-height: auto !important;
        text-transform: none !important;
    }

    .mmk-site-header .mmk-main-nav > a::before,
    .mmk-site-header .mmk-main-nav > a::after,
    .mmk-site-header .mmk-main-nav > a:before,
    .mmk-site-header .mmk-main-nav > a:after,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link::before,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link::after,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link:before,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link:after {
        display: none !important;
        content: none !important;
    }

    .mmk-site-header .mmk-dropdown a {
        font-size: 14px !important;
        letter-spacing: 0 !important;
        line-height: 1.25 !important;
        text-align: left !important;
        padding: 10px 18px !important;
    }

    .mmk-site-header .mmk-header-cart {
        width: 34px !important;
        height: 34px !important;
        margin-left: 24px !important;
    }

    .mmk-site-header .mmk-header-cart-icon {
        font-size: 19px !important;
    }
}
/* MMK TEST HEADER MAIN LINKS ONLY */
@media only screen and (min-width: 769px) {
    .mmk-site-header .mmk-main-nav > a,
    .mmk-site-header .mmk-main-nav > .mmk-nav-item > .mmk-nav-link {
        font-size: 12px !important;
        font-weight: 300 !important;
        letter-spacing: 5px !important;
        color: red !important;
    }

    .mmk-site-header .mmk-dropdown a {
        font-size: 14px !important;
        letter-spacing: 0 !important;
        color: #4d3d36 !important;
    }
}
/* MMK Studio - reguli globale pentru butoane
   Pune acest bloc la finalul CSS-ului temei/customizerului.
   Regula: negru = fara actiune, maro = actiune. */

:root {
  --mmk-button-neutral: #111111;
  --mmk-button-action: #b9826c;
  --mmk-button-action-hover: #8f5f50;
  --mmk-button-text: #ffffff;
  --mmk-button-border-soft: rgba(185, 130, 108, 0.34);
}

.mmk-btn,
.mmk-btn-dark,
.mmk-btn-light,
.mmk-catalog-btn,
.mmk-candy-small-btn,
.mmk-whatsapp-btn,
.mmk-phone-link,
.mmk-product-btn,
.mmk-shop-clean-btn,
.mmk-contact-submit,
.mmk-candy-submit,
.single_add_to_cart_button,
.add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
  padding: 14px 28px !important;
  font-family: "Josefin Sans", "Montserrat", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease !important;
}

/* Neutru / fara actiune: citeste, afla, poveste, link editorial. */
.mmk-btn-dark,
.mmk-btn-neutral,
.mmk-read-more,
.mmk-story-btn,
a[href*="despre-noi"].mmk-btn,
a[href*="poveste"].mmk-btn {
  background: var(--mmk-button-neutral) !important;
  border: 1px solid var(--mmk-button-neutral) !important;
  color: var(--mmk-button-text) !important;
}

.mmk-btn-dark:hover,
.mmk-btn-neutral:hover,
.mmk-read-more:hover,
.mmk-story-btn:hover,
a[href*="despre-noi"].mmk-btn:hover,
a[href*="poveste"].mmk-btn:hover {
  background: var(--mmk-button-action) !important;
  border-color: var(--mmk-button-action) !important;
  color: var(--mmk-button-text) !important;
}

/* Actiune: catalog, detalii produs, WhatsApp, contact, adauga in cos, checkout. */
.mmk-btn-action,
.mmk-catalog-btn,
.mmk-candy-small-btn,
.mmk-whatsapp-btn,
.mmk-contact-submit,
.mmk-candy-submit,
.mmk-product-btn,
.mmk-shop-clean-btn,
a[href*="zile-de-nastere"].mmk-btn,
a[href*="catalog"].mmk-btn,
a[href*="wa.me"],
a[href*="whatsapp"],
.single_add_to_cart_button,
.add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.checkout-button,
.wc-forward {
  background: var(--mmk-button-action) !important;
  border: 1px solid var(--mmk-button-action) !important;
  color: var(--mmk-button-text) !important;
}

.mmk-btn-action:hover,
.mmk-catalog-btn:hover,
.mmk-candy-small-btn:hover,
.mmk-whatsapp-btn:hover,
.mmk-contact-submit:hover,
.mmk-candy-submit:hover,
.mmk-product-btn:hover,
.mmk-shop-clean-btn:hover,
a[href*="zile-de-nastere"].mmk-btn:hover,
a[href*="catalog"].mmk-btn:hover,
a[href*="wa.me"]:hover,
a[href*="whatsapp"]:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.checkout-button:hover,
.wc-forward:hover {
  background: var(--mmk-button-action-hover) !important;
  border-color: var(--mmk-button-action-hover) !important;
  color: var(--mmk-button-text) !important;
}

/* Actiune secundara: ramane maro, dar poate fi contur daca are clasa dedicata. */
.mmk-btn-outline,
.mmk-btn-secondary {
  background: transparent !important;
  border: 1px solid var(--mmk-button-border-soft) !important;
  color: var(--mmk-button-action) !important;
}

.mmk-btn-outline:hover,
.mmk-btn-secondary:hover {
  background: var(--mmk-button-action) !important;
  border-color: var(--mmk-button-action) !important;
  color: var(--mmk-button-text) !important;
}

@media (max-width: 768px) {
  .mmk-btn,
  .mmk-btn-dark,
  .mmk-btn-light,
  .mmk-catalog-btn,
  .mmk-candy-small-btn,
  .mmk-whatsapp-btn,
  .mmk-contact-submit,
  .mmk-candy-submit,
  .single_add_to_cart_button,
  .add_to_cart_button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .checkout-button,
  .wc-forward {
    width: auto !important;
    max-width: 100% !important;
    min-height: 46px !important;
    padding: 13px 24px !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
  }
}
/* MMK Studio - FORCE FIX pentru butoane care nu au clase standard.
   Pune acest bloc DUPA mmk-button-color-rules.css, tot la finalul mmk-custom.css. */

:root {
  --mmk-action-brown: #b9826c;
  --mmk-action-brown-hover: #8f5f50;
  --mmk-neutral-black: #111111;
  --mmk-white: #ffffff;
}

/* Resetam culorile roz/violet/verde de pe butoanele de actiune. */
a[class*="btn"],
a[class*="button"],
button[class*="btn"],
button[class*="button"],
input[type="submit"],
.eltdf-btn,
.eltdf-button,
.wp-element-button,
.wp-block-button__link,
.button,
.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* ACTIUNE = maro:
   catalog, detalii, WhatsApp, comanda, cos, produse, formulare. */
a[href*="zile-de-nastere"],
a[href*="catalog"],
a[href*="product"],
a[href*="produs"],
a[href*="cart"],
a[href*="checkout"],
a[href*="wa.me"],
a[href*="whatsapp"],
a[href*="contact"].mmk-btn,
a[href*="contact"].button,
.mmk-catalog-btn,
.mmk-whatsapp-btn,
.mmk-contact-submit,
.mmk-candy-submit,
.mmk-candy-small-btn,
.mmk-shop-clean-btn,
.mmk-product-btn,
.single_add_to_cart_button,
.add_to_cart_button,
.checkout-button,
.wc-forward,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
button[type="submit"],
input[type="submit"],
.eltdf-btn,
.wp-element-button,
.wp-block-button__link {
  background-color: var(--mmk-action-brown) !important;
  background: var(--mmk-action-brown) !important;
  border-color: var(--mmk-action-brown) !important;
  color: var(--mmk-white) !important;
}

a[href*="zile-de-nastere"]:hover,
a[href*="catalog"]:hover,
a[href*="product"]:hover,
a[href*="produs"]:hover,
a[href*="cart"]:hover,
a[href*="checkout"]:hover,
a[href*="wa.me"]:hover,
a[href*="whatsapp"]:hover,
a[href*="contact"].mmk-btn:hover,
a[href*="contact"].button:hover,
.mmk-catalog-btn:hover,
.mmk-whatsapp-btn:hover,
.mmk-contact-submit:hover,
.mmk-candy-submit:hover,
.mmk-candy-small-btn:hover,
.mmk-shop-clean-btn:hover,
.mmk-product-btn:hover,
.single_add_to_cart_button:hover,
.add_to_cart_button:hover,
.checkout-button:hover,
.wc-forward:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.eltdf-btn:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  background-color: var(--mmk-action-brown-hover) !important;
  background: var(--mmk-action-brown-hover) !important;
  border-color: var(--mmk-action-brown-hover) !important;
  color: var(--mmk-white) !important;
}

/* NEUTRU = negru:
   poveste/despre/citeste/afla mai mult. */
a[href*="despre"],
a[href*="poveste"],
.mmk-btn-dark,
.mmk-story-btn,
.mmk-read-more {
  background-color: var(--mmk-neutral-black) !important;
  background: var(--mmk-neutral-black) !important;
  border-color: var(--mmk-neutral-black) !important;
  color: var(--mmk-white) !important;
}

a[href*="despre"]:hover,
a[href*="poveste"]:hover,
.mmk-btn-dark:hover,
.mmk-story-btn:hover,
.mmk-read-more:hover {
  background-color: var(--mmk-action-brown) !important;
  background: var(--mmk-action-brown) !important;
  border-color: var(--mmk-action-brown) !important;
  color: var(--mmk-white) !important;
}

/* Fortam culorile problematice gasite in CSS-ul live pe orice element de tip buton. */
[style*="#a66d7d"],
[style*="#a96b79"],
[style*="#b9899a"],
[style*="#a77588"],
[style*="#9f7586"],
[style*="#25d366"] {
  background-color: var(--mmk-action-brown) !important;
  border-color: var(--mmk-action-brown) !important;
}
