/* =========================================
   ZOPPIO E-COMMERCE DESIGN SYSTEM
   ========================================= */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #FFD600; /* Electric Yellow */
    --color-primary-dark: #e6c100;
    --color-secondary: #1C2541; /* Navy Blue */
    --color-secondary-light: #2b3861;
    --color-accent: #2B2B2B; /* Charcoal Grey */
    
    --color-bg-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-gray: #eef2f6;
    
    --text-main: #2b2b2b;
    --text-muted: #6c757d;
    --text-light: #ffffff;

    --border-color: #e5e7eb;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Box Shadows */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    
    --shadow-glow: 0 0 20px rgba(255, 214, 0, 0.4);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   BASE RESET
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-primary);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: var(--transition-normal);
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: 0 4px 14px 0 rgba(255, 214, 0, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 37, 65, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background-color: rgba(0,0,0,0.05);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    font-family: var(--font-sans);
}

.logo-icon {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.search-bar {
    flex: 1;
    max-width: 400px;
    position: relative;
    display: none; /* Mobile hidden by default */
}

@media (min-width: 1024px) {
    .search-bar {
        display: block;
    }
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    background-color: var(--color-bg-light);
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.search-bar input:focus {
    border-color: var(--color-secondary);
    background-color: var(--color-bg-white);
}

.search-bar .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 20px;
    height: 20px;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-bg-white);
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero-bg-lights {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,214,0,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 600px;
    animation: slideUpFade 0.8s ease forwards;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 214, 0, 0.2);
    color: var(--color-secondary);
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 214, 0, 0.5);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badges-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .trust-badges-inline {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.trust-badges-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges-inline i {
    width: 18px;
    height: 18px;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1.2s ease forwards;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    color: var(--color-secondary);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 15%;
    right: -5%;
    background: var(--color-secondary);
    color: var(--color-primary);
    animation-delay: 2s;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    padding: 3rem 0;
    background-color: var(--color-bg-white);
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .benefits-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-secondary);
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.product-card.luxury {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border: 1px solid var(--color-accent);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.budget {
    background: var(--color-bg-gray);
    color: var(--color-secondary);
}

.product-badge.popular {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.product-badge.premium {
    background: var(--color-accent);
    color: var(--color-primary);
}

.product-image-box {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--color-bg-light);
}

.product-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-box img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-highlights span {
    background: var(--color-bg-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.discount-badge {
    background-color: #ff3b30;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-actions .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-section {
    padding: 6rem 0;
}

.table-container {
    overflow-x: auto;
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.compare-table th, 
.compare-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background-color: var(--color-bg-light);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover td {
    background-color: #f9fafb;
}

.highlight-col {
    background-color: rgba(255, 214, 0, 0.05);
    border-left: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

.compare-table th.highlight-col {
    background-color: rgba(255, 214, 0, 0.1);
    border-top: 2px solid var(--color-primary);
}

.compare-table tr:last-child td.highlight-col {
    border-bottom: 2px solid var(--color-primary);
}

.price-text {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* =========================================
   PACKAGING SECTION
   ========================================= */
.packaging-section {
    padding: 6rem 0;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.packaging-section h2 {
    color: var(--color-bg-white);
}

.packaging-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .packaging-container {
        grid-template-columns: 1fr 1fr;
    }
}

.packaging-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.packaging-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.packaging-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.packaging-list i {
    color: var(--color-primary);
}

.packaging-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    width: 20px;
    height: 20px;
}

.stars i.fill {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.stars i.half {
    color: var(--color-primary);
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.customer-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.customer-info span {
    font-size: 0.8rem;
    color: #10b981; /* green */
    font-weight: 600;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter-section {
    padding: 4rem 1.5rem;
}

.newsletter-container {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
}

.newsletter-content h2 {
    color: var(--color-bg-white);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.compact-text {
    font-size: 0.9rem !important;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: 600;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-bg-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-secondary);
}

.social-links a:hover {
    background: var(--color-primary);
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =========================================
   FIXED WHATSAPP BUTTON
   ========================================= */
.fixed-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
}

.fixed-whatsapp i {
    width: 32px;
    height: 32px;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
