/*
Theme Name: Dimsum Lezat
Theme URI: https://dimsumlezat.id
Author: Dimsum Lezat Team
Author URI: https://dimsumlezat.id
Description: WordPress theme untuk restoran dimsum dengan desain modern dan fitur lengkap. Include custom post type untuk menu dan testimoni, theme customizer, serta animasi yang menarik.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dimsum-lezat
Tags: restaurant, food, dimsum, responsive, custom-menu, custom-logo, featured-images, theme-options
*/

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. Variables & Reset
   2. Base Styles
   3. Typography
   4. Layout
   5. Navigation
   6. Hero Section
   7. About Section
   8. Categories Section
   9. Products Section
   10. CTA Section
   11. Testimonials Section
   12. Footer
   13. Animations
   14. Responsive
   ======================================== */

/* ========================================
   1. VARIABLES & RESET
   ======================================== */
:root {
    /* Colors */
    --dimsum-red: #f40000;
    --dimsum-red-dark: #c63031;
    --dimsum-red-light: #ff6b6b;
    --dimsum-black: #000000;
    --dimsum-dark: #1a1a1a;
    --dimsum-gray: #333333;
    --dimsum-light: #f5f5f5;
    --dimsum-white: #ffffff;
    --dimsum-gold: #ffd700;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    
    /* Transitions */
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dimsum-black);
    color: var(--dimsum-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   2. BASE STYLES
   ======================================== */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

ul, ol {
    list-style: none;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.5rem, 6vw, 4rem); }
h3 { font-size: clamp(1.8rem, 4vw, 2.5rem); }

/* ========================================
   4. LAYOUT
   ======================================== */
.container-custom {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* ========================================
   5. NAVIGATION
   ======================================== */
.glass-nav {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s var(--ease-expo-out);
    transform: translateY(-100%);
    opacity: 0;
}

.site-header.visible {
    transform: translateY(0);
    opacity: 1;
}

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

.site-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.site-logo span {
    color: var(--dimsum-red);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dimsum-red);
    transition: width 0.3s var(--ease-expo-out);
}

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

.main-nav a:hover {
    color: var(--dimsum-red);
}

.btn-nav {
    background: var(--dimsum-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--dimsum-red-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(244, 0, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-nav {
        display: none;
    }
}

/* ========================================
   6. HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dimsum-black);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.3) 1px, transparent 0);
    background-size: 40px 40px;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
}

.hero-label {
    color: var(--dimsum-red);
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    line-height: 0.95;
    margin-bottom: 1rem;
}

.hero-title span {
    display: block;
    color: var(--dimsum-red);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.btn-primary {
    background: var(--dimsum-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dimsum-red-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(244, 0, 0, 0.5);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .hero-stats {
        justify-content: center;
    }
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dimsum-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    perspective: 1200px;
}

.hero-image-main {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.hero-image-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

/* Steam Particles */
.steam-particle {
    position: absolute;
    background: radial-gradient(ellipse at center, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--dimsum-red);
    border-radius: 2px;
    animation: pulse 1.5s infinite;
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */
.about-section {
    background: white;
    color: black;
}

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

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--dimsum-red);
    border-radius: 20px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dimsum-red);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(244, 0, 0, 0.3);
    animation: float 5s ease-in-out infinite;
}

.about-badge .number {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.about-content .section-label {
    color: var(--dimsum-red);
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

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

.about-feature i {
    color: var(--dimsum-red);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   8. CATEGORIES SECTION
   ======================================== */
.categories-section {
    background: var(--dimsum-black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--dimsum-red);
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--dimsum-red), var(--dimsum-red-light), var(--dimsum-red));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-expo-out);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.category-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dimsum-red);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   9. PRODUCTS SECTION
   ======================================== */
.products-section {
    background: var(--dimsum-light);
    color: black;
}

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

@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.view-all-link {
    color: var(--dimsum-red);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    gap: 0.75rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-expo-out);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dimsum-red);
}

.add-to-cart {
    width: 100%;
    padding: 0.875rem;
    background: black;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart:hover {
    background: var(--dimsum-red);
}

/* ========================================
   10. CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.cta-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--dimsum-red);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(244, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

@media (max-width: 768px) {
    .cta-contact-info {
        grid-template-columns: 1fr;
    }
}

.cta-contact-item i {
    color: var(--dimsum-red);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cta-contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   11. TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: var(--dimsum-light);
    color: black;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-expo-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #999;
}

/* ========================================
   12. FOOTER
   ======================================== */
.site-footer {
    background: var(--dimsum-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .site-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--dimsum-red);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dimsum-red);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--dimsum-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ========================================
   13. ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-expo-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   14. RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .scroll-indicator,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
