/*
Theme Name:       Lupad Music Guild Theme
Theme URI:        https://lupad.website
Author:           Lupad Music Guild
Author URI:       https://lupad.website
Description:      Official theme for the Lupad Music Guild alumni community. Music-inspired design with navy, purple, and gold accents. Built to work seamlessly with the Lupad Music Guild plugin.
Version:          1.0.0
Requires at least: 6.0
Tested up to:     6.5
Requires PHP:     7.4
License:          GPL v2 or later
License URI:      https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:      lupad-theme
Tags:             music, alumni, community, woocommerce, custom-menu, featured-images, responsive-layout
*/

/* ══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════════════ */

:root {
    /* Brand palette */
    --c-gold:         #C9A84C;
    --c-gold-light:   #E8C97A;
    --c-gold-dark:    #A8872A;
    --c-navy:         #0D0B1E;
    --c-navy-mid:     #1A1535;
    --c-purple:       #4B2D8F;
    --c-purple-mid:   #6B4DB5;
    --c-purple-light: rgba(75,45,143,0.08);
    --c-blue:         #2D5BE3;
    --c-green:        #2DB87A;

    /* Neutrals */
    --c-white:    #FFFFFF;
    --c-bg:       #F7F7FA;
    --c-border:   #EDEDF2;
    --c-muted:    #8A8898;
    --c-text:     #1E1C30;
    --c-text-mid: #4A4860;

    /* Gradients */
    --g-hero:   linear-gradient(135deg, #0D0B1E 0%, #2D1A6B 55%, #1A4A2E 100%);
    --g-gold:   linear-gradient(135deg, #C9A84C 0%, #E8C97A 100%);
    --g-purple: linear-gradient(135deg, #4B2D8F 0%, #6B4DB5 100%);
    --g-dark:   linear-gradient(180deg, #1A1535 0%, #0D0B1E 100%);

    /* Typography */
    --font-base: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-w:       1280px;
    --max-w-narrow: 800px;
    --gutter:      clamp(16px, 4vw, 40px);

    /* Spacing scale */
    --sp-xs:  8px;
    --sp-sm:  16px;
    --sp-md:  24px;
    --sp-lg:  40px;
    --sp-xl:  64px;
    --sp-2xl: 96px;

    /* Shape */
    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  32px;

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);

    /* Transitions */
    --t-fast: 0.15s ease;
    --t-mid:  0.25s ease;
}

/* ══════════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-white);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Headings */
h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { line-height: 1.75; color: var(--c-text-mid); }

/* WP alignment helpers */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.wp-caption { max-width: 100%; }

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.container--narrow {
    max-width: var(--max-w-narrow);
}

.section { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }
.section--lg { padding-top: var(--sp-2xl); padding-bottom: var(--sp-2xl); }
.section--sm { padding-top: var(--sp-lg); padding-bottom: var(--sp-lg); }

.section__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: var(--sp-xs);
}

.section__heading {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
}

.section__heading--light { color: var(--c-white); }

.section__sub {
    font-size: 1rem;
    color: var(--c-muted);
    max-width: 540px;
}

.section__divider {
    width: 48px;
    height: 3px;
    background: var(--g-gold);
    border-radius: 2px;
    margin: var(--sp-sm) 0;
}

.text-center { text-align: center; }
.text-center .section__sub { margin-left: auto; margin-right: auto; }
.text-center .section__divider { margin-left: auto; margin-right: auto; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); }

@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    transition: all var(--t-mid);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
    background: var(--g-gold);
    color: var(--c-navy);
    border-color: transparent;
}
.btn--gold:hover { box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn--purple {
    background: var(--c-purple);
    color: var(--c-white);
}
.btn--purple:hover { background: var(--c-purple-mid); }

.btn--outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: var(--c-white);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--c-white);
}

.btn--outline-gold {
    background: transparent;
    border-color: var(--c-gold);
    color: var(--c-gold);
}
.btn--outline-gold:hover { background: rgba(201,168,76,0.08); }

.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--c-navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--t-mid);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--sp-md);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__mark {
    width: 36px;
    height: 44px;
    flex-shrink: 0;
}

.site-logo__text { display: flex; flex-direction: column; }

.site-logo__name {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: var(--c-gold);
    line-height: 1;
}

.site-logo__sub {
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.45);
    line-height: 1;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Primary nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.current-menu-item,
