/* ============================================
   MJ Fashion Gallery — Header & Footer Styles
   ============================================ */

/* --- Sticky Header --- */
.site-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Announcement Bar --- */
.mj-announcement-bar {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    min-height: 18px;
}
.mj-announcement-text {
    margin: 0;
    opacity: 0.9;
    position: relative;
}
.mj-announcement-msg {
    display: none;
}
.mj-announcement-msg.active {
    display: inline;
    animation: mj-announce-fade 0.5s ease;
}
@keyframes mj-announce-fade {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Main Header Background --- */
.mj-header-bg {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Header Row --- */
.mj-header-row {
    gap: 0;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Site Logo --- */
.site-header-wrapper .wp-block-site-logo {
    flex: 0 0 auto;
}
.site-header-wrapper .wp-block-site-logo a {
    display: flex;
    align-items: center;
}
.site-header-wrapper .custom-logo {
    width: 180px !important;
    height: auto !important;
    max-height: none;
}

/* ============================================
   DESKTOP NAVIGATION (min-width: 1025px)
   Logo | Nav | Search + User + Cart
   ============================================ */

@media (min-width: 1025px) {
    .mj-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .mj-header-row > .wp-block-site-logo {
        flex: 0 0 auto;
    }

    /* Desktop nav */
    .mj-desktop-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 1 1 auto;
        margin: 0 24px;
    }
    .mj-nav-link {
        color: #1a1a1a;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        white-space: nowrap;
        transition: color 0.2s ease, background 0.2s ease;
    }
    .mj-nav-link:hover,
    .mj-nav-link--active {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.06);
    }

    /* Category dropdown */
    .mj-nav-dropdown {
        position: relative;
    }
    .mj-nav-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        background: none;
        border: none;
        font-family: inherit;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #1a1a1a;
    }
    .mj-nav-dropdown-toggle svg {
        transition: transform 0.2s ease;
    }
    .mj-nav-dropdown:hover .mj-nav-dropdown-toggle svg,
    .mj-nav-dropdown.is-open .mj-nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
    .mj-nav-dropdown:hover .mj-nav-dropdown-toggle,
    .mj-nav-dropdown.is-open .mj-nav-dropdown-toggle {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.06);
    }

    /* Mega menu panel */
    .mj-mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 520px;
        background: #ffffff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 100;
    }
    .mj-nav-dropdown:hover .mj-mega-menu,
    .mj-nav-dropdown.is-open .mj-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .mj-mega-menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 8px;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.15s ease, background 0.15s ease;
    }
    .mj-mega-menu a:hover {
        color: #e91e63;
        background: #fef7f9;
    }

    /* Hide mobile elements on desktop */
    .mj-hamburger { display: none !important; }
    .mj-search-toggle { display: none !important; }
    .mj-mobile-search { display: none !important; }

    /* Hide WP navigation block */
    .mj-header-bg > .mj-header-row > .wp-block-navigation {
        display: none !important;
    }

    /* Header icons */
    .mj-header-icons {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Search bar */
    .mj-search-bar {
        display: flex;
        align-items: center;
    }
    .mj-search-form {
        border: 1px solid #e0e0e0;
        border-radius: 24px;
        padding: 0 12px;
        background: #f5f5f5;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .mj-search-form:focus-within {
        border-color: #e91e63;
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.08);
    }
    .mj-search-input {
        background: transparent;
        border: none;
        font-size: 0.85rem;
        padding: 8px 0;
        width: 180px;
        outline: none;
    }
    .mj-search-btn {
        background: transparent;
        border: none;
        color: #888;
        padding: 4px;
        margin: 0;
    }
    .mj-search-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   TABLET NAVIGATION (769px - 1024px)
   Logo | Compact Nav | Search icon + User + Cart
   ============================================ */

