/* ============================================================
   MINT10HOBBY — Global Stylesheet
   Brand: White / Mint Green #6BBD4E / Electric Blue #2A7DE1 / Cyan #3AB2D1
   Font Stack: Rajdhani (display) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
    --m10-green:        #6BBD4E;
    --m10-green-dark:   #4fa336;
    --m10-green-light:  #e8f8e1;
    --m10-green-glow:   rgba(107, 189, 78, 0.35);
    --m10-blue:         #2A7DE1;
    --m10-blue-dark:    #1a5fbb;
    --m10-blue-light:   #deeeff;
    --m10-blue-glow:    rgba(42, 125, 225, 0.35);
    --m10-cyan:         #3AB2D1;
    --m10-cyan-light:   #d6f4fb;
    --m10-white:        #ffffff;
    --m10-off-white:    #f7fbff;
    --m10-grey-50:      #f4f6f9;
    --m10-grey-100:     #e8ecf0;
    --m10-grey-200:     #cdd4dc;
    --m10-grey-400:     #8d9aaa;
    --m10-grey-600:     #4f5e70;
    --m10-grey-800:     #1e2d3d;
    --m10-dark:         #0d1b2a;
    --m10-danger:       #e84141;
    --m10-warning:      #f5a623;
    --m10-success:      #6BBD4E;

    /* Gradient Presets */
    --grad-green-blue:  linear-gradient(135deg, #6BBD4E 0%, #3AB2D1 50%, #2A7DE1 100%);
    --grad-blue-cyan:   linear-gradient(135deg, #2A7DE1 0%, #3AB2D1 100%);
    --grad-green:       linear-gradient(135deg, #6BBD4E 0%, #4fa336 100%);
    --grad-hero:        linear-gradient(160deg, #f7fbff 0%, #e8f8e1 30%, #deeeff 70%, #f7fbff 100%);
    --grad-card-hover:  linear-gradient(135deg, rgba(107,189,78,0.08) 0%, rgba(58,178,209,0.08) 100%);

    /* Shadows */
    --shadow-sm:     0 1px 4px rgba(42,125,225,0.08);
    --shadow-md:     0 4px 16px rgba(42,125,225,0.12);
    --shadow-lg:     0 8px 32px rgba(42,125,225,0.18);
    --shadow-green:  0 4px 20px rgba(107,189,78,0.30);
    --shadow-blue:   0 4px 20px rgba(42,125,225,0.30);
    --shadow-card:   0 2px 12px rgba(30,45,61,0.08);
    --shadow-card-hover: 0 8px 28px rgba(42,125,225,0.18);

    /* Border Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  24px;
    --radius-pill: 999px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast:   0.15s var(--ease-smooth);
    --t-mid:    0.28s var(--ease-smooth);
    --t-slow:   0.45s var(--ease-smooth);

    /* Layout */
    --navbar-h: 64px;
    --footer-mobile-h: 60px;
    --content-max: 1320px;
    --section-py: 72px;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: var(--m10-grey-800);
    background: var(--m10-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: var(--footer-mobile-h);
}

@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

a { color: var(--m10-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--m10-blue-dark); }

img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.m10-display {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.m10-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1, h2, h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.2; }
h4, h5, h6 { font-family: 'Rajdhani', sans-serif; font-weight: 600; }

.text-green  { color: var(--m10-green) !important; }
.text-blue   { color: var(--m10-blue) !important; }
.text-cyan   { color: var(--m10-cyan) !important; }
.text-muted  { color: var(--m10-grey-400) !important; }
.text-dark   { color: var(--m10-grey-800) !important; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.m10-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--m10-grey-100);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    transition: box-shadow var(--t-mid);
}

.m10-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.m10-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--m10-grey-800);
}

.m10-navbar .navbar-brand .brand-badge {
    background: var(--grad-green-blue);
    color: white;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.m10-navbar .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--m10-grey-600) !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
    letter-spacing: 0.03em;
}

.m10-navbar .nav-link:hover,
.m10-navbar .nav-link.active {
    color: var(--m10-blue) !important;
    background: var(--m10-blue-light);
}

.m10-navbar .nav-link .nav-icon {
    font-size: 1rem;
    margin-right: 4px;
}

