/* 
   Paddy Pay - Mobile Point of Sale Landing Page Stylesheet
   Theme: Warm, Welcoming, Rounded West African Merchant Identity
*/

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

:root {
    /* Color Palette */
    --clr-bg-sand: #FDF9F2;
    --clr-bg-card: #FFFFFF;
    --clr-primary: #C84B31;       /* Deep Terracotta */
    --clr-primary-light: #E96D53;
    --clr-secondary: #EAA011;     /* Warm Gold Amber */
    --clr-secondary-light: #F5B842;
    --clr-green: #2D5241;         /* Deep Forest/Olive Green */
    --clr-green-light: #3D6F58;
    --clr-text-main: #1A2421;     /* Charcoal contrast */
    --clr-text-mute: #5A6662;
    --clr-border: #EFE9DD;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --ff-sans: 'Outfit', sans-serif;
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    --border-radius-xl: 40px;
    
    /* Transition Variables */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 30px rgba(26, 36, 33, 0.04);
    --shadow-hover: 0 20px 40px rgba(26, 36, 33, 0.08);
    --shadow-glow: 0 0 25px rgba(200, 75, 49, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg-sand);
}

body {
    font-family: var(--ff-sans);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--clr-bg-sand);
}

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

ul {
    list-style: none;
}

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

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--clr-text-mute);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    font-weight: 400;
}

/* Premium Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-fast);
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(200, 75, 49, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-text-main);
    border: 2px solid var(--clr-border);
}

.btn-secondary:hover {
    background-color: var(--clr-bg-sand);
    border-color: var(--clr-text-main);
    transform: translateY(-2px);
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.badge-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--clr-text-main);
    color: var(--clr-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-btn:hover {
    transform: translateY(-3px);
    background-color: #0d1311;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.badge-btn svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.badge-btn .badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.badge-btn .badge-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 500;
}

.badge-btn .badge-title {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Glassmorphic Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-fast);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(253, 249, 242, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--clr-border);
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--clr-secondary);
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-text-mute);
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--clr-primary);
}

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

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--clr-text-main);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--clr-bg-sand);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        transition: right var(--transition-smooth);
        z-index: 1000;
        gap: 40px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(200, 75, 49, 0.08);
    color: var(--clr-primary);
    padding: 8px 16px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 75, 49, 0.15);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.hero-content h1 span {
    color: var(--clr-primary);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-color: rgba(234, 160, 17, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    margin: 24px 0 32px 0;
}

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

.hero-visual::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(234, 160, 17, 0.15) 0%, rgba(200, 75, 49, 0.03) 70%);
    z-index: -1;
    border-radius: 50%;
}

.mockup-container {
    width: 100%;
    max-width: 380px;
    border-radius: 44px;
    padding: 12px;
    background-color: #2E3A36; /* Charcoal phone border */
    box-shadow: 0 30px 60px rgba(26, 36, 33, 0.15);
    border: 4px solid #3A4B46;
}

.mockup-container img {
    border-radius: 36px;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-tag {
        justify-content: center;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .mockup-container {
        margin: 0 auto;
        max-width: 340px;
    }
}

/* About Paddy Section */
.about-section {
    background-color: var(--clr-white);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

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

.merchant-scene-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.merchant-scene-wrapper img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.brand-story h3 {
    color: var(--clr-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-story p {
    margin-bottom: 20px;
}

.brand-story blockquote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-green);
    border-left: 4px solid var(--clr-secondary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .merchant-scene-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Core Functionality Section */
.functionality-section {
    background-color: var(--clr-white);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h3 {
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--clr-bg-sand);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-smooth);
    border: 1px solid var(--clr-border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 75, 49, 0.15);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    color: var(--clr-primary);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.feature-card h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* How It Works Section */
.how-section {
    background-color: var(--clr-bg-sand);
}

.tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--clr-white);
    padding: 16px 32px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-mute);
    box-shadow: var(--shadow-soft);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--clr-green);
    color: var(--clr-white);
    border-color: var(--clr-green);
}

