:root {
  --bg-dark: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-primary: #1C2E24;
  --text-secondary: #4A5B51;
  --text-muted: #85968C;
  
  --accent-sage: #6B8E23;
  --accent-sage-glow: rgba(107, 142, 35, 0.18);
  --accent-cream: #F5EFEB;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
}

.tea-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.tea-glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
}

.tea-bg-sage-glow {
    width: 600px;
    height: 600px;
    background: var(--accent-sage);
    top: -8%;
    right: -8%;
}

.tea-bg-white-glow {
    width: 500px;
    height: 500px;
    background: var(--accent-cream);
    bottom: -5%;
    left: -5%;
}

.tea-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.tea-top-bar {
    background: rgba(235, 230, 222, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    padding: 0.4rem 2.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.tea-top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    align-items: center;
}

.tea-top-bar-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}

.tea-top-bar-link:hover {
    color: var(--accent-sage);
}

.tea-top-bar-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.tea-top-bar-text {
    font-size: 0.7rem;
}

.tea-mobile-drawer-contact {
    display: none;
}

.tea-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2.5rem;
}

.tea-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.tea-logo-accent {
    color: var(--accent-sage);
}

.tea-nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.tea-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s;
}

.tea-nav-links a:hover {
    color: var(--accent-sage);
}

.btn-tea-cta-nav {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    background: none;
    border: 1px solid var(--accent-sage);
    color: var(--accent-sage);
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-tea-cta-nav:hover {
    background: var(--accent-sage);
    color: #FAF8F5;
    box-shadow: 0 4px 15px var(--accent-sage-glow);
}

.tea-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.tea-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.tea-main-content {
    position: relative;
    z-index: 1;
}

/* HERO SECTION */
.tea-hero-section {
    min-height: 95vh;
    padding: 9rem 2.5rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
}

.tea-vertical-deco-text {
    position: absolute;
    left: 2.5rem;
    bottom: 5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.tea-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding-left: 2rem;
}

.tea-brand-sub-badge {
    display: inline-block;
    color: var(--accent-sage);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.tea-hero-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.tea-hero-lead {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

.tea-hero-action-row {
    display: flex;
    gap: 1.2rem;
}

.tea-hero-right-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.tea-sage-orbit-backdrop {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-sage-glow) 0%, transparent 68%);
    border: 1px dashed rgba(107, 142, 35, 0.2);
    border-radius: 50%;
    animation: rotateOrbit 30s infinite linear;
    z-index: 0;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tea-tea-tin-img {
    width: 85%;
    max-width: 280px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    animation: floatTin 6s ease-in-out infinite;
}

@keyframes floatTin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* VARIETIES SECTION */
.tea-varieties-section {
    padding: 6.5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tea-section-editorial-header {
    margin-bottom: 4.5rem;
}

.tea-section-editorial-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.4rem;
}

.tea-line-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-sage);
    margin-top: 1.2rem;
    border-radius: 4px;
}

.tea-staggered-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tea-staggered-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    transition: all 0.3s;
}

.tea-staggered-card:hover {
    border-color: rgba(107, 142, 35, 0.2);
    box-shadow: 0 15px 35px rgba(107, 142, 35, 0.04);
}

.tea-card-altitude {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-sage);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.8rem;
}

.tea-staggered-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.tea-staggered-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tea-card-top {
    transform: translateY(-20px);
}

.tea-card-mid {
    transform: translateY(10px);
}

.tea-card-low {
    transform: translateY(40px);
}

/* BREWING LAB */
.tea-brewing-lab-section {
    padding: 6.5rem 2.5rem;
    background: #F1EFEA;
    border-top: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.tea-editorial-split-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tea-calc-text-info h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.4rem;
}

.tea-calc-lead-txt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: 1.2rem;
}

.tea-calc-interactive-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.tea-slider-group-wrap {
    display: flex;
    flex-direction: column;
}

.tea-slider-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tea-slider-heading-row label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.tea-calc-val-highlight {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-sage);
}

.tea-sage-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #E5E2DB;
    outline: none;
}

.tea-sage-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-sage);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-sage);
}

.tea-calc-results-strip {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 1.2rem;
}

.tea-result-box {
    display: flex;
    flex-direction: column;
}

.tea-result-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.tea-result-val {
    font-size: 1rem;
    font-weight: 800;
}

.tea-highlighted-result .tea-result-val {
    color: var(--accent-sage);
}

/* CRAFTSMANSHIP */
.tea-craft-timeline-section {
    padding: 6.5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tea-editorial-vertical-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
}

.tea-editorial-vertical-flow::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(107, 142, 35, 0.15);
    z-index: 0;
}

.tea-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tea-flow-num {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 1px solid var(--accent-sage);
    color: var(--accent-sage);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.2rem;
}

.tea-flow-details h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.tea-flow-details p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CONTACT BOOKING */
.tea-contact-booking-section {
    padding: 6.5rem 2.5rem;
    background: #FAF8F5;
}