.m10-navbar .navbar-search {
    position: relative;
    flex: 1;
    max-width: 360px;
    margin: 0 16px;
}

.m10-navbar .navbar-search input {
    width: 100%;
    border: 1.5px solid var(--m10-grey-100);
    border-radius: var(--radius-pill);
    padding: 8px 40px 8px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    background: var(--m10-grey-50);
    color: var(--m10-grey-800);
    transition: all var(--t-fast);
    outline: none;
}

.m10-navbar .navbar-search input:focus {
    border-color: var(--m10-blue);
    background: white;
    box-shadow: 0 0 0 3px var(--m10-blue-glow);
}

.m10-navbar .navbar-search .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--m10-grey-400);
    font-size: 0.9rem;
}

.m10-navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.m10-navbar .nav-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    color: var(--m10-grey-600);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
}

.m10-navbar .nav-icon-btn:hover {
    background: var(--m10-grey-50);
    color: var(--m10-blue);
}

.m10-navbar .nav-icon-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--m10-green);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-m10-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-green-blue);
    color: white !important;
    border: none;
    border-radius: var(--radius-pill);
    padding: 11px 26px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t-mid);
    box-shadow: var(--shadow-green);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-m10-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--t-fast);
}

.btn-m10-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107,189,78,0.45);
    color: white !important;
}

.btn-m10-primary:hover::before {
    background: rgba(255,255,255,0.1);
}

.btn-m10-primary:active {
    transform: translateY(0);
}

.btn-m10-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--m10-blue) !important;
    border: 2px solid var(--m10-blue);
    border-radius: var(--radius-pill);
    padding: 9px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t-mid);
    text-decoration: none;
}

.btn-m10-secondary:hover {
    background: var(--m10-blue);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-m10-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--m10-grey-600) !important;
    border: 1.5px solid var(--m10-grey-200);
    border-radius: var(--radius-pill);
    padding: 9px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
}

.btn-m10-ghost:hover {
    border-color: var(--m10-blue);
    color: var(--m10-blue) !important;
    background: var(--m10-blue-light);
}

.btn-m10-danger {
    background: var(--m10-danger);
    color: white !important;
    border: none;
    border-radius: var(--radius-pill);
    padding: 9px 22px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--t-mid);
    box-shadow: 0 4px 16px rgba(232,65,65,0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-m10-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,65,65,0.40);
    color: white !important;
}

.btn-sm { padding: 6px 16px !important; font-size: 0.85rem !important; }
.btn-lg { padding: 14px 32px !important; font-size: 1.1rem !important; }

/* ── SECTION WRAPPERS ───────────────────────────────────── */
.m10-section {
    padding: var(--section-py) 0;
}

.m10-section-sm {
    padding: 48px 0;
}

.m10-section-header {
    margin-bottom: 40px;
}

.m10-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--m10-green);
    background: var(--m10-green-light);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    border: 1px solid rgba(107,189,78,0.2);
}

.m10-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--m10-grey-800);
    margin-bottom: 10px;
}

.m10-section-subtitle {
    font-size: 1rem;
    color: var(--m10-grey-400);
    font-weight: 500;
    max-width: 520px;
}

.m10-divider {
    height: 3px;
    width: 48px;
    background: var(--grad-green-blue);
    border-radius: var(--radius-pill);
    margin: 12px 0 20px;
}

/* ── PRODUCT CARD ─────────────────────────────────────────── */
.m10-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--m10-grey-100);
    box-shadow: var(--shadow-card);
    transition: all var(--t-mid);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.m10-card:hover {
    border-color: var(--m10-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.m10-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--m10-grey-50);
    aspect-ratio: 3/4;
}

.m10-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.m10-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.m10-card .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.m10-card .badge-sale {
    background: var(--m10-danger);
    color: white;
}

.m10-card .badge-new {
    background: var(--m10-green);
    color: white;
}

.m10-card .badge-hot {
    background: var(--m10-warning);
    color: white;
}

.m10-card .badge-auction {
    background: var(--m10-blue);
    color: white;
}

.m10-card .badge-draft {
    background: var(--grad-green-blue);
    color: white;
}

