﻿/* =========================================
ATELIER THEME
Universal MV Renderer
========================================= */
:root {
    --sidebar-width: 0px;
    --primary: #2f6f5e; /* verde muzeal elegant */
    --primary-dark: #25584b;
    --accent: var(--primary);
    --bg: #f4f6f5;
    --surface: #ffffff;
    --surface-2: #eef3f1;
    --border: #d7e0dc;
    --input-border: #c8d3ce;
    --text: #1c1f1e;
    --muted: #5f6b67;
    --accent-soft: color-mix(in srgb, var(--primary) 12%, transparent);
    --shadow: 0 10px 25px rgba(0,0,0,0.06);
    --radius: 0px;
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --text-strong: #111;
    --danger: #b00020;
    --whatsapp-bottom: 90px;
    --menu-width: 260px;
    --menu-offset: 700px;
    /* =========================================
       PRODUCT IMAGE ZOOM
    ========================================= */

    --mv-zoom-factor: 3;
    --mv-zoom-size: 180px;
    --mv-zoom-radius: 50%;
    --mv-zoom-border: 2px solid rgba(255,255,255,.95);
    --mv-zoom-shadow: 0 8px 28px rgba(0,0,0,.35);
    --mv-zoom-background: #fff;
    --mv-zoom-transition: .12s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
MAIN CONTENT
========================================= */

.content {
    margin-left: 0;
    padding-top: 90px; /* spațiu sub meniul de sus */
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}

/* =========================================
MENU (HORIZONTAL TOP BAR VERSION)
========================================= */

.mv-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* NU space-between */

    gap: 20px;
    padding: 0 30px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.mv-filter-scroll {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

    /* scrollbar eliminat (nu mai are sens la horizontal) */
    .mv-menu::-webkit-scrollbar {
        display: none;
    }


/* =========================================
TOGGLE (pentru mobile)
========================================= */

.mv-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: var(--text);
}

/* =========================================
LOGO (în stânga sau centru)
========================================= */

.mv-logo {
    flex: 0 0 auto;
}

    .mv-logo img {
        max-height: 45px;
        width: auto;
        object-fit: contain;
    }

/* =========================================
NAVIGATION (ORIZONTAL)
========================================= */

.mv-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mv-cat {
    position: relative;
}

/* link principal */
.mv-link {
    display: block;
    text-decoration: none;
    color: var(--text-strong);
    font-size: 14px;
    padding: 10px 8px;
    transition: color .2s ease;
}

    .mv-link:hover {
        color: var(--primary);
    }

/* =========================================
SUBMENU (dropdown simplu)
========================================= */

.mv-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px 0;
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* afișare dropdown */
.mv-cat:hover .mv-submenu {
    display: flex;
}

.mv-sublink {
    display: flex;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
}

    .mv-sublink:hover {
        background: var(--surface-2);
        color: var(--primary);
    }

/* =========================================
RIGHT SIDE (user/cart dacă există)
========================================= */

.mv-menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =========================================
STATIC PAGES (HORIZONTAL)
========================================= */

.mv-pages {
    flex: 0 0 auto;
}

.mv-pages a {
        display: inline-block;
        text-decoration: none;
        color: var(--muted-2);
        font-size: 13px;
        padding: 6px 10px;
        border-radius: var(--radius-sm);
        transition: all .2s ease;
    }

        .mv-pages a:hover {
            color: var(--primary);
            background: var(--surface-2);
        }
        
/* =========================================
CART
========================================= */
.mv-cart a {
    text-decoration: none;
    color: inherit;
}

#cart-icon {
    text-decoration: none;
}

.mv-cart {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .mv-cart.empty {
        text-align: center;
        font-size: 18px;
        padding: 50px;
        background: var(--surface);
        border: 1px solid var(--border);
    }

.mv-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 160px 140px 60px;
    gap: 20px;
    align-items: center;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px;
}

.cart-img img {
    width: 100%;
    height: auto;
    display: block;
}

.cart-info .name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.cart-info .price {
    font-size: 14px;
    color: var(--muted-2);
}

.cart-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .cart-controls button {
        width: 34px;
        height: 34px;
        border: 1px solid var(--input-border);
        background: var(--surface);
        cursor: pointer;
        border-radius: var(--radius-sm);
        transition: all .15s ease;
    }

        .cart-controls button:hover {
            background: var(--surface-2);
        }

