/* ==================================================================================
   BABYLUGG #PLAY — Design System
   ==================================================================================
   Eigenes CI für die Play-Unterseite: Kindergeburtstag & Party Equipment
   Farben: Türkis (Babylugg CI) + Orange + Rosa
   Font: Inter (Apple-like)
   ================================================================================== */

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

/* --- CSS Custom Properties --- */
:root {
    /* Farben */
    --play-primary: #2A9F87;
    --play-primary-dark: #228770;
    --play-secondary: #E84393;
    --play-secondary-dark: #C0357B;
    --play-accent: #E84393;
    --play-accent-light: #FD79A8;
    --play-bg: #FAFAFA;
    --play-card: #FFFFFF;
    --play-text: #1d1d1f;
    --play-text-light: #636366;
    --play-text-muted: #8E8E93;
    --play-border: #E5E5EA;
    --play-success: #34C759;
    --play-gradient: linear-gradient(135deg, #2A9F87 0%, #FF2D78 100%);
    --play-gradient-accent: linear-gradient(135deg, #E84393 0%, #FF2D78 100%);
    --play-gradient-hero: linear-gradient(135deg, #2A9F87 0%, #1a6b5c 30%, #E84393 70%, #FF2D78 100%);

    /* Schatten */
    --play-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --play-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --play-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --play-shadow-glow: 0 8px 32px rgba(42, 159, 135, 0.25);
    --play-shadow-glow-pink: 0 8px 32px rgba(255, 45, 120, 0.25);

    /* Typografie */
    --play-font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;

    /* Abstände */
    --play-radius-sm: 8px;
    --play-radius-md: 12px;
    --play-radius-lg: 16px;
    --play-radius-xl: 24px;
    --play-radius-full: 9999px;

    /* Transition */
    --play-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --play-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--play-font);
    background-color: var(--play-bg);
    color: var(--play-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--play-primary-dark);
}

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

/* --- Glassmorphe Navbar --- */
.play-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--play-transition);
}

.play-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.play-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 16px;
}

.play-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.play-logo img {
    height: 56px;
    width: auto;
}

.play-logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--play-text);
}

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

.play-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-nav-link {
    padding: 8px 16px;
    border-radius: var(--play-radius-full);
    font-weight: 500;
    font-size: 14px;
    color: var(--play-text);
    transition: var(--play-transition);
    text-decoration: none;
    white-space: nowrap;
}

.play-nav-link:hover {
    background: rgba(42, 159, 135, 0.08);
    color: var(--play-primary);
}

.play-nav-cta {
    background: var(--play-gradient);
    background-size: 110% 110%;
    background-position: center;
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--play-radius-full);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--play-transition);
    white-space: nowrap;
}

.play-nav-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--play-shadow-glow);
    color: white !important;
}

/* Mobile Menu Toggle */
.play-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.play-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--play-text);
    margin: 6px 0;
    transition: var(--play-transition);
    border-radius: 2px;
}

.play-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.play-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.play-hero {
    padding: 160px 0 100px;
    background: var(--play-gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.play-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(232, 67, 147, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.play-hero-content {
    position: relative;
    z-index: 2;
}

.play-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: var(--play-radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.play-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.play-hero h1 em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

.play-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.play-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--play-radius-full);
    font-family: var(--play-font);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--play-transition);
    text-decoration: none;
}

.play-btn-primary {
    background: white;
    color: var(--play-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--play-primary);
}

.play-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.play-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

.play-btn-gradient {
    background: var(--play-gradient);
    background-size: 110% 110%;
    background-position: center;
    color: white;
    box-shadow: var(--play-shadow-glow);
}

.play-btn-gradient:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(42, 159, 135, 0.35);
    color: white;
}

.play-btn-whatsapp {
    background: #25D366;
    color: white;
}

.play-btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: white;
}

/* --- Kategorie Tabs --- */
.play-categories {
    padding: 80px 0 20px;
}

.play-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--play-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.play-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--play-text-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Category Tabs Wrapper & Arrows --- */
.play-tabs-wrapper {
    position: relative;
    max-width: 100vw;
}

.play-tabs-arrow {
    display: none; /* Desktop hidden, handled via JS on mobile */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 48px;
    background: white;
    border: none;
    z-index: 10;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.play-tabs-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
}