.site-nav a[aria-current="page"] {
    color: var(--c-white);
    background: rgba(255,255,255,0.08);
}

.site-nav a.current-menu-item {
    border-bottom: 2px solid var(--c-gold);
    border-radius: 0;
    background: transparent;
}

/* Header actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    flex-shrink: 0;
}

/* Logged-in header bar */
.site-header__member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__member-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--c-gold);
    flex-shrink: 0;
}

.site-header__member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header__member-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-white);
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* WooCommerce cart icon */
.site-header__cart {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
    padding: 6px;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.site-header__cart:hover { color: var(--c-white); background: rgba(255,255,255,0.08); }

.site-header__cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    background: var(--c-gold);
    color: var(--c-navy);
    font-size: 10px;
    font-weight: 800;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    display: none;
}

.site-header__cart-count.has-items { display: flex; }

/* Hamburger */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.site-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t-mid);
}

.site-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.site-mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-navy);
    z-index: 499;
    overflow-y: auto;
    padding: var(--sp-md) var(--gutter) var(--sp-xl);
    transform: translateX(-100%);
    transition: transform var(--t-mid);
}

.site-mobile-nav.is-open { transform: translateX(0); }

.site-mobile-nav__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--sp-md); }

.site-mobile-nav__links a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--r-sm);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all var(--t-fast);
}

.site-mobile-nav__links a:hover { color: var(--c-white); background: rgba(255,255,255,0.06); }
.site-mobile-nav__actions { display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--c-navy);
    color: rgba(255,255,255,0.7);
    padding-top: var(--sp-xl);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-lg);
    padding-bottom: var(--sp-xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: var(--sp-sm) 0 var(--sp-md);
    max-width: 280px;
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all var(--t-fast);
    text-decoration: none;
}

.site-footer__social a:hover { background: var(--c-gold); color: var(--c-navy); }

.site-footer__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: var(--sp-md);
}

.site-footer__links { display: flex; flex-direction: column; gap: 10px; }

.site-footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--t-fast);
}

.site-footer__links a:hover { color: var(--c-gold); }

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.site-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--c-gold); }

.site-footer__bottom {
    padding: var(--sp-md) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}

.site-footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.site-footer__pay-icons {
    display: flex;
    gap: 6px;
}

.site-footer__pay-icon {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-md); }
    .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: clamp(520px, 80vh, 800px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/*
 * HERO IMAGE PLACEHOLDER
 * Replace .hero__bg-color with:
 *   background-image: url('IMAGE_1_HERO_BANNER_HOME');
 *   background-size: cover; background-position: center;
 */
.hero__bg-color {
    position: absolute;
    inset: 0;
    background: var(--g-hero);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,11,30,0.85) 0%,
        rgba(13,11,30,0.5) 60%,
        rgba(13,11,30,0.1) 100%
    );
}

/* Subtle waveform decoration */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    opacity: 0.06;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: var(--sp-xl) 0;
}

.hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: var(--sp-sm);
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--c-white);
    margin-bottom: var(--sp-sm);
}

.hero__title-gold { color: var(--c-gold); }

.hero__description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: var(--sp-lg);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}

/* Page hero (inner pages — shorter) */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--g-hero);
    /* Phase 5: replace with page-specific image */
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,30,0.9) 0%, rgba(13,11,30,0.4) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-xl) 0 var(--sp-lg);
}

.page-hero__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 8px;
}

.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--c-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════════ */

.card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--t-mid), transform var(--t-mid);
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    /* Image placeholder background */
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-purple) 100%);
}

.card__body { padding: var(--sp-md); }
.card__label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--c-gold); text-transform: uppercase; margin-bottom: 8px; }
.card__title { font-size: 1.125rem; font-weight: 700; color: var(--c-text); margin-bottom: 8px; }
.card__text  { font-size: 0.875rem; color: var(--c-muted); line-height: 1.6; }
.card__meta  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.card__meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--c-muted); }

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .site-nav, .site-header__actions .btn { display: none; }
    .site-header__hamburger { display: flex; }
    .site-mobile-nav { display: block; }
}

/* ══════════════════════════════════════════════════════════════════
   HOME — ABOUT PREVIEW
   ══════════════════════════════════════════════════════════════════ */

.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: center; }

/*
 * ABOUT PREVIEW IMAGE PLACEHOLDER
 * Replace .about-preview__img-placeholder with:
 *   <img src="IMAGE_5_HOME_ABOUT_PREVIEW" class="about-preview__img">
 */
