
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-warmth: #B8540C;
    --warm-amber: #D17A3A;
    --light-amber: #F4A460;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --light-bg: #FDF6F0;
    --text-dark: #1A1A1A;
    --text-light: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(184, 84, 12, 0.1);
    z-index: 1000;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-warmth);
    text-decoration: none;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.logo .unofficial {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1rem;
    color: #ff00ff;
    position: absolute;
    top: -1rem;
    left: 1.7rem;   /* adjust to sit between "The Cosy" and "Display" */
    transform: rotate(-12deg); /* slight angle for hand-written effect */
    pointer-events: none; /* so it doesn’t interfere with clicking the logo */
}
.logo .unofficial {
    /*   font-family: 'Permanent Marker', 'Comic Sans MS', cursive, sans-serif;*/
}



nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--warm-amber);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    margin-top: 60px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deep-warmth);
}

.hero-content .subheading {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-amber);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--warm-amber);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background: var(--deep-warmth);
    border-color: var(--deep-warmth);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 84, 12, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-amber);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--light-amber);
    color: var(--white);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(184, 84, 12, 0.15);
}

.hero-dual-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
}

.hero-media-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(184, 84, 12, 0.12);
    border: 1px solid rgba(244, 164, 96, 0.4);
}

.hero-media-card img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    display: block;
}

.hero-media-card figcaption {
    padding: 0.75rem 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
    background: linear-gradient(180deg, #fffaf6 0%, #fff3ea 100%);
}

.metrics-included-banner {
    padding-top: 0;
}

.metrics-included-card {
    max-width: 900px;
    margin: -1rem auto 1rem;
    padding: 1.6rem 1.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ef 0%, #ffe8d4 100%);
    border: 2px solid rgba(184, 84, 12, 0.25);
    box-shadow: 0 12px 30px rgba(184, 84, 12, 0.14);
    text-align: center;
}

.metrics-included-kicker {
    color: #a15018;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metrics-included-card h2 {
    margin-bottom: 0.8rem;
}

.metrics-included-card p {
    color: var(--text-dark);
    max-width: 760px;
    margin: 0 auto;
}

.metrics-device-tags {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metrics-device-tags span {
    border: 1px solid rgba(184, 84, 12, 0.35);
    background: #fff;
    color: #8f4a1a;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subheading {
        font-size: 1.2rem;
    }

    .btn-secondary {
        display: block;
        margin: 1rem 0 0 0;
    }

    .hero-dual-media {
        grid-template-columns: 1fr;
    }

    .metrics-included-card {
        margin-top: 0;
        padding: 1.2rem;
    }
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

section.light {
    background-color: var(--light-bg);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--deep-warmth);
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--deep-warmth);
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--warm-amber);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.08);
    border-top: 4px solid var(--warm-amber);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(184, 84, 12, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--deep-warmth);
}

.feature-card p {
    color: var(--text-light);
}

/* Feature screenshot placeholders */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.placeholder-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
    border: 1px solid rgba(244, 164, 96, 0.4);
}

.placeholder-image {
    border: 2px dashed var(--light-amber);
    border-radius: 12px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: repeating-linear-gradient(
        45deg,
        #fffaf6,
        #fffaf6 12px,
        #fff3ea 12px,
        #fff3ea 24px
    );
    font-weight: 600;
    letter-spacing: 0.3px;
}

.placeholder-card h3 {
    font-size: 1.1rem;
    margin: 0.9rem 0 0.5rem;
}

.placeholder-file {
    color: var(--text-light);
    font-size: 0.88rem;
    word-break: break-word;
}

.placeholder-file code {
    background: #fff3ea;
    padding: 0.15rem 0.35rem;
    border-radius: 6px;
    color: #9a4f1a;
}

/* Product Details */
.product-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.details-image {
    text-align: center;
}

.details-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.details-list {
    list-style: none;
}

.details-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-amber);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.details-list li::before {
    content: "✓";
    color: var(--warm-amber);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.details-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
    border: 2px solid var(--light-amber);
    transition: all 0.3s ease;
}