@media (max-width: 1024px) and (min-width: 769px) {
    .mj-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .mj-desktop-nav {
        display: flex;
        align-items: center;
        gap: 2px;
        flex: 1 1 auto;
        margin: 0 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .mj-desktop-nav::-webkit-scrollbar { display: none; }
    .mj-nav-link {
        color: #1a1a1a;
        text-decoration: none;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
        transition: color 0.2s ease, background 0.2s ease;
    }
    .mj-nav-link:hover {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.06);
    }

    .mj-nav-dropdown-toggle {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .mj-mega-menu {
        min-width: 440px;
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
    }

    /* Hide search bar, show search icon */
    .mj-search-bar { display: none !important; }
    .mj-search-toggle { display: flex !important; }
    .mj-mobile-search { display: none !important; }
    .mj-hamburger { display: none !important; }

    .mj-header-bg > .mj-header-row > .wp-block-navigation {
        display: none !important;
    }

    .mj-header-icons {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }
}

/* ============================================
   MOBILE LAYOUT (max-width: 768px)
   Hamburger | Logo | Account + Cart
   Search bar below
   ============================================ */

@media (max-width: 768px) {
    .mj-announcement-bar {
        padding: 8px 16px !important;
    }
    .mj-announcement-text {
        font-size: 0.75rem;
    }

    .mj-header-row {
        padding: 10px 16px !important;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Mobile layout: hamburger-left | logo-center | account+cart-right */
    .mj-header-icons {
        order: -1;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .mj-header-row > .wp-block-site-logo {
        flex: 1 1 0;
        display: flex;
        justify-content: center;
        min-width: 0;
    }
    .site-header-wrapper .custom-logo {
        width: 130px !important;
        height: auto !important;
    }

    .mj-desktop-nav { display: none !important; }
    .mj-search-bar { display: none !important; }
    .mj-search-toggle { display: none !important; }

    .mj-header-bg > .mj-header-row > .wp-block-navigation {
        display: none !important;
    }

    .mj-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #1a1a1a;
        border-radius: 8px;
        transition: color 0.2s ease, background 0.2s ease;
    }
    .mj-hamburger:hover {
        color: #e91e63;
        background: rgba(233, 30, 99, 0.06);
    }

    .mj-mobile-search {
        display: block;
        padding: 0 16px 12px;
    }
    .mj-mobile-search .mj-search-form {
        max-width: 100%;
        border: 1px solid #e0e0e0;
        border-radius: 24px;
        padding: 0 12px;
        background: #f5f5f5;
        width: 100%;
    }
    .mj-mobile-search .mj-search-input {
        background: transparent;
        border: none;
        font-size: 0.85rem;
        padding: 10px 0;
        width: 100%;
        flex: 1;
    }
    .mj-mobile-search .mj-search-btn {
        background: transparent;
        border: none;
        color: #888;
        padding: 4px;
    }

    /* Hide account icon on mobile to save space */
    .mj-account-icon {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mj-header-row {
        padding: 8px 12px !important;
    }
    .site-header-wrapper .custom-logo {
        width: 100px !important;
    }
    .mj-mobile-search {
        padding: 0 12px 10px !important;
    }
    .mj-hamburger {
        width: 36px;
        height: 36px;
    }
    .mj-icon-link {
        width: 32px;
        height: 32px;
    }
    .mj-icon-link svg {
        width: 18px;
        height: 18px;
    }
}

/* --- Shared Header Icon Styles --- */
.mj-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}
.mj-icon-link:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.06);
}
.mj-icon-link svg {
    width: 20px;
    height: 20px;
}

/* Cart count badge */
.mj-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e91e63;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* Desktop search form */
.mj-search-form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 0 12px;
    background: #f5f5f5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mj-search-form:focus-within {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.08);
}
.mj-search-input {
    background: transparent;
    border: none;
    font-size: 0.85rem;
    padding: 8px 0;
    width: 180px;
    color: #1a1a1a;
    outline: none;
}
.mj-search-input::placeholder {
    color: #999;
}
.mj-search-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 4px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.mj-search-btn:hover {
    color: #e91e63;
}

/* Mobile search form */
.mj-mobile-search .mj-search-form {
    width: 100%;
}
.mj-mobile-search .mj-search-input {
    flex: 1;
    width: auto;
    padding: 10px 0;
    font-size: 0.9rem;
}
.mj-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #1a1a1a;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}
.mj-search-toggle:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.06);
}

