/* Mascot Collectibles | Shared visual foundation */
@charset "utf-8";

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100%;
    margin: 0;
    color: #191815;
    background: #f4f2ed;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    display: block;
}

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

img {
    height: auto;
}

button, input, select, textarea {
    margin: 0;
    color: inherit;
    font: inherit;
}

button, [type="button"], [type="submit"] {
    appearance: none;
}

a {
    color: #8a5a00;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: #b77900;
}

:focus-visible {
    outline: 3px solid #e7a700;
    outline-offset: 3px;
}

hr {
    height: 1px;
    margin: 32px 0;
    border: 0;
    background: #d9d4c9;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6,
.display-title, .eyebrow, .section-title {
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-weight: 800;
}

h1, .display-title {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

h2, .section-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

h3 {
    margin-bottom: 12px;

    font-size: 1.5rem;

    line-height: 1.15;
}

h4, h5, h6 {
    margin-bottom: 10px;
    line-height: 1.25;
}

p {
    margin-bottom: 18px;
}

.eyebrow {
    margin-bottom: 8px;
    color: #b77900;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lead {
    max-width: 720px;

    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.accent-text {
    color: #c88a00;
}

.muted {
    color: #6c685f;
}

.tiny-text {
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #6c685f;
    font-size: 0.8125rem;
    line-height: 1.45;
    text-align: center;
}

.tiny-text small {
    font-size: inherit;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.page-wrap, .section {
    width: 100%;
    padding: 72px 24px;
}

.page-inner, .container {
    width: min(100%, 1180px);
    margin-inline: auto;
}

.container-narrow {
    width: min(100%, 820px);
    margin-inline: auto;
}

.page-content > h1, .page-content > h2, .page-content > p {
    max-width: 760px;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 48px;
    align-items: start;
}

.card-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.nav-wrap, .site-header {
    position: relative;
    z-index: 20;
    width: 100%;
    color: #ffffff;
    background: #11110f;
    border-bottom: 3px solid #c88a00;
}

.site-nav {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.site-logo img {
    width: auto;

    max-height: 46px;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
    color: #e7a700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    width: auto;
    min-height: 46px;
    padding: 12px 22px;
    border: 2px solid #11110f;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: #11110f;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.055em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease,
        color 160ms ease, transform 160ms ease;
}

.btn:hover {
    color: #ffffff;
    background: #302e28;
    border-color: #302e28;
    text-decoration: none;
    transform: translateY(-1px);
}

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

.btn:disabled, .btn[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.btn-primary, .btn-accent {
    color: #11110f;
    background: #e7a700;
    border-color: #e7a700;
}

.btn-primary:hover, .btn-accent:hover {
    color: #11110f;
    background: #f0b91f;
    border-color: #f0b91f;
}

.btn-outline {
    color: #11110f;
    background: transparent;
    border-color: #11110f;
}

.btn-outline:hover {
    color: #ffffff;
    background: #11110f;
    border-color: #11110f;
}

.site-header .btn-outline, .dark-section .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.site-header .btn-outline:hover, .dark-section .btn-outline:hover {
    color: #11110f;
    background: #ffffff;
}

.btn-small {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.7rem;
}

.btn-wide {
    width: 100%;
}

/* ==========================================================================
   Shared Sections
   ========================================================================== */
.light-section {
    color: #191815;
    background: #ffffff;
}

.soft-section {
    color: #191815;
    background: #f4f2ed;
}

.dark-section {
    color: #ffffff;
    background: #151411;
}

.dark-section .muted {
    color: #c5c0b6;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.campaign-band {
    position: relative;
    overflow: hidden;
    padding: 24px 28px;
    color: #ffffff;
    background: #141310;
    border-left: 5px solid #e7a700;
}

.campaign-band::after {
    position: absolute;
    right: -60px;
    bottom: -85px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(231, 167, 0, 0.28);
    border-radius: 50%;
    content: "";
}

.campaign-band-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.feature-list, .check-list {
    display: grid;

    margin: 0;

    padding: 0;

    gap: 16px;

    list-style: none;
}

.feature-list li, .check-list li {
    position: relative;
    padding-left: 28px;
}

.feature-list li::before, .check-list li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 14px;
    height: 14px;
    background: #e7a700;
    border-radius: 50%;
    content: "";
}

/* ==========================================================================
   Cards / Reusable Components
   ========================================================================== */
.mc-card, .checkout-card, .info-card, .product-card {
    width: 100%;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #ded9cf;
    border-radius: 5px;
    box-shadow: 0 12px 28px rgba(33, 29, 20, 0.07);
}

.mc-card h3, .checkout-card h3, .info-card h3, .product-card h3 {
    color: #191815;
}

.card-media {
    margin: -26px -26px 22px;
    overflow: hidden;
    background: #e8e4dc;
    border-radius: 4px 4px 0 0;
}

.card-media img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.card-meta {
    display: flex;
    margin-top: 18px;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #e5e0d7;
    font-size: 0.82rem;
}

.badge {
    display: inline-flex;
    min-height: 26px;
    padding: 4px 10px;
    align-items: center;
    color: #191815;
    background: #f3c951;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.icon-feature {
    display: grid;

    grid-template-columns: 42px minmax(0, 1fr);

    gap: 14px;

    align-items: start;
}

.icon-feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #191815;
    background: #e7a700;
    border-radius: 50%;
    font-weight: 800;
}

.price {
    color: #a76e00;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
}

.divider-label {
    display: flex;
    margin: 24px 0;
    align-items: center;
    gap: 14px;
    color: #777269;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.divider-label::before, .divider-label::after {
    height: 1px;

    flex: 1;

    background: #ddd8ce;

    content: "";
}

/* ==========================================================================
   Footer
   ========================================================================== */
.mc-footer, .site-footer {
    width: 100%;
    padding: 52px 24px 24px;
    color: #d7d2c8;
    background: #0f0f0d;
    border-top: 3px solid #c88a00;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr repeat(3, minmax(120px, 1fr));

    gap: 40px;
}

.footer-title {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #bdb8ae;
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e7a700;
}

.footer-bottom {
    display: flex;
    margin-top: 42px;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #34322d;
    font-size: 0.75rem;
}

/* ==========================================================================
   Messages
   ========================================================================== */
.mc-msg {
    display: none;
    width: 100%;
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-left-width: 4px;
    border-radius: 3px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.mc-msg.success {
    display: block;

    color: #24552f;

    background: #edf6ed;

    border-color: #70a97a;
}

.mc-msg.error {
    display: block;
    color: #7b2420;
    background: #fff0ee;
    border-color: #c5675f;
}

.mc-msg.info {
    display: block;
    color: #604900;
    background: #fff8db;
    border-color: #d8aa24;
}

/* ==========================================================================
   Loading States
   ========================================================================== */
.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mc-spin 0.75s linear infinite;
}

.btn-primary .spinner, .btn-accent .spinner {
    border-color: rgba(17, 17, 15, 0.3);

    border-top-color: #11110f;
}

button.loading .spinner, .btn.loading .spinner {
    display: inline-block;
}

.ui-locked {
    cursor: wait;
}

.ui-overlay {
    position: relative;
}

.ui-overlay::after {
    position: absolute;
    z-index: 50;
    inset: 0;
    background: rgba(244, 242, 237, 0.72);
    content: "";
}

@keyframes mc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.center, .text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.full-width {
    width: 100%;
}

.hide, .hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