.about-preview__img-placeholder {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-purple-mid) 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.about-preview__content { padding: var(--sp-sm) 0; }

.about-preview__content p {
    font-size: 1rem;
    color: var(--c-text-mid);
    line-height: 1.85;
    margin-bottom: var(--sp-sm);
}

@media (max-width: 768px) {
    .about-preview { grid-template-columns: 1fr; }
    .about-preview__img-placeholder { min-height: 260px; }
}

/* ══════════════════════════════════════════════════════════════════
   HOME — EVENTS PREVIEW
   ══════════════════════════════════════════════════════════════════ */

.section--events-preview { background: var(--c-bg); }

.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }

.event-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-mid), transform var(--t-mid);
}

.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.event-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.event-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-purple) 100%);
    /* Replace with: background-image: url(IMAGE_EVENT_URL); background-size: cover; */
}

.event-card__img { width: 100%; height: 100%; object-fit: cover; }

.event-card__date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--c-purple);
    color: var(--c-white);
    border-radius: var(--r-sm);
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
}

.event-card__date-day   { display: block; font-size: 20px; font-weight: 800; line-height: 1; }
.event-card__date-month { display: block; font-size: 9px;  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }

.event-card__body { padding: var(--sp-md); }
.event-card__title { font-size: 1rem; font-weight: 700; color: var(--c-text); margin-bottom: 8px; }
.event-card__meta  { display: flex; flex-direction: column; gap: 4px; }
.event-card__meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-muted); }
.event-card__desc  { font-size: 13px; color: var(--c-muted); margin-top: 8px; line-height: 1.6; }

.events-grid__cta { text-align: center; margin-top: var(--sp-lg); }

@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   HOME — SHOP PREVIEW
   ══════════════════════════════════════════════════════════════════ */

.shop-preview { display: grid; grid-template-columns: 3fr 2fr; gap: var(--sp-xl); align-items: center; }

.shop-preview__products { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-sm); }

.shop-preview__product {
    background: var(--c-white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: var(--sp-sm);
    transition: box-shadow var(--t-mid), transform var(--t-mid);
    text-decoration: none;
    display: block;
}

.shop-preview__product:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.shop-preview__product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r-sm);
    background: var(--c-bg);
    /* Replace with product image */
    margin-bottom: var(--sp-xs);
}

.shop-preview__product-name  { font-size: 13px; font-weight: 600; color: var(--c-text); margin-bottom: 4px; }
.shop-preview__product-price { font-size: 14px; font-weight: 700; color: var(--c-purple); }

.shop-preview__content { padding: var(--sp-sm) 0; }
.shop-preview__content p { font-size: 1rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: var(--sp-md); }

@media (max-width: 900px) { .shop-preview { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   HOME — CTA BAND
   ══════════════════════════════════════════════════════════════════ */

.cta-band {
    position: relative;
    overflow: hidden;
    padding: var(--sp-2xl) 0;
    text-align: center;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    background: var(--g-hero);
    /* Replace with: background-image: url(IMAGE_8_HOME_CTA); background-size: cover; */
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,11,30,0.72);
}

.cta-band__inner {
    position: relative;
    z-index: 2;
}

.cta-band__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--c-white);
    line-height: 1.2;
    margin-bottom: var(--sp-sm);
}

.cta-band__title em { font-style: italic; color: var(--c-gold); }
.cta-band__sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: var(--sp-lg); }

/* ══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════ */

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); position: relative; }

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: var(--c-border);
    z-index: 0;
}

.timeline-item { text-align: center; position: relative; z-index: 1; }

.timeline-item__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-purple);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-sm);
    border: 3px solid var(--c-white);
    box-shadow: 0 0 0 3px var(--c-purple);
}

.timeline-item__period { font-size: 12px; font-weight: 700; color: var(--c-gold); margin-bottom: 4px; letter-spacing: 1px; }
.timeline-item__title  { font-size: 1rem; font-weight: 700; color: var(--c-text); margin-bottom: 8px; }
.timeline-item__text   { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

/* Mission section */
.mission-section { background: var(--g-hero); padding: var(--sp-2xl) 0; }
.mission-section .section__heading { color: var(--c-white); }
.mission-section .section__label   { color: var(--c-gold); }

.mission-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); margin-top: var(--sp-lg); }

.mission-pillar { text-align: center; }

.mission-pillar__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-sm);
    color: var(--c-gold);
}

