/*
Theme Name: YourWoof Pro Enterprise Framework
Theme URI: https://yourwoof.com
Author: YourWoof Team
Description: Full-featured Enterprise WooCommerce Pet Store Theme with granular Show/Hide controls, Hero Slider, Flash Deals, Social Google/Apple Auth, and Mobile App UX.
Version: 9.5.0
License: GNU General Public License v2 or later
Text Domain: yourwoof-pro
*/

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #2D3748; background: #F7FAFC; line-height: 1.5; }
a { text-decoration: none; color: inherit; }

.yw-container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* Announcement Bar */
.yw-top-bar { background: #1A365D; color: #FFFFFF; font-size: 13px; font-weight: 600; padding: 8px 0; }
.yw-top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.yw-top-links a { color: #E2E8F0; margin-left: 14px; font-weight: 500; font-size: 12px; }

/* Main Header */
.yw-header { background: #FFFFFF; border-bottom: 1px solid #E2E8F0; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.yw-header-grid { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; flex-wrap: wrap; }

.yw-custom-brand-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.yw-logo-icon { flex-shrink: 0; }
.yw-logo-text-group { display: flex; flex-direction: column; }
.yw-logo-main { font-size: 22px; font-weight: 900; color: #1A365D; line-height: 1; letter-spacing: -0.5px; }
.yw-logo-dot { color: #DD6B20; }
.yw-logo-tagline { font-size: 9px; font-weight: 800; color: #718096; letter-spacing: 1px; margin-top: 2px; text-transform: uppercase; white-space: nowrap; }

.yw-search-form { flex-grow: 1; max-width: 480px; display: flex; border: 2px solid #E2E8F0; border-radius: 30px; overflow: hidden; }
.yw-search-form input { border: none; padding: 8px 16px; width: 100%; outline: none; font-size: 13px; }
.yw-search-form button { background: #2B6CB0; color: white; border: none; padding: 0 18px; font-weight: 700; cursor: pointer; white-space: nowrap; }

.yw-header-icons { display: flex; align-items: center; gap: 12px; }
.yw-account-btn { font-size: 12px; font-weight: 600; color: #4A5568; display: flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 20px; border: 1px solid #E2E8F0; white-space: nowrap; }
.yw-cart-badge { background: #EBF8FF; border: 1px solid #BEE3F8; color: #2B6CB0; padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.yw-cart-count { background: #DD6B20; color: white; border-radius: 50%; padding: 2px 6px; font-size: 11px; font-weight: 800; }

/* Navigation Bar */
.yw-nav-bar { background: #FFFFFF; border-bottom: 1px solid #E2E8F0; }
.yw-nav-bar ul { display: flex; list-style: none; gap: 24px; padding: 10px 0; overflow-x: auto; white-space: nowrap; }
.yw-nav-bar a { font-size: 13px; font-weight: 700; color: #4A5568; transition: color 0.2s; }
.yw-nav-bar a:hover { color: #2B6CB0; }

/* ==========================================================================
   1. HERO SLIDER & CAROUSEL
   ========================================================================== */
.yw-hero-slider-section { position: relative; overflow: hidden; background: #1A365D; }
.yw-hero-slider { position: relative; min-height: 480px; display: flex; }
.yw-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    padding: 60px 0;
    color: #FFFFFF;
}
.yw-slide.active { opacity: 1; visibility: visible; position: relative; z-index: 2; }
.yw-slide-content { max-width: 650px; }
.yw-slide-badge { display: inline-block; background: #DD6B20; color: #FFFFFF; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.yw-slide-title { font-size: 42px; font-weight: 900; line-height: 1.15; margin-bottom: 15px; color: #FFFFFF; }
.yw-slide-desc { font-size: 17px; line-height: 1.6; color: #E2E8F0; margin-bottom: 25px; }
.yw-slide-actions { display: flex; gap: 14px; }
.yw-btn-orange { background: #DD6B20; color: white; padding: 14px 28px; border-radius: 30px; font-weight: 800; font-size: 15px; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 15px rgba(221,107,32,0.3); }
.yw-btn-orange:hover { background: #C05621; transform: translateY(-2px); color: white; }

.yw-slider-prev, .yw-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.35);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.yw-slider-prev:hover, .yw-slider-next:hover { background: #DD6B20; border-color: #DD6B20; }
.yw-slider-prev { left: 20px; }
.yw-slider-next { right: 20px; }

.yw-slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.yw-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.25s; }
.yw-dot.active { width: 28px; border-radius: 10px; background: #DD6B20; }

/* ==========================================================================
   2. TRUST FEATURES BAR
   ========================================================================== */
.yw-trust-features { background: #FFFFFF; border-bottom: 1px solid #E2E8F0; padding: 22px 0; }
.yw-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.yw-trust-box h4 { font-size: 14px; font-weight: 800; color: #1A365D; margin-bottom: 2px; }
.yw-trust-box p { font-size: 12px; color: #718096; }

/* ==========================================================================
   3. PROMOTIONAL BANNERS GRID
   ========================================================================== */
.yw-promo-banners-section { margin-top: 40px; }
.yw-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.yw-promo-card {
    border-radius: 16px;
    padding: 35px 25px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 230px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s;
}
.yw-promo-card:hover { transform: translateY(-4px); }
.yw-promo-tag { align-self: flex-start; background: #DD6B20; color: white; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 12px; margin-bottom: 10px; text-transform: uppercase; }
.yw-promo-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 4px; color: #FFFFFF; }
.yw-promo-card p { font-size: 13px; color: #E2E8F0; margin-bottom: 14px; }
.yw-promo-link { font-size: 13px; font-weight: 800; color: #FFFFFF; text-decoration: underline; }

/* ==========================================================================
   4. FLASH DEAL & COUNTDOWN TIMER BANNER
   ========================================================================== */
.yw-flash-deal-section { margin-top: 45px; }
.yw-flash-deal-box {
    background: linear-gradient(135deg, #1A365D 0%, #2B6CB0 100%);
    border-radius: 20px;
    padding: 40px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(26,54,93,0.15);
}
.yw-flash-badge { display: inline-block; background: #E53E3E; color: white; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; margin-bottom: 12px; }
.yw-flash-title { font-size: 30px; font-weight: 900; margin-bottom: 8px; color: white; }
.yw-flash-sub { font-size: 14px; color: #E2E8F0; margin-bottom: 22px; line-height: 1.5; }
.yw-countdown-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 25px; }
.yw-timer-unit { background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 60px; }
.yw-timer-unit span { font-size: 24px; font-weight: 900; color: #FFD700; display: block; line-height: 1; }
.yw-timer-unit label { font-size: 9px; color: #CBD5E0; text-transform: uppercase; font-weight: 700; margin-top: 4px; display: block; }
.yw-timer-sep { font-size: 20px; font-weight: 900; color: #FFD700; }
.yw-flash-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.yw-coupon-pill { background: rgba(255,255,255,0.15); border: 1px dashed rgba(255,255,255,0.4); padding: 8px 16px; border-radius: 20px; font-size: 12px; color: #FEFCBF; }
.yw-flash-right img { width: 100%; max-height: 260px; object-fit: cover; border-radius: 14px; border: 2px solid rgba(255,255,255,0.2); }

/* ==========================================================================
   5. CATEGORIES & SHOP PRODUCTS
   ========================================================================== */
.yw-section-title { font-size: 22px; font-weight: 800; color: #1A365D; margin-bottom: 20px; text-align: center; }
.yw-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.yw-cat-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 12px; padding: 22px 16px; text-align: center; font-weight: 700; font-size: 13.5px; color: #2D3748; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.yw-cat-card:hover { transform: translateY(-3px); border-color: #2B6CB0; color: #2B6CB0; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }

/* Delivery & Buyer Protection Box */
.yw-delivery-badge { background: #EBF8FF; border: 1px solid #BEE3F8; padding: 12px 16px; border-radius: 10px; font-size: 13px; color: #2B6CB0; margin: 15px 0; }
.yw-buyer-protection { background: #F7FAFC; border: 1px solid #E2E8F0; padding: 14px 18px; border-radius: 10px; font-size: 12.5px; margin: 15px 0; }

/* ==========================================================================
   6. CUSTOMER TESTIMONIALS
   ========================================================================== */
.yw-testimonials-section { margin-top: 50px; background: #FFFFFF; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; padding: 45px 0; }
.yw-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.yw-testi-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; padding: 24px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.yw-testi-stars { font-size: 13px; margin-bottom: 10px; color: #DD6B20; }
.yw-testi-quote { font-size: 13.5px; color: #4A5568; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.yw-testi-author { display: flex; align-items: center; gap: 12px; }
.yw-testi-avatar { font-size: 24px; width: 40px; height: 40px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.yw-testi-author strong { font-size: 13px; color: #1A365D; display: block; }
.yw-testi-author span { font-size: 11px; color: #718096; }

/* ==========================================================================
   7. NEWSLETTER BOX
   ========================================================================== */
.yw-newsletter { background: #1A365D; color: white; text-align: center; padding: 45px 20px; margin-top: 50px; }
.yw-newsletter h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.yw-newsletter p { font-size: 13.5px; color: #CBD5E0; margin-bottom: 20px; }
.yw-newsletter-form { display: flex; max-width: 460px; margin: 0 auto; border-radius: 30px; overflow: hidden; background: white; padding: 4px; }
.yw-newsletter-form input { border: none; padding: 10px 18px; width: 100%; outline: none; font-size: 13px; }
.yw-newsletter-form button { background: #DD6B20; color: white; border: none; padding: 10px 24px; font-weight: 800; border-radius: 30px; cursor: pointer; }

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.yw-footer { background: #112240; color: #A0AEC0; padding: 50px 0 25px 0; }
.yw-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; margin-bottom: 35px; }
.yw-footer h4 { color: #FFFFFF; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.yw-footer ul { list-style: none; }
.yw-footer li { margin-bottom: 8px; font-size: 13px; }
.yw-footer a { color: #A0AEC0; transition: color 0.2s; }
.yw-footer a:hover { color: #FFFFFF; }
.yw-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 12px; }

/* ==========================================================================
   9. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.yw-floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s ease;
}
.yw-floating-whatsapp:hover { transform: scale(1.1); }
.yw-wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: ywPulse 2s infinite;
    z-index: -1;
}
@keyframes ywPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

/* ==========================================================================
   10. MOBILE BOTTOM NAV
   ========================================================================== */
.yw-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    padding: 8px 0 10px 0;
    z-index: 9990;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.yw-app-nav-item { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; font-size: 10px; font-weight: 700; color: #718096; position: relative; }
.yw-app-nav-item.active { color: #2B6CB0; }
.yw-app-icon { font-size: 18px; margin-bottom: 2px; }
.yw-app-badge { position: absolute; top: -2px; right: 28%; background: #DD6B20; color: white; font-size: 9px; font-weight: 800; border-radius: 50%; padding: 1px 5px; }

/* ==========================================================================
   11. NEWSLETTER POPUP MODAL
   ========================================================================== */
.yw-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.yw-popup-overlay.active { display: flex; animation: ywFade 0.3s ease; }
.yw-popup-card { background: #FFFFFF; border-radius: 16px; max-width: 440px; width: 100%; padding: 35px 30px; text-align: center; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.yw-popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 24px; color: #A0AEC0; cursor: pointer; }
.yw-popup-paw { font-size: 32px; display: block; margin-bottom: 8px; }
.yw-popup-card h3 { font-size: 20px; font-weight: 800; color: #1A365D; margin-bottom: 6px; }
.yw-popup-card p { font-size: 13px; color: #718096; margin-bottom: 16px; }
.yw-popup-coupon-code { background: #FEFCBF; border: 1px dashed #D69E2E; padding: 8px; border-radius: 8px; font-size: 12px; margin-bottom: 16px; }
.yw-popup-form input { width: 100%; padding: 10px 14px; border: 1.5px solid #E2E8F0; border-radius: 8px; margin-bottom: 10px; outline: none; }
.yw-popup-form button { width: 100%; }

/* ==========================================================================
   12. AUTH & SOCIAL LOGIN (GOOGLE / APPLE / FACEBOOK)
   ========================================================================== */
.yw-page-hero {
    background: linear-gradient(135deg, #1A365D 0%, #2B6CB0 100%);
    color: #FFFFFF;
    padding: 40px 0 35px 0;
    margin-bottom: 30px;
    border-bottom: 3px solid #DD6B20;
}
.yw-hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.yw-breadcrumbs { font-size: 13px; color: #CBD5E0; margin-bottom: 10px; font-weight: 500; }
.yw-breadcrumbs a { color: #E2E8F0; transition: color 0.2s; }
.yw-breadcrumbs a:hover { color: #FFA94D; }
.yw-breadcrumbs .yw-sep { margin: 0 8px; opacity: 0.6; }
.yw-page-title { font-size: 32px; font-weight: 900; color: #FFFFFF; margin-bottom: 8px; letter-spacing: -0.5px; }
.yw-page-subtitle { font-size: 15px; color: #E2E8F0; line-height: 1.5; }

.yw-auth-container { max-width: 1050px; margin: 0 auto 50px auto; padding: 0 10px; }
.yw-auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(26, 54, 93, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
    overflow: hidden;
}
.yw-auth-wrapper.yw-auth-no-sidebar { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

.yw-auth-benefits-card {
    background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 100%);
    padding: 40px 35px;
    border-right: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.yw-brand-badge { display: inline-block; background: #EBF8FF; color: #2B6CB0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; border: 1px solid #BEE3F8; margin-bottom: 15px; }
.yw-benefits-title { font-size: 24px; font-weight: 800; color: #1A365D; line-height: 1.25; margin-bottom: 10px; }
.yw-benefits-desc { font-size: 14px; color: #4A5568; line-height: 1.6; margin-bottom: 25px; }
.yw-benefits-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.yw-benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.yw-benefit-icon { width: 38px; height: 38px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.yw-benefit-text h4 { font-size: 14px; font-weight: 700; color: #2D3748; margin-bottom: 2px; }
.yw-benefit-text p { font-size: 12.5px; color: #718096; line-height: 1.4; }

.yw-trust-proof-box { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.yw-trust-avatars { font-size: 20px; letter-spacing: -4px; flex-shrink: 0; }
.yw-trust-proof-info .yw-stars { font-size: 13px; color: #DD6B20; font-weight: 700; margin-bottom: 2px; }
.yw-proof-sub { font-size: 11.5px; color: #718096; font-weight: 600; }
.yw-security-seal { font-size: 11.5px; color: #4A5568; display: flex; align-items: center; gap: 6px; font-weight: 600; padding-top: 15px; border-top: 1px dashed #CBD5E0; }

.yw-auth-form-card { padding: 40px 40px; background: #FFFFFF; position: relative; }

/* Social Login Buttons */
.yw-social-auth-box { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.yw-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    border: 1.5px solid #E2E8F0;
    background: #FFFFFF;
    color: #2D3748;
    cursor: pointer;
    transition: all 0.2s ease;
}
.yw-social-btn:hover { background: #F8FAFC; border-color: #CBD5E0; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.yw-btn-google { color: #3C4043; }
.yw-btn-apple { background: #000000; color: #FFFFFF; border-color: #000000; }
.yw-btn-apple:hover { background: #1A202C; }
.yw-btn-facebook { color: #1877F2; }

.yw-social-divider { position: relative; text-align: center; margin: 15px 0 10px 0; }
.yw-social-divider:before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #E2E8F0; }
.yw-social-divider span { position: relative; background: #FFFFFF; padding: 0 12px; font-size: 12px; color: #A0AEC0; font-weight: 600; }

/* Interactive Tabs */
.yw-auth-tabs { display: flex; background: #F7FAFC; border: 1px solid #E2E8F0; border-radius: 12px; padding: 4px; margin-bottom: 28px; gap: 4px; }
.yw-tab-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border: none; background: transparent; border-radius: 8px; font-size: 14px; font-weight: 700; color: #718096; cursor: pointer; transition: all 0.25s ease; }
.yw-tab-btn:hover { color: #2B6CB0; background: rgba(235, 248, 255, 0.6); }
.yw-tab-btn.active { background: #FFFFFF; color: #2B6CB0; box-shadow: 0 4px 12px rgba(0,0,0,0.06); border: 1px solid #E2E8F0; }
.yw-tab-icon { font-size: 16px; }

.yw-auth-tab-panel { display: none; animation: ywFadeIn 0.3s ease; }
.yw-auth-tab-panel.active { display: block; }

.yw-panel-heading { margin-bottom: 22px; }
.yw-panel-heading h3 { font-size: 22px; font-weight: 800; color: #1A365D; margin-bottom: 4px; }
.yw-panel-heading p { font-size: 13.5px; color: #718096; }

/* Custom Form Styles */
.yw-custom-form { display: flex; flex-direction: column; gap: 16px; }
.yw-form-group { display: flex; flex-direction: column; gap: 6px; }
.yw-form-group label { font-size: 13.5px; font-weight: 700; color: #2D3748; }
.yw-label-row { display: flex; justify-content: space-between; align-items: center; }
.yw-forgot-link { font-size: 12.5px; font-weight: 600; color: #2B6CB0; transition: color 0.2s; }
.yw-forgot-link:hover { color: #DD6B20; text-decoration: underline; }

.yw-input-wrapper { position: relative; display: flex; align-items: center; }
.yw-input-icon { position: absolute; left: 14px; font-size: 16px; color: #A0AEC0; pointer-events: none; z-index: 2; }
.yw-input, input.yw-input, .woocommerce-form-row input.input-text {
    width: 100% !important;
    padding: 12px 14px 12px 42px !important;
    font-size: 14px !important;
    color: #2D3748 !important;
    background: #F8FAFC !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 10px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}
.yw-input:focus, input.yw-input:focus, .woocommerce-form-row input.input-text:focus {
    background: #FFFFFF !important;
    border-color: #2B6CB0 !important;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15) !important;
}
.yw-password-toggle { position: absolute; right: 12px; background: none; border: none; font-size: 16px; cursor: pointer; padding: 4px; color: #718096; z-index: 2; }

/* Password Strength Indicator */
.yw-strength-meter { margin-top: 6px; }
.yw-strength-bars { display: flex; gap: 4px; height: 5px; margin-bottom: 4px; }
.yw-bar { flex: 1; background: #E2E8F0; border-radius: 3px; transition: background 0.3s; }
.yw-bar.weak { background: #E53E3E; }
.yw-bar.fair { background: #DD6B20; }
.yw-bar.good { background: #D69E2E; }
.yw-bar.strong { background: #38A169; }
.yw-strength-label { font-size: 11.5px; font-weight: 700; color: #A0AEC0; }

.yw-form-options { display: flex; align-items: center; justify-content: space-between; margin: 4px 0; }
.yw-checkbox-label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: #4A5568; }
.yw-checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: #2B6CB0; cursor: pointer; }

.yw-form-submit-row { margin-top: 6px; }
.yw-btn-submit, button.yw-btn-submit {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.3) !important;
}
.yw-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(221, 107, 32, 0.4) !important; }
.yw-btn-primary { background: linear-gradient(135deg, #DD6B20 0%, #C05621 100%) !important; }
.yw-btn-accent { background: linear-gradient(135deg, #2B6CB0 0%, #1A365D 100%) !important; }

.yw-auth-switch-footer { margin-top: 22px; padding-top: 18px; border-top: 1px solid #EDF2F7; text-align: center; font-size: 13.5px; color: #718096; }
.yw-auth-switch-footer a { color: #2B6CB0; font-weight: 800; margin-left: 5px; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .yw-header-grid { flex-direction: column; align-items: stretch; }
    .yw-search-form { max-width: 100%; }
    .yw-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .yw-promo-grid { grid-template-columns: 1fr; }
    .yw-flash-deal-box { grid-template-columns: 1fr; }
    .yw-category-grid { grid-template-columns: repeat(2, 1fr); }
    .yw-testimonials-grid { grid-template-columns: 1fr; }
    .yw-footer-grid { grid-template-columns: 1fr 1fr; }
    .yw-auth-wrapper { grid-template-columns: 1fr; }
    .yw-auth-benefits-card { border-right: none; border-bottom: 1px solid #E2E8F0; }
    .yw-mobile-bottom-nav { display: flex; }
    body { padding-bottom: 60px; }
}

@media (max-width: 600px) {
    .yw-slide-title { font-size: 26px; }
    .yw-slide-desc { font-size: 14px; }
    .yw-flash-title { font-size: 22px; }
    .yw-footer-grid { grid-template-columns: 1fr; }
}