.cart-total {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.cart-remove {
    text-align: center;
}

    .cart-remove button {
        border: none;
        background: transparent;
        font-size: 20px;
        cursor: pointer;
        color: var(--danger);
    }

.mv-cart-summary {
    margin-top: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: right;
}

    .mv-cart-summary div {
        margin-bottom: 10px;
        font-size: 16px;
    }

.clear-cart,
.checkout {
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    border-radius: var(--radius-sm);
}

.clear-cart {
    background: var(--surface-2);
    color: var(--text-strong);
    border: 1px solid var(--border);
}

.checkout {
    background: var(--primary);
    color: var(--surface);
}

    .checkout:hover {
        background: var(--primary-dark);
    }

#cart-count {
    display: inline-block;
    min-width: 18px;
    padding: 2px 6px;
    background: var(--primary);
    color: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

    #cart-count.bump {
        transform: scale(1.3);
    }

/* =========================================
USER
========================================= */

.mv-user {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .mv-user a {
        text-decoration: none;
        color: var(--muted-2);
        font-size: 22px;
    }

/* =========================================
PRODUCT GRID
Masonry layout
========================================= */

.product-list {
    column-count: 3;
    column-gap: 35px;
}

@media (max-width: 1200px) {


    .product-list {
        column-count: 2;
    }
}

@media (max-width: 768px) {

    .product-list {
        column-count: 1;
    }
}

/* =========================================
PRODUCT CARD
========================================= */

.mv-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 35px;
    break-inside: avoid;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.mv-image {
    overflow: hidden;
    border-radius: var(--radius-md);
}

    .mv-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* =========================================
PRODUCT INFO
========================================= */

.mv-info {
    padding: 16px;
}

.mv-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.mv-price {
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted);
}

/* =========================================
PRODUCT DETAIL
========================================= */

.mv-product-detail {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* =========================================
PRODUCT IMAGE ZOOM (LENS)
========================================= */

.mv-product-image {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    flex: 1 1 50%;
}

    .mv-product-image img {
        display: block;
        width: 100%;
        height: auto;
        user-select: none;
        -webkit-user-drag: none;
    }

.mv-image-lens {
    position: absolute;
    display: none;
    pointer-events: none;
    z-index: 1000;
    width: var(--mv-zoom-size);
    height: var(--mv-zoom-size);
    border-radius: var(--mv-zoom-radius);
    border: var(--mv-zoom-border);
    background-repeat: no-repeat;
    background-color: var(--mv-zoom-background);
    box-shadow: var(--mv-zoom-shadow);
    opacity: 0;
    transform: scale(.90);
    transition: opacity var(--mv-zoom-transition), transform var(--mv-zoom-transition);
}

    .mv-image-lens.show {
        display: block;
        opacity: 1;
        transform: scale(1);
    }


.mv-product-info {
    flex: 1 1 35%;
    min-width: 280px;
}

    .mv-product-info h1 {
        margin: 0 0 20px;
        font-size: 34px;
        font-weight: 300;
        line-height: 1.2;
        color: var(--text);
    }

    .mv-product-info .price {
        font-size: 28px;
        color: var(--muted);
        margin-bottom: 30px;
    }

    .mv-product-info .add-to-cart {
        background: var(--primary);
        color: var(--surface);
        border: none;
        padding: 14px 32px;
        font-size: 15px;
        cursor: pointer;
        border-radius: var(--radius-sm);
        transition: background .2s ease;
    }

        .mv-product-info .add-to-cart:hover {
            background: var(--primary-dark);
        }

/* =========================================
DESCRIERE
========================================= */

.mv-product-description {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted-2);
}

/* =========================================
ATRIBUTE
========================================= */

.mv-product-attributes {
    margin-top: 35px;
    padding-top: 20px;
    border-radius: var(--radius-md);
    border-top: 1px solid var(--border);
}

    .mv-product-attributes h3 {
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 400;
        color: var(--text);
    }

.attr-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px dotted var(--border);
}

.attr-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

.attr-value {
    font-size: 14px;
    color: var(--text-strong);
    text-align: right;
}

/* =========================================
META
========================================= */

.mv-product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
}

    .mv-product-meta div {
        margin-bottom: 8px;
    }

    .mv-product-meta strong {
        color: var(--text-strong);
        font-weight: 500;
    }

/* =========================================
REVIEWS
========================================= */

.mv-product-reviews {
    margin-top: 35px;
    padding-top: 20px;
    border-radius: var(--radius-md);
    border-top: 1px solid var(--border);
}

    .mv-product-reviews h3 {
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 400;
        color: var(--text);
    }

.review-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.review-user {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-2);
}

.review-rating {
    margin-top: 6px;
    font-size: 13px;
    color: var(--primary);
}

/* =========================================
ABOUT PAGE
========================================= */

.mv-about {
    max-width: 1400px;
    margin: 0 auto;
}