.m10-card .card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--m10-grey-400);
    font-size: 0.9rem;
    transition: all var(--t-fast);
    z-index: 2;
}

.m10-card .card-wishlist:hover,
.m10-card .card-wishlist.active {
    color: var(--m10-danger);
    transform: scale(1.1);
}

.m10-card .card-body {
    padding: 14px 16px 16px;
}

.m10-card .card-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--m10-cyan);
    margin-bottom: 4px;
}

.m10-card .card-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--m10-grey-800);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.m10-card .card-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.m10-card .price-current {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--m10-green-dark);
}

.m10-card .price-original {
    font-size: 0.85rem;
    color: var(--m10-grey-400);
    text-decoration: line-through;
}

.m10-card .price-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--m10-danger);
    background: rgba(232,65,65,0.08);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.m10-card .card-add-btn {
    width: 100%;
    padding: 9px;
    background: var(--grad-green-blue);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.m10-card .card-add-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
}

/* ── AUCTION CARD ─────────────────────────────────────────── */
.m10-auction-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--m10-grey-100);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--t-mid);
}

.m10-auction-card:hover {
    border-color: var(--m10-cyan);
    box-shadow: 0 8px 28px rgba(58,178,209,0.2);
    transform: translateY(-4px);
}

.m10-auction-card .auction-timer {
    background: var(--m10-dark);
    color: white;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Rajdhani', sans-serif;
}

.m10-auction-card .timer-display {
    display: flex;
    gap: 6px;
    align-items: center;
}

.m10-auction-card .timer-unit {
    text-align: center;
}

.m10-auction-card .timer-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--m10-cyan);
    line-height: 1;
    display: block;
    min-width: 32px;
}

.m10-auction-card .timer-label {
    font-size: 0.6rem;
    color: var(--m10-grey-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.m10-auction-card .timer-sep {
    color: var(--m10-cyan);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: -4px;
}

.m10-auction-card .auction-bid-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--m10-grey-50);
    border-top: 1px solid var(--m10-grey-100);
}

.m10-auction-card .bid-label {
    font-size: 0.75rem;
    color: var(--m10-grey-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.m10-auction-card .bid-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--m10-blue);
}

.m10-auction-card .bid-now-btn {
    background: var(--m10-blue);
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: var(--radius-md);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--t-fast);
}

.m10-auction-card .bid-now-btn:hover {
    background: var(--m10-blue-dark);
    transform: scale(1.03);
}

.m10-auction-card .buy-now-strip {
    padding: 8px 14px;
    background: var(--m10-green-light);
    border-top: 1px solid rgba(107,189,78,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.m10-auction-card .buy-now-strip .buy-now-label {
    color: var(--m10-grey-600);
    font-weight: 600;
}

.m10-auction-card .buy-now-strip .buy-now-price {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--m10-green-dark);
    font-size: 1rem;
}

/* ── DRAFT/RAZZ SLOT CARD ────────────────────────────────── */
.m10-slot-card {
    background: white;
    border: 2px solid var(--m10-grey-100);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all var(--t-mid);
    position: relative;
}

.m10-slot-card:hover {
    border-color: var(--m10-green);
    background: var(--m10-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.m10-slot-card.taken {
    background: var(--m10-grey-50);
    border-color: var(--m10-grey-200);
    cursor: not-allowed;
    opacity: 0.7;
}

.m10-slot-card.yours {
    border-color: var(--m10-blue);
    background: var(--m10-blue-light);
}

.m10-slot-card .slot-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--m10-grey-800);
    display: block;
}

.m10-slot-card .slot-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--m10-green-dark);
}

/* ── BADGE STYLES ─────────────────────────────────────────── */
.m10-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.m10-badge-green  { background: var(--m10-green-light); color: var(--m10-green-dark); border: 1px solid rgba(107,189,78,0.25); }
.m10-badge-blue   { background: var(--m10-blue-light);  color: var(--m10-blue-dark);  border: 1px solid rgba(42,125,225,0.25); }
.m10-badge-cyan   { background: var(--m10-cyan-light);  color: var(--m10-cyan);       border: 1px solid rgba(58,178,209,0.25); }
.m10-badge-red    { background: rgba(232,65,65,0.1);    color: var(--m10-danger);     border: 1px solid rgba(232,65,65,0.2); }
.m10-badge-orange { background: rgba(245,166,35,0.1);   color: var(--m10-warning);    border: 1px solid rgba(245,166,35,0.2); }