/* --- Search expand overlay (tablet) --- */
.mj-search-expand {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.mj-search-expand.is-open {
    display: flex;
}
.mj-search-expand-inner {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.mj-search-expand-inner .wp-block-search__inside-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 0 16px;
    background: #f5f5f5;
}
.mj-search-expand-inner .wp-block-search__input {
    background: transparent;
    border: none;
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
}
.mj-search-expand-inner .wp-block-search__input:focus {
    outline: none;
}
.mj-search-expand-inner .wp-block-search__button {
    background: transparent;
    border: none;
    color: #888;
    padding: 4px;
}

/* ============================================
   TRANSPARENT HEADER (homepage only)
   ============================================ */

body.home .mj-header-bg {
    background-color: transparent;
    border-bottom-color: transparent;
}
body.home .mj-header-bg.mj-header-scrolled {
    background-color: #ffffff;
    border-bottom-color: #e8e8e8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
body.home .mj-header-bg .mj-nav-link,
body.home .mj-header-bg .mj-nav-dropdown-toggle {
    color: #1a1a1a;
}
body.home .mj-header-bg .mj-nav-link:hover,
body.home .mj-header-bg .mj-nav-dropdown:hover .mj-nav-dropdown-toggle {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.06);
}
body.home .mj-header-icons .wc-block-customer-account__link,
body.home .mj-header-icons .wc-block-mini-cart__button {
    color: #1a1a1a;
}
body.home .mj-header-icons .wc-block-customer-account__link:hover,
body.home .mj-header-icons .wc-block-mini-cart__button:hover {
    color: #e91e63;
}

/* ============================================
   FULL-PAGE MOBILE MENU
   ============================================ */

.mj-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #ffffff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.mj-mobile-menu.is-open {
    transform: translateX(0);
}

/* Menu header */
.mj-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1;
}
.mj-mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    padding: 0;
}
.mj-mobile-menu-close:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.06);
}

/* Menu body */
.mj-mobile-menu-body {
    padding: 0;
    flex: 1;
}

/* Quick nav row (account, shop, cart) */
.mj-mobile-quick-nav {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}
.mj-mobile-quick-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.15s ease, background 0.15s ease;
}
.mj-mobile-quick-nav a:hover {
    color: #e91e63;
    background: #fef7f9;
}
.mj-mobile-quick-nav svg {
    width: 20px;
    height: 20px;
}

/* Home link */
.mj-mobile-menu .mj-home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e91e63;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}
.mj-mobile-menu .mj-home-link:hover {
    background: #fef7f9;
}

/* Section heading */
.mj-mobile-menu-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    padding: 16px 20px 6px;
    margin: 0;
}

/* Category list - vertical stack */
.mj-mobile-menu-categories {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mj-mobile-menu-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    min-height: 48px;
    transition: color 0.15s ease, background 0.15s ease;
}
.mj-mobile-menu-cat-item:hover {
    color: #e91e63;
    background: #fef7f9;
}
.mj-mobile-menu-cat-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.mj-mobile-menu-cat-item svg {
    flex-shrink: 0;
    color: #ccc;
    transition: color 0.15s ease;
    margin-left: 12px;
}
.mj-mobile-menu-cat-item:hover svg {
    color: #e91e63;
}

/* Regular links */
.mj-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    min-height: 48px;
    transition: color 0.15s ease, background 0.15s ease;
}
.mj-mobile-menu-link:hover {
    color: #e91e63;
    background: #fef7f9;
}
.mj-mobile-menu-link svg {
    flex-shrink: 0;
    color: #999;
    width: 18px;
    height: 18px;
}
.mj-mobile-menu-link:hover svg {
    color: #e91e63;
}

/* Menu footer */
.mj-mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    margin-top: auto;
}
.mj-mobile-menu-footer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: color 0.15s ease;
}
.mj-mobile-menu-footer-row:hover {
    color: #e91e63;
}
.mj-mobile-menu-footer-row svg {
    flex-shrink: 0;
    color: #999;
}
.mj-mobile-menu-footer-row:hover svg {
    color: #e91e63;
}
.mj-mobile-menu-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #4caf50;
    font-weight: 600;
}
.mj-mobile-menu-trust svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   Tablet announcement padding
   ============================================ */

