/* Global Styles - Mobile First */
:root {
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    /* Match snippet white mostly, or light gray */
    color: #000;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    color: #000;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1140px;
    /* Standard bootstrap-like max-width for desktop */
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.hidden-offer {
    display: none !important;
}

/* ... Header, Ticker, etc preserved but simplified if needed ... */

/* Pricing Section - Mobile First */
.pricing-section {
    background: #fdfdfd;
    padding: 40px 15px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    /* Mobile Default */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    /* Full width on mobile */
    max-width: 400px;
    /* Don't get too huge on tablets */
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
    width: 100%;
    /* Full width on mobile */
    max-width: 400px;
    border: 3px solid #2ecc71;
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.4);
    z-index: 10;
    margin-bottom: 10px;
    background: #fff;
    transform: none;
    /* Reset desktop scale for mobile */
}

/* Tablet & Desktop Overrides */
@media (min-width: 800px) {
    .pricing-container {
        display: flex;
        /* Ensure flex */
        flex-direction: row;
        align-items: center;
        /* Align centers vertically so they look balanced */
        justify-content: center;
        /* Center them horizontally */
        flex-wrap: wrap;
        /* Wrap if screen is too small */
        max-width: 1200px;
        /* Slightly wider to fit side-by-side */
        margin: 0 auto;
        padding-top: 40px;
        /* Space for the "Mejor Valor" badge pop-out */
        gap: 20px;
        /* Use gap instead of margins for cleanliness */
    }

    .pricing-card {
        width: 30%;
        max-width: 350px;
        margin: 0;
        /* Let gap handle spacing */
        flex: 1 1 300px;
        /* Flex basis */
    }

    .pricing-card.featured {
        width: 32%;
        max-width: 380px;
        transform: scale(1.05);
        z-index: 10;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border: 2px solid #2ecc71;
        overflow: visible;
        /* CRITICAL: Allow badge to hang out */
    }
}


/* Header */
.main-header {
    background-color: #c0392b;
    /* Dark Red */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    /* Spread Logo and Icons */
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 800;
    color: #ffffff !important;
    /* FORCE WHITE */
}

/* Icons White */
.header-left i,
.header-right i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff !important;
    /* FORCE WHITE */
}

