/*
Theme Name: SwadeshiMangoes Child Theme
Description: Beautiful responsive mango-themed child theme for Twenty Twenty-Five
Template: twentytwentyfive
Version: 1.0.0
*/

/* ===== ROOT VARIABLES ===== */
:root {
    --mango-primary: #FF8C00;
    --mango-secondary: #FFB347;
    --mango-accent: #32CD32;
    --mango-dark: #FF6B35;
    --mango-light: #FFF8DC;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --shadow-light: 0 2px 10px rgba(255, 140, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(255, 140, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(255, 140, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== GENERAL STYLES ===== */
/* Override parent theme (Twenty Twenty-Five) CSS variables */
:root {
    --wp--preset--font-family--manrope: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 100%);
    min-height: 100vh;
}

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

/* ===== HEADER STYLES ===== */
.site-header {
    background: #FFFDF5 !important;
    box-shadow: var(--shadow-medium);
    position: fixed !important;
    width: 100% !important;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.site-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #2D3748;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}


.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.8rem;
    flex-wrap: nowrap;
    align-items: center;
}

.main-navigation a {
    color: #2D3748;
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-navigation a:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO SECTION (HOME PAGE) ===== */
.hero-section {
    background: linear-gradient(135deg, var(--mango-light) 0%, var(--mango-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FF8C00" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translateX(10px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== FRONT PAGE VARIETIES SECTION ===== */
.varieties-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    border-radius: 2px;
}

/* Front page varieties grid - simpler layout */
.varieties-section .varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.varieties-section .variety-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.varieties-section .variety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--mango-secondary);
}

.variety-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    background: var(--mango-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.variety-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.varieties-section .variety-card:hover .variety-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.varieties-section .variety-card:hover .variety-icon img {
    transform: scale(1.1);
}

/* Fallback styling for emoji icons */
.variety-icon:not(:has(img)) {
    font-size: 3rem;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.variety-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.variety-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== VARIETIES PAGE DETAILED GRID ===== */
/* Detailed varieties grid for dedicated varieties page */
.page-varieties .varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    align-items: start;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.page-varieties .variety-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e67e22;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.page-varieties .variety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.variety-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.variety-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.variety-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.variety-sections {
    flex: 1;
}

.variety-section {
    margin-bottom: 1.5rem;
}

.variety-section h4 {
    color: #e67e22;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.variety-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.variety-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.stat-value {
    font-weight: bold;
    color: #e67e22;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

.sweetness-meter {
    background: #f0f0f0;
    border-radius: 10px;
    height: 8px;
    width: 100%;
    margin: 0.5rem 0;
    overflow: hidden;
}

.sweetness-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #e67e22);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.highlight-box {
    background: #fff8f3;
    border-left: 4px solid #e67e22;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.storage-tips {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.storage-tips h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tip-item:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.feature-list li:before {
    content: "🥭";
    flex-shrink: 0;
}

.season-badge {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== LAYOUT STYLES ===== */
.page-layout {
    display: flex;
    flex-direction: column;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    justify-items: center;
}

/* min-width fix merged into main .content-wrapper block below */

/* Single column layout for all pages */
.no-sidebar .content-layout {
    grid-template-columns: 1fr;
}

/* Remove sidebar completely */
.sidebar-wrapper {
    display: none !important;
}

.widget-area {
    display: none !important;
}

/* ===== CONTENT PAGE STYLES ===== */
.content-page {
    padding: 3rem 0;
    background: var(--white);
}

.page-header {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--mango-light), var(--mango-secondary));
    border-radius: var(--border-radius);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-wrapper {
    min-width: 0;
    margin: 0 auto;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* For text content pages, keep smaller max-width */
.content-wrapper.text-content {
    max-width: 800px;
    padding: 3rem;
}

.content-wrapper,
.content-wrapper p,
.content-wrapper li,
.content-wrapper blockquote,
.page-content-area,
.page-content-area p,
.page-content-area li {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.content-wrapper h1,
.content-wrapper h2,
.page-content-area h1,
.page-content-area h2 {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    color: var(--mango-primary);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h3,
.page-content-area h3 {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.content-wrapper p,
.page-content-area p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-title {
    font-family: 'Playfair Display', 'Georgia', serif !important;
}

.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* ===== LOGIN PAGE STYLES ===== */
.login-page {
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    max-width: 400px;
    width: 100%;
}

.login-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.login-title::before {
    content: "🥭";
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--mango-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-header {
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    opacity: 0.9;
}

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

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--mango-primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mango-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== ORDER FORM STYLES ===== */
.order-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--mango-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: var(--transition);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--mango-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--mango-primary), var(--mango-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: linear-gradient(135deg, var(--text-dark), #1A252F);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--mango-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p, .footer-section li {
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--mango-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    
    .varieties-section .varieties-grid,
    .page-varieties .varieties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .variety-content {
        padding: 1.5rem;
    }
    
    .variety-title {
        font-size: 1.5rem;
    }
    
    .variety-image {
        height: 180px;
    }
    
    .variety-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .login-form {
        padding: 2rem;
        margin: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .varieties-section,
    .content-page {
        padding: 2rem 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.bg-primary {
    background: var(--mango-primary);
}

.bg-secondary {
    background: var(--mango-secondary);
}

.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: var(--shadow-light);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-heavy {
    box-shadow: var(--shadow-heavy);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}
/* ===== CONTACT FORM 7 STYLES ===== */
.wpcf7 {
    max-width: 680px;
    margin: 2rem auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0ece4;
}

.wpcf7 label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    color: #2D3748;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100% !important;
    padding: 0.8rem 1rem;
    border: 1.5px solid #E2E0D8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2D3748;
    background: #FAFAF8;
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: var(--mango-primary, #FF8C00);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 p {
    margin-bottom: 1.25rem;
}

.wpcf7 input[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, var(--mango-primary, #FF8C00), var(--mango-dark, #FF6B35));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.25);
    margin-top: 0.5rem;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.4);
}

.wpcf7 input[type="submit"]:active {
    transform: translateY(0);
}

.wpcf7-response-output {
    border: none !important;
    padding: 1rem 1.25rem !important;
    border-radius: 10px !important;
    font-size: 0.9rem;
    margin: 1.5rem 0 0 !important;
}

.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
    background: #F0FFF4;
    color: #22543D;
    border: 1px solid #C6F6D5 !important;
}

.wpcf7-validation-errors,
.wpcf7 form.invalid .wpcf7-response-output {
    background: #FFF5F5;
    color: #9B2C2C;
    border: 1px solid #FED7D7 !important;
}

.wpcf7-not-valid-tip {
    color: #E53E3E;
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

.wpcf7-not-valid {
    border-color: #FC8181 !important;
}

/* Turnstile widget spacing */
.wpcf7 .cf-turnstile {
    margin: 1rem 0;
}

/* Mobile */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}
