/* --- CSS Variables & Design System --- */
:root {
    --bg-color: #fdfbf7;
    --primary-rose: #ba8e8f;
    --primary-rose-gradient: linear-gradient(135deg, #ba8e8f, #e5b3b4);
    --secondary-blue: #86a6ab;
    --dark-charcoal: #3b3b3b;
    --text-light: #ffffff;
    --font-main: 'Nunito', sans-serif;
    --alert-red: #d9534f;
    --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 16px 40px rgba(0,0,0,0.12);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    /* Admin specific */
    --sidebar-width-collapsed: 70px;
    --sidebar-width-expanded: 250px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    line-height: 1.6;
    /* Playful faint cat pattern background */
    background-image: radial-gradient(circle at 50% 50%, rgba(186, 142, 143, 0.05) 2px, transparent 2px), radial-gradient(circle at 100% 100%, rgba(134, 166, 171, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Sticky Navigation --- */
nav#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-rose);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.5s ease-in-out;
}

body.home-page nav#main-nav {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}
body.home-page nav#main-nav.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.site-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-rose);
    background-color: #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.header-title h1 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.header-title p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--primary-rose);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul#nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul#nav-links li a {
    font-weight: 700;
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
}

nav ul#nav-links li a:hover, nav ul#nav-links li a.active {
    background: var(--primary-rose-gradient);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(186, 142, 143, 0.3);
}

.btn-emergency {
    background-color: var(--alert-red);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
    white-space: nowrap;
}

.btn-emergency:hover {
    background-color: #c9302c;
    color: var(--text-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 83, 79, 0.5);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-charcoal);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section (Index) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px 120px 20px; 
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; 
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(59, 59, 59, 0.5), rgba(59, 59, 59, 0.8));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--text-light);
    animation: fadeIn 1s ease-out;
}

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

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-text h2 {
    font-size: 1.8rem;
    color: var(--primary-rose);
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--primary-rose-gradient);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Slogan Bar */
.slogan-bar {
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Cards & Sections */
.actions-section, .community-section {
    padding: 80px 5%;
}

.actions-section h2, .community-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
    font-weight: 800;
}

.actions-section { text-align: center; }
.actions-section h2 { margin-bottom: 50px; }

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--primary-rose);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--primary-rose-gradient);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-rose);
    color: var(--primary-rose);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(186, 142, 143, 0.2);
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.community-section {
    background-color: #f4f0e6;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    border-radius: var(--border-radius-lg);
    margin: 40px 5%;
    box-shadow: var(--shadow-soft);
}

.community-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.community-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.community-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: var(--primary-rose-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.community-image:hover img {
    transform: scale(1.05);
}

/* Page Headers (Adopt, Events, About) */
.page-header {
    text-align: center;
    padding: 140px 20px 60px; /* Extra top padding for sticky nav */
    background: var(--bg-color);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-charcoal);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.page-header h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--primary-rose-gradient);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

/* Adopt Page specific */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 5%;
    margin-bottom: 80px;
}

.cat-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border-top: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.carousel-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.carousel-slide {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
    transition: opacity 0.5s;
}
.carousel-slide.active { display: block; }

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.9); border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%; font-weight: bold;
    color: var(--dark-charcoal); transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.carousel-btn:hover { background: var(--primary-rose); color: white; transform: translateY(-50%) scale(1.1); }
.prev { left: 10px; }
.next { right: 10px; }