@media (max-width: 1200px) and (min-width: 769px) {
    .mj-announcement-bar {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ============================================
   Footer Styles
   ============================================ */

.mj-footer {
    background: #1a1a1a;
    color: #ffffff;
    width: 100%;
}
.mj-footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px 0;
}
.mj-footer-col {
    min-width: 0;
}
.mj-footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.mj-footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.mj-footer-logo-img {
    max-height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
}
.mj-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.mj-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
.mj-social-link:hover {
    background: #e91e63;
    transform: translateY(-3px);
}
.mj-social-link svg {
    flex-shrink: 0;
}
.mj-footer-col > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 8px;
}
.mj-footer-col > p:first-of-type {
    margin-top: 8px;
}
.mj-footer h4,
.mj-footer-col > h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 20px;
    color: #ffffff;
}
.mj-footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mj-footer-col nav a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    display: block;
    transition: color 0.2s ease;
}
.mj-footer-col nav a:hover {
    color: #e91e63;
}
.mj-footer-col p a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}
.mj-footer-col p a:hover {
    color: #e91e63;
}

.mj-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mj-footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0;
}
.mj-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- Payment Icons (Footer) --- */
.mj-pay-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.mj-pay-icon svg {
    border-radius: 3px;
    transition: opacity 0.2s;
}
.mj-pay-icon:hover svg {
    opacity: 0.85;
}

/* ============================================
   Footer Responsive
   ============================================ */

@media (max-width: 1024px) {
    .mj-footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 48px 24px 0;
    }
    .mj-footer-bottom {
        padding: 20px 24px;
        margin-top: 32px;
    }
}
@media (max-width: 768px) {
    .mj-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 16px 0;
    }
    .mj-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
        margin-top: 24px;
    }
    .mj-footer-col > p {
        font-size: 0.85rem;
    }
    .mj-footer h4.wp-block-heading {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    .mj-payment-icons {
        justify-content: center;
    }
}

/* ============================================
   Hero Slider Styles
   ============================================ */

.mj-hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1a1a;
}
.mj-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.mj-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.mj-hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.mj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.3) 100%);
}
.mj-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}
.mj-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e91e63;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}
.mj-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px;
    max-width: 600px;
}
.mj-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 500px;
}
.mj-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #e91e63;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mj-hero-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}
.mj-hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.mj-hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.mj-hero-dots .dot.active {
    background: #e91e63;
    transform: scale(1.2);
}
.mj-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.mj-hero-arrow:hover {
    background: #e91e63;
    transform: translateY(-50%) scale(1.1);
}
.mj-hero-arrow svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 28px;
    height: 28px;
}
.mj-hero-prev { left: 24px; }
.mj-hero-next { right: 24px; }

