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

body {
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    background-color: #f3ead9;
    color: #1a2a30;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, .brand {
    font-family: 'Playfair Display', serif;
}

img, svg {
    display: block;
}

/* ====== HEADER / NAV ====== */

.site-header {
    background-color: #0e6088;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.07);
    transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

nav a.active {
    background-color: rgba(255, 255, 255, 0.16);
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ====== SHARED ====== */

main {
    flex: 1;
}

.kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2fa6c2;
    margin-bottom: 0.75rem;
}

.kicker-light {
    color: rgba(207, 230, 223, 0.85);
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0e6088;
    line-height: 1.1;
}

.section-heading-light h2 {
    color: #ffffff;
}

.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background-color: #ffffff;
    color: #0e6088;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-brand {
    background-color: transparent;
    color: #0e6088;
    border: 2px solid #0e6088;
}

.btn-primary {
    background-color: #0e6088;
    color: #ffffff;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: monospace;
    font-size: 0.7rem;
    color: #0e6088;
}

/* ====== HERO ====== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #0b4a6e 0%, #0e6088 40%, #1e8aaa 72%, #2fa6c2 100%);
    padding: 4rem 1.5rem;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    animation: bubbleRise 6s ease-in-out infinite;
}

.bubble-1 { width: 90px; height: 90px; left: 10%; bottom: 20%; animation-duration: 5s; }
.bubble-2 { width: 50px; height: 50px; left: 24%; bottom: 12%; animation-duration: 6.5s; animation-delay: 1.5s; }
.bubble-3 { width: 130px; height: 130px; right: 10%; bottom: 14%; animation-duration: 8s; animation-delay: 3s; }
.bubble-4 { width: 34px; height: 34px; right: 28%; bottom: 34%; animation-duration: 4.2s; animation-delay: 0.8s; }
.bubble-5 { width: 60px; height: 60px; right: 18%; bottom: 48%; animation-duration: 7s; animation-delay: 2.2s; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(207, 230, 223, 0.94);
    margin-bottom: 2.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.section-wave {
    position: absolute;
    bottom: -1px;
    left: -100%;
    width: 300%;
    height: 52px;
}

.hero-compact {
    min-height: 400px;
    padding: 3rem 1.5rem;
}

/* ====== WAVE SWAY (always-on, decorative) ====== */

.wave-sway-1 { animation: waveSway1 4s ease-in-out infinite; }
.wave-sway-2 { animation: waveSway2 3.5s ease-in-out infinite; }
.wave-sway-3 { animation: waveSway3 5s ease-in-out infinite; }

@keyframes waveSway1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(60px); }
}

@keyframes waveSway2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-80px); }
}

@keyframes waveSway3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(100px); }
}

@keyframes bubbleRise {
    0% { transform: translateY(0) scale(1); opacity: 0.22; }
    70% { opacity: 0.12; }
    100% { transform: translateY(-100px) scale(0.65); opacity: 0; }
}

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

/* ====== WAVE DIVIDERS (between sections) ====== */

.wave-divider {
    overflow: hidden;
    height: var(--wave-h);
}

.wave-divider svg {
    width: 300%;
    margin-left: -100%;
    height: 100%;
}