/* ── SECTION TABS ─────────────────────────────────────────── */
.m10-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px;
    background: var(--m10-grey-50);
    border-radius: var(--radius-pill);
    width: fit-content;
}

.m10-tab {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 7px 18px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    background: transparent;
    color: var(--m10-grey-600);
    transition: all var(--t-fast);
}

.m10-tab.active {
    background: white;
    color: var(--m10-blue);
    box-shadow: var(--shadow-sm);
}

.m10-tab:hover:not(.active) {
    color: var(--m10-blue);
}

/* ── CATEGORY PILL ────────────────────────────────────────── */
.m10-category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.m10-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid var(--m10-grey-100);
    border-radius: var(--radius-pill);
    background: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--m10-grey-600);
    cursor: pointer;
    transition: all var(--t-fast);
    white-space: nowrap;
}

.m10-category-pill:hover,
.m10-category-pill.active {
    border-color: var(--m10-green);
    color: var(--m10-green-dark);
    background: var(--m10-green-light);
}

.m10-category-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ── FEATURE CARD ─────────────────────────────────────────── */
.m10-feature-card {
    background: white;
    border: 1.5px solid var(--m10-grey-100);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all var(--t-mid);
    height: 100%;
}

.m10-feature-card:hover {
    border-color: var(--m10-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.m10-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.m10-feature-card .feature-icon-green { background: var(--m10-green-light); color: var(--m10-green-dark); }
.m10-feature-card .feature-icon-blue  { background: var(--m10-blue-light);  color: var(--m10-blue); }
.m10-feature-card .feature-icon-cyan  { background: var(--m10-cyan-light);  color: var(--m10-cyan); }

.m10-feature-card .feature-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--m10-grey-800);
}

.m10-feature-card .feature-desc {
    font-size: 0.9rem;
    color: var(--m10-grey-400);
    line-height: 1.65;
}

/* ── HOLOGRAPHIC EFFECT ──────────────────────────────────── */
.m10-holo {
    position: relative;
    overflow: hidden;
}

.m10-holo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(107,189,78,0.12) 45%,
        rgba(58,178,209,0.15) 55%,
        rgba(42,125,225,0.12) 65%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.m10-holo:hover::before {
    transform: translateX(100%);
}

/* ── FIRE SALE BANNER ─────────────────────────────────────── */
.m10-fire-banner {
    background: linear-gradient(90deg, #ff4e00, #ff8c00, #ffcc00);
    color: white;
    padding: 8px 0;
    overflow: hidden;
}

.m10-fire-banner .ticker-text {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@keyframes tickerScroll {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ── COUNTDOWN TIMER ─────────────────────────────────────── */
.m10-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.m10-countdown .count-box {
    background: var(--m10-dark);
    color: white;
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    text-align: center;
    min-width: 44px;
}

.m10-countdown .count-box .count-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--m10-cyan);
    line-height: 1;
}

.m10-countdown .count-box .count-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--m10-grey-400);
    text-transform: uppercase;
}

.m10-countdown .count-sep {
    color: var(--m10-grey-400);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: -6px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.m10-footer {
    background: var(--m10-dark);
    color: var(--m10-grey-400);
    padding: 60px 0 40px;
}

.m10-footer h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.m10-footer a {
    color: var(--m10-grey-400);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: color var(--t-fast);
}

.m10-footer a:hover {
    color: var(--m10-green);
}

.m10-footer .footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.m10-footer .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--m10-grey-400);
    margin-bottom: 20px;
}

.m10-footer .footer-social {
    display: flex;
    gap: 10px;
}

.m10-footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m10-grey-400);
    font-size: 0.95rem;
    transition: all var(--t-fast);
    margin-bottom: 0;
}

.m10-footer .footer-social a:hover {
    background: var(--m10-green);
    color: white;
}

.m10-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

