/* ========================================
   LIQUID GLASS PIZZERIA — Design System
   ======================================== */

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #16161f;
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.65);
    --text-muted: rgba(240, 236, 228, 0.4);
    --accent: #c4342d;
    --accent-light: #e04a43;
    --accent-glow: rgba(196, 52, 45, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.1);
    --glass-blur: 8px;
    --gradient-warm: linear-gradient(135deg, #c4342d, #9b1b1b);
    --gradient-glow: linear-gradient(135deg, rgba(196, 52, 45, 0.08), rgba(155, 27, 27, 0.03));
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-glow: none;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========= Reset & Base ========= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========= Ambient Orbs ========= */
.ambient-orbs {
    display: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(196, 52, 45, 0.06);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(155, 27, 27, 0.04);
    bottom: 20%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(196, 52, 45, 0.03);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: rgba(100, 20, 20, 0.04);
    top: 70%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 40px) scale(0.95);
    }

    75% {
        transform: translate(30px, 20px) scale(1.05);
    }
}

/* ========= Glass Components ========= */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass);
}

.glass-card-mini {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.glass-card-subtle {
    background: var(--gradient-glow);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
}

.glass-card-subtle h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.glass-card-subtle p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========= Navigation ========= */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    background: rgba(10, 10, 15, 0.92);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 10;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.nav-social {
    display: flex;
    gap: 12px;
}

.nav-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.nav-social a:hover {
    color: var(--accent);
    transform: scale(1.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile sidebar */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #111118;
    border-right: 1px solid var(--glass-border);
    z-index: 1200;
    padding: 2rem;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sidebar-close {
    font-size: 2rem;
    color: var(--text-secondary);
    line-height: 1;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-links a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.sidebar-social {
    margin-top: auto;
    display: flex;
    gap: 16px;
    padding-top: 2rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.sidebar-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ========= Hero Section ========= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 15, 0.3) 0%,
            rgba(10, 10, 15, 0.5) 50%,
            rgba(10, 10, 15, 0.9) 100%);
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    padding: 0 clamp(24px, 5vw, 80px);
    z-index: 10;
    max-width: 850px;
}

.glass-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-controls {
    position: absolute;
    bottom: 6%;
    right: clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--glass-bg-hover);
    color: var(--text-primary);
    border-color: var(--glass-border-hover);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: transparent;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.4;
        height: 25px;
    }
}

/* ========= Buttons ========= */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}

.btn-glass:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-glass:hover::before {
    opacity: 0.15;
}

.btn-glass i,
.btn-glass span {
    position: relative;
    z-index: 1;
}

.btn-liquid {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
}

.btn-liquid span {
    position: relative;
    z-index: 2;
}

.btn-liquid-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    border-radius: inherit;
    z-index: 1;
    transition: var(--transition);
}

.btn-liquid:hover {
    transform: translateY(-2px);
}

.btn-liquid:hover .btn-liquid-bg {
    transform: scale(1.05);
}

/* ========= About Section ========= */
.about-section {
    padding: clamp(60px, 10vw, 140px) 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.highlight-glass {
    position: relative;
    display: inline;
    padding: 2px 8px;
    margin: 0 -4px;
}

.highlight-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 52, 45, 0.12);
    border-radius: 6px;
    z-index: -1;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.image-glass-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.image-glass-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-glass-frame:hover img {
    transform: scale(1.03);
}

.image-glow {
    display: none;
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-glass);
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========= Pizze Section ========= */
.pizze-section {
    padding: clamp(60px, 10vw, 140px) 0;
    position: relative;
    z-index: 1;
}

.section-bg-glow {
    display: none;
}

.glow-alt {
    display: none;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-align: center;
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs */
.tabs-glass {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Center the tabs wrapper */
.pizze-section .container>.tabs-glass {
    display: flex;
    justify-content: center;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-warm);
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pizza-card {
    padding: 16px;
    text-align: center;
    cursor: pointer;
}

.pizza-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.pizza-img-wrapper img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pizza-img-glow {
    display: none;
}

.pizza-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ========= Sedi Section ========= */
.sedi-section {
    padding: clamp(60px, 10vw, 140px) 0;
    position: relative;
    z-index: 1;
}

.sedi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 2.5rem;
}

.sede-card {
    display: flex;
    overflow: hidden;
    cursor: pointer;
}

.sede-image {
    width: 140px;
    min-height: 130px;
    overflow: hidden;
    flex-shrink: 0;
}

.sede-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sede-card:hover .sede-image img {
    transform: scale(1.1);
}

.sede-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.sede-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.sede-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sede-address {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sede-address i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.75rem;
}

.sede-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sede-link:hover {
    gap: 10px;
}

/* ========= Video Section ========= */
.video-section {
    padding: clamp(60px, 10vw, 140px) 0;
    position: relative;
    z-index: 1;
}

.video-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-scroll::-webkit-scrollbar {
    height: 4px;
}

.video-scroll::-webkit-scrollbar-track {
    background: var(--glass-bg);
    border-radius: 2px;
}

.video-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.video-card {
    min-width: 220px;
    max-width: 220px;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    z-index: 3;
    transition: var(--transition);
}

.video-card:hover .video-play {
    background: var(--accent);
    border-color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    z-index: 2;
    pointer-events: none;
}

.video-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 3;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

/* ========= Products Section ========= */
.products-section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.products-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.products-frame {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
}

.products-frame img {
    aspect-ratio: 1;
    object-fit: cover;
}

/* ========= Footer ========= */
.footer-section {
    padding: clamp(60px, 8vw, 100px) 0 40px;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer-glow {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
}

.footer-tagline {
    color: var(--accent);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.footer-newsletter h3,
.footer-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--gradient-warm);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.social-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    min-width: 60px;
}

.social-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.social-btn span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-credits {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    opacity: 0.5;
}

/* ========= Animations (Scroll Reveal) ========= */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========= Responsive ========= */
@media (max-width: 1024px) {

    .about-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-grid {
        justify-content: center;
    }

    .sedi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-social {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .tabs-glass {
        border-radius: var(--radius-md);
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pizza-card {
        padding: 10px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-controls {
        right: 20px;
        bottom: 4%;
    }

    .floating-stat {
        bottom: -10px;
        right: -10px;
        padding: 10px 16px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .sede-card {
        flex-direction: column;
    }

    .sede-image {
        width: 100%;
        min-height: 160px;
    }

    .video-card {
        min-width: 180px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pizza-card {
        padding: 8px;
    }

    .pizza-name {
        font-size: 0.85rem;
    }

    .glass-card-subtle {
        padding: 1.5rem;
    }
}