.wave-divider-cream { background-color: #f3ead9; }
.wave-divider-mint { background-color: #cfe6df; }
.wave-divider-blue { background-color: #0e6088; }

/* ====== PRODUCTS ====== */

.products {
    background-color: #f3ead9;
    padding: 5rem 1.5rem 4.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(14, 96, 136, 0.08);
}

.product-card .placeholder-photo {
    height: 200px;
    position: relative;
}

.placeholder-photo span {
    background-color: rgba(255, 255, 255, 0.82);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.placeholder-1 { background: repeating-linear-gradient(45deg, #cfe6df 0px, #cfe6df 10px, #bcd9d0 10px, #bcd9d0 20px); }
.placeholder-2 { background: repeating-linear-gradient(45deg, #d4e8f5 0px, #d4e8f5 10px, #bdd8eb 10px, #bdd8eb 20px); }
.placeholder-3 { background: repeating-linear-gradient(45deg, #e8f0d8 0px, #e8f0d8 10px, #d8e4c4 10px, #d8e4c4 20px); color: #3a5020; }
.placeholder-4 { background: repeating-linear-gradient(45deg, #f5ead8 0px, #f5ead8 10px, #e8d8c4 10px, #e8d8c4 20px); color: #6a4820; }
.placeholder-5 { background: repeating-linear-gradient(45deg, #a8c8c0 0px, #a8c8c0 10px, #96b8b0 10px, #96b8b0 20px); }
.placeholder-6 { background: repeating-linear-gradient(45deg, #0b4f73 0px, #0b4f73 10px, #0d5a82 10px, #0d5a82 20px); }
.placeholder-7 { background: repeating-linear-gradient(45deg, #0d5a82 0px, #0d5a82 10px, #0f6592 10px, #0f6592 20px); }
.placeholder-8 { background: repeating-linear-gradient(45deg, #0f6592 0px, #0f6592 10px, #1172a0 10px, #1172a0 20px); }
.placeholder-9 { background: repeating-linear-gradient(45deg, #1172a0 0px, #1172a0 10px, #1580ae 10px, #1580ae 20px); }
.placeholder-10 { background: repeating-linear-gradient(45deg, #1580ae 0px, #1580ae 10px, #1990bc 10px, #1990bc 20px); }
.placeholder-11 { background: repeating-linear-gradient(45deg, #1990bc 0px, #1990bc 10px, #2fa6c2 10px, #2fa6c2 20px); }
.placeholder-12 { background: repeating-linear-gradient(45deg, #e0e6ec 0px, #e0e6ec 10px, #d0d8e0 10px, #d0d8e0 20px); color: #3a5060; }
.placeholder-13 { background: repeating-linear-gradient(45deg, #dce8dc 0px, #dce8dc 10px, #ccdccc 10px, #ccdccc 20px); color: #2e5030; }

.placeholder-6 span, .placeholder-7 span, .placeholder-8 span, .placeholder-9 span, .placeholder-10 span, .placeholder-11 span {
    background-color: rgba(0, 0, 0, 0.28);
    color: rgba(207, 230, 223, 0.9);
}

.product-card-body {
    padding: 1.5rem 1.6rem 1.75rem;
}

.product-card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0e6088;
    margin-bottom: 0.5rem;
}

.product-card-body p {
    font-size: 0.9rem;
    color: #4a6470;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.75rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.badge-poisson { background-color: #0e6088; }
.badge-invertebre { background-color: #2fa6c2; }
.badge-amphibien { background-color: #7a5a3a; }
.badge-accessoire { background-color: #4a6470; }

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-card-header h3 {
    margin-bottom: 0;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #0e6088;
    white-space: nowrap;
}

.btn-cart {
    width: 100%;
    padding: 0.6875rem;
    background-color: #0e6088;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 96, 136, 0.25);
}

/* ====== SHOP / BOUTIQUE ====== */

.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f3ead9;
    padding: 2.75rem 1.5rem 0.5rem;
}

.filter-chip {
    padding: 0.625rem 1.5rem;
    border-radius: 999px;
    border: 1.5px solid #ddd8cf;
    background-color: #ffffff;
    color: #3a5060;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip.active {
    border-color: #0e6088;
    background-color: #0e6088;
    color: #ffffff;
}

.shop {
    background-color: #f3ead9;
    padding: 2.75rem 1.5rem 5rem;
}

.shop-grid {
    grid-template-columns: repeat(3, 1fr);
}

.shop-empty {
    text-align: center;
    padding: 3.75rem 0;
    color: #7a9aaa;
    font-size: 1rem;
}

/* ====== ABOUT ====== */

.about {
    background-color: #cfe6df;
    padding: 5rem 1.5rem;
}

.about-inner {
    display: flex;
    gap: 4.5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0e6088;
    margin-bottom: 1.6rem;
    line-height: 1.1;
}

.about-text p {
    font-size: 1rem;
    color: #1a3a44;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.about-text .btn {
    margin-top: 1.25rem;
}

.about-photo {
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 48px rgba(14, 96, 136, 0.15);
}

.about-photo .placeholder-photo {
    height: 400px;
}

/* ====== STATS ====== */

.stats {
    background-color: #cfe6df;
    padding: 4rem 3.5rem;
}

.stats-row {
    display: flex;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
}

.stat-item:not(:first-child) {
    border-left: 1px solid rgba(14, 96, 136, 0.15);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #0e6088;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #1a3a44;
    font-weight: 600;
}

/* ====== WHY US ====== */

.why-us {
    background-color: #f3ead9;
    padding: 5rem 1.5rem;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 2.25rem 1.75rem 2rem;
    box-shadow: 0 2px 20px rgba(14, 96, 136, 0.06);
}

.feature-icon {
    width: 54px;
    height: 54px;
    background-color: #cfe6df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0e6088;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #4a6470;
    line-height: 1.72;
}

/* ====== GALLERY ====== */

.gallery {
    background-color: #0e6088;
    padding: 4.5rem 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-grid .placeholder-photo {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

/* ====== TEAM ====== */

.team-section {
    background-color: #cfe6df;
    padding: 5rem 1.5rem;
}

.team-grid {
    grid-template-columns: repeat(3, 1fr);
}

.team-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(14, 96, 136, 0.08);
}

.team-card .placeholder-photo {
    height: 230px;
}

.team-card-body {
    padding: 1.375rem 1.5rem 1.625rem;
    text-align: center;
}

.team-card-body h3 {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #0e6088;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2fa6c2;
    margin-bottom: 0.6rem;
}

.team-card-body p {
    font-size: 0.875rem;
    color: #4a6470;
    line-height: 1.6;
}

/* ====== FINAL CTA ====== */

.final-cta {
    background-color: #f3ead9;
    padding: 5rem 1.5rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e6088;
    margin-bottom: 0.875rem;
}

.final-cta > p {
    font-size: 1rem;
    color: #4a6470;
    margin-bottom: 2.1rem;
}

/* ====== FOOTER ====== */

.site-footer {
    margin-top: 0;
    background-color: #0b4a6e;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.25rem 1.5rem 2.75rem;
}

.footer-brand {
    flex: 2;
}

.footer-column {
    flex: 1;
}

.footer-column h2 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}

.footer-column h3 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cfe6df;
    margin-bottom: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.42);
}

/* ====== AUTH / CONNEXION ====== */

.auth-wave {
    overflow: hidden;
    height: 40px;
    background-color: #0e6088;
}

.auth-wave svg {
    width: 300%;
    margin-left: -100%;
    height: 40px;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4.5rem;
}

.auth-wrap {
    width: 100%;
    max-width: 500px;
    animation: fadeUp 0.6s ease both;
}

.auth-brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0e6088;
}

.auth-brand p {
    font-size: 0.875rem;
    color: #7a9aaa;
    margin-top: 0.3rem;
    letter-spacing: 0.01em;
}

.auth-card {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 2.25rem 2.75rem 2.75rem;
    box-shadow: 0 4px 40px rgba(14, 96, 136, 0.1);
}

.auth-tabs {
    display: flex;
    background-color: #f3ead9;
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 2rem;
    gap: 2px;
}

.auth-tab {
    flex: 1;
    padding: 0.625rem 0.5rem;
    border-radius: 999px;
    border: none;
    background-color: transparent;
    color: #4a6470;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.auth-tab.active {
    background-color: #0e6088;
    color: #ffffff;
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
    animation: fadeUp 0.28s ease both;
}

.auth-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0e6088;
    margin-bottom: 0.4rem;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: #7a9aaa;
    margin-bottom: 1.75rem;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem;
    border: 1.5px solid #ddd8cf;
    border-radius: 12px;
    background-color: #ffffff;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a2a30;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-google:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ede8df;
}

.auth-divider span {
    font-size: 0.75rem;
    color: #aab8be;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.auth-error {
    background-color: #fdf1f0;
    border: 1.5px solid #e8b4b0;
    color: #a83c34;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.auth-field {
    margin-bottom: 0.875rem;
}

.auth-field-tight {
    margin-bottom: 0.5rem;
}

.auth-name-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.auth-name-row .auth-field {
    flex: 1;
    margin-bottom: 0;
}

.auth-field label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #3a5060;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
}

.auth-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #ddd8cf;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #1a2a30;
    background-color: #fdfcf9;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
    border-color: #2fa6c2;
    box-shadow: 0 0 0 3px rgba(47, 166, 194, 0.12);
}

.auth-forgot {
    text-align: right;
    margin-bottom: 1.5rem;
}

.auth-forgot a {
    font-size: 0.8125rem;
    color: #2fa6c2;
    text-decoration: none;
    font-weight: 600;
}

.auth-cgv {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.auth-cgv input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0e6088;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-cgv span {
    font-size: 0.8125rem;
    color: #7a9aaa;
    line-height: 1.55;
}

.auth-cgv a {
    color: #0e6088;
    font-weight: 700;
    text-decoration: none;
}

.auth-submit {
    width: 100%;
    padding: 0.9375rem;
    background-color: #0e6088;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 96, 136, 0.25);
}

.auth-switch {
    text-align: center;
    font-size: 0.875rem;
    color: #7a9aaa;
    margin: 0;
}

.switch-link {
    background: none;
    border: none;
    color: #0e6088;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    padding: 0 0 0 4px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 900px) {
    .card-grid, .feature-grid, .team-grid, .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2, .about-text h2, .final-cta h2 {
        font-size: 2.25rem;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stats-row .stat-item {
        flex: 1 1 40%;
    }

    .stats-row .stat-item:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-bubbles {
        display: none;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .card-grid, .feature-grid, .gallery-grid, .team-grid, .shop-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.75rem;
    }

    .stats-row .stat-item:not(:first-child) {
        border-left: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .auth-card {
        padding: 1.75rem 1.5rem 2rem;
    }

    .auth-name-row {
        flex-direction: column;
        gap: 0.875rem;
    }
}