.price-card.featured {
    border-color: var(--warm-amber);
    background: linear-gradient(135deg, rgba(209, 122, 58, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
    transform: scale(1.05);
}

.price-label {
    color: var(--warm-amber);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--deep-warmth);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-details {
    grid-column: 3;
}

.timeline-content {
    grid-column: 1;
}

.timeline-marker {
    grid-column: 2;
    width: 40px;
    height: 40px;
    background: var(--warm-amber);
    border: 4px solid var(--white);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 4px var(--warm-amber);
}

.timeline-details {
    grid-column: 3;
}

.timeline-title {
    font-weight: 700;
    color: var(--deep-warmth);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-item .timeline-content,
    .timeline-item .timeline-marker,
    .timeline-item .timeline-details,
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-details {
        grid-column: 1;
        text-align: left;
    }

    .timeline-marker {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* Form Section */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-warmth);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-amber);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--warm-amber);
    box-shadow: 0 0 0 3px rgba(209, 122, 58, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
    border-left: 4px solid var(--warm-amber);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--warm-amber);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--deep-warmth);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

footer .container {
    max-width: 800px;
}

footer h3 {
    color: var(--light-amber);
    margin-bottom: 1rem;
}

footer a {
    color: var(--light-amber);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 2px solid #c3e6cb;
}

.success-message.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        display: block;
        width: 100%;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    nav .container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }
}

/* ============================================
   Order Card (confirm_deposit page)
   ============================================ */
.order-card,
.reserve-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.1);
    border-top: 4px solid var(--warm-amber);
}

.order-card h3,
.reserve-box h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(244, 164, 96, 0.35);
}

.order-row:last-of-type {
    border-bottom: none;
}

.order-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.order-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 164, 96, 0.35);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-order_created      { background: #e8f4fd; color: #1a73e8; }
.status-deposit_link_sent  { background: #fff8e1; color: #856404; }
.status-deposit_paid       { background: #d4edda; color: #1a6e2e; }
.status-in_progress        { background: #fde8d8; color: #b8540c; }
.status-ready_to_dispatch  { background: #d1ecf1; color: #0c5460; }
.status-dispatched         { background: #d4edda; color: #155724; }
.status-completed          { background: #c3e6cb; color: #0f5132; }
.status-cancelled          { background: #f8d7da; color: #721c24; }

/* Reserve box extras */
.reserve-notice {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reserve-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reserve-terms {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.85;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.gallery-item {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item p {
    margin: 0.5rem 0 1rem 0;
    color: var(--deep-warmth);
    font-weight: 600;
    font-size: 1rem;
}

/* Hover Effect */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 84, 12, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1rem 1.25rem 1.5rem;
    text-align: left;
}

.gallery-caption h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.1rem;
    color: var(--deep-warmth);
}

.gallery-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}


#successMessage, #errorMessage {
    scroll-margin-top: 80px; /* height of your fixed header */
}

/* Demo Cards - Videos & Images */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.demo-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--warm-amber);
}

.demo-card:hover {
    box-shadow: 0 15px 30px rgba(184, 84, 12, 0.15);
    transform: translateY(-5px);
}

.demo-media {
    width: 100%;
    height: 200px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-card video,
.demo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo-content {
    padding: 1.5rem;
}

.demo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--deep-warmth);
}

.demo-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.demo-rail {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.demo-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.demo-video video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(184, 84, 12, 0.15);
}

.demo-text h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .demo-row {
        grid-template-columns: 1fr;
    }
}


/* FAQ Accordion */
.faq-list {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-amber);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item details {
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
}

.faq-item details[open] {
    background: rgba(244, 164, 96, 0.03);
    border-color: var(--warm-amber);
}

.faq-item summary {
    font-weight: 600;
    color: var(--deep-warmth);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item details[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--deep-warmth);
}

/* Updates/Announcements */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.update-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(184, 84, 12, 0.08);
    border-left: 4px solid var(--warm-amber);
    transition: all 0.3s ease;
}

.update-card:hover {
    box-shadow: 0 10px 25px rgba(184, 84, 12, 0.15);
}

.update-date {
    color: var(--warm-amber);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.update-title {
    color: var(--deep-warmth);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.update-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-link {
    color: var(--warm-amber);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.update-link:hover {
    color: var(--deep-warmth);
}

@media (max-width: 768px) {
    .demo-media {
        height: 150px;
    }
}