/*
 Theme Name:   OceanWP Child
 Template:     oceanwp
 Version:      1.0.0
*/
/* -------------------------------
   GLOBAL STYLES
-------------------------------- */
body {
    font-family: 'Lato', sans-serif;
    color: #1A1A1A;
    background: #FFFFFF;
}

a { color: #00AEEF; text-decoration: none; }
a:hover { color: #0066CC; }

/* -------------------------------
   HEADER (LOGO + SEARCH + BUTTONS)
-------------------------------- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    background: #ffffff;
    flex-wrap: wrap;
    gap: 15px;
    box-sizing: border-box;
    border-bottom: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.logo img { max-height: 70px; width: auto; display: block; }

.header-search {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}
.header-search input.search-field {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border-radius: 50px;
    border: 1px solid #E0E0E0;
    background: #fafafa;
    font-size: 15px;
    outline: none;
}
.header-search .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.top-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.top-btn {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
    color: #fff;
}
/* Login + Sign Up = Blue */
.top-buttons .top-btn[href*="/login"],
.top-buttons .top-btn[href*="/signup"] {
    background: #00AEEF;
}
.top-buttons .top-btn[href*="/login"]:hover,
.top-buttons .top-btn[href*="/signup"]:hover {
    background: #0066CC;
}
/* Browse = Grey */
.top-buttons .top-btn[href*="/browse"] {
    background: #555;
}
.top-buttons .top-btn[href*="/browse"]:hover {
    background: #333;
}

/* -------------------------------
   NAVIGATION MENU
-------------------------------- */
.main-nav {
    background: #ffffff;
    padding: 8px 20px;
    text-align: left;
    border-bottom: none;
}
.main-nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin: 0;
    padding: 0;
}
.main-nav-list a {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    padding: 6px 12px;
    position: relative;
    transition: color 0.3s ease;
}
/* Vertical line always visible */
.main-nav-list a::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: #00AEEF;
    opacity: 0.5;
}
.main-nav-list a:hover { color: #00AEEF; }
.main-nav-list a:hover::before { opacity: 1; }
/* Remove old underline */
.main-nav-list a::after { content: none !important; }

/* -------------------------------
   BLUE DIVIDER LINE
-------------------------------- */
.nav-divider {
    height: 2px;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
}

/* -------------------------------
   BLUE GRADIENT BAR
-------------------------------- */
.mcc-blue-bar {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px 4px 0 0;
    margin-top: 0;
}
.mcc-blue-bar .page-title { margin: 0; color: #fff; font-weight: 700; }
.mcc-blue-bar .breadcrumb {
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
}
.mcc-blue-bar .breadcrumb a { color: #fff; text-decoration: none; font-weight: 300; }
.mcc-blue-bar .breadcrumb a:hover { text-decoration: underline; }
.mcc-blue-bar .breadcrumb span { color: #fff; font-weight: 300; }
.mcc-blue-bar .breadcrumb span:not(:first-child):before { content: "→ "; margin-right: 5px; }

/* -------------------------------
   SORT DROPDOWN
-------------------------------- */
.browse-sort-wrapper { padding: 20px 30px 0 30px; display: flex; justify-content: flex-start; align-items: center; }
.browse-sort-form label { margin-right: 10px; font-weight: 500; font-size: 15px; color: #1A1A1A; }
.browse-sort-form select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #00AEEF;
    border-radius: 6px;
    background-color: #fff;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.browse-sort-form select:hover { border-color: #0066CC; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.browse-sort-form select:focus { outline: none; border-color: #FF4081; box-shadow: 0 0 0 3px rgba(255,64,129,0.2); }

/* -------------------------------
   BROWSE PAGE GRID
-------------------------------- */
.browse-grid { display: flex; flex-wrap: wrap; gap: 12px; padding: 30px; justify-content: flex-start; }
.browse-item-wrapper {
    flex: 0 1 calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}
.browse-item-creator {
    font-size: 15px;
    font-weight: 700;
    color: #00AEEF; 
    margin-bottom: 6px;
    text-align: left;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    border-left: 3px solid #00AEEF;
    padding-left: 6px;
    line-height: 1.2;
    transition: all 0.3s;
}
.browse-item-creator:hover { color: #0066CC; border-color: #0066CC; cursor: pointer; }
.browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.browse-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
.browse-card img { width: 100%; height: auto; border-radius: 6px; margin-bottom: 10px; }
.browse-item-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; text-align: center; }
.browse-card .price {
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066CC; 
    background-color: #E6F4FF;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}
.view-btn {
    display: inline-block;
    padding: 7px 15px;
    background: #00AEEF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.view-btn:hover { background: #0066CC; }

/* -------------------------------
   CREATOR PROFILE PAGE
-------------------------------- */
.creator-profile { padding: 30px; max-width: 1200px; margin: 0 auto; }

/* Banner */
.creator-banner {
    background: #f9f9f9;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.creator-banner-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.creator-photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid #00AEEF; }
.creator-info { flex: 1; }
.creator-name { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: #1A1A1A; }
.creator-bio { font-size: 15px; color: #555; margin-bottom: 15px; }
.creator-link {
    display: inline-block;
    background: #00AEEF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    max-width: 220px;
    text-align: center;
    white-space: nowrap;
}
.creator-link:hover { background: #0066CC; }

/* Inventory */
.creator-inventory { margin-bottom: 40px; }
.creator-inventory .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
    border-left: 4px solid #00AEEF;
    padding-left: 10px;
}
.creator-inventory .browse-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px;
    justify-content: flex-start;
}
.creator-inventory .browse-item-wrapper {
    flex: 0 1 calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Premium Section */
.creator-premium {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}
.creator-premium .section-title { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: #fff; }
.creator-premium p { font-size: 15px; margin-bottom: 20px; color: #fff; }
.premium-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FF4081;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.premium-btn:hover { background: #e03570; }

/* Empty Items */
.no-items-message {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    background: #f9f9f9;
    border: 1px dashed #E0E0E0;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}
.no-items-message .browse-cta { margin-top: 15px; }
.browse-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #00AEEF;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.browse-btn:hover { background: #0066CC; }

/* -------------------------------
   LANDING PAGE
-------------------------------- */
.landing-page { max-width: 1200px; margin: 0 auto; padding: 0; }

/* Hero */
.landing-hero {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 0 0 8px 8px;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 42px; font-weight: 800; margin-bottom: 15px; color: #fff; }
.hero-subtitle { font-size: 20px; margin-bottom: 30px; color: #fff; line-height: 1.5; }
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #FF4081;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease;
}
.hero-btn:hover { background: #e03570; }

/* Section Titles */
.landing-page .section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1A1A1A;
    border-left: 4px solid #00AEEF;
    padding-left: 10px;
}

/* Featured Creators */
.landing-creators { margin-bottom: 60px; }
.landing-creators .browse-card img {
    width: 100%; height: 300px; object-fit: cover; border-radius: 6px; margin-bottom: 10px;
}

/* Our Top Picks */
.landing-top-picks .browse-card { position: relative; overflow: hidden; }
.landing-top-picks .browse-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 6px; transition: filter 0.3s ease; }
.landing-top-picks .browse-card:hover img { filter: brightness(0.8); }
.landing-top-picks .browse-item-title {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.landing-top-picks .browse-card:hover .browse-item-title { opacity: 1; }

/* How It Works */
.landing-how {
    background: #f9f9f9;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 60px;
    text-align: center;
}
.how-steps { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; }
.how-step {
    flex: 0 1 calc(33% - 20px);
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.how-step:hover { transform: translateY(-4px); }
.how-icon { margin-bottom: 12px; }
.how-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #00AEEF; }
.how-step p { font-size: 15px; color: #555; }

/* Final CTA */
.landing-cta {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    margin-bottom: 60px;
}
.landing-cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.landing-cta .trust-tagline { margin-bottom: 20px; font-size: 15px; font-weight: 500; }
.landing-cta .hero-btn { background: #FF4081; padding: 12px 26px; font-weight: 700; }
.landing-cta .hero-btn:hover { background: #e03570; }

/* -------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 900px) {
    .creator-card { flex: 0 1 calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); }
    .how-step { flex: 0 1 100%; }
}
@media (max-width: 600px) {
    .creator-card { flex: 0 1 100%; max-width: 100%; }
    .landing-hero .hero-title { font-size: 32px; }
    .landing-cta h2 { font-size: 22px; }
}

/* -------------------------------
   CREATORS PAGE
-------------------------------- */
.creators-page .browse-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
.creators-page .creator-name a {
    color: #00AEEF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.creators-page .creator-name a:hover { color: #0066CC; }
.creator-badges { margin-top: 8px; }
.creator-badges .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
}
.badge.top { background: #FFD700; color: #1A1A1A; }
.badge.new { background: #FF4081; color: #fff; }
.creator-stats { font-size: 13px; color: #777; margin-top: 6px; }
/* ==========================
   Creators Page – Card Styling
========================== */

/* Ensure creators grid matches products */
.creators-page .browse-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px;
    justify-content: flex-start;
}

.creators-page .browse-item-wrapper {
    flex: 0 1 calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Card container (same as product cards) */
.creators-page .browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.creators-page .browse-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Creator image */
.creators-page .browse-card img {
    width: 100%;
    height: 300px;   /* match product card height */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Creator name inside card */
.creators-page .creator-name a {
    font-size: 15px;       /* smaller than before */
    font-weight: 600;
    color: #00AEEF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}
.creators-page .creator-name a:hover {
    color: #0066CC;
}

/* View button – blue like products */
.creators-page .view-btn {
    display: inline-block;
    padding: 7px 15px;
    background: #00AEEF;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}
.creators-page .view-btn:hover {
    background: #0066CC;
}

/* Optional badges */
.creators-page .creator-badges {
    margin: 5px 0;
}
.creators-page .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
}
.badge.top { background: #FFD700; color: #1A1A1A; } /* gold */
.badge.new { background: #FF4081; color: #fff; }   /* pink */

/* Optional stats */
.creators-page .creator-stats {
    font-size: 13px;
    color: #777;
    margin: 5px 0;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .creators-page .browse-item-wrapper {
        flex: 0 1 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }
}
@media (max-width: 600px) {
    .creators-page .browse-item-wrapper {
        flex: 0 1 100%;
        max-width: 100%;
    }
}
/* Creator tagline under name */
.creators-page .creator-tagline {
    font-size: 14px;
    color: #00AEEF; /* OnlyFans blue */
    font-weight: 600;
    margin: -4px 0 8px 0;
    text-align: center;
}

/* Verified tick next to creator names */
.browse-item-creator .verified-tick {
    color: #00AEEF;       /* OnlyFans blue */
    font-size: 16px;
    font-weight: bold;
    margin-left: 6px;
}
/* -------------------------------
   TRUST ELEMENTS
-------------------------------- */

/* Mini trust tagline under hero button */
.trust-mini {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

/* Trust ticks in How It Works */
.landing-how .trust-tick {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #00AEEF;
}
/* -------------------------------
   Verified Tick – Global
-------------------------------- */
.browse-item-title .verified-tick,
.browse-item-creator .verified-tick {
    color: #00AEEF;   /* OnlyFans blue */
    font-size: 16px;
    font-weight: bold;
    margin-left: 6px;
}
/* Creator Badge in Search Results */
.creator-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #00AEEF; /* OnlyFans blue */
    border-radius: 999px; /* pill shape */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* 🔹 Standardize search result cards (products + creators) */
.search-card-img {
    width: 100%;
    height: 280px;       /* same as Browse page */
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
/* 🔹 Equalize card heights in search results without changing structure */
.search-results-page .browse-card {
    min-height: 100%;
}

.search-results-page .browse-item-wrapper {
    display: flex;
}

/* Ensure cards visually align in rows */
.search-results-page .browse-item-wrapper .browse-card {
    flex-grow: 1;
}

/* 🔹 Lock image sizes so cards stay equal without changing layout */
.search-results-page .search-card-img {
    width: 100%;
    height: 260px;   /* match your Browse page height */
    object-fit: cover;
    display: block;
}
/* Force search page cards to match browse page */
.search-results-page .search-card-img {
    width: 100%;
    height: 300px;   /* match browse cards */
    object-fit: cover;
    display: block;
}
/* Force all search cards to same height, without changing inner structure */
.search-results-page .browse-card {
    min-height: 420px; /* adjust this number until it matches Browse page cards */
}
/* Remove default button styles for search icon */
.search-form .search-icon {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form .search-icon svg {
    display: block;
    pointer-events: none; /* ensures click is on button, not SVG */
}
/* Make search icon button clickable and styled properly */
.search-form {
    position: relative;
}

.search-form .search-field {
    width: 100%;
    padding-right: 40px; /* add space for the button */
    box-sizing: border-box;
}

.search-form .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.search-form .search-icon svg {
    pointer-events: none; /* clicks go to button, not svg */
}
.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form .search-field {
    flex: 1;
    padding-right: 40px; /* space for button */
}

.search-form .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}
.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form .search-field {
    flex: 1;
    padding-right: 40px; /* space for button */
}

.search-form .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}
.search-form .search-submit {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.search-form .search-submit:hover,
.search-form .search-submit:focus,
.search-form .search-submit:active {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
/* Match the blue outline of the sort dropdown */
.header-search .search-field {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 8px 40px 8px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Blue glow on focus (same as your sort dropdown) */
.header-search .search-field:focus {
    border-color: #00AEEF; /* OnlyFans blue */
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
    outline: none;
}
/* Make search bar always have blue border */
.header-search .search-field {
    border: 2px solid #00AEEF; /* Same OnlyFans blue */
    outline: none;
}
.mcc-item-image img {
    width: 100%;
    max-width: 500px;   /* keeps the image from going too wide */
    max-height: 650px;  /* keeps the image tall but under control */
    object-fit: cover;  /* crops neatly if needed */
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.mcc-item-container {
    max-width: 1100px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 40px;
    align-items: start; /* align both columns to the top */
    padding: 0 20px;
}

.mcc-item-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mcc-item-image img {
    width: 100%;
    max-width: 500px;
    max-height: 650px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.mcc-creator-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 18px 0;
}

.mcc-creator-photo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.mcc-creator-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.mcc-creator-info p {
  font-size: 14px;
  color: #555;
  margin: 0 0 8px;
}

/* Creator Strip - Premium Style */
.creator-strip {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.creator-strip img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.creator-strip .info {
    flex: 1;
}
.creator-strip .info h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}
.creator-strip .info p {
    margin: 0 0 10px;
    font-size: 15px;
    color: #555;
}
.creator-strip .info a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #00AEEF;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.creator-strip .info a:hover {
    background: #0066CC;
}
/* Creator Box - Minimalist */
.creator-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.creator-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.creator-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.creator-btn {
    display: inline-block;
    background: #00AEEF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.creator-btn:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}
/* Rectangular Creator Box (wide) */
.creator-box {
    display: flex;
    align-items: flex-start;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 90%;   /* make it stretch wider */
    margin-left: auto;
    margin-right: auto;
}

.creator-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #00AEEF;
}

.creator-box .creator-info {
    flex: 1;
}

.creator-box h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.creator-box p {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
}

.creator-box .view-btn {
    display: inline-block;
    background: #00AEEF;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}
.creator-box .view-btn:hover {
    background: #0066CC;
}

/* Responsive */
@media(max-width: 768px){
    .creator-box {
        flex-direction: column;
        text-align: center;
    }
    .creator-box img {
        margin: 0 auto 12px;
    }
}
/* More from this Creator Block */
.mcc-more-creator-block {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 30px 20px 0;
    text-align: left;
    border-top: 1px solid #e0e0e0; /* subtle divider */
}
.mcc-more-creator-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px; /* space after divider */
}
.mcc-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 20px;
    justify-items: start;
}
.mcc-more-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform .2s ease, box-shadow .2s ease;
    width: 160px;
}
.mcc-more-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.mcc-more-item img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}
.mcc-more-item h4 {
    font-size: 14px;
    margin: 5px 0;
}
.mcc-more-item .price {
    color: #00AEEF;
    font-weight: 700;
    font-size: 14px;
}
.mcc-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* exactly 4 per row */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.mcc-more-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.mcc-more-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.mcc-more-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.mcc-more-item h4 {
    font-size: 15px;
    margin: 10px 0 5px;
    font-weight: 600;
}

.mcc-more-item .price {
    color: #00AEEF;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}
/* -------------------------------
   FOOTER STYLING
-------------------------------- */
.mcc-footer {
  background: #1A1A1A;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Lato', sans-serif;
}
.mcc-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.mcc-footer .footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.mcc-footer ul {
  list-style: none;
  padding: 0;
}
.mcc-footer ul li {
  margin-bottom: 8px;
}
.mcc-footer ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mcc-footer ul li a:hover {
  color: #00AEEF;
}
.footer-logo {
  width: 160px;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px;
  color: #aaa;
}
.footer-social a {
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: #00AEEF;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #333;
  margin-top: 30px;
}
/* -------------------------
   FOOTER STYLING
------------------------- */
.site-footer {
    background: #fafafa;
    padding: 40px 20px 20px 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #00AEEF;
}

/* Socials */
.footer-socials a {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Bottom strip */
.footer-bottom {
    background: #1A1A1A;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    border-radius: 6px;
}
/* -------------------------
   FOOTER STYLING (black slim)
------------------------- */
.site-footer {
    background: #1A1A1A;
    color: #fff;
    padding: 20px 20px 10px 20px; /* shorter height */
    font-family: 'Inter', sans-serif;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}

.footer-column h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #00AEEF;
}

/* Socials */
.footer-socials a {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    border-radius: 50%;
    background: #00AEEF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Bottom strip */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    padding: 10px 0 5px 0;
}
/* Force-hide any footer logo/image */
.site-footer img {
    display: none !important;
}
/* -------------------------------
   LEGAL PAGES STYLING
-------------------------------- */
.page-privacy-policy .site-main,
.page-terms-of-service .site-main,
.page-cookie-policy .site-main {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* Headings inside legal pages */
.page-privacy-policy h1, .page-privacy-policy h2, .page-privacy-policy h3,
.page-terms-of-service h1, .page-terms-of-service h2, .page-terms-of-service h3,
.page-cookie-policy h1, .page-cookie-policy h2, .page-cookie-policy h3 {
    color: #0066cc; /* Accent blue */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Paragraphs and lists */
.page-privacy-policy p, .page-terms-of-service p, .page-cookie-policy p,
.page-privacy-policy li, .page-terms-of-service li, .page-cookie-policy li {
    margin-bottom: 15px;
    color: #444;
}

/* Blue Gradient Header Bar */
.page-privacy-policy .mcc-blue-bar,
.page-terms-of-service .mcc-blue-bar,
.page-cookie-policy .mcc-blue-bar {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    margin: 20px auto 30px auto;
    max-width: 900px;
}
.page-privacy-policy .mcc-blue-bar h1,
.page-terms-of-service .mcc-blue-bar h1,
.page-cookie-policy .mcc-blue-bar h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}
/* ---------------------------
   LEGAL PAGES STYLING
---------------------------- */
.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #333;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.legal-page p {
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-page li {
    margin-bottom: 8px;
}
/* Buttons */
.form-buttons { display:flex; gap:10px; }
.form-buttons .mcc-btn {
  padding:6px 12px !important;
  border:none !important;
  border-radius:4px !important;
  font-size:13px !important;
  font-weight:600 !important;
  cursor:pointer;
  text-decoration:none;
  text-align:center;
  transition:background .2s ease;
}
.form-buttons .primary-btn {
  background:#00AEEF !important; 
  color:#fff !important;
}
.form-buttons .primary-btn:hover { background:#0066CC !important; }
.form-buttons .secondary-btn {
  background:#e0e0e0 !important;
  color:#333 !important;
}
.form-buttons .secondary-btn:hover { background:#c9c9c9 !important; }
/* -------------------------------
   SUPPORT PAGES STYLING
   (FAQ, Contact, Shipping, Returns)
-------------------------------- */
.page-faq .site-main,
.page-contact-us .site-main,
.page-shipping .site-main,
.page-returns .site-main {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* Headings inside support pages */
.page-faq h1, .page-faq h2, .page-faq h3,
.page-contact-us h1, .page-contact-us h2, .page-contact-us h3,
.page-shipping h1, .page-shipping h2, .page-shipping h3,
.page-returns h1, .page-returns h2, .page-returns h3 {
    color: #0066cc; /* Accent blue */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Paragraphs and lists */
.page-faq p, .page-contact-us p, .page-shipping p, .page-returns p,
.page-faq li, .page-contact-us li, .page-shipping li, .page-returns li {
    margin-bottom: 15px;
    color: #444;
}

/* Blue Gradient Header Bar */
.page-faq .mcc-blue-bar,
.page-contact-us .mcc-blue-bar,
.page-shipping .mcc-blue-bar,
.page-returns .mcc-blue-bar {
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    margin: 20px auto 30px auto;
    max-width: 900px;
}

.page-faq .mcc-blue-bar h1,
.page-contact-us .mcc-blue-bar h1,
.page-shipping .mcc-blue-bar h1,
.page-returns .mcc-blue-bar h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}
/* Force white text in blue gradient header bar */
.mcc-blue-bar h1,
.mcc-blue-bar h2,
.mcc-blue-bar h3 {
    color: #ffffff !important;
}
/* -------------------------------
   FIX LOGIN / SIGNUP BUTTONS
-------------------------------- */
.top-buttons .top-btn[href*="/login"],
.top-buttons .top-btn[href*="/creator-signup"],
.top-buttons .top-btn[href*="/signup"] {
    background: #00AEEF;
    color: #fff;
}

.top-buttons .top-btn[href*="/login"]:hover,
.top-buttons .top-btn[href*="/creator-signup"]:hover,
.top-buttons .top-btn[href*="/signup"]:hover {
    background: #0066CC;
}

/* Shared card wrapper */
body.page-creator-login .woocommerce,
body.page-creator-login .woocommerce form.login,
body.page-creator-signup .user-registration form {
  max-width: 460px;
  margin: 60px auto;
  padding: 30px 35px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
}

/* Headings */
body.page-creator-login h2,
body.page-creator-signup h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

/* Labels */
body.page-creator-login label,
body.page-creator-signup label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

/* Inputs */
body.page-creator-login input.input-text,
body.page-creator-signup input[type="text"],
body.page-creator-signup input[type="email"],
body.page-creator-signup input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCC;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

/* Password eye icon */
body.page-creator-login .password-input,
body.page-creator-signup .password-input {
  position: relative;
}
body.page-creator-login .password-input .show-password-input,
body.page-creator-signup .password-input .show-password-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}

/* Buttons */
body.page-creator-login button.button,
body.page-creator-signup input[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #00AEEF;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
body.page-creator-login button.button:hover,
body.page-creator-signup input[type="submit"]:hover {
  background: #0066CC;
}

/* Lost password link */
body.page-creator-login .woocommerce .lost_password {
  margin-top: 12px;
  text-align: center;
}
body.page-creator-login .woocommerce .lost_password a {
  color: #00AEEF;
  font-size: 13px;
  text-decoration: none;
}
body.page-creator-login .woocommerce .lost_password a:hover {
  text-decoration: underline;
}
/* Force Login button to always show OnlyFans blue background with white text */
.top-buttons a[href*="creator-login"],
.top-buttons a[href*="/login"] {
  background: #00AEEF !important;  /* OnlyFans blue */
  color: #fff !important;           /* white text */
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  visibility: visible !important;
  opacity: 1 !important;
  transition: background 0.2s ease;
}

.top-buttons a[href*="creator-login"]:hover,
.top-buttons a[href*="/login"]:hover {
  background: #0066CC !important;   /* darker blue on hover */
  color: #fff !important;
}
/* Hide the default OceanWP "Login | Or | Register" links */
.woocommerce .owp-account-links {
    display: none !important;
}
/* ============================
   FIX LOGIN FORM ISSUES
   ============================ */

/* Fix password field + eye button */
.woocommerce form .password-input {
  position: relative;
}
.woocommerce form .password-input .show-password-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px !important;
  height: 20px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce form .password-input .show-password-input:hover {
  opacity: 1;
}

/* Fix Login button sizing */
.woocommerce form.login button.button {
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px 16px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: #00AEEF !important;
  border-radius: 6px !important;
  margin-top: 10px !important;
}
.woocommerce form.login button.button:hover {
  background: #0066CC !important;
}

/* Fix Lost password link */
.woocommerce form.login .lost_password {
  text-align: center !important;
  margin-top: 12px !important;
}
.woocommerce form.login .lost_password a {
  font-size: 13px !important;
  color: #00AEEF !important;
  text-decoration: none !important;
}
.woocommerce form.login .lost_password a:hover {
  text-decoration: underline !important;
}
/* ============================
   FIX PASSWORD FIELD EYE ICON
   ============================ */

.woocommerce form .password-input {
  position: relative;
}

.woocommerce form .password-input input[type="password"],
.woocommerce form .password-input input[type="text"] {
  padding-right: 40px !important; /* space for the icon */
}

.woocommerce form .password-input .show-password-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px !important;
  height: 20px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.woocommerce form .password-input .show-password-input:before {
  font-size: 16px !important;
  color: #555 !important;
}

.woocommerce form .password-input .show-password-input:hover {
  opacity: 1;
}
/* TEMP: make WooCommerce show-password button visible */
.woocommerce form .show-password-input {
  display: block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: yellow !important; /* temporary so we can see it */
  color: black !important;
}
/* ✅ Position WooCommerce password toggle inside the field */
.woocommerce form .password-input {
  position: relative; /* create container for absolute positioning */
}

.woocommerce form .show-password-input {
  position: absolute !important;
  right: 12px;       /* push it to the right edge */
  top: 50%;          /* vertically center */
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  width: auto !important;
  height: auto !important;
  color: #777 !important; /* grey icon */
}

.woocommerce form .show-password-input:hover {
  color: #00AEEF !important; /* blue on hover */
}
/* ✅ Fix password toggle inside field */
.woocommerce form .password-input {
  position: relative;
}

.woocommerce form .show-password-input {
  position: absolute !important;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  width: auto !important;
  height: auto !important;
  color: #777 !important;
}

.woocommerce form .show-password-input:hover {
  color: #00AEEF !important;
}

/* ✅ Tidy up Log In button */
body.page-creator-login .woocommerce button.button {
  display: block;
  width: 100%;
  max-width: 250px;   /* smaller width */
  margin: 15px auto;  /* centered */
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  background: #00AEEF;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

body.page-creator-login .woocommerce button.button:hover {
  background: #0066CC;
}

/* ✅ Fix Lost Password link */
body.page-creator-login .woocommerce .lost_password {
  margin-top: 8px;
  text-align: center;
}

body.page-creator-login .woocommerce .lost_password a {
  font-size: 13px;
  color: #00AEEF;
  text-decoration: none;
}

body.page-creator-login .woocommerce .lost_password a:hover {
  text-decoration: underline;
}
/* 🔥 Force WooCommerce errors + notices to always show */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 15px 0 !important;
  padding: 12px 15px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.mcc-auth-card .woocommerce-error,
.mcc-auth-card .woocommerce-message,
.mcc-auth-card .woocommerce-info,
.mcc-auth-notices {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
}

.mcc-auth-card .woocommerce-error {
    background: #ffecec;
    border: 1px solid #ff9d9d;
    color: #a40000;
}

.mcc-auth-card .woocommerce-message {
    background: #e6ffed;
    border: 1px solid #8fd19e;
    color: #0b6426;
}

.mcc-auth-card .woocommerce-info {
    background: #eaf4ff;
    border: 1px solid #99c6ff;
    color: #084892;
}
/* --- Eye toggle inside password field --- */
.ur-field-item .ur-password-wrapper {
    position: relative;
}

.ur-field-item .ur-password-wrapper input[type="password"],
.ur-field-item .ur-password-wrapper input[type="text"] {
    padding-right: 40px; /* space for eye */
}

.ur-field-item .ur-password-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

/* --- Register link in OnlyFans blue --- */
.ur-form .ur-register-link a {
    color: #00AEEF !important;
    font-weight: 600;
    text-decoration: none;
}
.ur-form .ur-register-link a:hover {
    color: #008ecc !important;
    text-decoration: underline;
}

/* --- Lost password link in OnlyFans blue --- */
.ur-form .ur-login-link a,
.ur-form .ur-lost-password a,
.woocommerce-LostPassword a {
    color: #00AEEF !important;
    text-decoration: none;
    font-weight: 500;
}
.ur-form .ur-login-link a:hover,
.ur-form .ur-lost-password a:hover,
.woocommerce-LostPassword a:hover {
    color: #008ecc !important;
    text-decoration: underline;
}
/* --- Top Buttons Fix --- */
.top-buttons .top-btn {
    display: inline-block;
    padding: 10px 18px;
    margin-left: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Default button look */
.top-buttons .top-btn {
    background: #f5f5f5; /* light grey background */
    color: #1A1A1A;      /* dark text */
    border: 1px solid #E0E0E0;
}

/* Dashboard (OnlyFans blue) */
.top-buttons .top-btn[href*="creator-dashboard"] {
    background: #00AEEF;
    color: #fff !important;
    border: none;
}
.top-buttons .top-btn[href*="creator-dashboard"]:hover {
    background: #008ecc;
}

/* Logout (red) */
.top-buttons .top-btn[href*="logout"] {
    background: #f44336;
    color: #fff !important;
    border: none;
}
.top-buttons .top-btn[href*="logout"]:hover {
    background: #d32f2f;
}

/* Login + Sign Up (OnlyFans blue for consistency) */
.top-buttons .top-btn[href*="creator-login"],
.top-buttons .top-btn[href*="creator-signup"] {
    background: #00AEEF;
    color: #fff !important;
    border: none;
}
.top-buttons .top-btn[href*="creator-login"]:hover,
.top-buttons .top-btn[href*="creator-signup"]:hover {
    background: #008ecc;
}
/* --- Top Buttons Styling --- */

/* Browse button (charcoal with white text) */
.top-buttons .top-btn[href*="browse"] {
    background-color: #1A1A1A !important; /* Charcoal */
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="browse"]:hover {
    background-color: #333333 !important; /* Slightly lighter charcoal */
}

/* Login / Dashboard buttons (OnlyFans blue) */
.top-buttons .top-btn[href*="creator-login"],
.top-buttons .top-btn[href*="creator-dashboard"] {
    background-color: #00AEEF !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="creator-login"]:hover,
.top-buttons .top-btn[href*="creator-dashboard"]:hover {
    background-color: #008ecc !important;
}

/* Sign Up / Logout buttons (OnlyFans blue) */
.top-buttons .top-btn[href*="creator-signup"],
.top-buttons .top-btn[href*="logout"] {
    background-color: #00AEEF !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="creator-signup"]:hover,
.top-buttons .top-btn[href*="logout"]:hover {
    background-color: #008ecc !important;
}
/* --- Top Buttons Styling --- */

/* Browse button (charcoal grey #555 with white text) */
.top-buttons .top-btn[href*="browse"] {
    background-color: #555555 !important; /* Charcoal grey */
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="browse"]:hover {
    background-color: #666666 !important; /* Slightly lighter on hover */
}

/* Login / Dashboard buttons (OnlyFans blue) */
.top-buttons .top-btn[href*="creator-login"],
.top-buttons .top-btn[href*="creator-dashboard"] {
    background-color: #00AEEF !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="creator-login"]:hover,
.top-buttons .top-btn[href*="creator-dashboard"]:hover {
    background-color: #008ecc !important;
}

/* Sign Up / Logout buttons (OnlyFans blue) */
.top-buttons .top-btn[href*="creator-signup"],
.top-buttons .top-btn[href*="logout"] {
    background-color: #00AEEF !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}
.top-buttons .top-btn[href*="creator-signup"]:hover,
.top-buttons .top-btn[href*="logout"]:hover {
    background-color: #008ecc !important;
}
/* --- Fix for Upload Item form price fields --- */
.upload-form input[type=text],
.upload-form input[type=number],
.upload-form textarea,
.upload-form input[type=file] {
  width:100% !important;
  max-width:100% !important;
  padding:14px;
  margin-bottom:20px;
  border:1px solid #E0E0E0;
  border-radius:4px;
  font-size:16px;
  box-sizing:border-box;
}

.upload-form input[name="product_price"],
.upload-form input[name$="_price"] {
  font-size:18px;
  height:50px;
  width:100% !important;
  max-width:100% !important;
}

/* Upload Item page fixes */
.upload-form input[type=text],
.upload-form input[type=number],
.upload-form textarea,
.upload-form input[type=file] {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.upload-form input[name="product_price"],
.upload-form input[name$="_price"] {
  font-size: 18px;
  height: 50px;
  width: 100%;
}

/* remove number spinners */
.upload-form input::-webkit-outer-spin-button,
.upload-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.upload-form input[type=number] { -moz-appearance: textfield; }
/* Default inputs */
.upload-form input[type=text],
.upload-form input[type=number],
.upload-form textarea,
.upload-form input[type=file] {
  border: 1px solid #E0E0E0;
  transition: border-color 0.2s ease;
}

/* OnlyFans blue on focus */
.upload-form input[type=text]:focus,
.upload-form input[type=number]:focus,
.upload-form textarea:focus,
.upload-form input[type=file]:focus {
  border-color: #00AEEF;
  outline: none;
}
/* Force textarea focus style */
.upload-form textarea:focus,
.upload-form textarea:focus-visible {
  border-color: #00AEEF !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Optional: remove red border from required invalid state */
.upload-form textarea:invalid {
  border-color: #E0E0E0 !important; /* back to neutral */
  box-shadow: none !important;
}
/* ----------------------------------
   Login Page Styling Reset
---------------------------------- */

/* Center and card style */
.ur-frontend-form.login {
    max-width: 420px;
    margin: 40px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 17, 26, 0.08);
}

/* Form fields */
.user-registration-form-login input[type="text"],
.user-registration-form-login input[type="email"],
.user-registration-form-login input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
}

/* Login button */
.user-registration-form-login button,
.user-registration-form-login input[type="submit"] {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #00AEEF, #0066CC); /* OnlyFans blue gradient */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.user-registration-form-login button:hover,
.user-registration-form-login input[type="submit"]:hover {
    background: linear-gradient(135deg, #0095d9, #005bb5);
}

/* Links (password + register) */
.user-registration-form-login a {
    color: #00AEEF;
    font-weight: 500;
    text-decoration: none;
}

.user-registration-form-login a:hover {
    text-decoration: underline;
}

/* “Not a member yet?” text */
.user-registration-form-login .user-registration-register {
    margin-top: 18px;
    font-size: 14px;
    text-align: center;
    color: #666;
}
/* Signup role buttons – resize */
.user-registration-choose-role .ur-frontend-form .ur-button {
    max-width: 180px !important;  /* ✅ controls button length */
    display: inline-block !important;
    margin: 0 8px !important;     /* spacing between them */
    text-align: center !important;
}
/* 🔹 Force Signup Submit Button OnlyFans Blue */
.signup-card input[type="submit"],
.signup-card .ur-submit-button {
    background-color: #00AEEF !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    width: 100% !important;
    cursor: pointer !important;
}

.signup-card input[type="submit"]:hover,
.signup-card .ur-submit-button:hover {
    background-color: #0098D6 !important; /* slightly darker hover */
}
/* ==============================
   Dashboard Button Styling
   ============================== */
.top-buttons .top-btn.dashboard-btn {
  background: #00AEEF;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.top-buttons .top-btn.dashboard-btn:hover {
  background: #0098D6;
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
/* 🔵 Change login form purple colors to OnlyFans blue */
.ur-form-grid .login-button input[type="submit"],
.ur-form-grid .login-button button {
    background-color: #00AEEF !important; /* OnlyFans blue */
    border-color: #00AEEF !important;
}

.ur-form-grid .login-button input[type="submit"]:hover,
.ur-form-grid .login-button button:hover {
    background-color: #0066CC !important; /* darker blue hover */
    border-color: #0066CC !important;
}

.ur-form-grid a {
    color: #00AEEF !important; /* make links blue */
}

.ur-form-grid a:hover {
    color: #0066CC !important; /* darker hover */
}
/* ===========================
   Custom Login Page Styling
   =========================== */

/* Add logo + site title */
.ur-login-form::before {
    content: url('/wp-content/themes/oceanwp-child/logo.png');
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
}

/* Add site title text under logo */
.ur-login-form::after {
    content: "Mycreatorcloset";
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

/* Login form box */
.ur-login-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

/* Login button */
.ur-submit-button {
    background-color: #00AEEF !important; /* OnlyFans blue */
    border-color: #00AEEF !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 20px;
    width: 100%;
}

.ur-submit-button:hover {
    background-color: #0066CC !important;
    border-color: #0066CC !important;
}

/* Links */
.ur-login-form a {
    color: #00AEEF !important;
    font-weight: 500;
    text-decoration: none;
}
.ur-login-form a:hover {
    color: #0066CC !important;
    text-decoration: underline;
}
/* Login page custom styling */
body.page-id-LOGINPAGEID .ur-frontend-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

body.page-id-LOGINPAGEID .login-logo {
    text-align: center;
    margin-bottom: 15px;
}

body.page-id-LOGINPAGEID .login-logo img {
    max-width: 150px;   /* Adjust logo size */
    height: auto;
}

body.page-id-LOGINPAGEID .login-site-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
}

/* Buttons + links in OnlyFans blue */
body.page-id-LOGINPAGEID .ur-submit-button,
body.page-id-LOGINPAGEID .login form .button {
    background-color: #00AEEF !important;
    border: none !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px;
}

body.page-id-LOGINPAGEID a {
    color: #00AEEF !important;
}
/* === MINI CART DROPDOWN CLEAN VERSION === */

/* Header cart wrapper */
.header-cart {
    position: relative;
    display: inline-block;
}

/* Cart icon */
.header-cart .cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    margin-left: 12px;
}

.header-cart .cart-icon:hover {
    color: #FF4081; /* accent hover */
}

/* Cart count badge */
.header-cart .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #00AEEF; /* brand blue */
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* Dropdown */
.mini-cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 40px; /* match header height */
    width: 320px;
    background: #fff;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 9999;
    padding: 15px;
}

/* Show on hover (desktop only) */
.header-cart:hover .mini-cart-dropdown {
    display: block;
}

/* Mini cart items */
.mini-cart-dropdown ul.woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-cart-dropdown ul.woocommerce-mini-cart li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mini-cart-dropdown ul.woocommerce-mini-cart li img {
    width: 50px;
    height: auto;
    border-radius: 6px;
    margin-right: 10px;
}

/* Subtotal + buttons */
.mini-cart-dropdown .woocommerce-mini-cart__total {
    font-weight: bold;
    margin: 10px 0;
    text-align: right;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons {
    text-align: center;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons a {
    display: inline-block;
    margin-right: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons a:first-child {
    background: #f5f5f5;
    color: #333;
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons a.checkout {
    background: #00AEEF;
    color: #fff;
}
.header-cart {
    padding-bottom: 10px;
}

.mini-cart-dropdown {
    top: 35px;
}
/* === FIX MINI CART BUTTON LAYOUT === */
.mini-cart-dropdown .woocommerce-mini-cart__buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* space between buttons */
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons a {
    flex: 1; /* makes both buttons equal width */
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 14px;
}

/* Style for View Cart */
.mini-cart-dropdown .woocommerce-mini-cart__buttons a:first-child {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #E0E0E0;
}

/* Style for Checkout */
.mini-cart-dropdown .woocommerce-mini-cart__buttons a.checkout {
    background: #00AEEF; /* brand blue */
    color: #fff;
    border: none;
}

/* === MINI CART REMOVE LINK (X) === */
.mini-cart-dropdown .woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* spreads name/price and X */
    gap: 10px;
}

.mini-cart-dropdown .woocommerce-mini-cart-item a.remove {
    color: #000 !important; /* black X */
    font-size: 16px;
    line-height: 1;
    margin-left: 6px; /* moves X slightly closer to price */
    text-decoration: none;
}

.mini-cart-dropdown .woocommerce-mini-cart-item a.remove:hover {
    color: #FF4081 !important; /* accent pink on hover */
}
/* === FIX MINI CART BUTTON SIZE === */
.mini-cart-dropdown .woocommerce-mini-cart__buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px; /* tighter spacing between buttons */
}

.mini-cart-dropdown .woocommerce-mini-cart__buttons a {
    flex: 1;
    text-align: center;
    padding: 6px 0; /* less padding = smaller buttons */
    border-radius: 6px;
    font-size: 13px; /* slightly smaller text */
    line-height: 1.2;
}

/* View Cart button */
.mini-cart-dropdown .woocommerce-mini-cart__buttons a:first-child {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #E0E0E0;
}

/* Checkout button */
.mini-cart-dropdown .woocommerce-mini-cart__buttons a.checkout {
    background: #00AEEF;
    color: #fff;
    border: none;
}
/* === ALIGN CART ICON WITH BUTTONS === */
.header-cart .cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    top: 2px; /* Adjust this value slightly if needed */
    margin-left: 12px;
}
/* 🔹 Force white text on add-on buttons */
.mcc-addon .mcc-btn,
.mcc-addon.active .mcc-btn,
.mcc-addon .mcc-btn span,
.mcc-addon.active .mcc-btn span {
    color: #ffffff !important;   /* always white */
    -webkit-text-fill-color: #ffffff !important; /* extra insurance on WebKit */
}
/* ✅ Professional assurance ticks */
.mcc-assurance .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00AEEF;
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.mcc-assurance .icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* 🚫 Remove blue outline on Continue Shopping link */
.continue-shopping-link {
  outline: none !important;
  box-shadow: none !important;
}

.continue-shopping-link:focus,
.continue-shopping-link:active {
  outline: none !important;
  box-shadow: none !important;
}
/* 🔹 Mini-cart remove (×) styling */
.mcc-mini-cart-item .remove {
  color: #999;
  font-size: 18px;
  text-decoration: none;
  outline: none;      /* remove focus outline */
  box-shadow: none;   /* remove click shadow */
  border: none;       /* remove any border */
}

.mcc-mini-cart-item .remove:hover {
  color: #00AEEF;     /* OnlyFans blue on hover */
}

.mcc-mini-cart-item .remove:focus,
.mcc-mini-cart-item .remove:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
/* === MCC Checkout Styling (50/50 layout) === */
.mcc-checkout-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1A1A1A;
}

/* Equal 50/50 layout */
.mcc-checkout-columns {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Shared card style */
.mcc-checkout-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    flex: 1 1 50%;
}

/* Headings */
.mcc-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 10px;
}

/* Order Review Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-bottom: 1px solid #E0E0E0;
    padding: 12px 8px;
    text-align: left;
}
.woocommerce-checkout-review-order-table td.product-name {
    display: flex;
    align-items: center;
    gap: 12px;
}
.woocommerce-checkout-review-order-table td.product-name img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
}

/* Form fields */
.woocommerce form .form-row label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
.woocommerce form .input-text,
.woocommerce form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
}
.woocommerce form .input-text:focus,
.woocommerce form select:focus {
    border-color: #00AEEF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,174,239,0.15);
}

/* Place Order button */
#place_order {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 15px;
}
#place_order:hover {
    background: linear-gradient(90deg, #0095cc, #005bb5);
}

/* Responsive: stack on mobile */
@media (max-width: 992px) {
    .mcc-checkout-columns {
        flex-direction: column;
    }
}
/* === Remove grey background on order review rows === */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    background: #fff !important;  /* force white background */
}

/* Optional: subtotals + total cleaner */
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    background: #fff !important;
    font-weight: 600;
}

/* Add subtle highlight to TOTAL row only */
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    border-top: 2px solid #00AEEF;
    font-size: 17px;
    font-weight: 700;
}
/* === Order Summary Cleanup === */

/* Larger product images */
.woocommerce-checkout-review-order-table td.product-name img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

/* Product row layout */
.woocommerce-checkout-review-order-table td.product-name {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

/* Neater product titles */
.woocommerce-checkout-review-order-table td.product-name strong {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

/* Pricing alignment */
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
    padding: 14px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #E0E0E0;
    background: #fff !important;
}

/* Subtotal + total rows */
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    font-weight: 600;
    background: #fff !important;
}

/* Highlight total row */
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    border-top: 2px solid #00AEEF;
    font-size: 17px;
    font-weight: 700;
}

/* Remove crowdedness by separating rows slightly */
.woocommerce-checkout-review-order-table tr {
    border-bottom: 1px solid #E0E0E0;
}
/* Place Order button wrapper */
.mcc-place-order {
    margin-top: 25px;
}

/* Button styling (reuse your blue gradient) */
#place_order {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
#place_order:hover {
    background: linear-gradient(90deg, #0095cc, #005bb5);
}
/* === Hide header, nav, and footer ONLY on checkout page === */
body.woocommerce-checkout header,
body.woocommerce-checkout .site-header,
body.woocommerce-checkout nav,
body.woocommerce-checkout .site-footer,
body.woocommerce-checkout footer {
    display: none !important;
}

/* === Checkout mini header (logo + centered title) === */
.mcc-checkout-header {
    max-width: 1200px;
    margin: 20px auto 30px auto;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, title centered */
    position: relative;
    gap: 15px;
}

.mcc-checkout-logo {
    height: 80px;
    width: auto;
    display: block;
}

/* Title centered across the row */
.mcc-checkout-header h1 {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #1A1A1A;
}

/* Responsive scaling */
@media (max-width: 992px) {
    .mcc-checkout-logo { height: 60px; }
    .mcc-checkout-header h1 { font-size: 20px; }
}

@media (max-width: 600px) {
    .mcc-checkout-logo { height: 45px; }
    .mcc-checkout-header h1 { font-size: 18px; }
}

/* ================================
   ✅ Product Grid Styling
   Desktop + Mobile overrides
   ================================ */

/* 🔹 Desktop (default) creator name */
.browse-item-creator a {
  color: #00AEEF;      /* OnlyFans blue */
  font-weight: 600;    /* bold */
  text-decoration: none;
}
.browse-item-creator a:hover {
  color: #0066CC;      /* darker hover */
}

/* ================================
   📱 Mobile layout override (final clean version)
   ================================ */
@media screen and (max-width: 768px) {
  /* 🔹 Grid */
  .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    margin-top: 16px !important;
    box-sizing: border-box;
  }

  .browse-item-wrapper,
  .browse-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }

  /* 🔹 Creator name */
  .browse-item-creator {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.2 !important;
  }
  .browse-item-creator a {
    color: #1A1A1A !important;   /* black on mobile */
    font-weight: 600 !important;
    text-decoration: none !important;
  }
  .browse-item-creator a:hover {
    color: #1A1A1A !important;   /* no hover change */
  }

  /* 🔹 Card styling */
  .browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px 10px 8px 10px !important; /* even breathing room */
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    min-height: auto !important; /* shrink-wrap */
  }

  /* 🔹 Images */
  .browse-card img {
    width: 100% !important;
    aspect-ratio: 4 / 4.5 !important;  /* more square */
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 6px;
    margin-bottom: 8px !important; /* space under image */
    display: block !important;
  }

  /* 🔹 Title */
  .browse-item-title {
    font-size: 15px !important;
    margin: 0 0 8px 0 !important; /* closer to price */
    line-height: 1.3 !important;
  }

  /* 🔹 Price row */
  .browse-card .price-button-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 6px !important; /
  }

  .browse-card .price {
    font-size: 15px !important;
    font-weight: 700 !important; /* bold like desktop */
    margin: 0 !important;
    padding: 0 !important;
    color: #1A1A1A !important;   /* clean black */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  @media screen and (max-width: 768px) {
  .browse-card .view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    white-space: nowrap !important;
    width: auto !important;       /* shrink-wrap width */
    min-width: 60px !important;   /* keeps button usable, not too tiny */
    padding: 9px 15px !important; /* 🔹 controls button height & width */

    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }
}
  /* 🔹 Sort dropdown */
  .browse-sort-wrapper {
    padding: 0 8px !important;
    margin: 12px 0 10px 0 !important;
  }
  .browse-sort-wrapper label {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-right: 6px !important;
    color: #1A1A1A !important;
  }
  .browse-sort-wrapper select {
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 5px 8px !important;
    border: 1px solid #00AEEF !important;
    border-radius: 6px !important;
    background: #fff !important;
    line-height: 1.3 !important;
    outline: none !important;
    box-shadow: none !important;
  }
  .browse-sort-wrapper select:focus {
    border: 1px solid #00AEEF !important;
    box-shadow: 0 0 0 1px #00AEEF !important;
  }

  /* 🔹 Blue gradient bar */
  .mcc-blue-bar {
    padding: 10px 12px !important;
    min-height: 50px !important;
    margin-bottom: 14px !important;
  }
  .mcc-blue-bar .page-title {
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    font-weight: 600 !important;
  }
  .mcc-blue-bar .breadcrumb {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

/* 🌐 Desktop-only hover (keeps hover off mobile/touch) */
@media (hover: hover) and (pointer: fine) {
  .browse-item-creator a:hover {
    color: #0066CC !important;
  }
  .browse-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
  }
}

/* 🔹 Desktop breadcrumb/title tweaks */
.mcc-blue-bar .page-title {
  font-size: 16px !important;
  font-weight: 600 !important;
}
.mcc-blue-bar .breadcrumb {
  font-size: 11.5px !important;
  opacity: 0.95;
}
/* 📱 Mobile landscape: show 4 cards per row */
@media screen and (max-width: 767px) and (orientation: landscape) {
  .browse-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}


/* ================================
   Header Responsive Visibility
   ================================ */

/* Desktop default */
.desktop-header {
  display: flex;
}
.mobile-header {
  display: none;
}

/* Mobile breakpoint */
@media screen and (max-width: 768px) {
  .desktop-header { display: none !important; }
  .mobile-header { display: block !important; width: 100%; }

  /* Header bar */
  .mobile-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 2px;
    position: relative;
  }
  .mobile-header-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 2px;
    background: #00AEEF;
    margin-left: calc(-50vw + 50%);
  }

  /* Left group */
  .mobile-left { display: flex; align-items: center; gap: 4px; }
  .header-hamburger {
    display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  }
  .header-hamburger span {
    width: 22px; height: 2px; background: #000; display: block;
  }
  .mobile-logo img { max-height: 52px; width: auto; }

  /* Right group */
  .mobile-right { display: flex; align-items: center; gap: 6px; }
  .mobile-browse-btn {
    font-size: 13px; padding: 5px 8px;
    border-radius: 4px; background: #555; color: #fff; text-decoration: none;
  }
  .header-cart { position: relative; }
  .header-cart .cart-icon { font-size: 16px; }
  .header-cart .cart-count {
    background: #00AEEF; color: #fff; border-radius: 50%;
    font-size: 11px; padding: 2px 5px; position: absolute; top: -8px; right: -10px;
  }

  /* Mobile search below header */
  .mobile-search { padding: 8px 12px; }
  .mobile-search form { display: flex; }
  .mobile-search .search-field {
    flex: 1; padding: 6px 10px; border: 1px solid #E0E0E0;
    border-radius: 4px 0 0 4px;
  }
  .mobile-search .search-submit {
    background: #f5f5f5; border: 1px solid #E0E0E0; border-left: none;
    border-radius: 0 4px 4px 0; padding: 6px 10px;
  }

  /* Hide desktop nav */
  .main-nav { display: none !important; }
}

/* Extra small phones (≤400px) */
@media screen and (max-width: 400px) {
  .mobile-logo img { max-height: 46px; }
  .mobile-browse-btn { font-size: 12px; padding: 4px 6px; }
  .header-cart .cart-icon { font-size: 15px; }
  .header-cart .cart-count { font-size: 10px; padding: 1px 4px; top: -6px; right: -8px; }
}
/* ================================
   Mobile Menu Drawer – Final Boutique Styling
   ================================ */

/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: -280px;
  width: 260px; height: 100vh;
  background: #fff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.15);
  transition: left 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active { left: 0; }

/* Drawer header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #E0E0E0;
  flex-shrink: 0;
}
.mobile-drawer-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}
.mobile-menu-close {
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* ✅ Inner scrollable wrapper */
.mobile-menu-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ================================
   Mobile Nav List – Boutique Styling
   ================================ */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
}

/* Section Headings */
.mobile-nav-list .menu-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999999; /* muted boutique grey */
  padding: 10px 15px;
  margin-top: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-nav-list .menu-heading:first-child {
  margin-top: 0;
}

/* Category links */
.mobile-nav-list li {
  margin-bottom: 10px; /* breathing space */
}
.mobile-nav-list li a {
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  padding: 12px 15px 12px 26px; /* space from bar */
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

/* Blue accent bar */
.mobile-nav-list li a::before {
  content: "";
  position: absolute;
  left: 8px; /* slightly inset */
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: #00AEEF; /* OnlyFans blue */
  border-radius: 2px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* Hover / active states */
.mobile-nav-list li a:hover,
.mobile-nav-list li a:active {
  background: #F7F9FC;
  color: #00AEEF;
}
.mobile-nav-list li a:hover::before,
.mobile-nav-list li a:active::before {
  opacity: 1;
}

/* ================================
   Mobile Menu Buttons (Login, Signup, etc.)
   ================================ */
.mobile-buttons {
  padding: 16px 20px;
  border-top: 1px solid #E0E0E0;
  background: #fff;
  flex-shrink: 0;
}
.mobile-btn {
  display: block;
  padding: 12px;
  margin-bottom: 10px;
  background: #00AEEF;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.mobile-btn:hover {
  background: #0066CC;
}

/* ================================
   Mini-Cart Dropdown
   ================================ */
.mini-cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 280px;
  z-index: 1000;
  border-radius: 6px;
  padding: 12px;
}
.mini-cart-dropdown.active {
  display: block;
}
@media (max-width: 768px) {
  #mcc-header-cart { position: relative; }
  .mini-cart-dropdown {
    width: 90vw;
    right: 0;
    left: auto;
  }
}

/* ================================
   iOS Safari 100vh Fix
   ================================ */
@supports (height: 100dvh) {
  .mobile-menu { height: 100dvh; }
}
@media (max-width: 768px) {
  .mobile-header .mobile-browse-btn {
    background: #00AEEF !important;
    color: #fff !important;
  }
  .mobile-header .mobile-browse-btn:hover,
  .mobile-header .mobile-browse-btn:active {
    background: #0090c5 !important; /* slightly darker blue */
    color: #fff !important;
  }
}
/* ================================
   🛒 Mini-Cart – Boutique Styling
   ================================ */

/* Base */
.mcc-mini-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mcc-mini-cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 10px 0;
  position: relative;
}
.mcc-mini-cart-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.mcc-mini-cart-info {
  flex: 1;
  margin-left: 10px;
}
.mcc-mini-cart-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
}
.mcc-mini-cart-title:hover {
  color: #00AEEF;
}
.mcc-mini-cart-qty {
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 3px;
}

/* Add-ons */
.mcc-mini-cart-addons {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}
.mcc-mini-cart-addons li {
  font-size: 12px;
  color: #555;
}

/* Remove link */
.mcc-mini-cart-item .remove {
  position: absolute;
  right: 0;
  top: 10px;
  color: #999;
  font-size: 18px;
  text-decoration: none;
}
.mcc-mini-cart-item .remove:hover {
  color: #00AEEF;
}

/* Totals + buttons */
.mcc-mini-cart-subtotal {
  padding: 12px 0;
  border-top: 1px solid #E0E0E0;
  font-size: 15px;
}
.mcc-mini-cart-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.mcc-mini-cart-buttons .button {
  flex: 1;
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}
.mcc-view-cart {
  background: #f5f5f5;
  color: #1A1A1A;
}
.mcc-checkout {
  background: #00AEEF;
  color: #fff;
}
.mcc-checkout:hover {
  background: #0095d6;
}
.mcc-mini-cart-empty {
  padding: 15px;
  text-align: center;
  color: #777;
}

/* 📱 Mobile adjustments (match browse-card feel) */
@media (max-width: 768px) {
  .mcc-mini-cart-list {
    max-height: 50vh; /* scrollable if lots of items */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mcc-mini-cart-item {
    padding: 8px 0;
  }
  .mcc-mini-cart-thumb img {
    width: 48px;
    height: 48px;
  }
  .mcc-mini-cart-title {
    font-size: 13px;
  }
  .mcc-mini-cart-qty {
    font-size: 12px;
  }

  .mcc-mini-cart-buttons {
    flex-direction: column; /* stack buttons */
  }
  .mcc-mini-cart-buttons .button {
    font-size: 14px;
    padding: 12px;
  }
}
/* ================================
   🛒 Mini-Cart Dropdown – Compact Boutique Version
   ================================ */
.mini-cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 260px;              /* ✅ narrower */
  max-height: 60vh;          /* ✅ capped height */
  overflow-y: auto;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
  z-index: 1000;
}

/* Show when active */
.mini-cart-dropdown.active {
  display: block;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .mini-cart-dropdown {
    width: 85vw;             /* ✅ doesn’t dominate */
    max-width: 300px;        /* ✅ capped even if screen is wide */
    right: 10px;             /* ✅ a bit inset */
    top: 110%;               /* ✅ drop just under icon */
    max-height: 50vh;        /* ✅ half-screen, not full */
    padding: 10px;
  }
}
/* ================================
   📱 Mobile Search Slide-Down
   ================================ */
@media screen and (max-width: 768px) {
  .mobile-search-slide {
    display: none;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E0E0E0;
    padding: 10px 12px;
    box-sizing: border-box;
    animation: slideDown 0.25s ease forwards;
  }

  .mobile-search-slide.active {
    display: block;
  }

  .mobile-search-slide form {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-search-slide .search-field {
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    outline: none;
  }

  .mobile-search-slide .search-field:focus {
    border-color: #00AEEF;
    box-shadow: 0 0 0 1px #00AEEF;
  }

  .mobile-search-slide .search-submit {
    background: #00AEEF;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-search-slide .search-submit svg {
    fill: #fff;
    width: 18px;
    height: 18px;
  }
}

/* 🔽 Slide animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile search hidden by default (fallback) */
.mobile-search-slide {
  display: none;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-search-slide.active {
  display: block;
}

/* ================================
   📱 Mobile Header Final Alignment
   ================================ */
@media (max-width: 768px) {
  /* Right-hand group: Browse + Icons */
  .mobile-header .mobile-right {
    display: flex;
    align-items: center;       /* vertical centering */
    justify-content: flex-end; /* push to right edge */
    gap: 12px;                 /* space between Browse and icons group */
  }

  /* Browse button */
  .mobile-header .mobile-browse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    border-radius: 6px;
    background: #00AEEF;
    color: #fff;
    margin: 0;
  }

  /* Icon group (search + cart) */
  .mobile-header .mobile-icons {
    display: flex;
    align-items: center;
    gap: 6px; /* tight spacing */
    margin: 0;
  }

  /* Search + Cart buttons */
  .mobile-header .mobile-search-toggle,
  .mobile-header .header-cart .cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px; /* keeps them equal */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  /* Feather icons */
  .mobile-header .mobile-icons svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.2;
    color: #444;
  }

  /* Cart wrapper fix */
  .mobile-header #mcc-header-cart {
    position: static !important; /* stops floating to the edge */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Cart bubble */
  .mobile-header .header-cart .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FF4081;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 50%;
  }

  /* Hamburger cleanup */
  .mobile-header .header-hamburger {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Remove thin divider line */
  .mobile-header-bar::after {
    display: none !important;
  }
}
/* ============================
   Mobile Profile Dropdown
   ============================ */
.mobile-profile {
  position: relative;
  display: inline-block;
}

.mobile-profile .profile-toggle {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-profile .profile-toggle svg {
  stroke: #1A1A1A; /* dark boutique text color */
  width: 22px;
  height: 22px;
}

/* Dropdown box */
.mobile-profile .profile-dropdown {
  position: absolute;
  top: 120%; /* drop just below icon */
  right: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 8px 0;
  min-width: 150px;
  display: none; /* hidden by default */
  z-index: 9999;
}

/* Show when active */
.mobile-profile .profile-dropdown.active {
  display: block;
  animation: fadeIn 0.15s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Links inside dropdown */
.mobile-profile .profile-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-profile .profile-dropdown a:hover {
  background: #FF4081; /* boutique accent */
  color: #fff;
}
/* 🔹 Browse All link in mobile menu */
.mobile-nav-list .browse-all {
  display: block;
  font-weight: 600;          /* bolder text */
  color: #00AEEF;            /* OnlyFans blue */
  padding: 12px 15px;
  border-bottom: 1px solid #E0E0E0;
}

.mobile-nav-list .browse-all:hover {
  background-color: #F7F9FB; /* subtle hover */
  color: #0066CC;            /* darker blue hover */
}
/* 🔹 Cart count badge color */
.header-cart .cart-count {
  background-color: #00AEEF !important;
  color: #fff !important; /* keep text white */
}
/* Mobile cart dropdown remove link styling */
@media (max-width: 768px) {
  .woocommerce-mini-cart a.remove {
    font-size: 14px;
    color: #cc0000; /* red text for emphasis */
    text-decoration: underline;
  }
}
* Mobile: show "Remove" instead of × in mini cart */
@media (max-width: 768px) {
  .mcc-mini-cart-item .remove {
    font-size: 14px;        /* readable text */
    color: #00AEEF;         /* brand blue */
    width: auto;
    height: auto;
    text-indent: 0;         /* reset any hiding */
  }

  .mcc-mini-cart-item .remove::before {
    content: "Remove";
    font-weight: 600;
  }

  .mcc-mini-cart-item .remove {
    font-size: 0; /* hide the original × text */
  }
}
/* ================================
   ✅ Font Change → Lato
   ================================ */

/* Import Lato from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');

/* Apply globally */
body,
.browse-item-title,
.browse-item-creator,
.browse-card,
.browse-sort-wrapper,
.mcc-blue-bar,
button,
input,
select {
  font-family: 'Lato', sans-serif !important;
}
/* ================================
   📱 Final fix for creators page
   ================================ */
@media screen and (max-width: 768px) {
  /* Kill stretch in the grid */
  .creators-page .browse-grid {
    align-items: start !important;
  }

  /* Force wrapper + card to shrink */
  .creators-page .browse-item-wrapper {
    display: block !important;
    height: auto !important;
  }
  .creators-page .browse-card {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
  }
}
/* ================================
   📱 Creators images same as Browse
   ================================ */
@media screen and (max-width: 768px) {
  /* Image wrapper (the <a>) controls size */
  .creators-page .browse-card > a {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4 / 4.5 !important; /* same ratio as browse */
    overflow: hidden !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
  }

  /* Image only fills wrapper, no ratio */
  .creators-page .browse-card > a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;  /* crop instead of stretch */
    object-position: center !important;
    display: block !important;
  }
}
/* ================================
   📱 Creators Verified label alignment
   ================================ */
@media screen and (max-width: 768px) {
  .creators-page h4.browse-item-creator {
    text-align: left !important;
    margin-left: 2px !important; /* tiny breathing room */
  }
}
/* ================================
   📱 Creators page: make creator names black
   ================================ */
@media screen and (max-width: 768px) {
  .creators-page .browse-item-title a {
    color: #1A1A1A !important;  /* clean black */
  }
}
/* 📱 Disable hover state for creator names on mobile */
@media screen and (max-width: 768px) {
  .creators-page .browse-item-title a:hover {
    color: #1A1A1A !important; /* stays black, no hover change */
  }
}
/* 📱 Disable hover for Verified label on mobile */
@media screen and (max-width: 768px) {
  .creators-page h4.browse-item-creator {
    color: #00AEEF !important; /* OnlyFans blue */
  }
  .creators-page h4.browse-item-creator:hover {
    color: #00AEEF !important; /* no hover change */
  }
}
/* ================================
   📱 Mobile Fixes: Landing Page
   ================================ */
@media screen and (max-width: 768px) {

  /* 🔹 Featured Creators Grid */
  .landing-creators .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    box-sizing: border-box;
  }

  .landing-creators .browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px !important;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  /* Creator images */
  .landing-creators .browse-card > a {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .landing-creators .browse-card > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Verified/Featured label */
  .landing-creators h4.browse-item-creator {
    text-align: left !important;
    color: #00AEEF !important;
    margin: 4px 0;
  }

  /* Creator name */
  .landing-creators .browse-item-title {
    margin: 0;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important; /* black */
  }
  .landing-creators .browse-item-title a {
    color: inherit !important;
    text-decoration: none !important;
  }

  /* Hide stretched View Creator button */
  .landing-creators .view-btn {
    display: none !important;
  }

  /* 🔹 Top Categories Grid */
  .landing-top-picks .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    margin-top: 16px !important;
    box-sizing: border-box;
  }

  .landing-top-picks .browse-card.category-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
  }

  /* Category images */
  .landing-top-picks .browse-card.category-card a {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .landing-top-picks .browse-card.category-card a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Category titles under image (black, like creators) */
  .landing-top-picks .browse-card.category-card .browse-item-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    margin: 0;
    text-align: center;
    line-height: 1.3;
  }
  .landing-top-picks .browse-card.category-card .browse-item-title a {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none; /* disables hover/overlay effect */
  }
}
/* ✅ Force hero text back to white */
.landing-hero .hero-title,
.landing-hero .hero-subtitle,
.landing-hero .trust-mini {
  color: #FFFFFF !important;
}
/* ================================
   💻 Desktop (default)
   ================================ */
.landing-hero {
  background: linear-gradient(135deg, #00AEEF 0%, #0066CC 100%); /* desktop gradient */
  color: #FFFFFF;
  padding: 80px 40px;
  text-align: center;
}
.landing-hero .hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.landing-hero .hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}
.landing-hero .hero-btn {
  background: #FF4081;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
}
.landing-hero .trust-mini {
  margin-top: 16px;
  font-size: 14px;
}

/* ================================
   📱 Mobile Fixes: Landing Page
   ================================ */
@media screen and (max-width: 768px) {

  /* 🔹 Hero Section */
  .landing-hero {
    background: linear-gradient(135deg, #FDFEFF 0%, #F2FAFD 100%) !important;
    color: #1A1A1A !important;
    padding: 28px 16px !important;
    text-align: center !important;
  }
  .landing-hero .hero-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
  }
  .landing-hero .hero-subtitle {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    color: #444 !important;
  }
  .landing-hero .hero-btn {
    background: #00AEEF !important;
    font-size: 14px !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
  }
  .landing-hero .trust-mini {
    font-size: 12px !important;
    margin-top: 6px !important;
    color: #666 !important;
  }

  /* 🔹 Section Titles */
  .section-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 20px 0 12px 0 !important;
  }

  /* 🔹 Featured Creators Grid */
  .landing-creators .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    box-sizing: border-box;
  }
  .landing-creators .browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px !important;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .landing-creators .browse-card > a {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .landing-creators .browse-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .landing-creators h4.browse-item-creator {
    text-align: left !important;
    font-size: 11px !important;
    margin: 4px 0;
    color: #00AEEF !important;
  }
  .landing-creators .browse-item-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0;
    color: #1A1A1A !important;
  }
  .landing-creators .view-btn {
    display: none !important;
  }
  .landing-creators .view-all-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    display: inline-block !important;
    margin-top: 14px !important;
  }

  /* 🔹 Top Categories Grid */
  .landing-top-picks .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    margin-top: 16px !important;
    box-sizing: border-box;
  }
  .landing-top-picks .browse-card.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px !important;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
  }
  .landing-top-picks .browse-card.category-card a {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .landing-top-picks .browse-card.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .landing-top-picks .browse-card.category-card .browse-item-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    display: block !important;
  }
  .landing-top-picks .browse-card.category-card .browse-item-title a {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
  }

  /* 🔹 How It Works */
  .landing-how .how-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 12px !important;
  }
  .landing-how .how-step {
    text-align: center;
  }
  .landing-how .how-step h3 {
    font-size: 14px !important;
    margin: 8px 0 4px 0 !important;
  }
  .landing-how .how-step p {
    font-size: 13px !important;
    margin: 0 0 4px 0 !important;
  }
  .landing-how .trust-tick {
    font-size: 12px !important;
    color: #00AEEF !important;
  }

  /* 🔹 Final CTA */
  .landing-cta {
    padding: 30px 16px !important;
    text-align: center !important;
    background: #f9f9f9 !important;
    border-radius: 8px;
    margin: 20px 8px !important;
  }
  .landing-cta h2 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
  }
  .landing-cta .trust-tagline {
    font-size: 13px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }
  .landing-cta .hero-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
  }
}
/* ================================
   📱 Mobile: Category Titles Always Visible
   ================================ */
@media screen and (max-width: 768px) {
  .landing-top-picks .browse-card.category-card .browse-item-title {
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    background: none !important;
    transform: none !important;
    display: block !important;
    margin-top: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    text-align: center !important;
  }

  .landing-top-picks .browse-card.category-card .browse-item-title a {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important; /* stops hover overlay */
  }

  /* Kill desktop hover overlay on mobile */
  .landing-top-picks .browse-card.category-card:hover .browse-item-title {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
/* ================================
   📱 Mobile: Kill jumpy effects
   ================================ */
@media screen and (max-width: 768px) {
  /* Disable hover lift/shadows */
  .browse-card,
  .landing-top-picks .browse-card.category-card,
  .landing-creators .browse-card {
    transform: none !important;
    transition: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
  }

  /* Disable hover color changes */
  .browse-item-creator a:hover,
  .landing-top-picks .browse-card.category-card:hover .browse-item-title {
    color: inherit !important;
  }

  /* Make sure aspect-ratio images don’t cause layout jumps */
  .browse-card img,
  .landing-top-picks .browse-card.category-card img,
  .landing-creators .browse-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  /* Remove sticky/overflow glitches */
  .browse-grid,
  .landing-top-picks .browse-grid,
  .landing-creators .browse-grid {
    overflow: visible !important;
  }
}
/* ================================
   📱 Mobile: Remove tap/outline everywhere
   ================================ */
@media screen and (max-width: 768px) {
  a, button, input, select, textarea,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .browse-card img,
  .browse-item-wrapper img {
    outline: none !important;
    box-shadow: none !important;
  }

  /* 🔹 Kill grey/blue overlay highlight on tap */
  a, button, img, .browse-card, .woocommerce a.button {
    -webkit-tap-highlight-color: transparent !important;
  }

  /* 🔹 Also remove any default focus borders */
  a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
  }
}
/* ================================
   📱 Mobile: How It Works (smaller + tighter)
   ================================ */
@media screen and (max-width: 768px) {
  .landing-how .how-steps {
    display: flex;
    flex-direction: column;
    gap: 14px; /* smaller spacing */
    padding: 0 10px !important;
  }

  .landing-how .how-step {
    text-align: center;
    padding: 10px 0; /* less padding inside */
  }

  .landing-how .how-icon svg {
    width: 40px !important;   /* smaller icons */
    height: 40px !important;
    margin-bottom: 6px;
  }

  .landing-how .how-step h3 {
    font-size: 13px !important;
    margin: 4px 0 2px 0 !important;
    font-weight: 600 !important;
  }

  .landing-how .how-step p {
    font-size: 12px !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.3;
  }

  .landing-how .trust-tick {
    font-size: 11px !important;
    color: #00AEEF !important;
  }
}
/* ================================
   📱 Mobile Styling for single-creator.php
   ================================ */
@media (max-width: 768px) {

  /* ==== Creator Banner ==== */
  .creator-banner {
    width: 100vw;              /* full viewport width */
    margin: 0;                 /* no outer gaps */
    padding: 15px;
    border-radius: 0;          /* remove rounded edges */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;        /* kill container limits */
    margin-right: -50vw;
    box-sizing: border-box;
    background: #fff;
  }

  .creator-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .creator-banner .creator-photo {
    flex: 0 0 90px;
    max-width: 90px;
  }
  .creator-banner .creator-photo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
  }

  .creator-banner .creator-info {
    flex: 1;
    text-align: left;
  }

  .creator-banner .creator-name {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px 0;
  }
  .creator-banner .creator-verified-badge {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
  }

  .creator-banner .creator-bio {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #444;
  }

  .creator-banner .creator-link {
    display: inline-block;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #00AEEF;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  /* ==== Inventory Grid (2 per row) ==== */
  .creator-inventory .browse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .creator-inventory .browse-item-wrapper {
    width: 100%;
    margin: 0;
  }
  .creator-inventory .browse-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  .creator-inventory .browse-item-title,
  .creator-inventory .price,
  .creator-inventory .view-btn {
    text-align: center;
    display: block;
  }

  /* Hide view buttons */
  .creator-inventory .view-btn {
    display: none !important;
  }

  /* ==== Past Collection Badge ==== */
  .past-badge {
    top: 4px;
    left: 4px;
    font-size: 10px !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    background: rgba(26, 26, 26, 0.8) !important;
    line-height: 1.1 !important;
  }

  /* ==== Section Titles ==== */
  .creator-inventory .section-title {
    text-align: left;
    font-size: 16px;
    margin: 20px 0 12px 0;
  }
}
/* 📱 Align section titles left on mobile */
@media (max-width: 768px) {
  .creator-inventory .section-title {
    text-align: left !important;
    font-size: 16px;
    margin: 20px 0 12px 0;
  }
}
/* 📱 Creator page: stretch cards evenly */
@media (max-width: 768px) {
  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 equal columns */
    gap: 12px !important; /* space between cards */
    width: 100% !important;
  }

  .creator-inventory .browse-item-wrapper {
    width: 100% !important;
  }

  .creator-inventory .browse-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .creator-inventory .browse-card img {
    width: 100% !important;
    height: auto !important;
    border-radius: 6px !important;
  }
}
/* 📱 Make creator inventory cards same size as browse page cards */
@media (max-width: 768px) {
  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 per row */
    gap: 16px !important;
    width: 100% !important;
  }

  .creator-inventory .browse-item-wrapper {
    width: 100% !important;
    margin: 0 !important;
  }

  .creator-inventory .browse-card {
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .creator-inventory .browse-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 6px !important;
  }
}
/* 📱 Match Creator Page Cards to Browse Page */
@media screen and (max-width: 768px) {
  /* 🔹 Grid */
  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
    margin-top: 16px !important;
    box-sizing: border-box !important;
  }

  .creator-inventory .browse-item-wrapper,
  .creator-inventory .browse-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }

  /* 🔹 Card styling (same as Browse) */
  .creator-inventory .browse-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 10px 10px 8px 10px !important;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    min-height: auto !important;
  }

  /* 🔹 Images */
  .creator-inventory .browse-card img {
    width: 100% !important;
    aspect-ratio: 4 / 4.5 !important;  /* same as Browse */
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 6px;
    margin-bottom: 8px !important;
    display: block !important;
  }

  /* 🔹 Title */
  .creator-inventory .browse-item-title {
    font-size: 12.5px !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.3 !important;
  }

  /* 🔹 Price */
  .creator-inventory .price {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #1A1A1A !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* 🔹 Hide View Button */
  .creator-inventory .view-btn {
    display: none !important;
  }
}
/* 📱 Force Creator Page Cards to match Browse Page cards */
@media screen and (max-width: 768px) {
  /* Match container padding + width */
  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;      /* same as browse */
    margin: 16px auto 0 auto !important;
    max-width: 100% !important;     /* stretch fully */
    box-sizing: border-box !important;
  }

  /* Force wrapper + card to expand */
  .creator-inventory .browse-item-wrapper,
  .creator-inventory .browse-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }

  /* Card styling identical to Browse */
  .creator-inventory .browse-card {
    background: #fff !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 8px !important;
    padding: 10px 10px 8px 10px !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Images */
  .creator-inventory .browse-card img {
    width: 100% !important;
    aspect-ratio: 4 / 4.5 !important;  /* same ratio as Browse */
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
    display: block !important;
  }

  /* Title */
  .creator-inventory .browse-item-title {
    font-size: 12.5px !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.3 !important;
  }

  /* Price */
  .creator-inventory .price {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #1A1A1A !important;
  }

  /* Hide View Button */
  .creator-inventory .view-btn {
    display: none !important;
  }
}
/* 📱 Creator page grids - full width like Browse */
@media screen and (max-width: 768px) {
  .creator-inventory {
    width: 100vw !important;          /* stretch like Browse */
    margin: 0 auto !important;        /* center section */
    box-sizing: border-box !important;
  }

  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;        /* match Browse */
    margin: 16px 0 0 0 !important;
    box-sizing: border-box !important;
  }

  .creator-inventory .browse-item-wrapper,
  .creator-inventory .browse-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* 📱 Fix white space on creator grids */
@media screen and (max-width: 768px) {
  /* Stretch section container full width */
  .creator-inventory {
    width: 100vw !important;
    margin: 0 !important;             /* no offset shifting */
    box-sizing: border-box !important;
  }

  /* Make grid use full width */
  .creator-inventory .browse-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;        /* controlled breathing room */
    margin: 0 auto !important;        /* keeps it centered */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Cards fill column space */
  .creator-inventory .browse-item-wrapper,
  .creator-inventory .browse-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* 📱 Creator page full-width section & grid */
@media screen and (max-width: 768px) {
  /* Break .creator-inventory out of WP container padding */
  .creator-inventory {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;  /* center it */
    margin-right: calc(-50vw + 50%) !important; /* cancel parent padding */
    box-sizing: border-box !important;
  }

  /* Section titles flush with grid */
  .creator-inventory .section-title {
    padding-left: 8px !important;  /* same as grid */
    padding-right: 8px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  /* Grid itself */
  .creator-inventory .browse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;   /* matches Browse */
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Cards */
  .creator-inventory .browse-item-wrapper,
  .creator-inventory .browse-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .creator-banner {
    background: #FAFAFA !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    border-radius: 0 !important; /* keep it full bleed */
  }

  .creator-banner .creator-name {
    color: #1A1A1A !important;
  }

  .creator-banner .creator-link {
    background: #00AEEF !important; /* keep CTA blue */
    color: #fff !important;
  }
}
/* 📱 Stretch "Message from X" section full width */
@media (max-width: 768px) {
  .creator-premium {   /* this matches your bottom section */
    width: 100vw !important;
    margin: 0 !important;
    padding: 20px !important;
    border-radius: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
  }
}
/* 📱 Stretch "Message from X" section full width */
@media (max-width: 768px) {
  .creator-premium {
    width: 100vw !important;
    margin: 24px 0 0 0 !important;  /* 👈 adds space above */
    padding: 20px !important;
    border-radius: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
  }
} 
/* ================================
   📱 Mobile Styling for single-product.php
   ================================ */
@media screen and (max-width: 768px) {

  /* 🔹 Main container stacks vertically */
  .mcc-item-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 12px !important;
    margin-top: 16px !important;
  }

  /* 🔹 Reorder sections */
  .mcc-item-image { order: 1; }
  .mcc-item-info  { order: 2; }
  .creator-box    { order: 3; }

  /* 🔹 Product image full width */
  .mcc-item-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  /* 🔹 Creator box full-width edge-to-edge */
  .mcc-item-info .creator-box {
    width: 100vw !important;             /* stretch across screen */
    margin-left: -12px !important;       /* cancel parent padding */
    margin-right: -12px !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;         /* flush edges */
    padding: 14px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .creator-box img {
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0 !important;
  }
  .creator-details { flex: 1 !important; }
  .creator-details h3 {
    font-size: 16px !important;
    margin: 0 0 4px 0 !important;
  }
  .creator-details .verified-label {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    display: block !important;
  }
  .creator-details .view-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  /* 🔹 Title + description */
  .mcc-item-info h2 {
    font-size: 18px !important;
    margin: 12px 0 8px 0 !important;
  }
  .mcc-desc {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  /* 🔹 Price */
  .mcc-price {
    font-size: 16px !important;
    margin: 8px 0 12px 0 !important;
  }

  /* 🔹 Add-ons */
  .mcc-addons h3 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }
  .mcc-addon {
    padding: 10px 12px !important;
    font-size: 14px !important;
    flex-direction: row !important;
  }
  .mcc-addon span { font-size: 13px !important; }
  .mcc-addon .mcc-btn {
    font-size: 12px !important;
    padding: 5px 10px !important;
    min-width: auto !important;
  }

  /* 🔹 Total box */
  .mcc-total-box {
    font-size: 13px !important;
    padding: 8px 10px !important;
  }

  /* 🔹 Buttons */
  .single_add_to_cart_button,
  .checkout-now-button {
    font-size: 15px !important;
    padding: 12px !important;
    border-radius: 6px !important;
  }
  .continue-shopping-link {
    font-size: 13px !important;
    margin-top: 8px !important;
  }

  /* 🔹 Item details */
  .mcc-details h3 {
    font-size: 15px !important;
    margin-top: 20px !important;
  }
  .mcc-details p {
    font-size: 13px !important;
    margin: 4px 0 !important;
  }

  /* 🔹 More from this creator */
  .mcc-more-creator-block h3 {
    font-size: 15px !important;
    margin-bottom: 12px !important;
  }
  .mcc-more-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .mcc-more-item h4 {
    font-size: 13px !important;
    margin: 6px 0 3px 0 !important;
  }
  .mcc-more-item .price { font-size: 12px !important; }
}
@media screen and (max-width: 768px) {
  .mcc-item-info .creator-box {
    margin-left: auto !important;   /* push away from left */
    margin-right: auto !important;  /* push away from right */
    width: auto !important;         /* shrink to fit content */
    max-width: 95% !important;      /* keep it tidy on small screens */
  }
}
@media screen and (max-width: 768px) {
  .mcc-item-info .creator-box {
    margin-left: auto !important;   /* center horizontally */
    margin-right: auto !important;
    width: 100% !important;         /* take full width of container */
    max-width: 95% !important;      /* leave tiny breathing room */
    box-sizing: border-box !important;
  }
}
@media screen and (max-width: 768px) {
  .mcc-item-info .creator-box {
    margin-top: 20px !important;   /* add gap below Item Details */
    margin-bottom: 16px !important; /* keep spacing before "More from this Creator" */
    width: 100% !important;
    max-width: 95% !important;     /* centered card look */
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}
/* ================================
   📱 Mobile Styling for Signup Pages
   ================================ */
@media screen and (max-width: 768px) {

  .signup-wrapper {
    padding: 30px 15px; /* less padding on smaller screens */
    align-items: center; /* keep card centered */
  }

  .signup-card {
    padding: 20px 15px;
    max-width: 100%;
    border-radius: 8px;
  }

  .signup-logo img {
    width: 140px;
    margin-bottom: 15px;
  }

  .signup-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .signup-instruction {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .signup-card input,
  .signup-card select,
  .signup-card textarea {
    font-size: 14px !important;
    padding: 10px !important;
    margin-bottom: 14px !important;
  }

  .signup-card input[type="submit"],
  .signup-card .ur-submit-button {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }

  .signup-links {
    font-size: 13px;
    margin-top: 18px;
  }

  .signup-links .back-home {
    font-size: 12px;
  }
}
/* ================================
   📱 Mobile Styling – Signup Pages
   ================================ */
@media screen and (max-width: 768px) {

  .signup-wrapper {
    padding: 20px 10px; /* less padding top/bottom */
    align-items: flex-start; /* stop stretching */
  }

  .signup-card {
    padding: 20px 15px; /* reduce internal padding */
    border-radius: 8px;
    max-width: 100%;
  }

  .signup-logo img {
    width: 120px; /* smaller logo */
    margin-bottom: 12px;
  }

  .signup-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .signup-instruction {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* tighten input spacing */
  .signup-card input,
  .signup-card select,
  .signup-card textarea {
    font-size: 14px !important;
    padding: 10px !important;
    margin-bottom: 12px !important;
  }

  /* smaller buttons */
  .signup-card input[type="submit"],
  .signup-card .ur-submit-button {
    font-size: 14px !important;
    padding: 10px !important;
  }

  /* footer links spacing */
  .signup-links {
    margin-top: 15px;
    font-size: 13px;
  }

  .signup-links .back-home {
    font-size: 12px;
  }
}
/* === FINAL: Creator Dashboard mobile + stats cleanup (1-per-row scroll) === */

body.page-id-7118 .dashboard-toggle {
  display: none;
}

@media (max-width: 900px) {
  body.page-id-7118 .dashboard-toggle {
    display: block;
  }
}

body.page-id-7118 .welcome-banner {
  margin-left: -30px;
  margin-right: -30px;
  border-radius: 0;
}

@media (max-width: 900px) {
  body.page-id-7118 .welcome-banner {
    margin-left: -30px;
    margin-right: -30px;
    width: auto;
    border-radius: 0;
    text-align: left;
  }
  body.page-id-7118 .creator-banner-photo {
    right: 15px;
  }
}

@media (max-width: 600px) {
  body.page-id-7118 .welcome-banner h2 { font-size: 18px; }
  body.page-id-7118 .welcome-banner p { font-size: 14px; }
  body.page-id-7118 .creator-banner-photo { width: 90px; height: 90px; }
}

body.page-id-7118 .dashboard-container {
  max-width: 100%;
  overflow-x: hidden;
}
body.page-id-7118 {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  body.page-id-7118 .stats-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 12px;
  }
  body.page-id-7118 .stats-grid::-webkit-scrollbar { display: none; }
  body.page-id-7118 .stat-box {
    flex: 0 0 80%;
    min-width: 200px;
    max-width: 240px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.25s ease;
  }
  body.page-id-7118 .stat-box:active { transform: scale(0.98); }
  body.page-id-7118 .stat-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #00AEEF;
    line-height: 1.2;
  }
  body.page-id-7118 .stat-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }
}

/* ================================
   📱 Mobile Dashboard Recent Items
   Final compact version
   ================================ */
@media (max-width: 900px) {
  body.page-id-7118 .recent-grid {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 8px 12px 8px;
  }
  body.page-id-7118 .recent-grid::-webkit-scrollbar { display: none; }

  body.page-id-7118 .recent-card {
    flex: 0 0 70%;
    min-width: 190px;
    max-width: 230px;
    scroll-snap-align: start;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto !important;
  }

  body.page-id-7118 .recent-card .card-thumb {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
  }
  body.page-id-7118 .recent-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  body.page-id-7118 .recent-card h4 {
    font-size: 11.5px;
    margin: 0 0 2px 0;
    line-height: 1.3;
  }
  body.page-id-7118 .recent-card .price {
    font-size: 12.5px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 3px 0;
  }

  body.page-id-7118 .recent-card .views {
    font-size: 11px;
    color: #666;
    margin: 2px 0;
  }
  body.page-id-7118 .recent-card .pending-label,
  body.page-id-7118 .recent-card .live-label,
  body.page-id-7118 .recent-card .soldout-label {
    font-size: 10.5px;
    font-weight: 600;
    margin-top: 2px;
  }

  body.page-id-7118 .recent-card .view-btn {
    display: inline-block !important;
    font-size: 11.5px !important;
    padding: 5px 9px !important;
    margin-top: 5px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
  }

  body.page-id-7118 .recent-card a.view-btn[href*="edit-item"] {
    background: #00AEEF !important;
    color: #fff !important;
  }
  body.page-id-7118 .recent-card a.view-btn[href*="duplicate_product"] {
    background: #f2f2f2 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
  }
}

/* ================================
   📱 My Items – Mobile (3-per-row scroll, dashboard mini style)
   ================================ */
@media (max-width: 900px) {
  body.page-id-7122 .browse-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 8px 12px 8px;
  }
  body.page-id-7122 .browse-grid::-webkit-scrollbar { display: none; }

  body.page-id-7122 .browse-card {
    flex: 0 0 30%;
    min-width: 120px;
    max-width: 150px;
    scroll-snap-align: start;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  body.page-id-7122 .browse-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 4px;
  }

  body.page-id-7122 .browse-card h3 {
    font-size: 11px;
    margin: 0 0 2px;
    line-height: 1.3;
  }
  body.page-id-7122 .browse-card .price {
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 2px;
  }

  body.page-id-7122 .browse-card p {
    font-size: 10px;
    margin: 2px 0;
    color: #666;
  }

  body.page-id-7122 .browse-card .view-btn,
  body.page-id-7122 .browse-card form button {
    font-size: 10.5px !important;
    padding: 4px 7px !important;
    margin-top: 4px !important;
    border-radius: 4px !important;
    display: inline-block !important;
  }

  body.page-id-7122 .browse-card a.view-btn[href*="edit-item"] {
    background: #00AEEF !important;
    color: #fff !important;
  }
  body.page-id-7122 .browse-card a.view-btn[href*="duplicate_product"] {
    background: #f2f2f2 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
  }
  body.page-id-7122 .browse-card form button {
    background: #cc0000 !important;
    color: #fff !important;
    border: none !important;
  }
}

@media (max-width: 900px) {
  body.page-id-7122 .browse-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 8px 12px 8px;
  }
  body.page-id-7122 .browse-grid::-webkit-scrollbar { display: none; }

  body.page-id-7122 .browse-item-wrapper {
    flex: 0 0 30%;
    min-width: 120px;
    max-width: 150px;
    scroll-snap-align: start;
  }

  body.page-id-7122 .browse-card {
    height: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body.page-id-7122 .browse-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px;
    padding: 0 8px 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  body.page-id-7122 .browse-grid::-webkit-scrollbar { display: none; }

  body.page-id-7122 .browse-item-wrapper {
    flex: 0 0 70% !important;
    max-width: 70% !important;
    scroll-snap-align: start;
  }

  body.page-id-7122 .browse-card {
    width: 100%;
    height: auto;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body.page-id-7122 .browse-card a.view-btn[href*="edit-item"] {
    display: inline-block !important;
    min-width: 100px;
    padding: 6px 12px !important;
    text-align: center;
    background: #00AEEF !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
  }
}
@media (max-width: 900px) {
  body.page-id-7122 .browse-card a.view-btn[href*="edit-item"] {
    display: inline-block !important;
    width: auto !important;
    padding: 6px 12px !important;
    text-align: center;
    background: #00AEEF !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
  }
}
body.page-id-7122 .browse-card a.view-btn[href*="edit-item"] {
  padding: 6px 12px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  min-width: auto !important;
}

@media (max-width: 900px) {
  body.page-id-7122 .mcc-blue-bar {
    margin-left: -30px;
    margin-right: -30px;
    border-radius: 0;
    width: auto;
    padding: 15px 20px;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    text-align: left;
  }
}

/* ================================
   📦 Orders grid responsive behavior
   ================================ */
body.page-id-7124 .orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

@media (max-width: 500px) {
  body.page-id-7124 .orders-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-7124 .order-card {
    padding: 12px 15px;
    font-size: 13px;
  }
  body.page-id-7124 .order-card h3 { font-size: 16px; }
  body.page-id-7124 .order-card p {
    font-size: 13px;
    margin: 4px 0;
  }

  body.page-id-7124 .ship-btn,
  body.page-id-7124 .toggle-buyer-details {
    font-size: 13px;
    padding: 7px 12px;
  }
  body.page-id-7124 .tracking-form input[type="text"] {
    padding: 8px;
    font-size: 13px;
  }
}

@media (min-width: 501px) and (max-width: 900px) {
  body.page-id-7124 .orders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-id-7124 .order-card {
    padding: 14px 18px;
    font-size: 14px;
  }
  body.page-id-7124 .order-card h3 { font-size: 17px; }
}

/* ================================
   📤 Upload Item Form Mobile Tweaks
   ================================ */
@media (max-width: 600px) {
  body.page-id-7120 .upload-form-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  body.page-id-7120 .dashboard-main {
    padding: 15px !important;
  }

  body.page-id-7120 .upload-form-wrapper h2 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
    text-align: center;
  }

  body.page-id-7120 .upload-form label {
    font-size: 14px;
  }
  body.page-id-7120 .upload-form input[type=text],
  body.page-id-7120 .upload-form input[type=number],
  body.page-id-7120 .upload-form textarea,
  body.page-id-7120 .upload-form input[type=file] {
    font-size: 15px !important;
    padding: 12px !important;
    margin-bottom: 16px !important;
  }
  body.page-id-7120 .upload-form textarea {
    min-height: 100px;
  }

  body.page-id-7120 .upload-form input[name="product_price"],
  body.page-id-7120 .upload-form input[name$="_price"] {
    font-size: 16px !important;
    height: 44px !important;
  }

  body.page-id-7120 .category-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  body.page-id-7120 .category-checkboxes label {
    font-size: 13px;
    flex: 1 1 45%;
  }

  body.page-id-7120 .addon-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
  }
  body.page-id-7120 .addon-group label { font-size: 13px; }
  body.page-id-7120 .addon-group input[type=text] {
    font-size: 14px;
    padding: 8px;
  }

  body.page-id-7120 .upload-form .mcc-btn,
  body.page-id-7120 .upload-form .cancel-btn {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 !important;
    text-align: center !important;
    font-size: 15px;
    padding: 12px;
  }

  body.page-id-7120 .mcc-blue-bar {
    margin: 0 -15px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    border-radius: 0;
  }
  body.page-id-7120 .mcc-blue-bar .page-title { font-size: 16px; }
  body.page-id-7120 .mcc-blue-bar .breadcrumb {
    margin-top: 6px;
    font-size: 14px;
    word-wrap: break-word;
  }

  body.page-id-7120 .accordion-header {
    background: #fff !important;
    border: none !important;
    color: #1A1A1A !important;
  }
}

@media (min-width: 901px) {
  body.page-id-7120 .accordion-header {
    margin-left: 0 !important;
    padding-left: 0 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    background: none !important;
    border: none !important;
  }
}
@media (min-width: 901px) {
  body.page-id-7120 .accordion-header {
    margin-bottom: 20px !important;
    padding-left: 0 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    background: none !important;
    border: none !important;
  }
}

/* ================================
   👤 My Profile page tweaks
   ================================ */
body.page-id-7126 .dashboard-main .mcc-blue-bar {
  padding: 15px 20px !important;
  border-radius: 6px !important;
  margin-bottom: 30px !important;
  background: linear-gradient(90deg, #00AEEF, #0066CC) !important;
  color: #fff !important;
  min-height: auto !important;
}

@media (max-width: 600px) {
  body.page-id-7126 .mcc-blue-bar {
    margin: 0 -15px !important;
    border-radius: 0 !important;
  }
}

@media (max-width:900px) {
  body.page-id-7126 .welcome-banner {
    border-radius:0;
    margin-left:-30px;
    margin-right:-30px;
    width:calc(100% + 60px);
    padding:15px 20px 15px 20px;
    box-sizing:border-box;
  }
  body.page-id-7126 .welcome-banner h2,
  body.page-id-7126 .welcome-banner p {
    padding-right:100px;
  }
}
/* ================================
   📱 Force dashboard sidebar + toggle bar white
   Across all 5 dashboard pages (mobile + desktop)
   ================================ */
body.page-id-7118 .dashboard-sidebar,
body.page-id-7122 .dashboard-sidebar,
body.page-id-7124 .dashboard-sidebar,
body.page-id-7120 .dashboard-sidebar,
body.page-id-7126 .dashboard-sidebar,
body.page-id-7118 .dashboard-toggle,
body.page-id-7122 .dashboard-toggle,
body.page-id-7124 .dashboard-toggle,
body.page-id-7120 .dashboard-toggle,
body.page-id-7126 .dashboard-toggle {
  background: #fff !important;
  color: #1A1A1A !important;
  border: 1px solid #E0E0E0 !important;
}
/* ================================
   📱 My Items – Stat Boxes (mobile fix)
   Restore horizontal scroll + consistent box shape
   ================================ */
@media (max-width: 900px) {
  body.page-id-7122 .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  body.page-id-7122 .stats-grid::-webkit-scrollbar {
    display: none;
  }

  body.page-id-7122 .stat-box {
    flex: 0 0 80%;          /* swipe one at a time */
    min-width: 200px;
    max-width: 240px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  body.page-id-7122 .stat-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00AEEF;
    margin-bottom: 6px;
  }

  body.page-id-7122 .stat-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }
}
/* 📱 Creator Dashboard – Match stat boxes to My Items card size */
@media (max-width: 900px) {
  body.page-id-7118 .stat-box {
    flex: 0 0 70% !important;
    min-width: 190px !important;
    max-width: 230px !important;
  }
}
/* 📱 Orders page – full-width blue banner */
@media (max-width: 900px) {
  body.page-id-7124 .mcc-blue-bar {
    margin-left: -30px !important;
    margin-right: -30px !important;
    width: auto !important;
    border-radius: 0 !important;
  }
}
/* 📱 My Profile page – full-width blue banner */
@media (max-width: 900px) {
  body.page-id-7126 .mcc-blue-bar {
    margin-left: -30px !important;
    margin-right: -30px !important;
    width: auto !important;
    border-radius: 0 !important;
  }
}
/* === Edit Item page mobile tweaks === */
@media (max-width: 600px) {
  body.page-template-edit-item .upload-form-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  body.page-template-edit-item .dashboard-main {
    padding: 15px !important;
  }

  body.page-template-edit-item .upload-form-wrapper h2 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
    text-align: center;
  }

  body.page-template-edit-item .upload-form label {
    font-size: 14px;
  }

  body.page-template-edit-item .upload-form input[type=text],
  body.page-template-edit-item .upload-form input[type=number],
  body.page-template-edit-item .upload-form textarea,
  body.page-template-edit-item .upload-form input[type=file] {
    font-size: 15px !important;
    padding: 12px !important;
    margin-bottom: 16px !important;
  }

  body.page-template-edit-item .upload-form textarea {
    min-height: 100px;
  }

  body.page-template-edit-item .upload-form input[name="product_price"],
  body.page-template-edit-item .upload-form input[name$="_price"] {
    font-size: 16px !important;
    height: 44px !important;
  }

  /* Categories: two per row */
  body.page-template-edit-item .category-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  body.page-template-edit-item .category-checkboxes label {
    font-size: 13px;
    flex: 1 1 45%;
  }

  /* Add-ons */
  body.page-template-edit-item .addon-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
  }
  body.page-template-edit-item .addon-group label {
    font-size: 13px;
  }
  body.page-template-edit-item .addon-group input[type=text] {
    font-size: 14px;
    padding: 8px;
  }

  /* Buttons full-width */
  body.page-template-edit-item .upload-form .mcc-btn,
  body.page-template-edit-item .upload-form .cancel-btn {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 !important;
    text-align: center !important;
    font-size: 15px;
    padding: 12px;
  }

  /* Blue gradient bar full width */
  body.page-template-edit-item .mcc-blue-bar {
    margin: 0 -15px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #00AEEF, #0066CC);
    color: #fff;
    border-radius: 0;
  }
  body.page-template-edit-item .mcc-blue-bar .page-title {
    font-size: 16px;
  }
  body.page-template-edit-item .mcc-blue-bar .breadcrumb {
    margin-top: 6px;
    font-size: 14px;
    word-wrap: break-word;
  }

  /* Accordion headers */
  body.page-template-edit-item .accordion-header {
    background: #fff !important;
    border: none !important;
    color: #1A1A1A !important;
  }
}
/* ===== Mobile Sidebar Toggle & Accordions White Style ===== */
@media (max-width: 900px) {
  /* Sidebar toggle button */
  .dashboard-toggle {
    background: #ffffff !important; /* white */
    color: #1A1A1A !important;      /* dark text */
    border: 1px solid #E0E0E0 !important;
    padding: 14px 18px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
    cursor: pointer;
    width: 100%;
  }

  .dashboard-toggle:hover {
    background: #f7f7f7 !important;
  }
}

@media (max-width: 600px) {
  /* Accordion headers (Categories, Item Details, Add-ons, etc.) */
  .accordion-header {
    background: #ffffff !important; /* white instead of grey */
    color: #1A1A1A !important;
    border-bottom: 1px solid #E0E0E0 !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    position: relative;
  }

  .accordion-header::after {
    content: "＋";
    position: absolute;
    right: 16px;
    font-size: 18px;
    color: #666; /* subtle */
  }

  .accordion-header.active::after {
    content: "−";
  }

  .accordion-body {
    background: #fff !important;
    padding: 12px 16px !important;
  }
}
/* ===== Consistent Submit & Cancel Buttons ===== */
.upload-form p:last-of-type {
  margin-top: 30px; /* space above buttons */
  display: flex;
  gap: 16px; /* spacing between buttons */
  flex-wrap: wrap; /* stack on very small screens */
}

.upload-form .mcc-btn,
.upload-form .cancel-btn {
  padding: 14px 28px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: background .2s, color .2s;
}

/* Submit (primary) */
.upload-form .mcc-btn {
  background: #00AEEF;
  color: #fff;
  border: none;
}
.upload-form .mcc-btn:hover {
  background: #0066CC;
}

/* Cancel (secondary) */
.upload-form .cancel-btn {
  background: #ccc;
  color: #333;
  text-decoration: none;
  border: none;
}
.upload-form .cancel-btn:hover {
  background: #999;
  color: #fff;
}
/* === Buyer Dashboard Mobile Styling (page-id-7227) === */

/* Hide toggle by default */
body.page-id-7227 .dashboard-toggle {
  display: none;
}

@media (max-width: 900px) {
  /* Show hamburger toggle on mobile */
  body.page-id-7227 .dashboard-toggle {
    display: block;
    width: 100%;
    background: #00AEEF;
    color: #fff;
    border: 0;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  /* Sidebar adjustments */
  body.page-id-7227 .dashboard-sidebar {
    padding: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #E0E0E0;
  }
  body.page-id-7227 .dashboard-sidebar .logo {
    padding: 15px;
    margin: 0;
  }

  /* Collapsible links */
  body.page-id-7227 .dashboard-links {
    display: none;
    flex-direction: column;
  }
  body.page-id-7227 .dashboard-links.active {
    display: flex;
  }
  body.page-id-7227 .dashboard-links a {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }

  /* Banner full-width */
  body.page-id-7227 .welcome-banner {
    margin-left: -30px;
    margin-right: -30px;
    width: auto;
    border-radius: 0;
    text-align: left;
  }

  /* Grid tweaks */
  body.page-id-7227 .recent-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
}

@media (max-width: 600px) {
  /* Banner text smaller */
  body.page-id-7227 .welcome-banner h2 { font-size: 18px; }
  body.page-id-7227 .welcome-banner p { font-size: 14px; }

  /* Recent orders collapse to 1 column */
  body.page-id-7227 .recent-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reorder button full width */
  body.page-id-7227 .reorder-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Prevent sideways scroll */
body.page-id-7227,
body.page-id-7227 .dashboard-container {
  overflow-x: hidden;
}
/* 📱 Mobile tweaks for Recent Orders + Reorder */

/* At narrow screens (<=600px), stack orders */
@media (max-width: 600px) {
  .recent-grid {
    grid-template-columns: 1fr; /* single column */
  }

  .recent-card {
    padding: 12px;
    font-size: 14px;
  }

  .recent-card h4 {
    font-size: 15px;
  }

  .recent-card .price {
    font-size: 13px;
  }

  .recent-card .from {
    font-size: 12px;
  }
}

/* Slim down Reorder section for mobile */
@media (max-width: 600px) {
  .reorder-section .creator-card {
    padding: 10px;
    font-size: 14px;
  }

  .reorder-section h3 {
    font-size: 16px;
  }

  .reorder-section .reorder-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}
/* 📱 Mobile tweaks for My Orders page */
@media (max-width: 600px) {
  .orders-grid {
    grid-template-columns: 1fr; /* stack orders in single column */
  }

  .order-card {
    padding: 12px 15px;
    font-size: 14px;
  }

  .order-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .order-card p {
    font-size: 13px;
    margin: 4px 0;
  }

  .order-items h4 {
    font-size: 14px;
    margin: 8px 0 4px;
  }

  .order-items li {
    font-size: 13px;
    margin: 2px 0;
  }

  .blue-btn {
    font-size: 13px;
    padding: 7px 12px;
    margin-top: 8px;
  }

  .blue-btn.outline {
    margin-top: 6px;
  }
}
/* === Full-width My Orders blue bar on mobile === */
@media (max-width: 900px) {
  .mcc-blue-bar {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ✅ Buyer Orders - Mobile Card Styling */
@media (max-width: 900px) {
  .orders-grid {
    grid-template-columns: 1fr; /* one per row */
    gap: 16px;
  }

  .order-card {
    padding: 14px 16px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  .order-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .order-card p {
    font-size: 13px;
    margin: 4px 0;
  }

  .order-items h4 {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .order-items li {
    font-size: 13px;
    margin: 3px 0;
  }

  .order-card .blue-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-right: 0;
    font-size: 14px;
    padding: 10px;
  }

  .order-card .blue-btn + .blue-btn {
    margin-top: 8px; /* space between stacked buttons */
  }
}
/* ✅ Mobile: align account setting tabs left */
@media (max-width: 900px) {
  .tab-links {
    display: flex !important;
    justify-content: flex-start !important; /* force left alignment */
    align-items: center;
    gap: 12px; /* reduce big spacing */
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tab-links li {
    flex: 0 0 auto;   /* don't stretch */
    scroll-snap-align: start;
  }
}
/* ✅ Force account tabs left-aligned on mobile */
@media (max-width: 900px) {
  .account-tabs .tab-links {
    justify-content: flex-start !important;
    text-align: left;
    padding-left: 0;  /* remove extra gap */
  }
}
/* ✅ Force Account Settings tabs left-aligned on mobile */
@media (max-width: 900px) {
  .account-tabs .tab-links {
    justify-content: flex-start !important;
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    gap: 10px !important;
  }

  .account-tabs .tab-links li {
    flex: 0 0 auto;
    margin: 0 !important;
    scroll-snap-align: start;
  }
}
/* ✅ Fix tab button padding so highlight box doesn’t overlap dots */
@media (max-width: 900px) {
  .account-tabs .tab-links li {
    padding: 6px 10px !important; /* smaller padding around text */
    font-size: 14px;              /* keep text readable */
  }

  .account-tabs .tab-links li.active {
    border-radius: 4px;           /* neat rounded edges */
  }
}
/* ✅ Checkout desktop alignment fix */
.mcc-checkout-wrapper {
  max-width: 1200px;   /* keeps everything inside a centered container */
  margin: 0 auto;      /* centers it horizontally */
  padding: 20px;       /* adds breathing room left & right */
}

.mcc-checkout-columns {
  display: flex;
  justify-content: space-between; /* makes sure columns don’t collapse */
  gap: 30px;                      /* space between left/right cards */
}

.mcc-checkout-customer,
.mcc-checkout-order-review {
  flex: 1;              /* both take equal width */
  min-width: 0;         /* prevents overflow */
}
/* ✅ Stop horizontal scrolling on Checkout (mobile only) */
@media (max-width: 900px) {
  body.woocommerce-checkout {
    overflow-x: hidden !important;
  }

  .mcc-checkout-wrapper,
  .mcc-checkout-columns,
  .mcc-checkout-customer,
  .mcc-checkout-order-review,
  .mcc-checkout-header,
  #oceanwp-cart-sidebar-wrap {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
}
/* ✅ Stop horizontal scroll on checkout (mobile only) */
@media (max-width: 900px) {
  body.woocommerce-checkout {
    overflow-x: hidden !important;
  }

  body.woocommerce-checkout .mcc-checkout-wrapper,
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-checkout .mcc-checkout-columns,
  body.woocommerce-checkout .mcc-checkout-header,
  body.woocommerce-checkout #oceanwp-cart-sidebar-wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }
}
/* ✅ Compact Checkout: Two-column fields on mobile */
@media (max-width: 600px) {
  /* Put first + last name side by side */
  #billing_first_name_field,
  #billing_last_name_field {
    width: 48%;
    display: inline-block;
    vertical-align: top;
  }

  #billing_first_name_field {
    margin-right: 4%;
  }

  /* Optional: also city + postcode */
  #billing_city_field,
  #billing_postcode_field {
    width: 48%;
    display: inline-block;
    vertical-align: top;
  }

  #billing_city_field {
    margin-right: 4%;
  }
}
/* ✅ Mobile "Your Order" with Add-ons under price */
@media (max-width: 600px) {
  .woocommerce-checkout-review-order-table {
    display: block;
    border: none;
    font-size: 14px;
    width: 100%;
  }

  /* Hide default table headers */
  .woocommerce-checkout-review-order-table thead {
    display: none;
  }

  /* Each product row as a card */
  .woocommerce-checkout-review-order-table tr.cart_item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background: #fff;
  }

  /* Product name + image row */
  .woocommerce-checkout-review-order-table td.product-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .woocommerce-checkout-review-order-table td.product-name img {
    max-width: 60px;
    border-radius: 6px;
  }

  /* Quantity stays at the end */
  .woocommerce-checkout-review-order-table td.product-name .product-quantity {
    margin-left: auto;
    font-weight: normal;
  }

  /* Price (always above add-ons) */
  .woocommerce-checkout-review-order-table td.product-total {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
  }

  /* ✅ Add-ons block under price */
  .woocommerce-checkout-review-order-table .wc-item-meta {
    display: block;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
    width: 100%;
  }

  .woocommerce-checkout-review-order-table .wc-item-meta p {
    margin: 4px 0;
  }

  .woocommerce-checkout-review-order-table .wc-item-meta strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
    color: #000;
  }

  /* Totals section styling */
  .woocommerce-checkout-review-order-table tfoot tr {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }

  .woocommerce-checkout-review-order-table tfoot td,
  .woocommerce-checkout-review-order-table tfoot th {
    border: none !important;
    font-weight: 600;
    padding: 0;
  }
}
/* Desktop only: keep row borders consistent */
@media (min-width: 601px) {
  /* Remove any "row-breaking" borders from addons */
  .woocommerce-checkout-review-order-table .wc-item-meta {
    border: none !important;
    margin: 6px 0 0 0;
    padding: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    display: block;
  }

  /* Make sure each cart row keeps its bottom border intact */
  .woocommerce-checkout-review-order-table tr.cart_item {
    border-bottom: 1px solid #e0e0e0;
  }

  /* Keep cells clean and aligned */
  .woocommerce-checkout-review-order-table tr.cart_item td {
    border: none !important;
    vertical-align: top;
    padding: 8px;
  }

  /* Add-ons look like subtext under product name */
  .woocommerce-checkout-review-order-table .wc-item-meta p {
    margin: 2px 0;
  }

  .woocommerce-checkout-review-order-table .wc-item-meta strong {
    font-weight: 600;
    color: #000;
    display: inline-block;
  }
}
/* ✅ Checkout Order Table Styling */
.woocommerce-checkout-review-order-table td.product-total {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Base Price */
.mcc-base-price {
  font-size: 13px;
  color: #666;
  font-style: italic;
}

/* Add-ons block */
.mcc-order-addons {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.mcc-order-addons p {
  margin: 2px 0;
}

.mcc-order-addons strong {
  color: #000;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Line Total */
.mcc-line-total {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-top: 4px;
}

/* ✅ Mobile adjustments */
@media (max-width: 600px) {
  .woocommerce-checkout-review-order-table tr.cart_item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background: #fff;
  }

  .woocommerce-checkout-review-order-table td.product-total {
    margin-top: 6px;
  }

  .mcc-base-price,
  .mcc-order-addons,
  .mcc-line-total {
    font-size: 13px;
  }
}
/* Mobile only accordion */
@media (max-width: 768px) {
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 8px;
  }

  .accordion-content {
    display: none;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    background: #fff;
  }

  .accordion-section.open .accordion-content {
    display: block;
  }
}

/* Desktop: reset accordion completely */
@media (min-width: 769px) {
  .accordion-header {
    display: none !important;
  }
  .accordion-content {
    display: block !important;
    border: none !important;
    padding: 0 !important;
  }
}
/* Mobile accordion styles */
@media (max-width: 768px) {
  .mcc-checkout-columns {
    display: block;
  }

  .mcc-accordion .mcc-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
  }

  .mcc-accordion .mcc-card-title.active {
    background: #eaeaea;
  }

  .mcc-accordion .mcc-accordion-content {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    background: #fff;
    margin-bottom: 12px;
  }

  /* 🔽 Arrow styling */
  .mcc-accordion-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #555;
  }

  /* 🔼 Rotate arrow when active */
  .mcc-card-title.active .mcc-accordion-arrow {
    transform: rotate(180deg);
    color: #000;
  }
}
/* Only on mobile */
@media (max-width: 768px) {
  .mcc-checkout-columns {
    display: block;
  }

  .mcc-accordion .mcc-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background: #ffffff !important; /* force white */
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
  }

  .mcc-accordion .mcc-card-title.active {
    background: #ffffff !important; /* also force white when active */
    border-color: #ccc; /* darker border cue */
  }

  .mcc-accordion .mcc-accordion-content {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    background: #fff !important; /* force white inside */
    margin-bottom: 12px;
  }

  .mcc-accordion-arrow {
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.2s ease-in-out;
  }

  .mcc-card-title.active .mcc-accordion-arrow {
    transform: rotate(180deg);
  }
}
/* Checkout Accordion Arrows → bigger arrow style */
@media (max-width: 768px) {
  .mcc-accordion-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 3px solid #333;
    border-top: 3px solid #333;
    transform: rotate(45deg); /* ► */
    transition: transform 0.25s ease;
    margin-left: auto;
  }

  .mcc-accordion-toggle.active .mcc-accordion-arrow {
    transform: rotate(135deg); /* ▼ */
  }
}
/* ✅ Mobile profile dropdown link styling */
@media (max-width: 768px) {
  .mobile-profile .profile-dropdown a {
    display: block;
    padding: 10px 14px;
    background: #fff !important;   /* default white */
    color: #000 !important;        /* black text */
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-profile .profile-dropdown a:active {
    background: #00AEEF !important; /* OnlyFans blue */
    color: #fff !important;         /* white text */
  }
}
/* ================================
   🌐 GLOBAL (Desktop + Mobile)
   ================================ */

/* 🔵 Force OnlyFans Blue instead of green */
.user-registration .ur-input-border-green,
.user-registration .ur-input-border-green:focus,
.user-registration .ur-input-border-green.ur-frontend-field {
    border: 1px solid #00AEEF !important;
    box-shadow: none !important;
}

/* 🔴 Keep red for errors */
.user-registration .ur-input-border-red,
.user-registration .ur-input-border-red:focus,
.user-registration .ur-input-border-red.ur-frontend-field {
    border: 1px solid #FF0000 !important;
    box-shadow: none !important;
}

/* ================================
   🖥️ DESKTOP ONLY
   ================================ */
@media (min-width: 769px) {
  /* Mini-cart dropdown buttons */
  .site-header .header-cart .mini-cart-dropdown .woocommerce-mini-cart__buttons a {
    font-size: 14px !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    width: auto !important;
    min-width: unset !important;
  }

  .site-header .header-cart .mini-cart-dropdown .woocommerce-mini-cart__buttons {
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-end !important;
  }
}

/* ================================
   📱 MOBILE ONLY
   ================================ */
@media (max-width: 767px) {
  /* 🚫 Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden !important;
  }

  /* Contain layout properly */
  body * {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  /* 📘 Blue Gradient Bar fix */
  .mcc-blue-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    min-height: 100px;
    box-sizing: border-box;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .mcc-blue-bar .page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #fff;
    word-break: break-word;
  }

  .mcc-blue-bar .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .mcc-blue-bar .breadcrumb a {
    color: #fff;
    text-decoration: none;
  }

  .mcc-blue-bar .breadcrumb span {
    color: rgba(255,255,255,0.9);
  }

/* 🔵 Force OnlyFans Blue only AFTER typing (validated state) */
.page-id-7129 .user-registration .ur-input-border-green {
    border: 1px solid #00AEEF !important;
    box-shadow: none !important;
}

/* 🚫 Don’t show blue while typing */
.page-id-7129 .user-registration input:focus {
    border: 1px solid #ccc !important; /* neutral grey during typing */
    box-shadow: none !important;
}
/* 📱 Force full-width welcome banner on Creator Dashboard */
@media (max-width: 767px) {
  .page-id-7118 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Fix overlap + restore size on Creator Dashboard welcome banner */
@media (max-width: 767px) {
  .page-id-7118 .welcome-banner {
    position: relative;
    padding: 15px;
    text-align: left;
  }

  /* Reserve space for the circular image */
  .page-id-7118 .welcome-banner h2,
  .page-id-7118 .welcome-banner p {
    margin: 0;
    padding-right: 100px; /* bigger space for bigger circle */
    color: #fff;
  }

  /* Circle photo bigger & aligned */
  .page-id-7118 .welcome-banner .creator-banner-photo {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 90px;   /* adjust size */
    height: 90px;  /* adjust size */
    object-fit: cover;
  }
}
/* 📱 Creator Dashboard - move description lower */
@media (max-width: 767px) {
  .page-id-7118 .welcome-banner p {
    margin-top: 12px !important;  /* push it down a bit */
    display: block;
    color: #fff;
  }
}
/* 📱 Creator Dashboard - make welcome heading black */
@media (max-width: 767px) {
  .page-id-7118 .welcome-banner h2 {
    color: #000 !important;
  }
}
/* 📱 Force full-width welcome banner on Upload Item page */
@media (max-width: 767px) {
  .page-id-7120 .mcc-blue-bar,
  .page-id-7120 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;        /* span full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* center pull-out hack */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
    border-radius: 0 !important;    /* ensure flush edges */
  }
}
/* 📱 Force full-width welcome banner on My Items page */
@media (max-width: 767px) {
  .page-id-7122 .mcc-blue-bar,
  .page-id-7122 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;        /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
    border-radius: 0 !important;    /* keep flush edge */
  }
}
/* 🎯 Fix "Sort by" dropdown stretching on My Items page */
.page-id-7122 .browse-sort select {
  width: auto !important;          /* let it shrink to natural size */
  min-width: 140px !important;     /* keeps it readable */
  max-width: 200px !important;     /* optional cap */
  display: inline-block !important;
}
/* 📱 Force full-width welcome banner on Orders page */
@media (max-width: 767px) {
  .page-id-7124 .dashboard-main .mcc-blue-bar {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width welcome banner on Profile Page */
@media (max-width: 767px) {
  .page-id-7126 .dashboard-main .mcc-blue-bar,
  .page-id-7126 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width welcome banner on Buyer Dashboard */
@media (max-width: 767px) {
  .page-id-7227 .dashboard-main .mcc-blue-bar,
  .page-id-7227 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width welcome banner on Buyer Orders */
@media (max-width: 767px) {
  .page-id-7294 .dashboard-main .mcc-blue-bar,
  .page-id-7294 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width welcome banner on Account Settings */
@media (max-width: 767px) {
  .page-id-7296 .dashboard-main .mcc-blue-bar,
  .page-id-7296 .dashboard-main .welcome-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       /* full viewport width */
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); /* pull out of centered column */
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width creator banner on mobile */
@media (max-width: 767px) {
  body.single-creator .creator-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%); 
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
  }
}
/* 📱 Force full-width thank-you gradient banner */
@media (max-width: 767px) {
  body.single-creator .creator-profile .creator-premium {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
}
/* ================================
   📱 Sticky Mobile Header
   ================================ */
@media (max-width: 768px) {
  .mobile-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* fallback */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* subtle shadow */
  }

  /* Push page content down so it doesn’t hide under header */
  body {
    padding-top: 65px; /* adjust to your header’s actual height */
  }
}
/* 📱 Remove empty top-bar ONLY when it has no content */
@media (max-width: 768px) {
  #top-bar.has-no-content,
  #top-bar-wrap:has(#top-bar.has-no-content) {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
/* 📱 Nudge down all blue gradient banners sitewide on mobile */
@media (max-width: 768px) {
  .mcc-blue-bar {
    margin-top: 12px; /* adjust this value until it looks just right */
  }
}
/* 📱 Mobile: force card to hug image */
@media (max-width: 767px) {
  .mcc-item-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mcc-item-image {
    width: auto !important;          /* shrink to image */
    max-width: 90% !important;       /* keep it sensible */
    margin: 0 auto 20px auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: inline-block !important; /* ✅ key: shrink-wrap */
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .mcc-item-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;  /* let container do rounding */
  }

  /* keep info same width as image */
  .mcc-item-info {
    max-width: 90% !important;
    margin: 0 auto !important;
  }
}
/* 📱 Mobile: Blue gradient banner layout */
@media (max-width: 767px) {
  .mcc-blue-bar {
    display: flex;
    flex-direction: row;      /* title and breadcrumb side by side */
    justify-content: space-between;
    align-items: center;
    text-align: left;         /* reset center align */
  }

  .mcc-blue-bar .page-title {
    flex: 1;
    text-align: left;
    font-size: 18px;          /* slightly smaller on mobile */
  }

  .mcc-blue-bar .breadcrumb {
    flex: 1;
    text-align: right;
    font-size: 12px;
  }
}
/* 📱 Mobile: Blue banner title left, breadcrumb right in one line */
@media (max-width: 767px) {
  .mcc-blue-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;          /* ✅ stop wrapping */
    gap: 10px;
  }

  .mcc-blue-bar .page-title {
    flex: 0 1 auto;
    text-align: left;
    white-space: nowrap;        /* keep title in one line */
  }

  .mcc-blue-bar .breadcrumb {
    flex: 1;
    text-align: right;
    white-space: nowrap;        /* ✅ keep breadcrumb inline */
    overflow: hidden;
    text-overflow: ellipsis;    /* ✅ cut off with … if too long */
  }
}
/* Option 2: Breadcrumb above, title inside banner */
@media (max-width: 767px) {
  .page-header .breadcrumbs {
    display: block;
    text-align: left;
    margin: 0 0 6px 0;   /* breadcrumb above gradient */
    font-size: 13px;
    color: #666;         /* subtle so it doesn't overpower title */
  }

  .page-header .page-header-title {
    text-align: center;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;         /* title bold inside gradient */
  }
}
/* 📱 Mobile: put title + breadcrumb side by side inside banner */
@media (max-width: 767px) {
  .page-header-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .page-header-title {
    font-size: 18px;
    margin: 0;
    white-space: nowrap; /* stops wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* truncates long titles with ... */
  }

  .breadcrumbs {
    font-size: 13px;
    margin: 0;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
  }
}
.mcc-blue-bar {
  display: flex;
  flex-direction: column; /* stack title above breadcrumb */
  align-items: flex-start;
  background: linear-gradient(90deg, #00AEEF, #0066CC);
  padding: 12px 16px;
  border-radius: 6px;
  color: #fff;
}

.mcc-blue-bar .page-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0; /* space below title */
  color: #fff;
}

.mcc-blue-bar .breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.mcc-blue-bar .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.mcc-blue-bar .breadcrumb,
.mcc-blue-bar .breadcrumb a,
.mcc-blue-bar .breadcrumb span {
  color: #fff !important;
  opacity: 1 !important;   /* stop any transparency */
  background: none !important; /* stop any text gradient */
}
@media screen and (max-width: 768px) {
  .creators-page .browse-card .view-btn {
    display: flex !important;             
    align-items: center !important;       
    justify-content: center !important;   

    white-space: nowrap !important;       

    width: 115px !important;              /* ✅ more compact */
    height: 34px !important;              /* slightly shorter */
    margin: 6px auto 0 auto !important;   

    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }
}
@media screen and (max-width: 768px) {
  .creators-page .browse-item-title a {
    font-size: 14px !important;   /* was ~13-14px */
    font-weight: 700 !important;  /* bold for emphasis */
    color: #1A1A1A !important;    /* clean black */
    text-align: center !important;
    display: block !important;    /* ensures centering works */
    margin-top: 4px !important;   /* breathing room above button */
  }
}
@media screen and (max-width: 768px) {
  .creators-page h4.browse-item-creator {
    font-size: 13px !important;   /* adjust this up or down */
    font-weight: 600 !important;  /* boldness */
    color: #00AEEF !important;    /* OnlyFans blue (your current choice) */
    margin: 2px 0 !important;     /* tweak spacing */
    text-align: left !important;  /* or center if you prefer */
  }
}
/* ==========================
   Mobile Creator Cards ONLY (Creators Page, Homepage, Search Results)
   ========================== */
@media screen and (max-width: 768px) {
  /* ✅ Style creator card buttons everywhere */
  .creators-page .browse-card .view-btn,
  .landing-creators .browse-card .view-btn,
  .search-results-page .browse-card .view-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;

    width: 115px !important;
    height: 34px !important;
    margin: 6px auto 0 auto !important;

    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* ✅ Creator names same everywhere */
  .creators-page .browse-item-title a,
  .landing-creators .browse-item-title a,
  .search-results-page .browse-item-title a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    text-align: center !important;
    display: block !important;
    margin-top: 4px !important;
  }

  /* ✅ Verified labels same everywhere */
  .creators-page h4.browse-item-creator,
  .landing-creators h4.browse-item-creator,
  .search-results-page h4.browse-item-creator {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #00AEEF !important;
    margin: 2px 0 !important;
    text-align: left !important;
  }
}
/* ================================
   📱 Search Results – Match Creator Cards
   ================================ */
@media screen and (max-width: 768px) {
  /* ✅ Creator card buttons match creators/homepage */
  .search-results-page .browse-card.creator .view-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;

    width: 90px !important;
    height: 34px !important;
    margin: 6px auto 0 auto !important;

    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* ✅ Creator card titles */
  .search-results-page .browse-card.creator .browse-item-title a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    text-align: center !important;
    display: block !important;
    margin-top: 4px !important;
  }

  /* ✅ Verified label */
  .search-results-page .browse-card.creator h4.browse-item-creator {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #00AEEF !important;
    margin: 2px 0 !important;
    text-align: left !important;
  }
}

/* ================================
   📱 Search Results – Match Item Cards
   ================================ */
@media screen and (max-width: 768px) {
  /* ✅ Wrap price + button same as browse cards */
  .search-results-page .browse-card.item .price-button-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important; /* same as browse */
  }

  /* ✅ Price same as browse */
  .search-results-page .browse-card.item .price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ✅ View button same as browse cards */
  .search-results-page .browse-card.item .view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    white-space: nowrap !important;
    width: auto !important;       /* shrink-wrap */
    min-width: 60px !important;   /* keeps it usable */
    padding: 9px 15px !important; /* same as browse */

    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }
}
/* ================================
   📱 Search Results – Inherit Browse Styles
   ================================ */
@media screen and (max-width: 768px) {

  /* 🔹 Make product cards in search match browse/category */
  .search-results-page .browse-card.item .price-button-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important; /* ✅ same as browse */
  }

  .search-results-page .browse-card.item .price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    margin: 0 !important;
  }

  .search-results-page .browse-card.item .view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    white-space: nowrap !important;
    width: auto !important;
    min-width: 60px !important;
    padding: 9px 15px !important;

    border-radius: 3px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* 🔹 Make creator cards in search match creators page */
  .search-results-page .browse-card.creator .view-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 115px !important;
    height: 34px !important;
    margin: 6px auto 0 auto !important;

    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .search-results-page .browse-card.creator .browse-item-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    text-align: center !important;
    margin-top: 4px !important;
  }

  .search-results-page .browse-card.creator .browse-item-creator {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #00AEEF !important;
    margin: 2px 0 !important;
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  /* Fix spacing for product cards in search */
  .search-results-page .browse-card.item .price-button-row {
    display: inline-flex !important;   /* shrink-wrap instead of stretching full width */
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;               /* real, visible space between price & button */
    width: auto !important;            /* ✅ don’t stretch across card */
    margin: 0 auto !important;         /* center row inside card */
  }
}
@media screen and (max-width: 768px) {
  /* 🔹 Creator card buttons - smaller & balanced */
  .creators-page .browse-card .view-btn,
  .landing-creators .browse-card .view-btn,
  .search-results-page .browse-card .view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;

    width: auto !important;        /* shrink-wrap to text */
    min-width: 80px !important;    /* keeps usable size */
    padding: 6px 12px !important;  /* controls button height/width */

    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center !important;

    margin-top: 1px !important; /* ✅ controls gap from creator name */
  }
}
@media screen and (max-width: 768px) {
  /* 🔹 Creator name size control */
  .creators-page .browse-item-title a,
  .landing-creators .browse-item-title a,
  .search-results-page .browse-item-title a {
    font-size: 14px !important;   /* change this value to what you want */
    font-weight: 700 !important;  /* boldness */
    color: #1A1A1A !important;    /* black */
    text-align: center !important;
    display: block !important;
    margin: 0 0 4px 0 !important; /* space under name */
  }
}
@media screen and (max-width: 768px) {
  /* 🔹 Creator name spacing fix */
  .creators-page .browse-item-title a,
  .landing-creators .browse-item-title a,
  .search-results-page .browse-item-title a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    text-align: center !important;
    display: block !important;

    margin-top: 4px !important;
    padding: 0 6px !important;   /* ⬅️ adds breathing room left/right */
    line-height: 1.4 !important; /* ⬅️ opens it up vertically */
  }
}
@media screen and (max-width: 768px) {
  .creators-page .browse-item-title a,
  .landing-creators .browse-item-title a,
  .search-results-page .browse-item-title a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    letter-spacing: 1px !important; /* adjust 0.5px – 1.5px */
  }
}
@media screen and (max-width: 768px) {
  .creators-page .browse-card .view-btn,
  .landing-creators .browse-card .view-btn,
  .search-results-page .browse-card .view-btn {
    min-width: 70px !important;   /* was 80–115px, now slimmer */
    padding: 5px 10px !important; /* smaller inside space */
    font-size: 13px !important;   /* keep text same */
    font-weight: 600 !important;
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .creators-page .browse-card .view-btn,
  .landing-creators .browse-card .view-btn,
  .search-results-page .browse-card .view-btn {
    line-height: 1.3 !important;   /* just a touch more space for descenders */
    overflow: visible !important;  /* stop text clipping */
  }
}
@media screen and (max-width: 768px) {
  .creators-page .browse-card .view-btn,
  .landing-creators .browse-card .view-btn,
  .search-results-page .browse-card .view-btn {
    font-size: 11px !important;  /* slightly smaller text */
    line-height: 1.3 !important; /* safer breathing room */
  }
}
@media screen and (max-width: 768px) {
  /* 🔹 Reduce space between creator name and button */
  .creators-page .browse-item-title,
  .landing-creators .browse-item-title,
  .search-results-page .browse-item-title {
    margin-bottom: 2px !important; /* try 4px or even 2px for tighter fit */
  }
}
/* 🔹 Match spacing between creator name and button on Creator cards & Search cards */
.creators-page .browse-card .view-btn,
.landing-creators .browse-card .view-btn {
  margin-top: 2px !important;   /* same as your search cards */
}
/* =========================
   Force Search Creator Cards
   to match Creators Page Cards
   ========================= */
@media screen and (max-width: 768px) {
  /* Creator name */
  .search-results-page .browse-item-title a {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    text-align: center !important;
    display: block !important;
    margin: 4px 0 !important; /* same spacing as creators page */
  }

  /* Verified label */
  .search-results-page h4.browse-item-creator {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #00AEEF !important;
    margin: 2px 0 !important;
    text-align: left !important;
  }

  /* Button */
  .search-results-page .browse-card .view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;

    width: auto !important;        /* shrink-wrap */
    min-width: 80px !important;
    padding: 6px 12px !important;  /* identical to creator cards */

    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    background: #00AEEF !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center !important;
    margin-top: 2px !important;   /* identical gap under name */
  }
}
/* ================================
   🎯 PAGE ID SPECIFIC STYLING
   ================================ */

/* ✅ Creators Page (7064) */
.page-id-7064 .browse-card .view-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;

  width: auto !important;
  min-width: 80px !important;
  padding: 6px 12px !important;

  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: #00AEEF !important;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center !important;
  margin-top: 2px !important;
}
.page-id-7064 .browse-item-title a {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
  text-align: center !important;
  display: block !important;
  margin-top: 4px !important;
}
.page-id-7064 h4.browse-item-creator {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #00AEEF !important;
  margin: 2px 0 !important;
  text-align: left !important;
}

