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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #8B5A9F;
}

h2 {
    font-size: 2rem;
    color: #8B5A9F;
}

h3 {
    font-size: 1.5rem;
    color: #8B5A9F;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 80px;
    background: #f0f8ff; /* Temporary blue background to test scrolling */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 340px;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
    height: 80px;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 20px;
}

.nav-logo-center {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-center {
    margin-bottom: 0;
    margin-right: auto;
}

.nav-logo-img {
    height: 320px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 60px;
}

.nav-menu {
    display: none; /* Hidden by default, shown when hamburger is clicked */
    gap: 1.5rem;
    justify-content: center;
    position: fixed;
    left: -100%;
    top: 340px;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 1.5rem 1rem;
    opacity: 0;
    transform: translateX(-100%);
}

.navbar.scrolled .nav-menu {
    top: 80px;
    left: 0;
    display: flex;
    opacity: 1;
    transform: translateX(0);
    flex-direction: row;
    position: relative;
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    margin-left: auto;
    margin-right: 20px;
}

.nav-menu.active {
    left: 0;
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.hamburger {
    display: flex; /* Always visible on all screen sizes */
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.navbar.scrolled .hamburger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D196E0;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 320px 0 80px;
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 50%, #FFE6F0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
}

.blog-hero {
    padding: 560px 0 80px;
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 50%, #FFE6F0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
}

.hero-logo {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 20px;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    width: 100%;
}

.family-image {
    text-align: center;
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 0 20px;
}

.family-img {
    max-width: 800px;
    height: auto;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Business Header Styles */
.business-header {
    text-align: center;
    margin: 0 0 2rem 0;
    width: 100%;
    padding: 0 20px;
}

.business-caption {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-style: italic;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-badge {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6B7280;
    background: rgba(107, 70, 193, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.privacy-badge i {
    color: #6B46C1;
    font-size: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D196E0;
    color: white;
}

.btn-primary:hover {
    background: #B76BC8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #D196E0;
    border: 2px solid #D196E0;
}

.btn-secondary:hover {
    background: #D196E0;
    color: white;
}

.btn-tertiary {
    background: transparent;
    color: #6B46C1;
    border: 2px solid #6B46C1;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    background: #6B46C1;
    color: white;
    transform: translateY(-2px);
}

/* Combined Description Styling */
.combined-description {
    margin-bottom: 2rem;
}

.combined-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.combined-description p:last-child {
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(135deg, #F5E6FF 0%, #FFE6F0 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.bio-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: left;
}

.bio-section h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #8B5A9F;
}

.bio-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #D196E0;
}

.swedish-massage-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/massage-stock.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swedish-massage-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/massage-stock.jpeg');
}

.infinite-oneness-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/HealingHands.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.infinite-oneness-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/HealingHands.jpeg');
}

.qigong-massage-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/qigong-massage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.qigong-massage-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/qigong-massage.png');
}

.cranio-sacral-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/cranio-sacral.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cranio-sacral-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/cranio-sacral.jpg');
}

.thai-yoga-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/Thai.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.thai-yoga-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/Thai.png');
}

.raw-food-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../images/raw-food-retreat.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.raw-food-card:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/raw-food-retreat.jpg');
}

.service-icon {
    font-size: 3rem;
    color: #D196E0;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-category {
    margin-bottom: 4rem;
}

.testimonials-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #8B5A9F;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #D196E0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-card cite {
    font-weight: 600;
    color: #8B5A9F;
    font-style: normal;
}

/* ARCH Testimonial Image */
.arch-image-container {
    text-align: center;
    margin: 2rem 0;
}

.arch-testimonial-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 90, 159, 0.3);
    border: 3px solid #D196E0;
}

/* Raw Food Testimonial Image */
.raw-food-image-container {
    text-align: center;
    margin: 2rem 0;
}

.raw-food-testimonial-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 90, 159, 0.3);
    border: 3px solid #D196E0;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Specific positioning for Cindy's transformation photo */
