/* Craft Noi - Thai Craft Beer Hub Style System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0c10;
    --bg-secondary: rgba(18, 22, 30, 0.7);
    --bg-tertiary: rgba(28, 34, 46, 0.45);
    
    --gold-primary: #f5a623;
    --gold-hover: #ffb84d;
    --gold-glow: rgba(245, 166, 35, 0.35);
    --copper-accent: #d85a38;
    
    --text-main: #f0f2f5;
    --text-muted: #9fa6b2;
    --border-color: rgba(245, 166, 35, 0.18);
    --border-glow: rgba(245, 166, 35, 0.3);
    
    --font-headers: 'Outfit', 'Noto Sans Thai', sans-serif;
    --font-body: 'Inter', 'Noto Sans Thai', sans-serif;
    --glass-blur: blur(16px);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(216, 90, 56, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

a:hover {
    color: var(--gold-hover);
}

/* Header */
header {
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-headers);
    color: var(--text-main);
}

.logo-beer-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--copper-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.logo span {
    color: var(--gold-primary);
}

/* Banner / Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 5%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    align-self: flex-start;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 30%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: scale(1.03);
}

.hero-glow-back {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Impact Dashboard Section */
.dashboard-section {
    max-width: 1400px;
    margin: 2rem auto 4rem auto;
    padding: 0 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.08);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-headers);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pulse-highlight {
    animation: text-pulse 1s ease-out;
}

@keyframes text-pulse {
    0% { transform: scale(1); color: var(--gold-hover); }
    50% { transform: scale(1.1); color: #fff; text-shadow: 0 0 15px var(--gold-glow); }
    100% { transform: scale(1); color: #fff; }
}

/* Catalog Filter Section */
.catalog-section {
    max-width: 1400px;
    margin: 0 auto 5rem auto;
    padding: 0 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* Filters Panel */
.filters-panel {
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.form-control {
    background: rgba(10, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f0f2f5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Beer Catalog Grid */
.beer-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.beer-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.beer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.02), transparent);
    pointer-events: none;
    z-index: 1;
}

.beer-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    background: rgba(28, 34, 46, 0.65);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(245, 166, 35, 0.05);
}

.beer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-region {
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Style Badge Colors */
.style-ipa { background: rgba(216, 90, 56, 0.15); color: #ff6b4a; border: 1px solid rgba(216, 90, 56, 0.3); }
.style-pale { background: rgba(245, 166, 35, 0.15); color: var(--gold-primary); border: 1px solid rgba(245, 166, 35, 0.3); }
.style-stout { background: rgba(139, 90, 43, 0.15); color: #cc8e58; border: 1px solid rgba(139, 90, 43, 0.3); }
.style-wheat { background: rgba(230, 206, 141, 0.12); color: #e6ce8d; border: 1px solid rgba(230, 206, 141, 0.25); }
.style-sour { background: rgba(162, 89, 219, 0.15); color: #c482ff; border: 1px solid rgba(162, 89, 219, 0.3); }
.style-lager { background: rgba(74, 144, 226, 0.15); color: #64b5f6; border: 1px solid rgba(74, 144, 226, 0.3); }

.beer-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-family: var(--font-headers);
}

.brewery-subtitle {
    font-size: 0.9rem;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.beer-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #fff;
    font-weight: 700;
}

.beer-description-preview {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating-summary-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars-container {
    display: flex;
    gap: 0.15rem;
}

.text-gold { color: #f5a623; }
.text-muted { color: #4e5561; }

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.beer-card-footer {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--copper-accent));
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    filter: brightness(1.1);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline-primary:hover {
    background: rgba(245, 166, 35, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-gold {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
}

.btn-gold:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-sm {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* Grid Empty Panels */
.no-results-panel {
    grid-column: 1 / -1;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-results-panel i {
    font-size: 3rem;
    color: var(--border-color);
}

.no-results-panel h3 {
    font-size: 1.5rem;
}

.no-results-panel p {
    color: var(--text-muted);
    max-width: 400px;
}

/* Modals & Popups base overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-wrapper {
    background: #11141b;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 40px rgba(245, 166, 35, 0.08);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content-wrapper {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

/* Contact Supporter Modal styles */
.contact-modal-inner {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-glow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 10px var(--gold-glow));
    margin-bottom: 0.5rem;
}

.brewer-badge-large {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 1.5rem 0;
}

.contact-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
}

.contact-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-card strong {
    font-size: 0.95rem;
    color: #fff;
    word-break: break-all;
}

.contact-card.fb i { color: #1877f2; }
.contact-card.line i { color: #06c755; }
.contact-card.phone i { color: #f5a623; }

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-location-info {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Beer Detail Modal styles */
.detail-modal-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    max-height: 90vh;
}

.detail-left-panel {
    padding: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
}

.detail-right-panel {
    padding: 2.5rem;
    background: rgba(10, 12, 16, 0.3);
    overflow-y: auto;
}

.detail-header-group {
    margin-bottom: 1.5rem;
}

.detail-location-badge {
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

.detail-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.detail-brewery-name {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-specs-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.spec-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.spec-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.spec-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-heading {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.5rem;
}

.detail-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Flavor Profile Bars */
.flavor-profile-widget {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.flavor-bar-row {
    margin-bottom: 1rem;
}

.flavor-bar-row:last-child {
    margin-bottom: 0;
}

.flavor-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.flavor-bar-track {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.flavor-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--copper-accent));
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reviews List styles */
.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.25rem;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-name {
    color: #fff;
    font-size: 0.95rem;
}

.reviewer-rating {
    display: flex;
    gap: 0.1rem;
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-content {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.review-flavor-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pill-tag {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 5px;
    color: var(--text-muted);
}

.empty-reviews-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.empty-reviews-state i {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

/* Add Review Form */
.review-form-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.rating-input-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.4rem;
}

.rating-input-stars input {
    display: none;
}

.rating-input-stars label {
    font-size: 1.8rem;
    color: #333945;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 0;
}

.rating-input-stars label:hover,
.rating-input-stars label:hover ~ label,
.rating-input-stars input:checked ~ label {
    color: var(--gold-primary);
}

/* Flavor profile slider selectors */
.slider-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.slider-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
}

input[type="range"] {
    accent-color: var(--gold-primary);
}

/* Brewer Register Modal Layout */
.register-modal-inner {
    padding: 2.5rem;
}

.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.span-2 {
    grid-column: span 2;
}

/* Toast Message */
.toast-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(17, 20, 27, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(245, 166, 35, 0.15);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: var(--glass-blur);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 450px;
}

.toast-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
.card-reveal {
    animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

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

/* Footer Section */
footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(5, 7, 10, 0.9);
    padding: 3rem 5% 2rem 5%;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-image-container {
        max-width: 450px;
        margin: 0 auto;
    }
    .filters-panel {
        grid-template-columns: 1fr 1fr;
    }
    .detail-modal-layout {
        grid-template-columns: 1fr;
    }
    .detail-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .filters-panel {
        grid-template-columns: 1fr;
    }
    .beer-card-footer {
        grid-template-columns: 1fr;
    }
    .register-form-grid {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: span 1;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}
