@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-dark: #121212;
    --bg-card: #1c1c1c;
    --bg-card-hover: #262626;
    --primary-red: #eb4947;
    --primary-red-hover: #d13533;
    --gold: #dfb45b;
    --text-main: #f5f5f5;
    --text-muted: #b0b0b0;
    --text-dark: #888888;
    --border-color: #2a2a2a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-red);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 73, 71, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links li.active a {
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links li.active a::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* --- VIDEO SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.slide-content {
    max-width: 800px;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-red);
    letter-spacing: 0.15em;
    font-size: 14px;
    margin-bottom: 12px;
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.slider-control:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.slider-control.prev {
    left: 24px;
}

.slider-control.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--primary-red);
    width: 28px;
    border-radius: 5px;
}

/* --- SECTION GENERAL STYLES --- */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-desc {
    color: var(--text-muted);
}

/* --- WELCOME SECT --- */
.welcome-section {
    background-color: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.welcome-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.welcome-title {
    font-size: 32px;
    margin-bottom: 24px;
    color: #ffffff;
}

.welcome-text {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* --- FEATURES GRID (BOTTOM 1-4) --- */
.features-section {
    background-color: #161616;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 73, 71, 0.4);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-premium);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(235, 73, 71, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 28px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-red);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* --- LAYOUT SECTIONS (Cortes, Vinos, Postres) --- */
.layout-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.layout-split.reverse {
    flex-direction: row-reverse;
}

.layout-content, .layout-image {
    flex: 1;
}

.layout-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.layout-image img:hover {
    transform: scale(1.02);
}

.layout-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    text-transform: uppercase;
    border-left: 4px solid var(--primary-red);
    padding-left: 16px;
}

.layout-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.layout-content cite {
    display: block;
    font-style: italic;
    color: var(--text-muted);
    border-left: 2px solid var(--border-color);
    padding-left: 12px;
    margin-bottom: 20px;
}

.layout-badge-container {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.layout-badge {
    height: 70px;
    width: auto;
}

/* --- REVIEWS --- */
.reviews-section {
    background-color: #161616;
    border-bottom: 1px solid var(--border-color);
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.review-name {
    font-size: 18px;
    font-weight: 600;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-top: 4px;
}

.review-text {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-link {
    display: inline-block;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.review-link:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

/* --- MAP & PHONE INFO --- */
.contact-summary-section {
    background-color: var(--bg-dark);
}

.contact-summary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.quick-contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-premium);
}

.quick-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-icon {
    font-size: 24px;
    color: var(--primary-red);
    margin-top: 4px;
}

.quick-contact-title {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.quick-contact-text {
    font-size: 16px;
    color: var(--text-main);
}

.quick-contact-text p {
    margin-bottom: 4px;
}

.quick-contact-text p:last-child {
    margin-bottom: 0;
}

/* --- FOOTER --- */
footer {
    background-color: #0b0b0b;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 4px;
}

/* --- FOOD MENU PAGE --- */
.menu-header-bg {
    background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.95)), url('../images/fondo-promos.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.menu-header-bg h1 {
    font-size: 48px;
    text-transform: uppercase;
}

.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    background-color: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(235, 73, 71, 0.3);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dish-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-premium);
}

.dish-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #222;
}

.dish-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dish-card:hover .dish-image-wrapper img {
    transform: scale(1.08);
}

.dish-category-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    color: var(--primary-red);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dish-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
}

.dish-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.dish-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-heading);
}

/* --- PROMOTIONS PAGE --- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promo-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.promo-image-wrapper {
    position: relative;
    width: 100%;
}

.promo-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.promo-info {
    padding: 24px;
}

.promo-title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- BILLING PAGE (IFRAME) --- */
.iframe-container {
    position: relative;
    width: 100%;
    height: 1350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-premium);
    margin-top: 20px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(235, 73, 71, 0.2);
    transform: translateY(-3px);
}

.contact-info-icon {
    font-size: 28px;
    color: var(--primary-red);
    margin-top: 4px;
}

.contact-info-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.contact-info-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.contact-form h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(235, 73, 71, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 16px;
    display: none;
}

.submit-alert.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    display: block;
}

.submit-alert.error {
    background-color: rgba(235, 73, 71, 0.15);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    display: block;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .navbar {
        height: 70px;
    }
    .nav-links {
        display: none; /* JS will toggle class 'active' */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        text-align: center;
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 16px 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-slider {
        margin-top: 70px;
        height: 60vh;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-desc {
        font-size: 15px;
    }
    .slider-control {
        width: 40px;
        height: 40px;
    }
    .layout-split {
        flex-direction: column !important;
        gap: 30px;
        padding-bottom: 40px;
    }
    .review-card {
        padding: 24px;
    }
    .review-text {
        font-size: 16px;
    }
    .contact-summary-grid {
        grid-template-columns: 1fr;
    }
    .map-wrapper {
        height: 300px;
    }
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-text {
        text-align: center;
    }
}

/* --- USER COPYRIGHT CUSTOM UTILITIES --- */
.max-w-7xl {
    max-width: 80rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.border-t {
    border-top: 1px solid;
}
.border-gray-900 {
    border-color: #1a1a1a;
}
.pt-12 {
    padding-top: 3rem;
}
.pb-6 {
    padding-bottom: 1.5rem;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.text-xs {
    font-size: 0.75rem;
}
.text-gray-600 {
    color: var(--text-dark);
}
.text-gray-500 {
    color: #666666;
}
.text-white {
    color: #ffffff;
}
.hover\:text-accent:hover {
    color: var(--primary-red);
}
.font-black {
    font-weight: 900;
}
.ml-2 {
    margin-left: 0.5rem;
}
.transition-colors {
    transition: color 0.15s ease-in-out;
}
.w-20 {
    width: 5rem;
}
.hidden {
    display: none;
}
.pt-6 {
    padding-top: 1.5rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.space-y-4 > * + * {
    margin-top: 1rem;
}
.space-x-4 > * + * {
    margin-left: 1rem;
}
.text-\[10px\] {
    font-size: 10px;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:space-y-0 > * + * {
        margin-top: 0;
    }
    .md\:block {
        display: block;
    }
    .md\:text-xs {
        font-size: 0.75rem;
    }
}