.tea-contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tea-details-side h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tea-contact-intro-txt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.tea-direct-details-block {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.tea-direct-details-block strong {
    color: var(--text-primary);
}

.tea-glass-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.tea-main-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tea-form-group {
    display: flex;
    flex-direction: column;
}

.tea-flex-row-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tea-form-group-sub {
    display: flex;
    flex-direction: column;
}

.tea-form-group label, .tea-form-group-sub label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.tea-form-group input, .tea-form-group-sub input {
    background: var(--bg-dark);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.82rem;
    outline: none;
    transition: border 0.3s;
}

.tea-form-group input:focus, .tea-form-group-sub input:focus {
    border-color: var(--accent-sage);
}

.tea-form-message {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    display: none;
    margin-top: 1rem;
}

.tea-form-message.success {
    display: block;
    background: rgba(107, 142, 35, 0.08);
    color: var(--accent-sage);
    border: 1px solid var(--accent-sage);
}

.tea-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #F87171;
    border: 1px solid #EF4444;
}

/* BUTTONS */
.btn-tea {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    outline: none;
}

.btn-tea-primary {
    background: var(--accent-sage);
    color: #FAF8F5;
    box-shadow: 0 4px 15px var(--accent-sage-glow);
}

.btn-tea-primary:hover {
    background: var(--text-primary);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-tea-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

.btn-tea-secondary:hover {
    background: var(--text-primary);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.72rem;
}

/* FOOTER */
.tea-footer {
    background: #F1EFEA;
    color: var(--text-secondary);
    padding: 5rem 2.5rem 3rem;
    border-top: 1px solid rgba(0,0,0,0.02);
    word-wrap: break-word;
    word-break: break-word;
}

.tea-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.tea-footer-info h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tea-footer-info p {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.tea-footer-links-wrap h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.tea-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tea-footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.25s;
}

.tea-footer-links a:hover {
    color: var(--accent-sage);
}

.tea-footer-links-wrap p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.tea-footer-links-wrap strong {
    color: var(--text-primary);
}

/* MODALS */
.tea-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    overflow: auto;
}

.tea-modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.03);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 650px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.tea-modal-content h2, .tea-modal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.tea-close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 1.2rem;
    right: 1.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.tea-close-modal:hover {
    color: var(--accent-sage);
}

.tea-cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid rgba(0,0,0,0.03);
    padding: 1.2rem 2rem;
    z-index: 1500;
    transition: bottom 0.4s ease;
    display: flex;
    justify-content: center;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
}

.tea-cookie-banner.show {
    bottom: 0;
}

.tea-cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.tea-cookie-content p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
}

.tea-cookie-content a {
    color: var(--accent-sage);
    text-decoration: none;
    font-weight: 700;
}

.show-mobile-br {
    display: none;
}

/* RESPONSIVE FLUID MEDIA QUERIES (COLLAPSE ON TABLETS & MOBILE) */
@media (max-width: 1024px) {
    .tea-top-bar {
        display: none;
    }
    
    .tea-nav-container {
        padding: 0.8rem 1rem;
    }

    .tea-hero-section {
        padding: 8rem 1.5rem 3rem;
    }
    
    .tea-vertical-deco-text {
        display: none;
    }
    
    .tea-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-left: 0;
    }
    
    .tea-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .tea-hero-action-row {
        justify-content: center;
    }
    
    .tea-staggered-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tea-card-top, .tea-card-mid, .tea-card-low {
        transform: none;
    }
    
    .tea-editorial-split-calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tea-editorial-vertical-flow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tea-editorial-vertical-flow::before {
        display: none;
    }
    
    .tea-contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tea-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    /* COLLAPSE HEADER TO HAMBURGER MENU DRAWERS */
    .tea-header {
        padding: 0;
    }

    .tea-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1010; /* clickable above drawer container */
    }

    .tea-contact-cta {
        display: none;
    }

    .tea-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 4rem 2rem;
    }

    .tea-nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .tea-nav-links li {
        margin: 1.2rem 0;
    }
    
    .tea-nav-links a {
        font-size: 1.15rem;
    }

    .tea-mobile-drawer-contact {
        display: block;
        margin-top: 2rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .tea-drawer-contact-card {
        background: rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: var(--radius-md);
        padding: 1.2rem;
        word-break: break-all;
    }
    
    .tea-drawer-contact-card h4 {
        font-family: var(--font-serif);
        font-size: 0.9rem;
        color: var(--text-primary);
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .tea-drawer-contact-card p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 0.4rem;
        line-height: 1.4;
        word-break: break-all;
    }
    
    .tea-drawer-contact-card a {
        color: var(--accent-sage);
        text-decoration: none;
        word-break: break-all;
    }

    .tea-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .tea-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .tea-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .tea-hero-section {
        overflow: hidden; /* Prevent decorative elements from causing horizontal scroll */
    }

    .tea-hero-action-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .tea-hero-action-row .btn-tea {
        width: 100%;
        max-width: 280px;
    }

    .tea-contact-info-block {
        word-break: break-word;
    }

    .tea-footer {
        padding: 4rem 1.5rem 22rem !important; /* Large bottom clearance to prevent fixed banner overlap cutoffs */
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile-br {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .tea-flex-row-fields {
        grid-template-columns: 1fr;
    }
    
    .tea-footer-container {
        grid-template-columns: 1fr;
    }
    
    .tea-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
