/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2ECC71;
    --secondary-dark: #27AE60;
    --accent: #9B59B6;
    --dark: #1A1A2E;
    --darker: #16213E;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
    --red: #E74C3C;
    --yellow: #F1C40F;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #E74C3C, #C0392B);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    animation: pulse-bg 2s infinite;
}

.urgency-bar p {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.urgency-bar .countdown {
    background: white;
    color: var(--red);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.urgency-bar .stock {
    color: var(--yellow);
    text-decoration: underline;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-header {
    background: var(--secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-header:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920') center/cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: var(--yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.hero-benefit i {
    color: var(--secondary);
    font-size: 20px;
}

.cta-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--secondary);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
}

.btn-cta i {
    font-size: 24px;
}

.btn-cta .btn-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.trust-badges img {
    width: 24px;
}

/* Hero Image / Product Card */
.hero-image {
    display: flex;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--red);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.product-img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.price-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 16px;
}

.new-price {
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
}

.installment {
    color: var(--gray);
    font-size: 14px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Social Proof Bar */
.social-proof {
    background: var(--light);
    padding: 40px 20px;
}

.social-proof .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.proof-item i {
    font-size: 40px;
    color: var(--primary);
}

.proof-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.proof-text {
    display: block;
    color: var(--gray);
    font-size: 14px;
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title .highlight {
    color: var(--primary);
}

.section-title .highlight-red {
    color: var(--red);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 50px;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    font-size: 14px;
}

.solution-reveal {
    background: linear-gradient(135deg, #FFF5F0, #FFEBE0);
    border-left: 5px solid var(--primary);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
}

.solution-reveal h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.solution-reveal p {
    font-size: 18px;
    color: var(--dark);
}

.solution-reveal .highlight {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.7;
}

/* Results Section */
.results-section {
    padding: 80px 20px;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.result-images {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.before-after {
    position: relative;
    width: 120px;
    height: 150px;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.before-after .label {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.before-after.after .label {
    background: var(--secondary);
}

.arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

.result-info {
    padding: 25px;
    text-align: center;
}

.result-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.result-stat {
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.result-quote {
    color: var(--gray);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-stars {
    font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.testimonial-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 3px;
}

.verified {
    color: var(--secondary);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-date {
    color: #aaa;
    font-size: 12px;
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 20px;
    background: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ingredient-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.ingredient-card:hover {
    background: var(--light);
    transform: scale(1.05);
}

.ingredient-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--secondary);
}

.ingredient-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.ingredient-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF5F0, #FFEBE0);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge img {
    width: 150px;
    animation: pulse-btn 2s infinite;
}

.guarantee-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.guarantee-text .highlight {
    color: var(--primary);
}

.guarantee-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark);
}

.guarantee-list i {
    color: var(--secondary);
}

/* Offer Section */
.offer-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: white;
}

.offer-content {
    text-align: center;
}

.offer-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.offer-subtitle {
    opacity: 0.9;
    margin-bottom: 50px;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.offer-card.highlight-card {
    background: rgba(255,255,255,0.15);
    border-color: var(--yellow);
    transform: scale(1.05);
}

.offer-card.highlight-card:hover {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.offer-badge.best {
    background: var(--yellow);
    color: var(--dark);
}

.offer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.offer-duration {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.offer-price {
    margin-bottom: 25px;
}

.offer-price .old {
    text-decoration: line-through;
    opacity: 0.6;
    display: block;
    font-size: 14px;
}

.offer-price .new {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    display: block;
}

.offer-price .per-unit {
    font-size: 14px;
    opacity: 0.8;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.offer-benefits i {
    color: var(--secondary);
}

.btn-offer {
    display: block;
    background: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-offer:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

.btn-offer.best {
    background: var(--yellow);
    color: var(--dark);
}

.btn-offer.best:hover {
    background: #D4AC0D;
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 36px;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--light);
    transition: all 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--darker);
    color: white;
    padding: 50px 20px 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 12px;
    opacity: 0.5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 35px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

.whatsapp-text {
    display: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Purchase Popup */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
}

.purchase-popup.show {
    transform: translateX(0);
}

.purchase-popup img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.popup-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.popup-action {
    color: var(--gray);
    font-size: 12px;
}

.popup-product {
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-benefits {
        align-items: center;
    }

    .problems-grid,
    .benefits-grid,
    .results-grid,
    .testimonials-grid,
    .ingredients-grid,
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card.highlight-card {
        transform: none;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .urgency-bar p {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .problems-grid,
    .benefits-grid,
    .results-grid,
    .testimonials-grid,
    .ingredients-grid,
    .offer-cards {
        grid-template-columns: 1fr;
    }

    .offer-card.highlight-card {
        grid-column: span 1;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .product-card {
        padding: 20px;
    }

    .product-img {
        width: 200px;
        height: 250px;
    }

    .new-price {
        font-size: 36px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .purchase-popup {
        left: 10px;
        right: 10px;
        bottom: 90px;
    }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}
