/* ==========================================================================
   CSCB VINTAGE - PREMIUM LOCAL SEO THEME
   ========================================================================== */

/* CSS Reset & Core Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #FBF8F2;
    --bg-secondary: #F3ECE1;
    --bg-card: #FFFFFF;
    --text-main: #1A1614;
    --text-muted: #5C544E;
    --text-light: #F4EFE6;
    
    --primary: #2B211B;
    --primary-light: #3D3028;
    --accent: #C88D58;
    --accent-hover: #B47944;
    --accent-gold: #D4A373;
    
    --border-light: rgba(43, 33, 27, 0.1);
    --border-accent: rgba(200, 141, 88, 0.3);
    
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 4px 20px rgba(43, 33, 27, 0.05);
    --shadow-card: 0 10px 30px rgba(43, 33, 27, 0.08);
    --shadow-hover: 0 20px 40px rgba(43, 33, 27, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

p {
    color: var(--text-muted);
}

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

.text-highlight {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
}

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

.text-center {
    text-align: center;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-accent {
    background-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(200, 141, 88, 0.35);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 141, 88, 0.45);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-outline-nav {
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.btn-outline-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary-nav {
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.75) 0%, rgba(43, 33, 27, 0.85) 100%), url('anh-khong-gian/DSC02598.jpg') center/cover no-repeat;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 22, 20, 0.4) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.hero h1 {
    color: #FFFFFF;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-desc {
    color: rgba(244, 239, 230, 0.88);
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 36px auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 15px 34px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(200, 141, 88, 0.4);
}

.btn-hero-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 34px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(244, 239, 230, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    background-color: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-highlight {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-keypoints {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.keypoint {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.keypoint-icon {
    font-size: 1.8rem;
    background: var(--bg-secondary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.keypoint h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.keypoint p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual Stack */
.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    padding-bottom: 40px;
}

.main-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 3px solid var(--bg-secondary);
}

.main-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.visual-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(26, 22, 20, 0.85);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
}

.sub-img-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid #FFFFFF;
}

.sub-img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Collections Section */
.collections-section {
    background-color: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-card.featured {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon-wrapper {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--bg-main);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-tag {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.8) 0%, transparent 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: var(--transition);
}

.gallery-overlay span {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* QR Code Catalog Banner */
.qr-banner {
    background: var(--primary);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-accent);
}

.qr-info h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.qr-info p {
    color: rgba(244, 239, 230, 0.85);
    font-size: 1rem;
    margin-bottom: 24px;
}

.qr-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code-wrapper {
    background: #FFFFFF;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.qr-image {
    width: 170px;
    height: 170px;
    display: block;
}

.qr-handle {
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

/* Reviews & Media Section */
.reviews-section {
    background-color: var(--bg-secondary);
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 50px;
}

.youtube-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000000;
}

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

.video-caption {
    padding: 18px 22px;
    text-align: left;
}

.video-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.video-caption p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.tiktok-section-title {
    margin: 40px 0 24px 0;
}

.tiktok-section-title h3 {
    font-size: 1.6rem;
}

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

.tiktok-card {
    background: var(--bg-card);
    padding: 24px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.tiktok-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: #FE2C55;
}

.tiktok-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.creator-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.review-quote {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.tiktok-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FE2C55;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Locations & Maps */
.location-section {
    background-color: var(--bg-main);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.location-card {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

.primary-location {
    border: 2px solid var(--accent);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-secondary {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-card h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.store-subtitle {
    font-size: 0.92rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 22px;
}

.store-details {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
}

.detail-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.phone-link {
    color: var(--accent);
    font-weight: 700;
}

.phone-link:hover {
    text-decoration: underline;
}

.map-actions {
    margin-bottom: 20px;
}

.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 70px 0 30px 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 6px;
}

.footer-tagline {
    color: rgba(244, 239, 230, 0.75);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.social-pill {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.social-pill:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

.footer-nap {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nap a {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 24px;
    font-size: 0.82rem;
    color: rgba(244, 239, 230, 0.5);
}

/* Floating Mobile Quick Action */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 999;
    gap: 12px;
}

.floating-btn {
    flex: 1;
    padding: 13px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: var(--primary);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-btn {
    background: var(--accent);
    color: #FFFFFF;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qr-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .qr-links {
        justify-content: center;
    }
}

@media (max-width: 860px) {
    .about-grid, .location-grid, .features-grid, .youtube-grid {
        grid-template-columns: 1fr;
    }
    .sub-img-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }
    .main-img-card img {
        height: 320px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        padding: 40px 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-light);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-links {
        flex-direction: column;
        gap: 24px;
    }
    .mobile-toggle {
        display: flex;
    }
    .btn-outline-nav, .btn-primary-nav {
        display: none;
    }
    .floating-cta {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tiktok-grid {
        grid-template-columns: 1fr;
    }
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
}