.cat-info { padding: 25px 20px; flex-grow: 1; }
.cat-info h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--dark-charcoal); font-weight: 800; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 0.95rem; margin-bottom: 15px; color: var(--dark-charcoal); }
.details-grid span { font-weight: 800; color: var(--primary-rose); }
.cat-description { font-size: 1rem; margin-bottom: 20px; color: #555; }

.btn-adopt {
    display: block; width: 100%; padding: 20px; background: var(--secondary-blue);
    color: #fff; text-align: center; font-weight: bold; border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    border: none; cursor: pointer; transition: background 0.3s, transform 0.2s; font-size: 1.1rem; text-transform: uppercase;
}
.btn-adopt:hover { background: var(--dark-charcoal); }

/* --- Footer --- */
footer {
    background-color: var(--dark-charcoal);
    color: var(--text-light);
    text-align: center;
    padding: 80px 5% 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    text-align: left;
    gap: 40px;
}

.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { color: var(--primary-rose); margin-bottom: 20px; font-size: 1.4rem; font-weight: 800; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col p { margin-bottom: 12px; }
.footer-col ul li a { transition: color 0.3s, padding-left 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--primary-rose); padding-left: 5px; }

.btn-footer {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
    border: 1px solid var(--primary-rose);
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}
.btn-footer:hover { background: var(--primary-rose); transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* --- Admin / Login Specific Overrides to fit new aesthetic --- */
.login-screen {
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.login-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    text-align: center;
    width: 100%;
    max-width: 400px;
}
.login-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-rose);
    object-fit: cover;
}
.login-box h2 { margin-bottom: 20px; color: var(--dark-charcoal); }
.login-box input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.login-box input:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 3px rgba(186, 142, 143, 0.2);
}
.login-box button {
    width: 100%;
    padding: 15px;
    background: var(--primary-rose-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.3s;
    font-family: inherit;
    font-size: 1.1rem;
}
.login-box button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
#loginMessage { margin-top: 15px; font-size: 0.9rem; color: #d9534f; min-height: 20px; }

/* Hidden until login succeeds */
.admin-app {
    display: none;
    width: 100%;
    min-height: 100vh;
}
.admin-app.is-visible { display: flex; }

/* Sidebar */
.sidebar {
    width: var(--sidebar-width-collapsed);
    background: var(--dark-charcoal);
    color: var(--text-light);
    height: 100vh;
    padding: 20px 15px;
    position: fixed;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}
.sidebar:hover { width: var(--sidebar-width-expanded); }
.menu-header { font-size: 1.5rem; margin-bottom: 40px; cursor: default; }
.nav-link { display: flex; align-items: center; padding: 15px 0; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.3s, padding-left 0.3s; }
.nav-link:hover { color: var(--primary-rose); padding-left: 5px; border-bottom-color: var(--primary-rose); }
.nav-icon { min-width: 40px; font-size: 1.2rem; text-align: center; }
.nav-text { opacity: 0; transition: opacity 0.2s; margin-left: 10px; }
.sidebar:hover .nav-text { opacity: 1; }

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width-collapsed);
    padding: 40px;
    width: calc(100% - var(--sidebar-width-collapsed));
    transition: margin-left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sidebar:hover + .main-content { margin-left: var(--sidebar-width-expanded); }

/* Form Styling */
.admin-app .card { background: white; padding: 40px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-soft); max-width: 650px; margin: 0 auto; }
.admin-app h1 { color: var(--dark-charcoal); margin-bottom: 20px; }

.post-o-wrapper { position: relative; display: inline-block; }
.secret-o-hotspot {
    position: absolute;
    left: 50%; top: 53%; transform: translate(-50%, -50%);
    width: 0.35em; height: 0.42em; border: none; background: transparent;
    padding: 0; margin: 0; opacity: 0; cursor: default;
}
.secret-o-hotspot:focus { outline: none; }

