/* UniTV Theme — Main CSS (White Design) */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --unitv-orange: #FF6B35;
    --unitv-red: #F44336;
    --unitv-purple: #9C27B0;
    --unitv-blue: #2196F3;
    --unitv-gradient: linear-gradient(135deg, #FF6B35 0%, #F44336 25%, #9C27B0 75%, #2196F3 100%);
    --color-primary: #FF6B35;
    --color-primary-dark: #E55A2B;
    --color-secondary: #9C27B0;
    --color-accent: #2196F3;
    --color-dark: #0A0A0A;
    --color-dark-gray: #1A1A1A;
    --color-gray: #333333;
    --color-light-gray: #CCCCCC;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F5;
    --color-success: #4CAF50;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(255,107,53,0.3);
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-whatsapp: 9999;
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }

p { margin-bottom: var(--spacing-md); }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--color-primary-dark); }

img { max-width: 100%; height: auto; }

/* ============================================
   Layout
   ============================================ */
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 var(--container-padding); }

.section { padding: var(--spacing-4xl) 0; }

.gradient-text {
    background: var(--unitv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255,107,53,0.1);
}

.site-header.scrolled {
    background: rgba(10,10,10,0.98);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--container-padding);
    gap: var(--spacing-lg);
}

.site-logo img { height: 50px; width: auto; transition: transform var(--transition-base); }
.site-logo a:hover img { transform: scale(1.05); }

.main-navigation { flex: 1; display: flex; justify-content: center; }

.main-navigation ul { display: flex; list-style: none; gap: var(--spacing-lg); margin: 0; padding: 0; }

.main-navigation li { margin: 0; }

.main-navigation a {
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: var(--unitv-gradient);
    transform: translateY(-2px);
    color: #fff;
}

.header-actions { display: flex; align-items: center; gap: var(--spacing-md); }

.my-account-link {
    display: flex; align-items: center; gap: 6px;
    color: var(--color-white); font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none; white-space: nowrap;
}
.my-account-link:hover { color: var(--color-primary); transform: scale(1.05); }
.my-account-link i { font-size: var(--font-size-lg); }

.cart-icon {
    position: relative; color: var(--color-white);
    font-size: var(--font-size-xl); padding: var(--spacing-sm);
    transition: all var(--transition-base);
}
.cart-icon:hover { color: var(--color-primary); transform: scale(1.1); }

.cart-count {
    position: absolute; top: -5px; right: -5px;
    background: var(--unitv-gradient); color: var(--color-white);
    font-size: var(--font-size-xs); font-weight: var(--font-weight-bold);
    width: 20px; height: 20px; border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
}

.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: transparent; border: none; cursor: pointer; padding: var(--spacing-sm);
}
.mobile-menu-toggle span {
    width: 25px; height: 3px; background: var(--color-white);
    border-radius: var(--radius-sm); transition: all var(--transition-base);
}
.mobile-menu-toggle:hover span { background: var(--color-primary); }

/* Mobile Menu */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);
        padding: var(--spacing-lg);
        transform: translateY(-100%); opacity: 0; visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-xl);
    }
    .main-navigation.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-navigation ul { flex-direction: column; gap: var(--spacing-sm); }
    .main-navigation a { width: 100%; text-align: center; padding: var(--spacing-md); }
    .mobile-menu-toggle { display: flex; }
    .my-account-link span { display: none; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}

@media (max-width: 480px) {
    body { padding-top: 60px; }
}

/* ============================================
   Homepage Sections — White Design
   ============================================ */

