/*
Theme Name: DummyBites
Theme URI: https://dummybites.co.tz
Author: DummyBites
Author URI: https://dummybites.co.tz
Description: A delicious snack company website with Banana Chips, Popcorn, Cakes, and Visheti products.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dummybites
Tags: food, snacks, popcorn, banana-chips, ecommerce
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #F15A24;
    --secondary: #F9C74F;
    --accent: #577590;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #FFFFFF;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; padding-top: 0; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(40px, 6vw, 60px) 0; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #d94d1a; transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.8rem;
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.top-bar-left { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); flex-wrap: wrap; }
.top-bar-left a { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.top-bar-right a:hover { background: var(--primary); }

/* ============================================
   HEADER
   ============================================ */
.header { position: fixed; top: 32px; left: 0; right: 0; z-index: 9999; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.nav-logo img { height: 40px; }
.nav-menu { display: flex; gap: 24px; font-size: 0.9rem; }
.nav-menu a { font-weight: 500; color: var(--dark); position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--primary); }
.nav-whatsapp { display: flex; align-items: center; gap: 8px; background: var(--success); color: var(--white); padding: 10px 20px; border-radius: var(--radius-full); font-weight: 600; }
.nav-whatsapp:hover { background: #218838; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 2px; }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    padding: clamp(60px, 8vw, 80px) 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(87, 117, 144, 0.7) 100%);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.page-subtitle { font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { margin-top: -1px; padding: 20px 0 30px; background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%); }
.hero .container { padding: 0 20px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; line-height: 1.1; }
.hero-text { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--gray); max-width: 450px; margin-bottom: 20px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge { display: inline-block; background: var(--secondary); color: var(--dark); padding: 5px 14px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.75rem; margin-bottom: 10px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.hero h1 span { color: var(--primary); }
.hero-visual { position: relative; }
.hero-image img { width: 100%; max-width: 400px; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-float { position: absolute; background: var(--white); padding: 10px 16px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.85rem; }
.hero-float-1 { top: 15px; left: -15px; animation: float 3s ease-in-out infinite; }
.hero-float-2 { bottom: 30px; right: -15px; animation: float 3s ease-in-out infinite 1.5s; }

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

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--accent); padding: clamp(24px, 4vw, 40px) 0; margin-top: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 20px); }
.stat-item { text-align: center; color: var(--white); padding: clamp(12px, 2vw, 20px); }
.stat-icon { width: clamp(40px, 6vw, 50px); height: clamp(40px, 6vw, 50px); background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.stat-number { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
.stat-label { font-size: clamp(0.75rem, 1.2vw, 0.9rem); opacity: 0.9; }

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.section-title h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 12px; color: var(--dark); }
.section-title p { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--white); padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.product-content { padding: clamp(12px, 1.5vw, 16px); }
.product-category { display: inline-block; background: var(--light-gray); color: var(--accent); padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 600; margin-bottom: 6px; }
.product-card h3 { font-size: clamp(1rem, 1.5vw, 1.2rem); margin-bottom: 6px; }
.product-card p { color: var(--gray); font-size: 0.85rem; margin-bottom: 12px; }
.product-price { display: flex; gap: 10px; margin-bottom: 12px; }
.price-usd { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price-tsh { font-size: 0.85rem; color: var(--gray); }
.product-card .btn { width: 100%; justify-content: center; padding: 10px 20px; font-size: 0.85rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { padding: clamp(60px, 10vw, 100px) 0; }
.gallery-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 48px); }
.filter-btn { padding: 10px 24px; border-radius: var(--radius-full); background: var(--light-gray); color: var(--dark); font-weight: 500; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(16px, 2vw, 24px); opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: var(--white); font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.gallery-price { display: inline-block; background: var(--primary); color: var(--white); padding: 6px 14px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.85rem; margin-top: 8px; }

/* ============================================
   ABOUT
   ============================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.story-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 24px; }
.story-content p { color: var(--gray); margin-bottom: 16px; font-size: clamp(0.95rem, 1.5vw, 1.05rem); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature-item { text-align: center; padding: 24px; background: var(--light-gray); border-radius: var(--radius-lg); }
.feature-icon { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); }
.feature-item h4 { margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: var(--gray); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: clamp(60px, 10vw, 100px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 5vw, 64px); }
.contact-card { background: var(--white); padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 20px; display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 56px; height: 56px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.contact-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.contact-card p { color: var(--gray); margin-bottom: 4px; }
.contact-note { font-size: 0.85rem; color: var(--accent); }
.whatsapp-card { background: var(--white); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: none; margin-bottom: 0; }

.contact-form-wrapper { background: var(--white); padding: clamp(24px, 3vw, 40px); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form-wrapper h2 { margin-bottom: 24px; font-size: clamp(1.5rem, 3vw, 2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--light-gray); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.btn-submit { width: 100%; justify-content: center; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success svg { color: var(--success); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; font-size: 1.5rem; }

.map-section { padding: clamp(60px, 10vw, 100px) 0; background: var(--light-gray); }
.map-section h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.map-subtitle { text-align: center; color: var(--gray); margin-bottom: 32px; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: clamp(60px, 10vw, 80px) 0; background: var(--light-gray); }
.faq-section h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: clamp(32px, 5vw, 48px); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 3vw, 24px); }
.faq-item { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: clamp(20px, 3vw, 28px); cursor: pointer; }
.faq-question h3 { font-size: clamp(0.95rem, 2vw, 1.05rem); margin: 0; color: var(--primary); flex: 1; }
.faq-icon { font-size: 1.5rem; font-weight: 700; color: var(--primary); transition: var(--transition); margin-left: 12px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--gray); font-size: clamp(0.85rem, 1.5vw, 0.95rem); line-height: 1.7; padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px); margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: clamp(40px, 6vw, 60px) 0; background: linear-gradient(135deg, var(--primary) 0%, #d94d1a 100%); text-align: center; }
.cta-content h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.9); margin-bottom: 24px; font-size: clamp(0.9rem, 1.5vw, 1rem); }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--white); color: var(--primary); }
.cta-section .btn-primary:hover { background: var(--secondary); }
.cta-section .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-section .btn-secondary:hover { background: var(--white); color: var(--primary); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--light-gray); padding: clamp(30px, 5vw, 50px) 0; }
.testimonials-slider { position: relative; overflow: hidden; max-width: 500px; margin: 0 auto; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { 
    min-width: 100%; 
    background: var(--white); 
    padding: clamp(20px, 2.5vw, 28px); 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow); 
    text-align: center;
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; justify-content: center; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-info h4 { margin-bottom: 2px; font-size: 0.95rem; }
.testimonial-info span { font-size: 0.8rem; color: var(--gray); }
.testimonial-stars { color: var(--secondary); margin-bottom: 10px; display: flex; justify-content: center; gap: 2px; }
.testimonial-text { color: var(--gray); font-style: italic; line-height: 1.6; font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(241, 90, 36, 0.3); cursor: pointer; transition: all 0.3s ease; }
.testimonial-dot.active { background: var(--primary); transform: scale(1.2); }
.testimonial-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; }
.testimonial-arrow:hover { background: var(--primary); color: var(--white); }
.testimonial-arrow.prev { left: -20px; }
.testimonial-arrow.next { right: -20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: var(--white); padding: clamp(48px, 8vw, 80px) 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); margin-bottom: clamp(32px, 5vw, 48px); }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.7); margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-column ul li { margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer-column a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 9998; }
.floating-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-lg); transition: var(--transition); }
.floating-btn.whatsapp { background: #25D366; }
.floating-btn.whatsapp:hover { background: #128C7E; transform: scale(1.1); }
.floating-btn.email { background: var(--primary); }
.floating-btn.email:hover { background: #d94d1a; transform: scale(1.1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-float-1 { left: 10px; }
    .hero-float-2 { right: 10px; }
    .story-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    body { padding-top: 0; }
    .header { top: 26px; padding: 4px 0; }
    .nav-logo img { height: 34px; }
    .hero { padding: 16px 0 24px; }
    .hero .container { padding: 0 15px; }
    .nav-whatsapp { padding: 6px 12px; font-size: 0.8rem; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 14px; gap: 12px; box-shadow: var(--shadow); }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 16px; }
    .footer-social { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-float { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT FORM 7 STYLES
   ============================================ */
.wpcf7-form-wrapper { width: 100%; }
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--dark); font-size: 0.9rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea { width: 100%; padding: 12px 14px; border: 2px solid #e8e8e8; border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-body); transition: all 0.3s ease; background: var(--white); }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.1); }
.wpcf7-form textarea { resize: vertical; min-height: 120px; }
.wpcf7-form input[type="submit"] { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; background: var(--primary); color: var(--white); border: none; cursor: pointer; transition: all 0.3s ease; width: 100%; font-family: var(--font-body); }
.wpcf7-form input[type="submit"]:hover { background: #d94d1a; transform: translateY(-2px); }
.wpcf7-form .wpcf7-recaptcha { margin-bottom: 16px; }
.wpcf7-form .wpcf7-not-valid-tip { color: #dc3545; font-size: 0.8rem; margin-top: 4px; }
.wpcf7-form .wpcf7-validation-errors { border: 1px solid #f0f0f0; color: var(--gray); padding: 12px; border-radius: var(--radius); text-align: center; font-size: 0.9rem; }
.wpcf7-form .wpcf7-mail-sent-ok { border: 1px solid #28a745; background: #d4edda; color: #155724; padding: 16px; border-radius: var(--radius); text-align: center; font-size: 0.95rem; }
.wpcf7-form .wpcf7-checkbox, .wpcf7-form .wpcf7-radio { display: flex; flex-wrap: wrap; gap: 12px; }
.wpcf7-list-item { margin: 0; }
.wpcf7-spinner { display: inline-block; margin-left: 10px; vertical-align: middle; }
.wpcf7-text { max-width: 100%; }
.wpcf7-email { max-width: 100%; }
.wpcf7-tel { max-width: 100%; }