/* ✅ Browse/Category Page (7015) */
.page-id-7015 .browse-card .price-button-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
}
.page-id-7015 .browse-card .price {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
  margin: 0 !important;
}
.page-id-7015 .browse-card .view-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;

  width: auto !important;
  min-width: 60px !important;
  padding: 6px 12px !important;

  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: #00AEEF !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ✅ Search Page (6849) 
   - Creators = match creators page
   - Products = match browse page
*/
.page-id-6849 .browse-card.creator .view-btn,
.page-id-6849 .browse-card.creator .browse-item-title a,
.page-id-6849 .browse-card.creator h4.browse-item-creator {
  /* 👇 identical to creators page */
}
.page-id-6849 .browse-card.product .price-button-row,
.page-id-6849 .browse-card.product .price,
.page-id-6849 .browse-card.product .view-btn {
  /* 👇 identical to browse/category page */
}
/* Force hero background on mobile */
@media screen and (max-width: 768px) {
  .landing-hero {
    background: url('http://mycreatorcloset.com/wp-content/uploads/2025/08/68af152fee958.jpg') no-repeat center center !important;
    background-size: cover !important;
  }
}
/* Hero subtitle + trust line in white */
.landing-hero .hero-subtitle,
.landing-hero .trust-mini {
  color: #ffffff !important;
}
/* 🔹 Hide WooCommerce Add to Cart / Select Options buttons */
.woocommerce .product .button,
.woocommerce a.button.product_type_simple,
.woocommerce a.button.product_type_variable {
    display: none !important;
}
/* Kill any floating cart bar (desktop + mobile) */
div[id*="owp-floating-bar"],
.owp-floating-bar,
.owp-floating-bar.show,
.owp-floating-bar.visible,
.owp-floating-bar.is-visible {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
/* 🔒 Completely hide OceanWP floating bar (desktop + mobile) */
.owp-floating-bar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
/* Hide OceanWP floating bar everywhere */
.owp-floating-bar,
.owp-floating-bar.show {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
}
/* 📱 Fix full-width creator banner ONLY for preview pages */
@media (max-width: 767px) {
  body .creator-profile .creator-banner {
    width: 100vw !important;       
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important; 
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
}
/* 📱 Force full-width creator preview banner on mobile */
@media (max-width: 767px) {
  .creator-profile .creator-banner {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw !important;       
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important; 
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box;
  }
}
/* 📱 Responsive creator preview sections (Available + Past Collections) */
body.blog.logged-in.wp-custom-logo.wp-embed-responsive.wp-theme-oceanwp.wp-child-theme-oceanwp-child.theme-oceanwp.user-registration-page.woocommerce-js.ehf-template-oceanwp.ehf-stylesheet-oceanwp-child.mcc-site.oceanwp-theme.dropdown-mobile.default-breakpoint.has-sidebar.content-right-sidebar.has-topbar.has-breadcrumbs.has-grid-list.account-original-style.elementor-default.elementor-kit-6378 .creator-inventory {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px; /* same gutter as live */
    box-sizing: border-box;
}

/* Responsive grid system for preview cards */
body.blog.logged-in.wp-custom-logo.wp-embed-responsive.wp-theme-oceanwp.wp-child-theme-oceanwp-child.theme-oceanwp.user-registration-page.woocommerce-js.ehf-template-oceanwp.ehf-stylesheet-oceanwp-child.mcc-site.oceanwp-theme.dropdown-mobile.default-breakpoint.has-sidebar.content-right-sidebar.has-topbar.has-breadcrumbs.has-grid-list.account-original-style.elementor-default.elementor-kit-6378 .creator-inventory .browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px; /* spacing between cards */
}

/* 🔲 Card styling (matches live site boutique look) */
body.blog.logged-in.wp-custom-logo.wp-embed-responsive.wp-theme-oceanwp.wp-child-theme-oceanwp-child.theme-oceanwp.user-registration-page.woocommerce-js.ehf-template-oceanwp.ehf-stylesheet-oceanwp-child.mcc-site.oceanwp-theme.dropdown-mobile.default-breakpoint.has-sidebar.content-right-sidebar.has-topbar.has-breadcrumbs.has-grid-list.account-original-style.elementor-default.elementor-kit-6378 .creator-inventory .browse-grid > div {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 10px; /* rounded corners */
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* soft shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  body.blog.logged-in.wp-custom-logo.wp-embed-responsive.wp-theme-oceanwp.wp-child-theme-oceanwp-child.theme-oceanwp.user-registration-page.woocommerce-js.ehf-template-oceanwp.ehf-stylesheet-oceanwp-child.mcc-site.oceanwp-theme.dropdown-mobile.default-breakpoint.has-sidebar.content-right-sidebar.has-topbar.has-breadcrumbs.has-grid-list.account-original-style.elementor-default.elementor-kit-6378 .creator-inventory .browse-grid > div:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
}
/* 📱 Align grids to left edge on creator preview */
@media (max-width: 767px) {
  body.single-creator-preview .creator-inventory .browse-grid,
  body.single-creator-preview .creator-inventory {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px;   /* adjust if you want small breathing space */
    padding-right: 10px;  /* optional */
    width: 100% !important;
    box-sizing: border-box;
    text-align: left;     /* force left alignment */
  }
}
/* 📱 Make Creator Preview page layout identical to Live Creator page */
@media (max-width: 767px) {
  body.single-creator-preview .site-main,
  body.single-creator-preview .creator-profile,
  body.single-creator-preview .creator-banner,
  body.single-creator-preview .creator-inventory,
  body.single-creator-preview .browse-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
}
/* Shrink login/registration logo on mobile */
@media (max-width: 768px) {
  .ur-login-logo img,
  .mcc-login-branding img {
    max-width: 120px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}
/* ✅ Full mobile stretch with safe viewport fit (no clipping on iOS) */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important; /* prevent Safari edge scroll cut */
  }

  /* Keep layout base clean */
  .page-id-6918 .woocommerce,
  .page-id-6918 .woocommerce-checkout,
  .page-id-6918 .mcc-checkout-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* Stretch checkout panels safely across viewport */
  .page-id-6918 .mcc-checkout-card,
  .page-id-6918 .woocommerce-checkout-review-order,
  .page-id-6918 .woocommerce-checkout-payment,
  .page-id-6918 .mcc-accordion,
  .page-id-6918 .mcc-accordion .mcc-card-title,
  .page-id-6918 .mcc-accordion .mcc-accordion-content {
    width: calc(100vw - 24px) !important;   /* subtract padding area */
    max-width: calc(100vw - 24px) !important;
    margin-left: calc(-50vw + 50% + 12px) !important;
    margin-right: calc(-50vw + 50% + 12px) !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }

  /* Inner breathing room */
  .page-id-6918 .woocommerce-checkout-review-order,
  .page-id-6918 .woocommerce-checkout-payment,
  .page-id-6918 .mcc-accordion .mcc-accordion-content {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}
/* ✅ Fix country/state dropdown not opening correctly on mobile */
@media (max-width: 767px) {
  /* Make select2 dropdown container stay inside screen */
  .select2-container,
  .select2-dropdown {
    width: 90% !important;
    left: 5% !important;
    right: 5% !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
  }

  /* Ensure dropdown appears above other elements */
  .select2-container--open {
    z-index: 9999 !important;
  }

  /* Match field styling to your form */
  .select2-selection {
    border-radius: 6px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 8px !important;
    background: #fff !important;
  }
}