.mission-pillar__title { font-size: 1.1rem; font-weight: 700; color: var(--c-gold); margin-bottom: 8px; }
.mission-pillar__text  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Community gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--sp-xs); }

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-navy), var(--c-purple));
    /* Replace with: background-image: url(IMAGE_COMMUNITY); background-size: cover; */
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-mid); }
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2,1fr); } .timeline::before { display: none; } }
@media (max-width: 600px) { .timeline { grid-template-columns: 1fr; } .mission-pillars { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: repeat(3,1fr); } }

/* ══════════════════════════════════════════════════════════════════
   EVENTS PAGE
   ══════════════════════════════════════════════════════════════════ */

.events-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }

@media (max-width: 900px) { .events-page-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .events-page-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════ */

.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-xl); align-items: start; }

.contact-info { }
.contact-info__item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: var(--sp-md); }
.contact-info__icon { width: 44px; height: 44px; background: var(--c-purple-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--c-purple); flex-shrink: 0; }
.contact-info__label { font-size: 12px; font-weight: 600; color: var(--c-muted); margin-bottom: 2px; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-info__value { font-size: 15px; font-weight: 500; color: var(--c-text); }

.contact-form-card { background: var(--c-white); border-radius: var(--r-lg); padding: var(--sp-lg); box-shadow: var(--shadow-md); }

.form-field { margin-bottom: var(--sp-sm); }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--c-text-mid); margin-bottom: 6px; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-family: var(--font-base);
    font-size: 14px;
    color: var(--c-text);
    background: var(--c-white);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--c-purple);
    box-shadow: 0 0 0 3px rgba(75,45,143,0.1);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — SHOP PAGE
   ══════════════════════════════════════════════════════════════════ */

.woocommerce-notices-wrapper { margin-bottom: var(--sp-md); }

/* Trust badges */
.shop-trust-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); padding: var(--sp-md) 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); margin-bottom: var(--sp-lg); }
.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-badge__icon { width: 36px; height: 36px; color: var(--c-purple); flex-shrink: 0; }
.trust-badge__title { font-size: 13px; font-weight: 700; color: var(--c-text); margin-bottom: 2px; }
.trust-badge__sub   { font-size: 12px; color: var(--c-muted); }

/* Shop layout */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-lg); align-items: start; }

/* Sidebar categories */
.shop-sidebar {}
.shop-sidebar__title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--sp-sm); }
.shop-sidebar__links { display: flex; flex-direction: column; gap: 2px; }
.shop-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--c-text-mid);
    text-decoration: none;
    transition: all var(--t-fast);
}
.shop-sidebar__link:hover { background: var(--c-purple-light); color: var(--c-purple); }
.shop-sidebar__link.is-active { background: var(--c-purple-light); color: var(--c-purple); font-weight: 600; }
.shop-sidebar__link svg { color: var(--c-muted); }

/* Sort bar */
.shop-sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-md); gap: var(--sp-sm); }
.shop-sort-bar .woocommerce-result-count { font-size: 14px; color: var(--c-muted); }

/* WooCommerce product grid override */
.woocommerce ul.products,
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--sp-md) !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product,
.product-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-mid), transform var(--t-mid);
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}

.woocommerce ul.products li.product:hover,
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Product image */
.woocommerce ul.products li.product a img,
.product-card__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: var(--c-bg);
}

/* Product body */
.product-card__body { padding: var(--sp-sm); }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 6px;
    text-decoration: none;
    display: block;
}

.woocommerce ul.products li.product .price,
.product-card__price {
    font-size: 15px;
    font-weight: 800;
    color: var(--c-purple);
    display: block;
    margin-bottom: var(--sp-sm);
}

/* Wishlist heart */
.product-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--c-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--c-muted);
    transition: all var(--t-fast);
}
.product-card__wishlist:hover { color: #e84c4c; }

/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: block !important;
    width: 100% !important;
    padding: 10px !important;
    background: var(--c-purple) !important;
    color: var(--c-white) !important;
    border: none !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--font-base) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background var(--t-fast) !important;
    text-align: center !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--c-purple-mid) !important; }

/* Alt button styling for checkout/cart */
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--g-gold) !important;
    color: var(--c-navy) !important;
}

