/* ===== Naturens Guld – Natural / Organic Design System (matchar React-versionen) ===== */

:root {
    --background: #faf7f0;          /* hsl(45 30% 97%) */
    --foreground: #2b2620;          /* hsl(30 10% 15%) */
    --card: #f4eee2;                /* hsl(45 25% 95%) */
    --muted: #ede7d8;
    --muted-foreground: #7a7060;

    --primary: #6b7a3a;             /* olive  hsl(85 35% 35%) */
    --primary-light: #889a4f;
    --primary-dark: #4f5a28;
    --primary-foreground: #faf7f0;

    --accent: #e8b53d;              /* honey  hsl(40 80% 55%) */
    --accent-light: #f1c860;
    --accent-dark: #c99821;
    --accent-foreground: #2b2620;

    --gold: #d4af37; /* gold color */

    --grey-dark: #5a5858;

    --cream: #faf7f0;
    --cream-dark: #ede7d8;
    --terracotta: #c97b5e;
    --earth: #5e4d3a;

    --border: #ddd4be;

    --gradient-hero: linear-gradient(135deg, rgba(107,122,58,0.92), rgba(232,181,61,0.82));
    --gradient-gold: linear-gradient(135deg, #e8b53d, #f1c860);
    --gradient-card: linear-gradient(180deg, #faf7f0, #f0e9d8);

    --shadow-soft: 0 4px 20px -4px rgba(94,77,58,0.10);
    --shadow-card: 0 8px 30px -8px rgba(94,77,58,0.15);
    --shadow-elevated: 0 20px 50px -15px rgba(94,77,58,0.20);

    --radius: 0.5rem;
}

/* Typografi */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a { text-decoration: none; }

/* ===== Header ===== */
.ng-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.ng-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.ng-brand-logo {
    height: 60px;
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

@media (max-width: 576px) {
    .ng-brand-logo { height: 44px; }
}

.ng-footer-brand {
    display: inline-flex;
    align-items: center;
}

.ng-footer-logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: transparent;
}

.ng-nav .nav-link {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.ng-nav .nav-link:hover,
.ng-nav .nav-link:focus,
.ng-nav .nav-link.active {
    color: var(--primary-light);
}

    .ng-nav .nav-link.active::after {
        content: "";
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.25rem;
        height: 2px;
        background: var(--primary-light);
        border-radius: 2px;
    }

.ng-cart-badge {
    background: var(--accent) !important;
    color: var(--accent-foreground) !important;
    font-size: 0.65rem;
}

/* Mobile toggler — smaller, icon-based */
.ng-toggler {
    border: 1px solid thick var(--border);
    background: transparent;
    color: var(--foreground);
    padding: 0.25rem 0.5rem;
    line-height: 1;
    font-size: 1.25rem;
    border-radius: 0.375rem;
    box-shadow: none;
}
.ng-toggler:focus { box-shadow: 0 0 0 0.5rem rgba(107, 122, 58, 0.2); }
.ng-toggler:hover { color: var(--primary-light); }
.ng-toggler i { font-size: 1.75rem; vertical-align: middle; }

.ng-mobile-cart {
    color: var(--foreground);
    padding: 0.25rem 0.5rem;
}
.ng-mobile-cart:hover { color: var(--primary-light); }

/* ===== Hero / Bildspel ===== */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(43, 38, 32, 0.75), rgba(43, 38, 32, 0.45) 60%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #faf7f0;
}

.hero-eyebrow {
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #faf7f0;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(250, 247, 240, 0.5);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-indicators button.active {
    background: var(--accent);
    width: 32px;
}

/* Hero text crossfade */
.hero-text {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
    max-width: 36rem;
    pointer-events: none;
}
.hero-text.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Offcanvas (right-side mobile menu) */
.ng-offcanvas {
    background: var(--background);
    color: var(--primary);
    width: 300px;
    max-width: 85vw;
    border-left: 1px solid var(--border);
}
.ng-offcanvas .offcanvas-header { padding: 1rem 1.25rem; }
.ng-mobile-link {
    display: block;
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ng-mobile-link:hover,
.ng-mobile-link:focus,
.ng-mobile-link.active { color: var(--primary-light); }

/* ===== Buttons ===== */
.btn-ng-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ng-primary:hover {
    background: var(--primary-dark);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-card);
}

.btn-ng-accent {
    background: var(--gradient-gold);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-ng-accent:hover {
        color: var(--accent-foreground);
        transform: translateY(-1px);
        box-shadow: var(--shadow-elevated);
        filter: brightness(0.95);
    }

.btn-ng-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ng-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-outline-danger {
    padding: 0.65rem 1.5rem;
    font-weight: 500;
}

.btn-ng-outline-secondary {
    border: 1px solid black;
    color: black;
    background: transparent;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ng-outline-secondary:hover {
    background: var(--grey-dark);
    color: white;
}

/* ===== Compact table action buttons ===== */
.btn-compact {
    padding: 0.3rem 0.55rem;
    font-size: 0.78rem;
    line-height: 1;
    border-radius: 0.375rem;
}
.btn-compact i {
    font-size: 0.85rem;
}

/* ===== Sections ===== */
.section-padding { padding: 4rem 0; }

@media (min-width: 768px) {
    .section-padding { padding: 6rem 0; }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.section-sub {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.bg-secondary-soft { background-color: #f0e9d8; }

/* ===== Value props ===== */
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #f0e9d8;
    /*color: var(--primary);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 6000;
    color: var(--gold);
}

.value-icon i {
    transition: transform 0.2s ease;
}

.value-icon:hover i {
    transform: scale(1.15);
}

/* ===== Product cards ===== */
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    background: var(--muted);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.product-card .desc {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card .unit {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.badge-stock {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-out {
    background: var(--terracotta);
    color: #fff;
}

.badge-comming {
    background: #1c4a2a;
    color: #fff;
}

/* ===== Footer ===== */
.ng-footer {
    background: var(--primary-dark);
    color: var(--primary-foreground);
    padding: 2rem 0 1.5rem;
    margin-top: auto;
}

.ng-footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ng-footer a {
    color: rgba(250, 247, 240, 0.8);
    transition: color 0.2s ease;
}

.ng-footer a:hover { color: var(--accent-light); }

.ng-footer .footer-bottom {
    border-top: 1px solid rgba(250, 247, 240, 0.15);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(250, 247, 240, 0.6);
    font-size: 0.85rem;
}

/* ===== Forms / inputs ===== */
.form-control, .form-select {
    border-color: var(--border);
    background-color: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(107, 122, 58, 0.15);
}

/* ===== Alerts ===== */
.alert-success {
    background: #e8efd6;
    color: var(--primary-dark);
    border-color: #cfdca5;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== Generic page sections ===== */
.ng-section {
    padding: 3rem 0;
}
@media (min-width: 768px) {
    .ng-section { padding: 5rem 0; }
}

.ng-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    letter-spacing: -0.01em;
}

.ng-section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0;
}

.ng-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0;
    opacity: 1;
}

/* ===== Checkout: summary card ===== */
.ng-summary-card {
    background: var(--card, #fff);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
@media (min-width: 992px) {
    .ng-summary-card { padding: 2rem; }
}

.ng-summary-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--muted, #f5f1e8);
}

.min-w-0 { min-width: 0; }

.ng-secure-box {
    background: var(--secondary, #f5f1e8);
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

/* ===== Accent CTA button ===== */
.ng-btn-accent {
    background: var(--accent, #e8b53d);
    color: #1a1a1a;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
    .ng-btn-accent:hover,
    .ng-btn-accent:focus {
        background: var(--accent, #e8b53d);
        color: #1a1a1a;
        filter: brightness(1);
        box-shadow: 0 6px 18px rgba(232, 181, 61, 0.35);
    }

/* ===== Confirmation ===== */
.ng-confirmation-card {
    max-width: 640px;
    background: var(--card, #fff);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
    .ng-confirmation-card { padding: 3.5rem 3rem; }
}

.ng-confirmation-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(107, 122, 58, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.ng-info-tile {
    background: var(--secondary, #f5f1e8);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

/* ===== Form polish for checkout ===== */
.form-control-lg {
    border-radius: 10px;
    border-color: var(--border);
}
.form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(107, 122, 58, 0.15);
}

/* ===== Cart items ===== */
.ng-cart-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--card, #fff);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
@media (min-width: 576px) {
    .ng-cart-item { flex-direction: row; padding: 1.25rem; }
}

.ng-cart-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--muted, #f5f1e8);
}
@media (min-width: 576px) {
    .ng-cart-thumb { width: 128px; height: 128px; flex-shrink: 0; }
}

.ng-cart-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.ng-cart-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    color: var(--primary);
}

.ng-cart-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ng-qty-form {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.ng-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--foreground, #2d2d2d);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.ng-qty-btn:hover { background: var(--secondary, #f5f1e8); border-color: var(--primary); }

.ng-qty-value {
    min-width: 2.25rem;
    text-align: center;
    font-weight: 600;
}

.ng-cart-subtotal {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary);
}

.ng-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #b03a2e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.ng-remove-btn:hover { background: rgba(176, 58, 46, 0.1); }

/* Order status badges */
.ng-status {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
}
.ng-status-pending {
    background: #fff4e0;
    color: #8a5a00;
    border-color: #f5d28a;
}
.ng-status-paid {
    background: #e2f3e4;
    color: #1f6b2a;
    border-color: #a8d8b0;
}
.ng-status-shipped {
    background: #e8e1f5;
    color: #4b2e83;
    border-color: #c8b8e6;
}
.ng-status-delivered {
    background: #e3efff;
    color: #1a4a8a;
    border-color: #aac8f0;
}
.ng-status-cancelled {
    background: #fbe3e0;
    color: #8a2418;
    border-color: #f0b3aa;
}

/* ===== Pagination ===== */
.pagination {
    gap: 0.35rem;
}

.pagination .page-item .page-link {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 0.5rem 0.85rem;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.pagination .page-item .page-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    background: var(--muted);
    color: var(--muted-foreground);
    border-color: var(--border);
    opacity: 0.6;
    cursor: not-allowed;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 600;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* ===== Kommande lanseringar – modern promo-sektion ===== */
.upcoming-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b3a1f 0%, #3d5a3a 55%, #5e4d3a 100%);
    color: #faf7f0;
    overflow: hidden;
}
.upcoming-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(232,181,61,0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(232,181,61,0.12), transparent 50%);
    pointer-events: none;
}
.upcoming-section > .container { position: relative; z-index: 1; }
.upcoming-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: .78rem; font-weight: 600;
    color: var(--accent-light);
    background: rgba(232,181,61,0.1);
    border: 1px solid rgba(232,181,61,0.35);
    padding: .4rem .9rem; border-radius: 999px;
    margin-bottom: 1rem;
}
.upcoming-eyebrow .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(232,181,61,0.6);
    animation: ng-pulse 2s infinite;
}
@keyframes ng-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(232,181,61,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(232,181,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,181,61,0); }
}
.upcoming-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin: 0 0 .5rem;
    color: #faf7f0;
}
.upcoming-sub {
    color: rgba(250,247,240,0.78);
    margin-bottom: 2.5rem;
    max-width: 620px;
}
.upcoming-card {
    position: relative;
    background: rgba(250,247,240,0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(250,247,240,0.12);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.upcoming-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,181,61,0.55);
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.55);
}
.upcoming-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1f2a17;
}
.upcoming-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.upcoming-card:hover .upcoming-card-img img { transform: scale(1.06); }
.upcoming-card-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.upcoming-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent);
    color: #2b2620;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    padding: .35rem .7rem; border-radius: 999px;
    z-index: 2;
}
.upcoming-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.upcoming-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; margin: 0 0 .35rem; color: #faf7f0;
}
.upcoming-card-body .cat {
    font-size: .8rem; color: rgba(250,247,240,0.6);
    text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: .9rem;
}
.upcoming-card-body p {
    color: rgba(250,247,240,0.78);
    font-size: .92rem; line-height: 1.55;
    margin-bottom: 1.2rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.upcoming-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-top: auto;
}
.upcoming-date {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--accent-light); font-size: .85rem; font-weight: 600;
}
.upcoming-cta {
    background: var(--accent);
    color: #2b2620;
    border: none;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 600; font-size: .85rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .35rem;
    transition: background .2s ease, transform .2s ease;
}
.upcoming-cta:hover { background: var(--accent-light); color: #2b2620; transform: translateX(2px); }