@media (max-width: 1024px) {
    .mj-hero-slider { height: 70vh; min-height: 450px; }
    .mj-hero-content { padding: 0 32px; }
}
@media (max-width: 768px) {
    .mj-hero-slider { height: 60vh; min-height: 400px; max-height: 550px; }
    .mj-hero-content { padding: 0 24px; align-items: center; text-align: center; }
    .mj-hero-badge { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 16px; }
    .mj-hero-title { margin-bottom: 16px; }
    .mj-hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
    .mj-hero-arrow { width: 40px; height: 40px; }
    .mj-hero-prev { left: 12px; }
    .mj-hero-next { right: 12px; }
    .mj-hero-dots { bottom: 20px; }
}
@media (max-width: 480px) {
    .mj-hero-slider { height: 50vh; min-height: 350px; max-height: 450px; }
    .mj-hero-title { font-size: 1.8rem; }
    .mj-hero-subtitle { font-size: 0.9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .mj-hero-btn { padding: 12px 28px; font-size: 0.9rem; }
}

/* ============================================
   Trust Badges
   ============================================ */

.mj-trust-badges { background-color: #fce4ec; padding: 48px 0; }
.mj-trust-badges-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 0 32px; }
.mj-trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.mj-trust-badge-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #ffffff; border-radius: 50%; color: #e91e63; box-shadow: 0 2px 12px rgba(233, 30, 99, 0.12); }
.mj-trust-badge-icon svg { width: 26px; height: 26px; }
.mj-trust-badge h4 { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin: 0; }
.mj-trust-badge p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .mj-trust-badges-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 20px; } .mj-trust-badges { padding: 32px 0; } }
@media (max-width: 480px) { .mj-trust-badges-inner { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* ============================================
   Featured Products / Best Sellers
   ============================================ */

.mj-products-section { max-width: 1280px; margin: 0 auto; padding: 64px 32px; }
.mj-section-header { text-align: center; margin-bottom: 40px; }
.mj-section-header h2 { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.mj-section-header p { font-size: 1rem; color: #666; margin: 0; }
.mj-view-all { display: inline-flex; align-items: center; gap: 6px; margin-top: 32px; font-size: 0.9rem; font-weight: 600; color: #e91e63; text-decoration: none; transition: gap 0.2s ease; }
.mj-view-all:hover { gap: 10px; color: #c2185b; }
@media (max-width: 768px) { .mj-products-section { padding: 40px 16px; } .mj-section-header h2 { font-size: 1.4rem; } }

/* ============================================
   Brand Showcase
   ============================================ */

.mj-brands { background: #ffffff; padding: 64px 0; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; }
.mj-brands-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.mj-brands-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 24px; margin-top: 40px; }
.mj-brand-item { display: flex; align-items: center; justify-content: center; padding: 16px; border: 1px solid #e8e8e8; border-radius: 8px; text-decoration: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.mj-brand-item:hover { border-color: #e91e63; box-shadow: 0 2px 12px rgba(233, 30, 99, 0.08); }
.mj-brand-name { font-size: 0.85rem; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s ease; }
.mj-brand-item:hover .mj-brand-name { color: #e91e63; }
@media (max-width: 1024px) { .mj-brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .mj-brands { padding: 40px 0; } .mj-brands-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } .mj-brands-inner { padding: 0 16px; } }
@media (max-width: 480px) { .mj-brands-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Our Story
   ============================================ */

.mj-our-story { max-width: 1280px; margin: 0 auto; padding: 64px 32px; }
.mj-our-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mj-our-story-image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.mj-our-story-image img { width: 100%; height: 100%; object-fit: cover; }
.mj-our-story-text h2 { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; }
.mj-our-story-text p { font-size: 1rem; color: #555; line-height: 1.8; margin: 0 0 24px; }
.mj-our-story-text .mj-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: #e91e63; color: #ffffff; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-radius: 30px; transition: background 0.3s ease, transform 0.2s ease; }
.mj-our-story-text .mj-btn:hover { background: #c2185b; transform: translateY(-2px); }
@media (max-width: 768px) { .mj-our-story { padding: 40px 16px; } .mj-our-story-grid { grid-template-columns: 1fr; gap: 32px; } .mj-our-story-text h2 { font-size: 1.5rem; } }

/* ============================================
   Testimonials
   ============================================ */

.mj-testimonials { background: #f5f5f5; padding: 64px 0; }
.mj-testimonials-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.mj-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mj-testimonial-card { background: #ffffff; border-radius: 12px; padding: 32px; box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04); }
.mj-testimonial-stars { color: #f5a623; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.mj-testimonial-quote { font-size: 0.95rem; color: #555; line-height: 1.7; margin: 0 0 20px; font-style: italic; }
.mj-testimonial-author { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; }
@media (max-width: 768px) { .mj-testimonials { padding: 40px 0; } .mj-testimonials-grid { grid-template-columns: 1fr; } .mj-testimonials-inner { padding: 0 16px; } }

/* ============================================
   Newsletter
   ============================================ */

.mj-newsletter { background: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%); padding: 64px 0; }
.mj-newsletter-inner { max-width: 600px; margin: 0 auto; padding: 0 32px; text-align: center; }
.mj-newsletter h2 { font-size: 1.8rem; font-weight: 700; color: #ffffff; margin: 0 0 8px; }
.mj-newsletter p.mj-newsletter-sub { font-size: 1rem; color: rgba(255, 255, 255, 0.85); margin: 0 0 32px; }
.mj-newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 16px; }
.mj-newsletter-form input[type="email"] { flex: 1; padding: 14px 20px; border: none; border-radius: 30px; font-size: 0.9rem; outline: none; background: #ffffff; color: #1a1a1a; }
.mj-newsletter-form input[type="email"]::placeholder { color: #999; }
.mj-newsletter-form button { padding: 14px 28px; background: #1a1a1a; color: #ffffff; border: none; border-radius: 30px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; white-space: nowrap; }
.mj-newsletter-form button:hover { background: #333; }
.mj-newsletter-privacy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin: 0; }
@media (max-width: 768px) { .mj-newsletter { padding: 48px 0; } .mj-newsletter-form { flex-direction: column; } .mj-newsletter-form button { width: 100%; } .mj-newsletter-inner { padding: 0 16px; } .mj-newsletter h2 { font-size: 1.4rem; } }

/* ============================================
   Content Pages (Privacy, Terms, Contact)
   ============================================ */

.mj-page-content { min-height: 60vh; }
.mj-breadcrumb a { color: #e91e63; text-decoration: none; transition: color 0.2s ease; }
.mj-breadcrumb a:hover { color: #c2185b; }
.mj-breadcrumb p { color: #888; }
.mj-page-content h1 { color: #1a1a1a; font-weight: 700; border-bottom: 2px solid #fce4ec; padding-bottom: 16px; }
.mj-content-section { max-width: 860px; margin: 0 auto; }
.mj-content-section h2 { font-size: 1.4rem; font-weight: 700; color: #1a1a1a; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.mj-content-section h3 { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; margin: 28px 0 12px; }
.mj-content-section p { font-size: 0.95rem; color: #555; line-height: 1.8; margin: 0 0 16px; }
.mj-content-section ul, .mj-content-section ol { margin: 0 0 16px; padding-left: 24px; }
.mj-content-section li { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 6px; }
.mj-content-section strong { color: #1a1a1a; }
.mj-content-section a { color: #e91e63; text-decoration: none; transition: color 0.2s ease; }
.mj-content-section a:hover { color: #c2185b; text-decoration: underline; }
.mj-content-updated { display: inline-block; font-size: 0.85rem; color: #999; margin-top: 8px; margin-bottom: 32px; }

/* Contact page */
.mj-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.mj-contact-info-card { background: #f9f9f9; border-radius: 12px; padding: 32px; margin-bottom: 20px; }
.mj-contact-info-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; }
.mj-contact-info-card p { font-size: 0.9rem; color: #555; line-height: 1.7; margin: 0 0 8px; }
.mj-contact-info-card a { color: #e91e63; text-decoration: none; }
.mj-contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #fce4ec; border-radius: 50%; color: #e91e63; margin-right: 12px; flex-shrink: 0; }
.mj-contact-row { display: flex; align-items: flex-start; margin-bottom: 16px; }
.mj-contact-row p { margin: 0; }
.mj-contact-form-wrapper { background: #ffffff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 32px; }
.mj-contact-form-wrapper h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a1a; margin: 0 0 24px; }
.mj-contact-form-wrapper label { display: block; font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.mj-contact-form-wrapper input[type="text"], .mj-contact-form-wrapper input[type="email"], .mj-contact-form-wrapper textarea { width: 100%; padding: 12px 16px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 0.9rem; color: #1a1a1a; margin-bottom: 20px; transition: border-color 0.2s ease; box-sizing: border-box; font-family: inherit; }
.mj-contact-form-wrapper input:focus, .mj-contact-form-wrapper textarea:focus { outline: none; border-color: #e91e63; box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.08); }
.mj-contact-form-wrapper textarea { min-height: 140px; resize: vertical; }
.mj-contact-submit { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; background: #e91e63; color: #ffffff; border: none; border-radius: 30px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.mj-contact-submit:hover { background: #c2185b; transform: translateY(-1px); }
.mj-whatsapp-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: #25d366; color: #ffffff; border-radius: 30px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; margin-top: 16px; }
.mj-whatsapp-cta:hover { background: #1da851; transform: translateY(-1px); color: #ffffff; text-decoration: none; }
.mj-business-hours { background: #fce4ec; border-radius: 8px; padding: 16px 20px; margin-top: 20px; }
.mj-business-hours h4 { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.mj-business-hours p { font-size: 0.85rem; color: #555; margin: 0 0 4px; }

@media (max-width: 768px) {
    .mj-contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .mj-content-section { padding: 0; }
    .mj-page-content { padding-left: 16px !important; padding-right: 16px !important; }
}
@media (max-width: 480px) {
    .mj-contact-form-wrapper { padding: 20px; }
    .mj-contact-info-card { padding: 20px; }
}