@media (max-width: 1024px) { .woocommerce ul.products, .products-grid { grid-template-columns: repeat(3,1fr) !important; } }
@media (max-width: 900px)  {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-trust-badges { grid-template-columns: repeat(2,1fr); }
    .woocommerce ul.products, .products-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px)  { .woocommerce ul.products, .products-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
   ══════════════════════════════════════════════════════════════════ */

.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: start; margin-bottom: var(--sp-xl) !important; }

.woocommerce div.product div.images .woocommerce-product-gallery { position: relative; }
.woocommerce div.product div.images img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

.woocommerce div.product .product_title { font-size: clamp(1.5rem, 3vw, 2rem) !important; font-weight: 800; color: var(--c-text); margin-bottom: var(--sp-sm) !important; }
.woocommerce div.product .price { font-size: 1.5rem !important; font-weight: 800; color: var(--c-purple) !important; margin-bottom: var(--sp-md) !important; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--c-text-mid); line-height: 1.75; margin-bottom: var(--sp-md); font-size: 15px; }

.woocommerce form.cart .quantity { margin-right: 12px; }
.woocommerce form.cart .qty { width: 70px !important; padding: 10px !important; border: 1.5px solid var(--c-border) !important; border-radius: var(--r-sm) !important; font-size: 15px !important; text-align: center; }

.woocommerce div.product form.cart .single_add_to_cart_button { background: var(--c-purple) !important; color: var(--c-white) !important; padding: 13px 32px !important; border-radius: var(--r-sm) !important; font-size: 15px !important; font-weight: 700 !important; border: none !important; }

@media (max-width: 768px) { .woocommerce div.product { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — CART
   ══════════════════════════════════════════════════════════════════ */

.woocommerce-cart .woocommerce { max-width: var(--max-w); margin: 0 auto; padding: var(--sp-xl) var(--gutter); }

.woocommerce-cart table.cart { border-collapse: collapse; width: 100%; }
.woocommerce-cart table.cart th { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--c-muted); padding: var(--sp-sm); border-bottom: 2px solid var(--c-border); }
.woocommerce-cart table.cart td { padding: var(--sp-sm); border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.woocommerce-cart table.cart td.product-name a { font-weight: 600; color: var(--c-text); text-decoration: none; }
.woocommerce-cart table.cart .product-thumbnail img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--r-sm); }

.woocommerce .cart_totals { background: var(--c-white); border-radius: var(--r-lg); padding: var(--sp-md); box-shadow: var(--shadow-sm); }
.woocommerce .cart_totals h2 { font-size: 1.125rem; margin-bottom: var(--sp-md); }
.woocommerce .cart_totals table { width: 100%; border-collapse: collapse; }
.woocommerce .cart_totals table th, .woocommerce .cart_totals table td { padding: 10px 0; border-bottom: 1px solid var(--c-border); font-size: 14px; }
.woocommerce .cart_totals .order-total th, .woocommerce .cart_totals .order-total td { font-size: 16px; font-weight: 800; border-bottom: none; }
.woocommerce .cart_totals .checkout-button { display: block; width: 100%; text-align: center; padding: 14px; background: var(--g-gold) !important; color: var(--c-navy) !important; border-radius: var(--r-sm) !important; font-weight: 700 !important; font-size: 15px !important; margin-top: var(--sp-sm); }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — CHECKOUT
   ══════════════════════════════════════════════════════════════════ */

.woocommerce-checkout .woocommerce { max-width: var(--max-w); margin: 0 auto; padding: var(--sp-xl) var(--gutter); }
.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-xl); }
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width: 100% !important; float: none !important; }

.woocommerce .woocommerce-billing-fields h3,
.woocommerce .woocommerce-shipping-fields h3,
.woocommerce #order_review_heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-md);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-border);
}

.woocommerce .form-row { margin-bottom: var(--sp-sm) !important; }
.woocommerce .form-row label { font-size: 13px; font-weight: 600; color: var(--c-text-mid); display: block; margin-bottom: 5px; }
.woocommerce .form-row input.input-text,
.woocommerce .form-row select,
.woocommerce .form-row textarea {
    width: 100% !important;
    padding: 11px 14px !important;
    border: 1.5px solid var(--c-border) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--font-base) !important;
    font-size: 14px !important;
    color: var(--c-text) !important;
    background: var(--c-white) !important;
    transition: border-color var(--t-fast) !important;
    outline: none !important;
}
.woocommerce .form-row input.input-text:focus { border-color: var(--c-purple) !important; }