/* Hero */
.hp-hero {
    background: #fff;
    text-align: center;
    padding: 80px 20px 60px;
}
.hp-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f0fdf4; color: #16a34a;
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600;
    margin-bottom: 32px; border: 1px solid #bbf7d0;
}
.hp-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem; font-weight: 800;
    color: #1a1a2e; margin-bottom: 20px; line-height: 1.1;
}
.hp-text-primary { color: #e53e3e; }
.hp-hero-desc {
    font-size: 1.1rem; color: #6b7280;
    max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}
.hp-hero-counter {
    margin-top: 40px; display: flex; flex-direction: column; align-items: center;
}
.hp-counter-number { font-size: 1.5rem; font-weight: 800; color: #e53e3e; }
.hp-counter-label { font-size: 0.875rem; color: #9ca3af; }

/* Buttons */
.hp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 32px; border-radius: 10px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
    cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
}
.hp-btn-primary { background: #e53e3e; color: #fff; }
.hp-btn-primary:hover {
    background: #c53030; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229,62,62,0.3); color: #fff;
}
.hp-btn-outline { background: #fff; color: #374151; border: 2px solid #e5e7eb; }
.hp-btn-outline:hover { border-color: #e53e3e; color: #e53e3e; }
.hp-btn-lg { padding: 16px 48px; font-size: 1.1rem; }
.hp-btn-block { width: 100%; }

/* Section Headers */
.hp-section-header { text-align: center; margin-bottom: 48px; }
.hp-section-header h2 {
    font-family: 'Poppins', sans-serif; font-size: 2.2rem;
    font-weight: 700; color: #1a1a2e; margin-bottom: 12px;
}
.hp-section-header p { font-size: 1rem; color: #6b7280; }

/* Products */
.hp-products { padding: 80px 20px; background: #f9fafb; }
.hp-products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.hp-product-card {
    background: #fff; border-radius: 16px; padding: 28px 24px;
    text-align: center; border: 1px solid #e5e7eb;
    transition: all 0.3s; display: flex; flex-direction: column;
}
.hp-product-card:hover {
    border-color: #e53e3e; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.hp-product-image { width: 140px; height: 140px; margin: 0 auto 16px; overflow: hidden; border-radius: 12px; }
.hp-product-image img { width: 100%; height: 100%; object-fit: cover; }
.hp-product-title { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.hp-product-features { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.hp-product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #6b7280; margin-bottom: 6px; }
.hp-product-features li i { color: #16a34a; font-size: 0.75rem; }
.hp-product-price { font-size: 1.8rem; font-weight: 800; color: #e53e3e; margin-bottom: 4px; }
.hp-product-price del { font-size: 1rem; color: #9ca3af; font-weight: 400; }
.hp-product-price ins { text-decoration: none; }
.hp-product-validity { font-size: 0.8rem; color: #9ca3af; margin-bottom: 20px; }
.hp-product-card .hp-btn { margin-bottom: 8px; font-size: 0.9rem; padding: 12px 20px; }
.hp-product-card .hp-btn-outline { padding: 10px 20px; font-size: 0.85rem; }

/* How it Works */
.hp-how-it-works { padding: 80px 20px; background: #fff; }
.hp-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.hp-step-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 32px 24px; text-align: center; position: relative; transition: all 0.3s;
}
.hp-step-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.hp-step-number {
    position: absolute; top: -14px; right: -10px;
    width: 32px; height: 32px; background: #e53e3e; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}
.hp-step-icon {
    width: 60px; height: 60px; margin: 0 auto 16px;
    background: #fff7ed; color: #ea580c; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.hp-step-card:nth-child(2) .hp-step-icon { background: #dcfce7; color: #16a34a; }
.hp-step-card:nth-child(2) .hp-step-number { background: #16a34a; }
.hp-step-card:nth-child(3) .hp-step-icon { background: #dbeafe; color: #2563eb; }
.hp-step-card:nth-child(3) .hp-step-number { background: #2563eb; }
.hp-step-card:nth-child(4) .hp-step-icon { background: #fce7f3; color: #db2777; }
.hp-step-card:nth-child(4) .hp-step-number { background: #db2777; }
.hp-step-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.hp-step-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.5; margin: 0; }

/* Info Box */
.hp-info-section { padding: 40px 20px; background: #f9fafb; }
.hp-info-box {
    max-width: 800px; margin: 0 auto; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 16px; padding: 32px 40px;
}
.hp-info-box h3 { font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 20px; color: #1a1a2e; }
.hp-info-box ul { list-style: none; padding: 0; margin: 0; }
.hp-info-box ul li { padding: 8px 0 8px 16px; color: #6b7280; font-size: 0.9rem; line-height: 1.5; position: relative; }
.hp-info-box ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: #e53e3e; border-radius: 50%; }

/* Delivery */
.hp-delivery-section { padding: 60px 20px; background: #f9fafb; }
.hp-delivery-box {
    max-width: 800px; margin: 0 auto; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 16px; padding: 40px; text-align: center;
}
.hp-delivery-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.hp-delivery-box > p { color: #6b7280; margin-bottom: 32px; }
.hp-delivery-channels { display: flex; justify-content: center; gap: 48px; }
.hp-channel { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hp-channel-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hp-channel strong { font-size: 0.9rem; color: #1a1a2e; }
.hp-channel span { font-size: 0.75rem; color: #9ca3af; }

/* Trust */
.hp-trust-section { padding: 80px 20px; background: #fff; }
.hp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.hp-trust-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.hp-trust-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.hp-trust-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hp-trust-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.hp-trust-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.5; margin: 0; }
.hp-trust-footer { text-align: center; color: #9ca3af; font-size: 0.85rem; margin-top: 32px; }

/* FAQ */
.hp-faq-section { padding: 80px 20px; background: #f9fafb; }
.hp-faq-list { max-width: 750px; margin: 0 auto; }
.hp-faq-item {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    margin-bottom: 12px; overflow: hidden; transition: all 0.3s;
}
.hp-faq-item:hover { border-color: #d1d5db; }
.hp-faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px; background: none; border: none;
    font-size: 0.95rem; font-weight: 600; color: #1a1a2e;
    cursor: pointer; text-align: left; font-family: inherit;
}
.hp-faq-question i { color: #9ca3af; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.hp-faq-item.open .hp-faq-question i { transform: rotate(180deg); }
.hp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.hp-faq-item.open .hp-faq-answer { max-height: 300px; }
.hp-faq-answer p { padding: 0 24px 18px; font-size: 0.9rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* CTA */
.hp-cta-section { padding: 80px 20px; background: #fff; }
.hp-cta-box {
    max-width: 750px; margin: 0 auto; background: #f9fafb;
    border: 1px solid #e5e7eb; border-radius: 20px; padding: 48px 40px; text-align: center;
}
.hp-cta-box h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.hp-cta-box > p { color: #6b7280; margin-bottom: 28px; font-size: 0.95rem; }
.hp-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hp-cta-notice { display: inline-block; background: #dcfce7; color: #16a34a; padding: 8px 20px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-dark);
    color: var(--color-light-gray);
    margin-top: var(--spacing-4xl);
}

.footer-main { padding: var(--spacing-4xl) 0 var(--spacing-3xl); }

.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-3xl); }

.footer-column h4.footer-title {
    color: var(--color-white); font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg); position: relative; padding-bottom: var(--spacing-sm);
}
.footer-column h4.footer-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 50px; height: 3px; background: var(--unitv-gradient); border-radius: var(--radius-sm);
}

.footer-logo img { height: 60px; width: auto; margin-bottom: var(--spacing-md); }

.footer-description { color: var(--color-light-gray); line-height: 1.6; margin-bottom: var(--spacing-lg); font-size: 0.9rem; }

.footer-social { display: flex; gap: var(--spacing-md); }
.social-link {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: var(--radius-md);
    color: var(--color-white); transition: all var(--transition-base);
}
.social-link:hover { background: var(--unitv-gradient); transform: translateY(-3px); color: #fff; }

#footer-menu, #footer-policies { list-style: none; padding: 0; margin: 0; }
#footer-menu li, #footer-policies li { margin-bottom: var(--spacing-sm); }
#footer-menu a, #footer-policies a { color: var(--color-light-gray); transition: all var(--transition-base); display: inline-block; font-size: 0.9rem; }
#footer-menu a:hover, #footer-policies a:hover { color: var(--color-primary); transform: translateX(5px); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: var(--spacing-md); margin-bottom: var(--spacing-md); }
.footer-contact i { color: var(--color-primary); font-size: var(--font-size-lg); width: 20px; }
.footer-contact a { color: var(--color-light-gray); transition: color var(--transition-base); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--color-primary); }

.footer-hours-mini { margin-top: var(--spacing-lg); padding-top: var(--spacing-md); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-hours-mini p { margin: 0 0 4px; font-size: 0.85rem; color: var(--color-light-gray); }
.footer-hours-mini strong { color: var(--color-white); }

.footer-bottom { background: var(--color-dark-gray); padding: var(--spacing-lg) 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--spacing-md); }
.copyright { color: var(--color-light-gray); margin: 0; font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: var(--spacing-sm); align-items: center; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--color-light-gray); transition: color var(--transition-base); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--color-primary); }
.separator { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white); font-size: 30px;
    box-shadow: var(--shadow-xl); z-index: var(--z-whatsapp);
    transition: all var(--transition-base);
    animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(37,211,102,0.5); color: #fff; }

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ============================================
   WooCommerce
   ============================================ */
.woocommerce .quantity .qty {
    -webkit-appearance: none; appearance: none;
    min-height: 44px; min-width: 60px; text-align: center;
    font-size: var(--font-size-lg); font-weight: var(--font-weight-semibold);
    border: 2px solid var(--color-off-white); border-radius: var(--radius-md);
    background: var(--color-white);
}

.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: #e53e3e; color: #fff; border: none;
    padding: 12px 24px; border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold); cursor: pointer;
    transition: all var(--transition-base); min-height: 48px;
}
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover { background: #c53030; color: #fff; }

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: #e53e3e;
}

/* Shop page */
.woocommerce ul.products li.product .button {
    background: #e53e3e; color: #fff; border-radius: var(--radius-lg);
}
.woocommerce ul.products li.product .button:hover { background: #c53030; }

/* Single product */
.woocommerce div.product .cart .single_add_to_cart_button {
    background: #e53e3e; color: #fff; border-radius: var(--radius-lg);
    font-size: var(--font-size-lg); font-weight: var(--font-weight-bold);
    min-height: 56px; width: 100%;
}
.woocommerce div.product .cart .single_add_to_cart_button:hover { background: #c53030; }

/* Checkout */
.uck-wrap { background: #f5f6f8; min-height: 100vh; padding: 12px; }
.uck-container { max-width: 500px; margin: 0 auto; }
.uck-card { background: #fff; border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); margin-bottom: 10px; overflow: hidden; }
.uck-card-head { padding: 12px 16px; font-size: 0.9rem; font-weight: 700; color: #1a1a2e; border-bottom: 1px solid #f0f1f3; }
.uck-card-body { padding: 14px 16px; }
.uck-item { display: flex; align-items: center; gap: 10px; }
.uck-item-img { width: 50px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.uck-item-img img { width: 100%; height: 100%; object-fit: cover; }
.uck-item-info { flex: 1; min-width: 0; }
.uck-item-info strong { display: block; font-size: 0.82rem; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uck-item-price { font-size: 0.82rem; color: #6b7280; margin-top: 2px; }
.uck-total { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0f1f3; }
.uck-total span { font-size: 0.9rem; color: #6b7280; }
.uck-total strong { font-size: 1.1rem; color: #1a1a2e; }
.uck-form .form-row { margin: 0 0 8px !important; padding: 0 !important; }
.uck-form label { font-size: 0.75rem; font-weight: 600; color: #374151; margin-bottom: 3px; display: block; }
.uck-form input.input-text, .uck-form select { width: 100%; padding: 10px 12px; border: 1.5px solid #d1d5db; border-radius: 8px; font-size: 0.9rem; color: #1a1a2e; background: #fff; outline: none; }
.uck-form input.input-text:focus, .uck-form select:focus { border-color: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
.uck-payment #payment { background: transparent !important; border: none !important; box-shadow: none !important; }
.uck-payment .payment_methods { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.uck-payment .payment_methods li { padding: 10px 12px !important; margin: 0 0 6px !important; border: 1.5px solid #e5e7eb !important; border-radius: 8px !important; background: #fafafa !important; }
.uck-payment .place-order { padding: 0 !important; margin: 0 !important; }
.uck-payment #place_order { width: 100%; padding: 14px !important; background: #8b5cf6 !important; color: #fff !important; border: none !important; border-radius: 10px !important; font-size: 1rem !important; font-weight: 700 !important; cursor: pointer; transition: all 0.2s; }
.uck-payment #place_order:hover { background: #7c3aed !important; }
.uck-whatsapp-banner { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; margin-bottom: 10px; }
.uck-whatsapp-banner strong { font-size: 0.82rem; color: #166534; display: block; }
.uck-whatsapp-banner p { margin: 0; font-size: 0.75rem; color: #15803d; }
.uck-whatsapp-banner a { color: #15803d; font-weight: 700; }
.uck-form .woocommerce-NoticeGroup, .woocommerce-form-coupon-toggle, .checkout_coupon, .woocommerce-privacy-policy-text { display: none !important; }

/* Order page */
.woocommerce-order { max-width: 500px; margin: 0 auto; padding: 20px 16px; }
.woocommerce-order .woocommerce-thankyou-order-received { background: #f0fdf4; border: 2px solid #22c55e; border-radius: 12px; padding: 20px; text-align: center; font-size: 1.1rem; font-weight: 700; color: #166534; margin-bottom: 20px; }
.woocommerce-order .woocommerce-customer-details { display: none !important; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hp-products-grid, .hp-steps-grid, .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-2xl); }
}

@media (max-width: 768px) {
    .hp-hero-title { font-size: 2.5rem; }
    .hp-section-header h2 { font-size: 1.8rem; }
    .hp-delivery-channels { gap: 24px; }
    .hp-cta-buttons { flex-direction: column; align-items: center; }
    .hp-info-box { padding: 24px 20px; }
    .hp-delivery-box { padding: 24px 20px; }
    .hp-cta-box { padding: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 26px; }
}

@media (max-width: 480px) {
    .hp-hero { padding: 60px 16px 40px; }
    .hp-hero-title { font-size: 2rem; }
    .hp-hero-desc { font-size: 0.95rem; }
    .hp-products-grid, .hp-steps-grid, .hp-trust-grid { grid-template-columns: 1fr; }
    .hp-products { padding: 60px 16px; }
    .hp-how-it-works { padding: 60px 16px; }
    .hp-trust-section { padding: 60px 16px; }
    .hp-faq-section { padding: 60px 16px; }
    .hp-delivery-channels { flex-direction: column; gap: 16px; }
    .hp-product-image { width: 120px; height: 120px; }
}

/* ============================================
   Single Product Page — White Design
   ============================================ */
.single-product-wrapper { padding-top: 0; }
.product-hero { padding: 40px 0 60px; background: #fff; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.product-images-section { position: relative; }
.product-badges { position: absolute; top: 16px; left: 16px; z-index: 10; display: flex; flex-direction: column; gap: 8px; }
.product-badge { display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-sale { background: linear-gradient(135deg, #e53e3e, #c53030); color: #fff; }
.badge-new { background: #16a34a; color: #fff; }
.product-main-image { background: #f8f9fa; border-radius: 20px; overflow: hidden; border: 1px solid #e5e7eb; }
.sp-product-img { width: 100%; height: auto; display: block; object-fit: contain; aspect-ratio: 1; }

.product-info-section { position: sticky; top: 90px; }
.sp-category-tag { display: inline-block; padding: 4px 14px; background: #fff7ed; color: #ea580c; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border-radius: 6px; margin-bottom: 12px; }
.sp-title { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #1a1a2e; line-height: 1.2; margin-bottom: 12px; }

.sp-price-box { background: #f8f9fa; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px 24px; margin-bottom: 24px; }
.sp-price-old { color: #9ca3af; font-size: 0.9rem; margin-bottom: 4px; }
.sp-price-old del { color: #9ca3af; }
.sp-price-current { display: flex; align-items: baseline; gap: 8px; }
.sp-price-label { color: #6b7280; font-size: 0.9rem; }
.sp-price-value { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: #e53e3e; }
.sp-price-value .woocommerce-Price-amount, .sp-price-value bdi { font-size: inherit !important; color: inherit !important; font-weight: inherit !important; }
.sp-savings { margin-top: 8px; background: #dcfce7; color: #16a34a; font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 6px; display: inline-block; }

.sp-description { color: #6b7280; font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; padding: 16px 20px; background: #f8f9fa; border-radius: 12px; border-left: 4px solid #e53e3e; }
.sp-description p { margin: 0; }

.sp-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.sp-highlight-item { display: flex; align-items: center; gap: 14px; }
.sp-highlight-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.sp-highlight-item strong { display: block; font-size: 0.9rem; color: #1a1a2e; }
.sp-highlight-item span { font-size: 0.8rem; color: #9ca3af; }

.sp-buy-section { margin-bottom: 24px; }
.sp-buy-section .cart { display: flex; flex-direction: column; gap: 12px; }
.sp-buy-section .quantity { display: none; }
.sp-buy-section .cart button,
.sp-buy-section .cart .single_add_to_cart_button,
.sp-buy-section .single_add_to_cart_button,
.sp-buy-section a.button {
    display: block; text-align: center; text-decoration: none;
    width: 100%; padding: 16px 24px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: #fff !important; border: none; border-radius: 14px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; letter-spacing: 0.3px; min-height: auto;
}
.sp-buy-section .cart button:hover,
.sp-buy-section .cart .single_add_to_cart_button:hover,
.sp-buy-section .single_add_to_cart_button:hover,
.sp-buy-section a.button:hover {
    transform: translateY(-2px); box-shadow: 0 10px 30px rgba(229,62,62,0.3); background: linear-gradient(135deg, #e53e3e, #c53030); color: #fff !important;
}

.sp-trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; padding: 16px; background: #f8f9fa; border-radius: 14px; border: 1px solid #e5e7eb; }
.sp-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.sp-trust-item i { font-size: 1.3rem; color: #e53e3e; }
.sp-trust-item span { font-size: 0.7rem; font-weight: 600; color: #6b7280; line-height: 1.3; }

.sp-urgency { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: linear-gradient(135deg, rgba(229,62,62,0.08), rgba(229,62,62,0.03)); border: 2px solid #e53e3e; border-radius: 14px; margin-bottom: 20px; }
.sp-urgency > i { font-size: 1.6rem; color: #e53e3e; animation: sp-pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes sp-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.sp-urgency strong { display: block; color: #e53e3e; font-size: 0.9rem; margin-bottom: 2px; }
.sp-urgency p { margin: 0; color: #6b7280; font-size: 0.85rem; }
.sp-stock-count { color: #e53e3e; font-weight: 700; }

.sp-whatsapp-cta { padding: 20px; background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(18,140,126,0.05)); border-radius: 14px; text-align: center; border: 1px solid rgba(37,211,102,0.2); }
.sp-whatsapp-cta p { margin: 0 0 12px; font-size: 0.9rem; color: #6b7280; }
.sp-whatsapp-cta p strong { color: #1a1a2e; }
.sp-btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border-radius: 12px; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; text-decoration: none; }
.sp-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); color: #fff; }

.sp-details-section { padding: 60px 0; background: #f8f9fa; }
.sp-details-card { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 40px; border: 1px solid #e5e7eb; }
.sp-details-title { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid #f3f4f6; }
.sp-details-content { color: #6b7280; font-size: 0.95rem; line-height: 1.8; }
.sp-details-content p { margin-bottom: 12px; }

.sp-related-section { padding: 60px 0 80px; background: #fff; }
.sp-related-section .related.products > h2 { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 700; text-align: center; color: #1a1a2e; margin-bottom: 36px; }
/* Sobrescreve o layout float padrão do WooCommerce por grid */
.sp-related-section ul.products,
.sp-related-section ul.products.columns-1,
.sp-related-section ul.products.columns-2,
.sp-related-section ul.products.columns-3,
.sp-related-section ul.products.columns-4,
.sp-related-section ul.products.columns-5,
.sp-related-section ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-related-section ul.products::before,
.sp-related-section ul.products::after { content: none !important; display: none !important; }
.sp-related-section ul.products li.product,
.sp-related-section ul.products li.product.first,
.sp-related-section ul.products li.product.last {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    text-align: center;
    padding: 16px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.sp-related-section ul.products li.product { list-style: none; }
.sp-related-section ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.sp-related-section ul.products li.product a img { border-radius: 12px; margin: 0 auto 12px; width: 100%; max-width: 160px; height: auto; }
.sp-related-section ul.products li.product .woocommerce-loop-product__title,
.sp-related-section ul.products li.product h2,
.sp-related-section ul.products li.product h3 { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; padding: 4px 0 8px; margin: 0; line-height: 1.3; }
.sp-related-section ul.products li.product .price { color: #e53e3e; font-weight: 800; display: block; margin-bottom: 12px; font-size: 1.05rem; }
.sp-related-section ul.products li.product .price del { color: #9ca3af; font-weight: 400; font-size: 0.85rem; }
.sp-related-section ul.products li.product .price ins { text-decoration: none; }
/* Botão "Adicionar ao carrinho" — largura total, sem estourar */
.sp-related-section ul.products li.product .button,
.sp-related-section ul.products li.product .added_to_cart {
    margin-top: auto !important;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    font-size: 0.82rem !important;
    line-height: 1.25;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    background: #e53e3e !important;
    color: #fff !important;
}
.sp-related-section ul.products li.product .button:hover { background: #c53030 !important; }

/* Esconder elementos padrão do WooCommerce que vazam */
.single-product-wrapper .woocommerce-product-gallery__trigger,
.single-product-wrapper .onsale,
.single-product-wrapper .woocommerce-breadcrumb,
.single-product-wrapper .woocommerce-tabs,
.single-product-wrapper .product_meta { display: none !important; }

@media (max-width: 968px) {
    .product-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-info-section { position: static; }
    .sp-title { font-size: 1.7rem; }
    .sp-price-value { font-size: 1.8rem; }
    .sp-related-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .product-hero { padding: 20px 0 40px; }
    .product-hero-grid { gap: 24px; }
    .product-main-image { border-radius: 16px; }
    .sp-title { font-size: 1.5rem; }
    .sp-price-box { padding: 16px 18px; }
    .sp-highlight-icon { width: 36px; height: 36px; font-size: 0.95rem; }
    .sp-highlight-item strong { font-size: 0.85rem; }
    .sp-trust-row { gap: 6px; padding: 12px; }
    .sp-trust-item i { font-size: 1.1rem; }
    .sp-trust-item span { font-size: 0.65rem; }
    .sp-buy-section .cart button, .sp-buy-section .cart .single_add_to_cart_button { padding: 14px 20px; font-size: 1rem; min-height: 52px; }
    .sp-btn-whatsapp { width: 100%; justify-content: center; }
    .sp-details-section { padding: 40px 0; }
    .sp-details-card { padding: 24px 20px; border-radius: 16px; }
    .sp-related-section { padding: 40px 0 60px; }
    .sp-related-section ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
}

@media (max-width: 480px) {
    .product-hero { padding: 12px 0 30px; }
    .sp-title { font-size: 1.3rem; }
    .sp-price-value { font-size: 1.6rem; }
    .sp-trust-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sp-trust-item { flex-direction: row; gap: 8px; text-align: left; }
}

/* ============================================
   Policy / Institutional Pages — White Design
   ============================================ */
.policy-page { background: #f9fafb; padding: 48px 20px 80px; min-height: 60vh; }
.policy-container {
    max-width: 820px; margin: 0 auto; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 48px 56px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.policy-container h1 {
    font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800;
    color: #1a1a2e; margin-bottom: 8px; line-height: 1.2;
}
.policy-updated { color: #9ca3af; font-size: 0.85rem; margin-bottom: 32px; }
.policy-container h2 {
    font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;
    color: #1a1a2e; margin: 32px 0 12px; padding-top: 8px;
}
.policy-container h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin: 24px 0 10px; }
.policy-container p { color: #4b5563; font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.policy-container ul, .policy-container ol { margin: 0 0 16px; padding-left: 24px; }
.policy-container li { color: #4b5563; font-size: 0.95rem; line-height: 1.8; margin-bottom: 8px; }
.policy-container a { color: #e53e3e; font-weight: 600; }
.policy-container a:hover { color: #c53030; text-decoration: underline; }
.policy-container strong { color: #1a1a2e; }
.policy-container .btn-primary {
    background: #e53e3e; color: #fff !important; margin-top: 8px;
}
.policy-container .btn-primary:hover { background: #c53030; }
.policy-container .btn-secondary {
    background: #f3f4f6; color: #374151 !important; border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .policy-page { padding: 24px 12px 48px; }
    .policy-container { padding: 28px 22px; border-radius: 12px; }
    .policy-container h1 { font-size: 1.6rem; }
    .policy-container h2 { font-size: 1.15rem; }
}

/* ============================================
   Cart & Checkout — Clean White (default WC markup)
   ============================================ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.wc-page-wrapper { max-width: 1100px; margin: 0 auto; padding: 40px 20px 80px; }

/* Cart table */
.woocommerce table.shop_table {
    border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden;
    background: #fff; border-collapse: separate; border-spacing: 0;
}
.woocommerce table.shop_table th {
    background: #f9fafb; color: #1a1a2e; font-weight: 700;
    padding: 14px 16px; font-size: 0.85rem;
}
.woocommerce table.shop_table td { padding: 14px 16px; border-top: 1px solid #f0f1f3; color: #4b5563; }
.woocommerce .cart_item .product-name a { color: #1a1a2e; font-weight: 600; }
.woocommerce .cart_item .amount { color: #1a1a2e; font-weight: 600; }

/* Cart totals */
.woocommerce .cart_totals h2 { color: #1a1a2e; font-size: 1.3rem; margin-bottom: 16px; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals { float: none; width: 100%; max-width: 420px; margin-left: auto; }

/* Proceed / checkout buttons */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order,
.woocommerce .checkout-button {
    background: #e53e3e !important; color: #fff !important;
    border-radius: 12px !important; font-weight: 700 !important;
    padding: 14px 28px !important; font-size: 1.05rem !important;
    text-align: center; border: none !important; width: 100%;
    transition: all 0.2s !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #place_order:hover { background: #c53030 !important; }

/* Empty cart */
.woocommerce .cart-empty { font-size: 1.1rem; color: #6b7280; text-align: center; padding: 20px; }
.woocommerce .return-to-shop .button {
    background: #e53e3e !important; color: #fff !important;
    border-radius: 12px !important; padding: 12px 28px !important; font-weight: 700 !important;
}

/* Checkout layout */
.woocommerce-checkout h3 { color: #1a1a2e; font-size: 1.2rem; margin-bottom: 16px; }
.woocommerce form .form-row label { color: #374151; font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout select,
.select2-container .select2-selection {
    border: 1.5px solid #d1d5db !important; border-radius: 8px !important;
    padding: 11px 12px !important; font-size: 0.95rem !important;
    min-height: 46px !important; color: #1a1a2e !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,0.1) !important; outline: none;
}

/* Order review / payment box */
.woocommerce-checkout #payment {
    background: #f9fafb !important; border: 1px solid #e5e7eb !important; border-radius: 12px !important;
}
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid #e5e7eb; }
.woocommerce-checkout #payment div.payment_box { background: #fff; border-radius: 8px; color: #4b5563; }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #fff; }
.woocommerce-checkout-review-order-table { background: #fff; }

/* Notices */
.woocommerce-message, .woocommerce-info {
    border-top-color: #e53e3e !important; background: #fff7ed; border-radius: 8px;
}
.woocommerce-message::before, .woocommerce-info::before { color: #e53e3e !important; }
.woocommerce-error { border-top-color: #dc2626 !important; border-radius: 8px; }

@media (max-width: 768px) {
    .woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce, .wc-page-wrapper { padding: 20px 12px 48px; }
    .woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 10px 8px; font-size: 0.85rem; }
}

/* ============================================
   Footer Trust Strip (pagamento + segurança)
   ============================================ */
.footer-trust { background: var(--color-dark-gray); border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-trust-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-light-gray); margin-bottom: 8px; }
.footer-pay-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; color: #1a1a2e; border-radius: 6px;
    padding: 6px 10px; font-size: 1.25rem; line-height: 1; min-height: 34px;
}
.pay-badge.pay-pix { background: #32BCAD; color: #fff; font-size: 0.8rem; font-weight: 700; }
.pay-badge .fa-cc-visa { color: #1a1f71; }
.pay-badge .fa-cc-mastercard { color: #eb001b; }
.pay-badge .fa-cc-amex { color: #006fcf; }
.footer-security { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-secure-item { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--color-light-gray); }
.footer-secure-item i { color: var(--color-success); }

/* Dados da empresa */
.footer-business { display: flex; flex-direction: column; gap: 4px; }
.footer-company-info { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
    .footer-trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-company-info { font-size: 0.72rem; }
}

/* ============================================
   Cookie Consent Banner (LGPD)
   ============================================ */
.cookie-consent {
    position: fixed; left: 16px; right: 16px; bottom: 16px;
    z-index: 10000; max-width: 980px; margin: 0 auto;
    background: #1a1a2e; color: #fff;
    border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    padding: 18px 22px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-consent.show { opacity: 1; transform: translateY(0); }
.cookie-consent-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-consent-text { margin: 0; font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.85); flex: 1; min-width: 260px; }
.cookie-consent-text i { color: #f59e0b; margin-right: 6px; }
.cookie-consent-text a { color: #ff6b6b; font-weight: 600; text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 22px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.cookie-btn-accept { background: #e53e3e; color: #fff; }
.cookie-btn-accept:hover { background: #c53030; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 600px) {
    .cookie-consent { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
    .cookie-consent-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .cookie-consent-actions { justify-content: stretch; }
    .cookie-btn { flex: 1; }
}

/* ============================================
   Contact Form + Order Tracking
   ============================================ */
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; margin-top: 8px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label { font-size: 0.85rem; font-weight: 600; color: #374151; }
.contact-field input, .contact-field textarea {
    border: 1.5px solid #d1d5db; border-radius: 8px; padding: 11px 12px;
    font-size: 0.95rem; color: #1a1a2e; font-family: inherit; background: #fff;
}
.contact-field input:focus, .contact-field textarea:focus {
    border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); outline: none;
}
.contact-form button { align-self: flex-start; }
.contact-alert { padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.contact-alert-ok { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.contact-alert-erro { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.order-tracking-wrap { margin: 16px 0 8px; }
.order-tracking-wrap form.track_order { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.order-tracking-wrap form.track_order p { margin: 0; }
.order-tracking-wrap .button {
    background: #e53e3e !important; color: #fff !important; border: none !important;
    border-radius: 10px !important; padding: 12px 28px !important; font-weight: 700 !important; cursor: pointer;
}
.order-tracking-wrap .button:hover { background: #c53030 !important; }

/* selos clicáveis: sem sublinhado, com hover sutil */
.footer-secure-item { text-decoration: none; }
.footer-secure-item:hover { color: #fff; }

/* ============================================
   WC Page Wrapper (cart/checkout/account via tema)
   ============================================ */
.wc-page-wrapper { background: #f9fafb; min-height: 60vh; padding: 40px 16px 80px; }
.wc-page-inner { max-width: 1100px; margin: 0 auto; }
.woocommerce-account .wc-page-inner { max-width: 960px; }

/* My Account */
.woocommerce-account .woocommerce { display: block; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.woocommerce-MyAccount-navigation li a {
    display: inline-block; padding: 10px 18px; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 10px; color: #374151;
    font-weight: 600; font-size: 0.9rem;
}
.woocommerce-MyAccount-navigation li.is-active a { background: #e53e3e; color: #fff; border-color: #e53e3e; }
.woocommerce-MyAccount-content { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account form.register {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 28px; max-width: 460px; margin: 0 auto;
}

/* Login/registro: botões e inputs no padrão */
.woocommerce form.login .button, .woocommerce form.register .button {
    background: #e53e3e !important; color: #fff !important;
    border-radius: 10px !important; padding: 12px 24px !important; font-weight: 700 !important;
}
.woocommerce form.login .button:hover, .woocommerce form.register .button:hover { background: #c53030 !important; }

/* Empty cart/checkout — visual mais amigável */
.woocommerce-cart .cart-empty,
.woocommerce-checkout .woocommerce-info {
    text-align: center; font-size: 1.05rem; padding: 24px; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 12px; color: #374151;
}
.woocommerce .wc-empty-cart-message + p.return-to-shop,
.woocommerce p.return-to-shop { text-align: center; }

/* ============================================
   Thank You Box + WhatsApp Popup (pedido recebido)
   ============================================ */
.unitv-thankyou-box {
    max-width: 560px; margin: 0 auto 24px; text-align: center;
    background: #f0fdf4; border: 2px solid #22c55e; border-radius: 16px; padding: 28px 24px;
}
.unitv-thankyou-icon { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; }
.unitv-thankyou-box h3 { font-size: 1.2rem; color: #166534; margin-bottom: 8px; }
.unitv-thankyou-box p { color: #15803d; font-size: 0.92rem; margin-bottom: 18px; }
.unitv-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important;
    padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
}
.unitv-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); color: #fff !important; }

/* Popup flutuante */
.unitv-wa-popup {
    position: fixed; bottom: 24px; right: 24px; z-index: 10001;
    width: 330px; max-width: calc(100vw - 32px);
    background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    padding: 22px 20px 20px; text-align: center;
    border: 1px solid #e5e7eb;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.unitv-wa-popup.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.unitv-wa-popup-close {
    position: absolute; top: 8px; right: 12px; background: none; border: none;
    font-size: 1.5rem; line-height: 1; color: #9ca3af; cursor: pointer;
}
.unitv-wa-popup-close:hover { color: #4b5563; }
.unitv-wa-popup-icon { width: 56px; height: 56px; margin: 0 auto 10px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; }
.unitv-wa-popup-title { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.unitv-wa-popup-desc { font-size: 0.88rem; color: #6b7280; line-height: 1.5; margin-bottom: 16px; }
.unitv-wa-popup-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important;
    padding: 13px 18px; border-radius: 12px; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: all 0.2s; line-height: 1.3;
}
.unitv-wa-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); color: #fff !important; }

@media (max-width: 600px) {
    .unitv-wa-popup { bottom: 16px; right: 16px; left: 16px; width: auto; }
}