.mv-about-content {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .mv-about-content h1 {
        margin: 0 0 30px;
        font-size: 40px;
        font-weight: 300;
    }

.mv-about-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.mv-about-left {
    flex: 0 0 420px;
}

.mv-about-right {
    flex: 1;
    min-width: 0;
}

.about-image {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

    .about-gallery img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: .2s;
    }

        .about-gallery img:hover {
            transform: scale(1.04);
        }

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-strong);
}

    .about-text p {
        margin: 0 0 20px;
    }

    .about-text h2,
    .about-text h3 {
        margin-top: 35px;
        margin-bottom: 15px;
    }

/* =========================================
CONTACT PAGE
========================================= */

.mv-contact {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px;
}

    .contact-info h1 {
        margin: 0 0 25px;
        font-size: 40px;
        font-weight: 300;
    }

    .contact-info p {
        margin: 0 0 12px;
        line-height: 1.7;
    }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px;
}

    .contact-form h2 {
        margin: 0 0 25px;
        font-size: 28px;
        font-weight: 300;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: 1px solid var(--input-border);
        padding: 12px 14px;
        margin-bottom: 15px;
        font-size: 14px;
        font-family: inherit;
        background: var(--surface);
        border-radius: var(--radius-sm);
    }

    .contact-form textarea {
        min-height: 180px;
        resize: vertical;
    }

    .contact-form button {
        background: var(--primary);
        color: var(--surface);
        border: none;
        padding: 14px 30px;
        cursor: pointer;
        font-size: 14px;
        border-radius: var(--radius-sm);
        transition: background .2s ease;
    }

        .contact-form button:hover {
            background: var(--primary-dark);
        }

.contact-map {
    grid-column: 1 / -1;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--radius-md);
}

    .contact-map iframe {
        display: block;
        border-radius: inherit;
        width: 100%;
        border: 0;
    }

/* =========================================
FOOTER
========================================= */

.mv-footer {
    background: var(--surface-2);
    padding: 30px 15px;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-links {
    margin-bottom: 20px;
}

    .footer-links a {
        margin: 0 10px;
        text-decoration: none;
        color: var(--muted);
        font-size: 13px;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

.footer-compliance {
    margin-bottom: 20px;
}

    .footer-compliance img {
        max-height: 60px;
        margin: 0 10px;
    }

.footer-copy {
    font-size: 12px;
    color: var(--muted);
}

    .footer-copy img {
        display: block;
        margin: 0 auto 10px auto;
        max-height: 40px;
    }
/* =========================================
WHATSAPP
========================================= */

#simple-chat-button--container {
    position: fixed;
    right: 20px;
    bottom: var(--whatsapp-bottom);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
}

#simple-chat-button--button {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    background: #25D366;
    box-shadow: var(--shadow);
    transition: all .2s ease;
}

    #simple-chat-button--button:hover {
        transform: scale(1.08);
    }

    #simple-chat-button--button::before {
        content: "💬";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 30px;
    }

#simple-chat-button--text {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--text-strong);
    white-space: nowrap;
    box-shadow: var(--shadow);
    
}

/* =========================================
CHECKOUT PAGE (THEME COMPATIBLE)
========================================= */

.mv-checkout {
    max-width: 1200px;
    margin: 0 auto;
}

    .mv-checkout input:hover,
    .mv-checkout select:hover,
    .mv-checkout textarea:hover {
        border-color: #b8b8b8;
    }

.mv-checkout-content {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius-md);
}

    /* titluri ca ABOUT / CONTACT */
    .mv-checkout-content h1 {
        margin: 0 0 25px;
        font-size: 40px;
        font-weight: 300;
    }

/* layout natural (same vibe ca contact-grid) */
.mv-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* section card */
.mv-checkout-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 25px;
}

/* inputs consistent cu contact-form */
.mv-checkout input,
.mv-checkout select,
.mv-checkout textarea {
    width: 100%;
    border: 1px solid var(--input-border);
    padding: 12px 14px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: inherit;
    border-radius: var(--radius-sm);
}

    /* focus same vibe */
    .mv-checkout input:focus,
    .mv-checkout select:focus,
    .mv-checkout textarea:focus {
        border-color: var(--primary);
        outline: none;
    }

/* courier list */
.mv-courier-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-courier-item {
    border: 1px solid var(--border);
    padding: 12px;
    cursor: pointer;
    background: var(--surface);
    border-radius: var(--radius-sm);
}

    .mv-courier-item:hover {
        border-color: var(--primary);
    }

    .mv-courier-item.active {
        background: var(--accent-soft);
        border-color: var(--primary);
    }