.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: bold; }
input[type="text"], input[type="number"], textarea, input[type="file"] { 
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: var(--border-radius-sm); font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s;
}
input[type="text"]:focus, input[type="number"]:focus, textarea:focus {
    outline: none; border-color: var(--primary-rose); box-shadow: 0 0 0 3px rgba(186, 142, 143, 0.2);
}
input:disabled { background-color: #f1f1f1; color: #888; cursor: not-allowed; }

.price-lens-row { display: grid; grid-template-columns: 1fr 210px; gap: 16px; align-items: end; margin-bottom: 20px; }
.price-field-wrapper { margin-bottom: 0; }
.lens-inline-toggle {
    border: 1px solid #eee; border-radius: var(--border-radius-sm); padding: 12px; background: #faf8f5;
    min-height: 73px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.lens-inline-toggle label:first-child { margin-bottom: 0; font-size: 0.9rem; line-height: 1.2; }

.toggle-container { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin: 20px 0; }
.switch { position: relative; display: inline-block; width: 50px; height: 24px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-rose); }
input:checked + .slider:before { transform: translateX(26px); }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.radio-btn { flex: 1 1 calc(33.333% - 10px); min-width: 100px; }
.radio-btn input[type="radio"] { display: none; }
.radio-btn label { display: block; width: 100%; text-align: center; padding: 12px; background: #eee; border-radius: var(--border-radius-sm); cursor: pointer; transition: 0.3s; margin: 0; color: #555; font-weight: 700;}
.radio-btn input[type="radio"]:checked + label { background: var(--primary-rose); color: white; box-shadow: var(--shadow-soft); }
.verified-brand-group { max-width: 240px; }

#clothingFields { display: none; background: #faf8f5; padding: 20px; border-radius: var(--border-radius-md); border: 1px dashed #ccc; margin-bottom: 20px; }

.btn-submit, .btn-test { color: white; padding: 15px; border: none; border-radius: 30px; width: 100%; font-weight: bold; cursor: pointer; font-size: 1.1rem; transition: 0.3s; font-family: inherit; }
.btn-submit { background: var(--primary-rose-gradient); box-shadow: var(--shadow-soft); }
.btn-test { background: var(--dark-charcoal); margin-top: 12px; display: none; }
.btn-test.is-revealed { display: block; }
.btn-submit:hover, .btn-test:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

@keyframes pulse-animation { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.98); opacity: 0.85; } 100% { transform: scale(1); opacity: 1; } }
.is-loading { cursor: wait; animation: pulse-animation 1.5s infinite ease-in-out; pointer-events: none; opacity: 0.9; }

.success-banner { display: none; margin-top: 20px; padding: 15px; background-color: #e8f5e9; color: #2e7d32; border-radius: var(--border-radius-sm); text-align: left; border: 1px solid #c8e6c9; animation: fadeIn 0.4s ease-out; }
.success-banner strong { font-size: 1.1rem; display: block; margin-bottom: 5px; text-align: center; }
.success-banner span { font-size: 0.95rem; opacity: 0.9; display: block; text-align: center; }

.submission-details { margin-top: 14px; background: white; border: 1px solid #c8e6c9; border-radius: var(--border-radius-sm); padding: 12px; color: #333; }
.submission-details summary { cursor: pointer; font-weight: 800; color: #2e7d32; }
.submission-details-grid { display: grid; grid-template-columns: 150px 1fr; gap: 8px 12px; margin-top: 12px; font-size: 0.92rem; }
.submission-details-grid dt { font-weight: 800; color: #444; }
.submission-details-grid dd { margin: 0; word-break: break-word; }
.submission-details a { color: #2e7d32; font-weight: 800; }

.payload-box { width: 100%; min-height: 160px; margin-top: 12px; padding: 10px; border: 1px solid #ddd; border-radius: var(--border-radius-sm); font-family: monospace; font-size: 0.82rem; background: #f7f7f7; color: #333; resize: vertical; }

/* --- Responsive --- */
@media (max-width: 950px) {
    .nav-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    nav#main-nav {
        padding: 15px 20px;
    }
    .hamburger {
        display: flex;
    }
    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(253, 251, 247, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: -1;
        border-bottom: 2px solid var(--primary-rose);
        opacity: 0;
    }
    .nav-right.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }
    nav ul#nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text h2 { font-size: 1.4rem; }
    .page-header h1 { font-size: 2.2rem; }
    
    .price-lens-row { grid-template-columns: 1fr; }
    .lens-inline-toggle { min-height: auto; }
}