.tab-panel {
    display: none;
    background-color: var(--clr-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.panel-content h4 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--clr-green);
}

.panel-content ol {
    margin-left: 20px;
    color: var(--clr-text-mute);
    margin-bottom: 24px;
}

.panel-content li {
    margin-bottom: 8px;
}

.panel-visual {
    background-color: var(--clr-bg-sand);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--clr-border);
}

.pos-visual {
    width: 100%;
    max-width: 250px;
    background-color: var(--clr-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--clr-border);
}

.pos-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-mute);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 10px;
}

.pos-display {
    text-align: center;
    padding: 24px 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    background-color: rgba(200, 75, 49, 0.03);
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.pos-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.method-icon {
    width: 44px;
    height: 44px;
    background-color: var(--clr-bg-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text-mute);
    border: 1px solid var(--clr-border);
}

.method-icon.active {
    background-color: var(--clr-secondary);
    color: var(--clr-text-main);
    border-color: var(--clr-secondary);
    animation: pulse 1.5s infinite;
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-panel.active {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .panel-visual {
        order: 2;
    }
}

/* Promotional Video Section */
.promo-video-section {
    background-color: var(--clr-white);
    border-radius: var(--border-radius-xl);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    background-color: var(--clr-green);
    aspect-ratio: 16 / 9;
}

.video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(45, 82, 65, 0.85) 0%, rgba(200, 75, 49, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-smooth);
    z-index: 2;
}

.video-wrapper:hover .video-backdrop {
    background-image: linear-gradient(135deg, rgba(45, 82, 65, 0.92) 0%, rgba(200, 75, 49, 0.75) 100%);
}

.play-btn-glow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
    position: relative;
}

.play-btn-glow::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px solid var(--clr-white);
    animation: ripple 2s infinite;
}

.video-wrapper:hover .play-btn-glow {
    transform: scale(1.1);
    color: var(--clr-secondary);
}

.video-wrapper svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 6px;
}

.video-text h4 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.video-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* Interactive Contact Support Widget */
.contact-section {
    background-color: var(--clr-bg-sand);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding-top: 20px;
}

.contact-card-item {
    background-color: var(--clr-white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform var(--transition-fast);
}

.contact-card-item:hover {
    transform: translateX(6px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(45, 82, 65, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-green);
    font-size: 1.25rem;
}

.contact-card-details h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--clr-text-mute);
    margin-bottom: 4px;
}

.contact-card-details a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-main);
    transition: color var(--transition-fast);
}

.contact-card-details a:hover {
    color: var(--clr-primary);
}

/* Interactive Contact Widget Form */
.contact-widget {
    background-color: var(--clr-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--clr-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-widget-header {
    margin-bottom: 30px;
}

.contact-widget-header h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--clr-bg-sand);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.form-input:focus {
    background-color: var(--clr-white);
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(200, 75, 49, 0.1);
}

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

/* Form success overlay styling */
.success-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
    z-index: 5;
}

.success-screen.show {
    transform: translateY(0);
}

/* Receipts POS printing micro-animation */
.receipt-spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(45, 82, 65, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--clr-green);
    font-size: 2rem;
    animation: zoomPulse 1.5s infinite ease-in-out;
}

.receipt-card {
    background-color: #F8F9FA;
    border: 1px dashed var(--clr-border);
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow-soft);
    font-family: monospace;
    font-size: 0.85rem;
    text-align: left;
    transform: scale(0.9);
    opacity: 0;
    animation: printReceipt 0.8s 0.3s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.receipt-divider {
    border-top: 1px dashed var(--clr-border);
    margin: 10px 0;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-widget {
        padding: 30px;
    }
}

/* Footer styling */
.footer {
    background-color: var(--clr-text-main);
    color: var(--clr-white);
    padding: 80px 0 40px 0;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-brand .badge-btn {
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 24px;
    height: 2px;
    background-color: var(--clr-secondary);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(200, 75, 49, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(200, 75, 49, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(200, 75, 49, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes printReceipt {
    0% {
        transform: translateY(-40px) scale(0.85);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