/* checkboxes */
.mv-checkout-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .2s ease;
}

    .mv-checkout-checkbox:hover {
        border-color: var(--primary);
        background: var(--surface-2);
    }

    .mv-checkout-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin: 0;
    }

    .mv-checkout-checkbox span {
        white-space: nowrap;
        font-size: 14px;
    }

/* SUMMARY (ca un card de contact-form) */
.mv-checkout-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow);
}

.mv-checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

/* BUTTON (identic contact button style) */
.mv-checkout-button {
    background: var(--primary);
    color: var(--surface);
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    margin-top: 15px;
    border-radius: var(--radius-sm);
}

    .mv-checkout-button:hover {
        background: var(--primary-dark);
    }

/* GOOGLE TRANSLATE ASCUNS */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget span,
.goog-logo-link {
    display: none !important;
}

.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

/* LANGUAGE SELECT */

.mv-language {
    position: relative;
    width: 100%;
    font-size: 14px;
    user-select: none;
}

.mv-language-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: .2s;
}

    .mv-language-selected:hover {
        border-color: var(--primary);
    }

    .mv-language-selected img,
    .mv-language-option img {
        width: 20px;
        height: 14px;
        object-fit: cover;
        flex-shrink: 0;
    }

.mv-language-chevron {
    margin-left: auto;
    opacity: .7;
    font-size: 11px;
}

.mv-language-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 1000;
}

.mv-language.open .mv-language-dropdown {
    display: block;
}

.mv-language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text);
    transition: .15s;
}

    .mv-language-option:hover {
        background: var(--surface-2);
    }

/* =========================================
MOBILE
========================================= */

@media (max-width: 768px) {
    #simple-chat-button--container {
        right: 15px;
        bottom: 15px;
    }

    #simple-chat-button--text {
        display: none;
    }

    #simple-chat-button--button {
        width: 56px;
        height: 56px;
    }


    .mv-nav {
        flex: 1;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
        display: flex;
        overflow: visible;
        max-height: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
        background: var(--surface);
        border-top: 1px solid var(--border);
    }

    .mv-menu.open .mv-nav {
        display: flex;
    }

    .mv-cat {
        width: 100%;
    }

    .mv-link {
        padding: 12px;
    }

    .mv-submenu {
        display: flex;
        position: relative;
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }


    .mv-menu {
        position: fixed;
        top: 0;
        left: -320px; /* ascuns complet */
        width: 280px; /* IMPORTANT: lățime fixă */
        height: 100vh;
        display: block;
        overflow-y: auto;
        flex-direction: column;
        transition: left .25s ease;
        z-index: 1000;
    }

        .mv-menu.open {
            left: 0; /* apare */
        }

    .mv-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 2000;
        font-size: 26px;
        background: var(--surface);
        padding: 8px 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .mv-pages {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
        position: relative;
        left: 0;
        right: auto;
    }

        .mv-pages a {
            display: block;
        }

    .content {
        margin-left: 0;
        padding: 20px;
    }


    .mv-product-detail {
        flex-direction: column;
        gap: 25px;
    }

    .mv-product-info {
        width: 100%;
    }

        .mv-product-info h1 {
            font-size: 26px;
        }

        .mv-product-info .price {
            font-size: 22px;
        }

    .mv-about-content {
        padding: 25px;
    }

        .mv-about-content h1 {
            font-size: 30px;
        }

    .mv-about-layout {
        flex-direction: column;
    }

    .mv-about-left {
        flex: auto;
        width: 100%;
    }

    .about-gallery {
        grid-template-columns: repeat(2,1fr);
    }


    .about-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .mv-contact {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
    }

        .contact-form input:hover,
        .contact-form textarea:hover {
            border-color: #b8b8b8;
        }

        .contact-info h1 {
            font-size: 30px;
        }

        .contact-form h2 {
            font-size: 24px;
        }

    .mv-cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-total {
        text-align: center;
    }

    .mv-cart-summary {
        text-align: center;
        box-shadow: var(--shadow);
    }

    .clear-cart,
    .checkout {
        display: block;
        width: 100%;
        margin: 10px 0;
        border-radius: var(--radius-sm);
    }

    .mv-checkout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mv-checkout-content {
        padding: 25px;
    }

        .mv-checkout-content h1 {
            font-size: 30px;
        }
    .mv-footer {
        padding: 25px 15px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

        .footer-links a {
            margin: 0;
            display: block;
        }

    .footer-compliance {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .footer-compliance img {
            margin: 0;
            max-width: 90%;
            height: auto;
        }

    .footer-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .footer-copy img {
            margin-bottom: 10px;
        }

}