/* Ticker Bar */
.ticker-bar {
    background-color: #a93226;
    color: white;
    font-size: 0.8rem;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
    font-weight: 600;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Main Content */
.main-content {
    background-color: #fff;
    max-width: 800px;
    /* Tighter for mobile feel */
    margin: 0 auto;
    padding: 20px;
    box-shadow: none;
}

/* On Desktop, add shadow back */
@media(min-width: 800px) {
    .main-content {
        margin: 30px auto;
        padding: 40px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }
}

.headline {
    font-size: 1.8rem;
    /* Mobile first size */
    line-height: 1.2;
    margin-bottom: 10px;
}

@media(min-width: 800px) {
    .headline {
        font-size: 2.2rem;
    }
}

.highlight-urgent {
    color: #c0392b;
    font-weight: 900;
}

.meta-data {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.divider {
    margin: 0 10px;
}

/* VSL Wrapper (Vertical) */
.vsl-wrapper {
    margin: 20px auto;
    background: transparent;
    max-width: 400px;
    /* Constrain vertical video width */
    width: 100%;
}

/* Force vertical aspect ratio on the player */
.vsl-wrapper vturb-smartplayer {
    aspect-ratio: 9/16;
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    position: relative;
    width: 100%;
    background: #000;
    cursor: pointer;
    border-radius: 8px;
    /* Smooth corners */
    overflow: hidden;
}

/* Vertical Video Aspect Ratio (9:16) ~ 177.7% */
.video-placeholder.vertical-video {
    padding-top: 177.77%;
}

.vsl-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.play-button-overlay i {
    font-size: 4rem;
    color: #e74c3c;
    background: #fff;
    border-radius: 50%;
    padding: 0;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border: 3px solid #fff;
}

.caption {
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

/* Media Logos */
.media-logos-container {
    padding: 10px;
}

/* Global Styles - Mobile First */
:root {
    --white: #ffffff;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Fix horizontal scroll */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Article Body */
.article-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
    color: #2c3e50;
}

.quote-block {
    border-left: 4px solid #c0392b;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.2rem;
    background: #fdf2f1;
    padding: 15px 20px;
}

/* CTA Button below VSL */
.main-cta-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    /* Match VSL width */
    margin: 15px auto;
    /* Spacing */
    background: #2ecc71;
    /* Solid Green */
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 10px;
    border-radius: 6px;
    /* Slightly sharper */
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
    transition: transform 0.2s;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.main-cta-btn:hover {
    transform: translateY(-2px);
    background: #27ae60;
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
}

/* Removed pulse animation for cleaner look */

/* Pricing Section Refined */
.pricing-section {
    background: #fff;
    padding: 60px 10px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

/* Enhanced Countdown Timer - Clean */
.scarcity-timer-header {
    background: #fff;
    color: #c0392b;
    border: 2px solid #c0392b;
    box-shadow: none;
    /* Removed heavy shadow */
    border-radius: 8px;
    /* Less rounded */
    padding: 10px 20px;
    margin: 30px auto 40px auto !important;
    text-align: center;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.scarcity-timer-header:hover {
    transform: none;
    /* Removed hover effect */
}

.scarcity-timer-header p {
    font-size: 1.1rem;
    color: #c0392b;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.countdown-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c0392b;
    /* Red Text */
    letter-spacing: 2px;
    text-shadow: none;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    padding: 0;
    line-height: 1.2;
}

/* ... existing code ... */

/* Card Common */
.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    /* Softer corners */
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Better shadow */
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Pricing Card: Featured (6 Bottles) Details */
.pricing-card.featured {
    background-color: #f0f7ff;
    /* Very Light Blue */
    border: 2px solid #2ecc71;
    /* Green border matching CTA */
    color: #333;
    /* Dark text */
    padding: 0;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Layout Grid */
.card-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
}

.col-left,
.col-right {
    padding: 10px;
    position: relative;
    z-index: 2;
}

/* Responsive: Desktop - Force Vertical for All Cards per user request */
@media (min-width: 768px) {

    .pricing-card.featured .card-content-row,
    .pricing-card.plain .card-content-row {
        flex-direction: column;
        align-items: center;
    }

    .col-left,
    .col-right {
        width: 100%;
        border-right: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5px;
    }

    .pricing-card.featured {
        margin-top: 35px;
    }

    .pricing-card.featured .product-img img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Center badge on desktop since it's vertical now */
    .pricing-card.featured .popular-badge {
        font-size: 1.2rem;
        padding: 10px 30px;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive: Mobile - Force Vertical per user request */
@media (max-width: 767px) {
    .card-content-row {
        flex-direction: column;
        /* Force Column */
        align-items: center;
        padding: 10px;
    }

    .col-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        /* Divider */
        padding: 10px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .col-right {
        width: 100%;
        border-right: none;
        padding: 10px;
        display: flex;
        /* Stack items vertically */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Adjust typography for stacked mobile */
    .pricing-card h2 {
        font-size: 2rem !important;
        margin: 5px 0;
    }

    .card-title-lg {
        font-size: 2.2rem !important;
    }

    .price-big-row {
        font-size: 3rem !important;
    }

    .price-block {
        font-size: 2.5rem !important;
    }

    .btn-buy-green-large {
        width: 95%;
        margin: 10px auto;
        font-size: 1.3rem;
    }

    /* Hide dashed divider in vertical mobile for cleanliness if desired, or keep */
    .dashed-divider {
        width: 80%;
        margin: 5px auto;
    }
}

/* Typography Inside Featured Card */
.card-title-lg {
    color: #333;
    /* Dark text */
    font-size: 2.5rem;
    font-weight: 800;
    margin: 5px 0 10px 0;
    line-height: 1;
    text-shadow: none;
}

.price-big-row {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    /* Green Price */
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: none;
}

.per-bottle-stack {
    font-size: 1rem;
    line-height: 1.1;
    text-align: left;
    margin-left: 8px;
    font-weight: 600;
    color: #555;
    opacity: 1;
    text-transform: capitalize;
}

.save-green {
    color: #4cd137;
    /* Bright Green */
    font-weight: 900;
    font-size: 1.3rem;
    margin: 10px 0 5px 0;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.benefit-white {
    color: #555;
    /* Dark grey */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.guarantee-lime {
    color: #4cd137;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin: 5px 0;
}

.dashed-divider {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 8px 20px;
}

.payment-row-img img {
    max-width: 80%;
    margin: 10px auto;
    display: block;
}

.total-row {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white box */
    padding: 10px;
    border-radius: 8px;
    margin: 15px 10px 5px 10px;
    color: #01579b;
    font-weight: 700;
    font-size: 1.1rem;
}

.strike-red {
    text-decoration: line-through;
    color: #c0392b;
    margin-right: 5px;
}

.green-bold {
    color: #2e7d32;
    font-weight: 900;
    font-size: 1.3rem;
}

.shipping-text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Green CTA Button (Full Width Style) */
/* Green CTA Button (Full Width Style) - Clean */
.btn-buy-green-large {
    background: #27ae60;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 18px;
    width: 90%;
    margin: 0 auto 25px auto;
    border-radius: 6px;
    text-align: center;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-buy-green-large:hover {
    transform: translateY(-2px);
    background: #219150;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-buy-green-large:active {
    transform: translateY(1px);
}

/* Headers for 2 & 3 Bottles */
.card-header-cyan {
    background: #00bcd4;
    color: white;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 12px 12px 0 0;
    letter-spacing: 1px;
}

/* Image Pulse Animation (Restored) */
.pulse-image {
    animation: imagePulse 2s infinite ease-in-out;
}

@keyframes imagePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


/* Badge for 6 Bottles */
.popular-badge {
    background-color: #c0392b;
    /* Red */
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    position: absolute;
    top: -15px;
    /* Overlap top border */
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.4);
    z-index: 20;
    white-space: nowrap;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
    }

    70% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 0 10px rgba(192, 57, 43, 0);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
    }
}

/* Image Pulse Animation - Vivid */
/* Reduced Image Pulse Animation */
.pulse-image {
    animation: none;
    /* Removed distraction */
}

/* Card Internal Spacing */
.card-content {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Consistent gap between elements */
}

/* Headers */
.card-header-blue {
    background: #0288d1;
    /* Solid Blue */
    color: white;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-radius: 12px 12px 0 0;
}

.card-header-darkblue {
    background: #01579b;
    /* Solid Dark Blue */
    color: white;
    padding: 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1px;
    border-radius: 12px 12px 0 0;
}

/* Images - Fix overlapping */
.product-img img {
    max-width: 100%;
    height: auto;
    transform: none;
    /* Remove default scaling to avoid overflow/overlap */
    transition: transform 0.3s;
    margin: 10px 0;
}

.pricing-card:hover .product-img img {
    transform: scale(1.05);
    /* Gentle hover scale */
}

/* Price Display */
.price-block {
    color: #27ae60;
    /* Vibrant Green */
    font-size: 3.5rem;
    /* Large and readable */
    font-weight: 900;
    margin: 15px 0 5px 0;
    line-height: 1;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.price-block .currency {
    font-size: 1.8rem;
    vertical-align: 15px;
    margin-right: 2px;
}

.price-block .each {
    font-size: 1.1rem;
    color: #27ae60;
    /* Also green per user request "deixe verdinho" */
    font-weight: 700;
    opacity: 0.8;
    vertical-align: middle;
}

/* Savings text */
.savings-small,
.savings-alert {
    color: #e74c3c;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Buttons - Ensure spacing */
.btn-buy-blue {
    background: #0288d1;
    /* Solid Blue */
    color: white;
    width: 90%;
    margin: 15px auto;
    /* More vertical space */
    padding: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.4);
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
    /* Ensure margins work */
    text-decoration: none;
}

/* Orange Gradient Button for Featured */
.btn-buy-green {
    background: linear-gradient(to bottom, #f1c40f, #f39c12, #d35400);
    color: white;
    width: 90%;
    margin: 15px auto;
    /* More vertical space */
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
    text-transform: uppercase;
    animation: wiggle 3s infinite;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.payment-icons {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #ccc;
    word-spacing: 5px;
}

.total-summary {
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 5px;
    width: 100%;
}

.strike {
    text-decoration: line-through;
}

.green-text {
    color: #2ecc71;
    font-weight: bold;
}

/* Comments Section Refined */
.comments-section {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e9ebee;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #e9ebee;
    padding-bottom: 10px;
}

.comments-list {
    font-family: Arial, Helvetica, sans-serif;
    /* FB Font */
}

.comment-item {
    display: flex;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.comment-body {
    flex: 1;
}

.comment-author {
    color: #365899;
    /* Facebook Blue */
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.comment-author:hover {
    text-decoration: underline;
}

.comment-text {
    font-size: 14px;
    margin: 4px 0;
    color: #1d2129;
    /* FB Black */
}

.comment-actions {
    font-size: 12px;
    color: #90949c;
    margin-top: 4px;
}

.comment-actions a {
    color: #365899;
    margin-right: 10px;
    text-decoration: none;
    font-weight: 600;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.likes {
    color: #90949c;
    margin-right: 5px;
}

.likes i {
    background: #365899;
    color: white;
    border-radius: 50%;
    padding: 2px;
    font-size: 8px;
    width: 14px;
    height: 14px;
    text-align: center;
}

.time {
    color: #90949c;
}

.comment-reply {
    display: flex;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
}

.comments-closed-msg {
    text-align: center;
    font-weight: 700;
    background: #f0f2f5;
    padding: 10px;
    margin-top: 30px;
    color: #555;
    border-radius: 5px;
}

/* Footer */
.main-footer {
    background: #222;
    color: #999;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
}

/* Responsive Helpers */
@media (max-width: 800px) {
    .desktop-only {
        display: none !important;
    }

    .headline {
        font-size: 1.6rem;
    }

    /* Keep font adjustment */
}

@media (min-width: 801px) {
    .mobile-only {
        display: none !important;
    }
}

.guarantee-text-plain {
    color: #555;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0 5px 0;
    letter-spacing: 0.5px;
}

/* Global Currency Fix */
.currency {
    vertical-align: top !important;
    position: relative !important;
    top: 0.2em !important;
    font-size: 0.6em !important;
    margin-right: 2px !important;
    line-height: 1 !important;
}

/* Animations */
.pulse-image {
    animation: simplePulse 1.5s infinite ease-in-out;
}

.pulse-button {
    animation: btnPulse 2s infinite;
}

@keyframes simplePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}