/* ── MOBILE ANCHORED BOTTOM NAV ──────────────────────────── */
.m10-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: var(--footer-mobile-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1.5px solid var(--m10-grey-100);
    box-shadow: 0 -4px 20px rgba(30,45,61,0.10);
    padding: 0 8px;
}

@media (max-width: 991.98px) {
    .m10-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

.m10-mobile-nav .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    padding: 6px 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: var(--m10-grey-400);
    transition: color var(--t-fast);
    border-radius: var(--radius-md);
    position: relative;
}

.m10-mobile-nav .mob-nav-item.active,
.m10-mobile-nav .mob-nav-item:hover {
    color: var(--m10-blue);
}

.m10-mobile-nav .mob-nav-item.active .mob-nav-icon {
    background: var(--m10-blue-light);
}

.m10-mobile-nav .mob-nav-icon {
    width: 36px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: background var(--t-fast);
}

.m10-mobile-nav .mob-nav-label {
    font-size: 0.62rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.m10-mobile-nav .mob-nav-badge {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translateX(12px);
    width: 15px;
    height: 15px;
    background: var(--m10-green);
    color: white;
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.m10-mobile-nav .mob-nav-item.cta-btn {
    flex: 0 0 auto;
}

.m10-mobile-nav .mob-nav-item.cta-btn .mob-nav-icon {
    width: 48px;
    height: 36px;
    background: var(--grad-green-blue);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-green);
}

.m10-mobile-nav .mob-nav-item.cta-btn .mob-nav-label {
    color: var(--m10-green-dark);
}

/* ── MOBILE SEARCH BAR ───────────────────────────────────── */
.m10-mobile-search {
    display: none;
    padding: 10px 16px;
    background: white;
    border-bottom: 1px solid var(--m10-grey-100);
}

@media (max-width: 767px) {
    .m10-mobile-search { display: block; }
    .m10-mobile-search input {
        width: 100%;
        border: 1.5px solid var(--m10-grey-100);
        border-radius: var(--radius-pill);
        padding: 9px 18px;
        font-family: 'Nunito', sans-serif;
        font-size: 0.9rem;
        background: var(--m10-grey-50);
        outline: none;
    }
    .m10-mobile-search input:focus {
        border-color: var(--m10-blue);
        box-shadow: 0 0 0 3px var(--m10-blue-glow);
    }
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.m10-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m10-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.m10-fade-up-delay-1 { transition-delay: 0.1s; }
.m10-fade-up-delay-2 { transition-delay: 0.2s; }
.m10-fade-up-delay-3 { transition-delay: 0.3s; }
.m10-fade-up-delay-4 { transition-delay: 0.4s; }

/* ── GLOWING ELEMENTS ────────────────────────────────────── */
.m10-glow-green {
    box-shadow: 0 0 16px var(--m10-green-glow);
}

.m10-glow-blue {
    box-shadow: 0 0 16px var(--m10-blue-glow);
}

.m10-gradient-text {
    background: var(--grad-green-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── MISC HELPERS ────────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.gap-2 { gap: 8px; }
.nowrap { white-space: nowrap; }

.m10-divider-h {
    border: none;
    height: 1px;
    background: var(--m10-grey-100);
    margin: 24px 0;
}

.section-bg-light { background: var(--m10-off-white); }
.section-bg-green { background: var(--m10-green-light); }
.section-bg-blue  { background: var(--m10-blue-light); }

/* ── RESPONSIVE OVERRIDES ────────────────────────────────── */
@media (max-width: 767px) {
    :root {
        --section-py: 48px;
        --navbar-h: 56px;
    }

    .m10-section-title { font-size: 1.5rem; }
    .m10-navbar .navbar-search { display: none; }
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--m10-grey-200);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--m10-blue);
}

/* ── LOADING SKELETON ────────────────────────────────────── */
.m10-skeleton {
    background: linear-gradient(90deg, var(--m10-grey-100) 25%, var(--m10-grey-50) 50%, var(--m10-grey-100) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeletonShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── TOAST / SNACKBAR ────────────────────────────────────── */
.m10-toast-container {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

@media (min-width: 992px) {
    .m10-toast-container { bottom: 24px; }
}

.m10-toast {
    background: var(--m10-dark);
    color: white;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: all;
    animation: toastIn 0.3s var(--ease-spring) forwards;
    max-width: 300px;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(60px) scale(0.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

.m10-toast .toast-icon { font-size: 1rem; }
.m10-toast.toast-success .toast-icon { color: var(--m10-green); }
.m10-toast.toast-error .toast-icon { color: var(--m10-danger); }
.m10-toast.toast-info .toast-icon { color: var(--m10-cyan); }

/* ── PAGE WRAPPER UTILITY ────────────────────────────────── */
.m10-page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.m10-page-wrap .page-content {
    flex: 1;
}

/* ── INPUT / FORM STYLES ─────────────────────────────────── */
.m10-input {
    width: 100%;
    border: 1.5px solid var(--m10-grey-100);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--m10-grey-800);
    background: var(--m10-white);
    outline: none;
    transition: all var(--t-fast);
}

.m10-input:focus {
    border-color: var(--m10-blue);
    box-shadow: 0 0 0 3px var(--m10-blue-glow);
}

.m10-input:disabled {
    background: var(--m10-grey-50);
    color: var(--m10-grey-400);
}

.m10-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--m10-grey-600);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.m10-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--m10-grey-400);
    flex-wrap: wrap;
}

.m10-breadcrumb a {
    color: var(--m10-grey-400);
    transition: color var(--t-fast);
}

.m10-breadcrumb a:hover { color: var(--m10-blue); }

.m10-breadcrumb .sep { color: var(--m10-grey-200); }

.m10-breadcrumb .current {
    color: var(--m10-grey-800);
    font-weight: 600;
}

/* ── PAGINATION ──────────────────────────────────────────── */
.m10-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.m10-pagination .page-item {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--m10-grey-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--m10-grey-600);
    transition: all var(--t-fast);
    background: white;
}

.m10-pagination .page-item:hover,
.m10-pagination .page-item.active {
    background: var(--m10-blue);
    border-color: var(--m10-blue);
    color: white;
}

/* ── MODAL ───────────────────────────────────────────────── */
.m10-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,0.6);
    backdrop-filter: blur(4px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.m10-modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(13,27,42,0.25);
    animation: modalIn 0.3s var(--ease-spring);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── AVATAR ──────────────────────────────────────────────── */
.m10-avatar {
    border-radius: 50%;
    border: 2px solid var(--m10-grey-100);
    object-fit: cover;
    flex-shrink: 0;
}

.m10-avatar-sm { width: 32px; height: 32px; }
.m10-avatar-md { width: 44px; height: 44px; }
.m10-avatar-lg { width: 64px; height: 64px; }

.m10-avatar.verified {
    border-color: var(--m10-green);
    box-shadow: 0 0 0 3px var(--m10-green-light);
}

/* ── PROGRESS BAR ────────────────────────────────────────── */
.m10-progress {
    width: 100%;
    height: 6px;
    background: var(--m10-grey-100);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.m10-progress-bar {
    height: 100%;
    background: var(--grad-green-blue);
    border-radius: var(--radius-pill);
    transition: width 0.8s var(--ease-smooth);
}

/* ── STAR RATING ─────────────────────────────────────────── */
.m10-stars {
    display: flex;
    gap: 2px;
    color: var(--m10-warning);
    font-size: 0.9rem;
}

/* ── HERO SLIDER DOTS ────────────────────────────────────── */
.m10-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.m10-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--m10-grey-200);
    cursor: pointer;
    transition: all var(--t-mid);
    border: none;
}

.m10-slider-dot.active {
    background: var(--m10-green);
    width: 24px;
    border-radius: var(--radius-pill);
}

/* ── STATUS BADGE ────────────────────────────────────────── */
.m10-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.m10-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.m10-status-live::before   { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); animation: pulse 1.5s infinite; }
.m10-status-live           { color: #16a34a; }
.m10-status-ended::before  { background: var(--m10-grey-400); }
.m10-status-ended          { color: var(--m10-grey-400); }
.m10-status-soon::before   { background: var(--m10-warning); box-shadow: 0 0 0 3px rgba(245,166,35,0.25); }
.m10-status-soon           { color: #b45309; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