.play-tabs-arrow-left {
    left: -16px;
    padding-left: 12px;
}

.play-tabs-arrow-left::before {
    right: -20px;
    background: linear-gradient(to right, white, transparent);
}

.play-tabs-arrow-right {
    right: -16px;
    padding-right: 12px;
}

.play-tabs-arrow-right::before {
    left: -20px;
    background: linear-gradient(to left, white, transparent);
}

.play-tabs-arrow svg {
    color: var(--play-primary);
    stroke: url(#play-gradient-svg); /* We'll fallback to primary, but if you want gradient we can do standard CSS */
    transition: transform 0.2s ease;
}

/* Gradient text trick for the SVG stroke (optional, fallback to primary color above) */
.play-tabs-arrow {
    color: transparent;
}
.play-tabs-arrow svg {
    stroke: var(--play-primary); /* Base color */
}

/* Use a background clip trick for the arrow if we want the actual gradient */
@supports (-webkit-background-clip: text) {
   .play-tabs-arrow svg {
       stroke: #E84393; /* Fallback */
   }
}

.play-tabs-arrow:active svg {
    transform: scale(0.9);
}

.play-tabs-arrow.hidden {
    display: none !important;
}

/* Adjust the existing tabs container for the wrapper */
.play-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.play-tab {
    padding: 12px 24px;
    border-radius: var(--play-radius-full);
    border: 2px solid var(--play-border);
    background: white;
    font-family: var(--play-font);
    font-weight: 600;
    font-size: 15px;
    color: var(--play-text-light);
    cursor: pointer;
    transition: var(--play-transition);
    white-space: nowrap;
}

.play-tab:hover {
    border-color: var(--play-primary);
    color: var(--play-primary);
    transform: translateY(-1px);
}

.play-tab.active {
    background: var(--play-gradient);
    background-size: 110% 110%;
    background-position: center;
    color: white;
    border-color: transparent;
    box-shadow: var(--play-shadow-glow);
}

/* --- Produktkatalog Grid --- */
.play-products {
    padding: 0 0 80px;
}

.play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* --- Produkt-Karten --- */
.play-card {
    background: var(--play-card);
    border-radius: var(--play-radius-lg);
    overflow: hidden;
    box-shadow: var(--play-shadow-sm);
    transition: var(--play-transition);
    cursor: pointer;
    position: relative;
}

.play-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--play-shadow-lg);
}

.play-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    transition: var(--play-transition);
}

.play-card:hover .play-card-image {
    transform: scale(1.03);
}

.play-card-image-wrap {
    overflow: hidden;
    position: relative;
}

.play-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--play-accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--play-radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.play-card-body {
    padding: 20px;
}

.play-card-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--play-secondary);
    margin-bottom: 6px;
}

.play-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--play-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.play-card-desc {
    font-size: 14px;
    color: var(--play-text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.play-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--play-primary);
}

.play-card-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--play-text-muted);
}

.play-card-btn {
    padding: 8px 16px;
    border-radius: var(--play-radius-full);
    background: var(--play-gradient);
    background-size: 110% 110%;
    background-position: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--play-transition);
}

.play-card-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--play-shadow-glow);
}

/* --- Produkt-Detail-Modal --- */
.play-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.play-modal {
    background: white;
    border-radius: var(--play-radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--play-shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

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

.play-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--play-text-light);
    transition: var(--play-transition);
    z-index: 10;
}

.play-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--play-text);
}

.play-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--play-radius-xl) var(--play-radius-xl) 0 0;
}

.play-modal-body {
    padding: 32px;
}

.play-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--play-text);
}

.play-modal-category {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--play-secondary);
    margin-bottom: 16px;
}

.play-modal-desc {
    font-size: 15px;
    color: var(--play-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.play-modal-facts {
    background: var(--play-bg);
    border-radius: var(--play-radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.play-modal-facts h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--play-text);
    margin-bottom: 12px;
}

.play-modal-fact-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--play-border);
    font-size: 14px;
}

.play-modal-fact-row:last-child {
    border-bottom: none;
}

.play-modal-fact-key {
    color: var(--play-text-light);
}

.play-modal-fact-value {
    font-weight: 600;
    color: var(--play-text);
}

.play-modal-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--play-primary);
    margin-bottom: 20px;
}

.play-modal-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--play-text-muted);
}