#order_review { background: var(--c-bg); border-radius: var(--r-lg); padding: var(--sp-md); }
#order_review table.shop_table { width: 100%; border-collapse: collapse; }
#order_review table.shop_table td, #order_review table.shop_table th { padding: 10px 0; border-bottom: 1px solid var(--c-border); font-size: 14px; }
#order_review table.shop_table .order-total th, #order_review table.shop_table .order-total td { font-weight: 800; font-size: 16px; border-bottom: none; }

#place_order { width: 100%; background: var(--g-gold) !important; color: var(--c-navy) !important; padding: 15px !important; font-size: 16px !important; font-weight: 800 !important; border-radius: var(--r-sm) !important; border: none !important; margin-top: var(--sp-md); }

@media (max-width: 768px) { .woocommerce-checkout .col2-set { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   BREADCRUMB & PAGINATION
   ══════════════════════════════════════════════════════════════════ */

.breadcrumb { font-size: 13px; color: var(--c-muted); margin-bottom: var(--sp-md); }
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-purple); }
.breadcrumb span { margin: 0 6px; }

.woocommerce nav.woocommerce-pagination ul { display: flex; gap: 6px; list-style: none; padding: 0; justify-content: center; margin: var(--sp-lg) 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text-mid);
    background: var(--c-bg);
    text-decoration: none;
    transition: all var(--t-fast);
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--c-purple); color: var(--c-white); }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — NOTICES
   ══════════════════════════════════════════════════════════════════ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 14px 16px;
    border-radius: var(--r-sm);
    margin-bottom: var(--sp-md);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.woocommerce-message { background: #EAF7F1; color: #1A7A4A; border-left: 4px solid var(--c-green); }
.woocommerce-info    { background: #EEF1FD; color: #2D5BE3; border-left: 4px solid var(--c-blue); }
.woocommerce-error   { background: #FEF0F0; color: #C0392B; border-left: 4px solid #E84C4C; }
.woocommerce-error li { list-style: none; }

/* ══════════════════════════════════════════════════════════════════
   AUTH & DASHBOARD PAGE WRAPPERS
   (plugin renders inside these, theme provides outer shell)
   ══════════════════════════════════════════════════════════════════ */

.page-template-mg-login .site-main,
.page-template-dashboard .site-main {
    padding: 0;
}

/* Remove default WP content padding on plugin pages */
.page-template-mg-login .entry-content,
.page-template-dashboard .entry-content {
    margin: 0;
    padding: 0;
    max-width: none;
}

/* ══════════════════════════════════════════════════════════════════
   ENTRY CONTENT (pages / posts)
   ══════════════════════════════════════════════════════════════════ */

.entry-content {
    max-width: 720px;
    margin: var(--sp-xl) auto;
    padding: 0 var(--gutter);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--c-text-mid);
}

.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--c-text); margin-top: var(--sp-md); margin-bottom: var(--sp-sm); }
.entry-content p { margin-bottom: var(--sp-sm); }
.entry-content a { color: var(--c-purple); text-decoration: underline; }
.entry-content img { border-radius: var(--r-md); margin: var(--sp-md) 0; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: var(--sp-sm); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote { border-left: 4px solid var(--c-gold); padding: var(--sp-sm) var(--sp-md); background: var(--c-bg); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: var(--sp-md) 0; font-style: italic; color: var(--c-text-mid); }

/* ══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — MID-PAGE CTA BAND (Shop page)
   ══════════════════════════════════════════════════════════════════ */

.shop-mid-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    margin: var(--sp-xl) 0;
    padding: var(--sp-xl);
    text-align: center;
}

.shop-mid-cta__bg {
    position: absolute;
    inset: 0;
    background: var(--g-hero);
    /* Replace: background-image: url(IMAGE_SHOP_BANNER); */
}

.shop-mid-cta__overlay { position: absolute; inset: 0; background: rgba(13,11,30,0.72); }
.shop-mid-cta__content { position: relative; z-index: 2; }
.shop-mid-cta__title   { font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; color: var(--c-white); margin-bottom: 10px; }
.shop-mid-cta__sub     { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: var(--sp-md); }

/* ══════════════════════════════════════════════════════════════════
   MISC UTILITIES
   ══════════════════════════════════════════════════════════════════ */

.gold-bar { width: 48px; height: 3px; background: var(--g-gold); border-radius: 2px; margin: 12px 0; }
.gold-bar--center { margin-left: auto; margin-right: auto; }

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

/* Smooth section transitions */
.section { animation: fadeInUp 0.5s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