.gallery-item img[alt*="Cindy 3 Week"] {
    object-position: center 35%;
    object-fit: cover;
}

/* Recipes Section */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.recipe-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.recipe-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #D196E0;
}

.recipe-icon {
    font-size: 3rem;
    color: #D196E0;
    margin-bottom: 1.5rem;
}

.recipe-category h3 {
    color: #8B5A9F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.recipe-category p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recipe-count {
    display: inline-block;
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 100%);
    color: #8B5A9F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Discount Section */
.discount-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #F5E6FF 0%, #E2C4FF 100%);
}

.section-logo-accent {
    text-align: center;
    margin-bottom: 2rem;
}

.section-accent-img {
    height: 25px;
    width: auto;
    opacity: 0.5;
}

.donation-button {
    margin-top: 2rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #D196E0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.location-group {
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #8B5A9F;
}

.location-group p {
    margin-bottom: 0.5rem;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D196E0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B5A9F 0%, #6D4C7D 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer p {
    color: #ccc;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #D196E0;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #F4A3E8;
}

.footer-bottom {
    border-top: 1px solid #A86BB5;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E2C4FF;
}

.design-credit {
    font-size: 0.9rem;
    color: #4CAF50;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.design-credit a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.design-credit a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

/* Desktop Navigation Behavior */
@media (min-width: 769px) {
    .navbar.scrolled .nav-menu {
        position: relative;
        flex-direction: row;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: auto;
        margin-right: 20px;
        top: auto;
        left: auto;
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar.scrolled .hamburger {
        opacity: 0;
        pointer-events: none;
    }
}

/* Mobile Navigation Behavior */
@media (max-width: 768px) {
    .nav-container {
        height: 260px;
        position: relative;
    }
    
    .navbar.scrolled .nav-container {
        height: 70px;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .nav-logo-img {
        height: 240px;
    }
    
    .navbar.scrolled .nav-logo-img {
        height: 50px;
    }
    
    .hero {
        padding: 300px 0 80px;
    }
    
    .nav-menu {
        top: 260px;
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .navbar.scrolled .nav-menu {
        top: 70px;
        flex-direction: row;
        flex-wrap: wrap;
        position: fixed;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1rem;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        justify-content: center;
        gap: 1rem;
    }
    
    .navbar.scrolled .hamburger {
        opacity: 1;
        pointer-events: auto;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .business-caption {
        font-size: 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-accent-img {
        height: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .arch-testimonial-image {
        max-width: 300px;
    }
    
    .raw-food-testimonial-image {
        max-width: 300px;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 200px;
    }
    
    .hero-logo-img {
        max-width: 125px;
    }
    
    .business-caption {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Additional responsive styles for horizontal navigation */
@media (max-width: 600px) {
    .nav-menu {
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }
    
    .navbar.scrolled .nav-menu {
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        padding: 0.8rem 0.3rem;
    }
    
    .navbar.scrolled .nav-menu {
        gap: 0.5rem;
        padding: 0.8rem 0.3rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
}

/* Donation Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #8B5A9F;
    font-size: 1.3rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #8B5A9F;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-card:hover {
    border-color: #8B5A9F;
    background: #f9f7fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 159, 0.15);
}

.payment-method-icon {
    font-size: 2rem;
    margin-right: 16px;
    width: 60px;
    text-align: center;
}

.payment-method-icon .fa-paypal {
    color: #003087;
}

.payment-method-icon .fa-venmo {
    color: #3D95CE;
}

.payment-method-icon .fa-dollar-sign {
    color: #00D632;
}

.payment-method-info h4 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 1.1rem;
}

.payment-method-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.venmo-fallback {
    background: #3D95CE;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .payment-method-card {
        padding: 12px;
    }
    
    .payment-method-icon {
        font-size: 1.5rem;
        width: 50px;
        margin-right: 12px;
    }
    
    .payment-method-info h4 {
        font-size: 1rem;
    }
    
    .payment-method-info p {
        font-size: 0.8rem;
    }
}