.play-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Kontaktbereich --- */
.play-contact {
    padding: 100px 0;
    background: white;
}

.play-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.play-contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.play-contact-info p {
    font-size: 1.05rem;
    color: var(--play-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.play-contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--play-border);
}

.play-contact-detail:last-child {
    border-bottom: none;
}

.play-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--play-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.play-contact-icon.email { background: rgba(42, 159, 135, 0.1); }
.play-contact-icon.phone { background: rgba(37, 211, 102, 0.1); }
.play-contact-icon.location { background: rgba(255, 107, 53, 0.1); }

.play-contact-label {
    font-size: 13px;
    color: var(--play-text-muted);
    font-weight: 500;
}

.play-contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--play-text);
}

/* Kontaktformular */
.play-form {
    background: var(--play-bg);
    border-radius: var(--play-radius-xl);
    padding: 40px;
}

.play-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.play-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--play-text);
    margin-bottom: 6px;
}

.play-form-input,
.play-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--play-border);
    border-radius: var(--play-radius-md);
    font-family: var(--play-font);
    font-size: 15px;
    color: var(--play-text);
    background: white;
    transition: var(--play-transition);
    outline: none;
}

.play-form-input:focus,
.play-form-textarea:focus {
    border-color: var(--play-primary);
    box-shadow: 0 0 0 4px rgba(42, 159, 135, 0.1);
}

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

.play-form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--play-radius-md);
    background: var(--play-gradient);
    background-size: 110% 110%;
    background-position: center;
    color: white;
    font-family: var(--play-font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--play-transition);
}

.play-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--play-shadow-glow);
}

.play-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.play-form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--play-radius-md);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.play-form-status.success {
    display: block;
    background: rgba(52, 199, 89, 0.1);
    color: #1a8a3e;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.play-form-status.error {
    display: block;
    background: rgba(255, 59, 48, 0.1);
    color: #c0392b;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

/* --- Footer --- */
.play-footer {
    background: var(--play-text);
    color: white;
    padding: 60px 0 30px;
}

.play-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.play-footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.play-footer-brand h3 span {
    background: var(--play-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.play-footer h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.play-footer-links {
    list-style: none;
}

.play-footer-links li {
    margin-bottom: 10px;
}

.play-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--play-transition);
}

.play-footer-links a:hover {
    color: white;
}

.play-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.play-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.play-footer-bottom a:hover {
    color: white;
}

/* --- WhatsApp Floating Button --- */
.play-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.play-whatsapp-float:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.play-whatsapp-float img {
    width: 60px;
    height: 60px;
    display: block;
}

/* --- Leer-Zustand --- */
.play-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--play-text-muted);
}

.play-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.play-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--play-text);
    margin-bottom: 8px;
}

.play-empty p {
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* --- Loading Spinner --- */
.play-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--play-border);
    border-top-color: var(--play-primary);
    border-radius: 50%;
    animation: play-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes play-spin {
    to { transform: rotate(360deg); }
}

/* --- Loading Skeleton --- */
.play-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--play-radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .play-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: stretch;
        gap: 4px;
    }

    .play-nav-links.open {
        right: 0;
    }

    .play-nav-link {
        padding: 14px 16px;
        border-radius: var(--play-radius-md);
        font-size: 16px;
    }

    .play-nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .play-menu-toggle {
        display: block;
    }

    .play-hero {
        padding: 130px 0 70px;
    }

    .play-hero h1 {
        font-size: 2.2rem;
    }

    .play-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .play-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .play-form {
        padding: 28px 20px;
    }

    .play-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .play-modal {
        max-height: 95vh;
        border-radius: var(--play-radius-lg);
        margin: 8px;
    }

    .play-modal-image {
        height: 200px;
    }

    .play-modal-body {
        padding: 24px;
    }

    .play-whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .play-categories {
        padding: 60px 0 20px;
    }

    .play-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 16px 8px; /* Added horizontal padding to sit under arrows nicely */
        margin-bottom: 32px;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .play-tabs-wrapper {
        margin: 0 -24px; /* Pull out to edges on mobile */
    }
    
    .play-tabs-arrow {
        display: flex; /* Show on mobile */
    }

    .play-tabs::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .play-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Menu Overlay */
.play-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-menu-overlay.active {
    display: block;
    opacity: 1;
}
