/* =============================================
   RESULTS CHECKER - Premium Stylesheet
   Fonts: Space Grotesk + Poppins
   Colors: Crimson (#dc143c), White, Mint (#00b894)
   ============================================= */

/* ----- CSS Variables ----- */
:root {
    --crimson: #dc143c;
    --crimson-dark: #b01030;
    --crimson-light: #ff1a4a;
    --mint: #00b894;
    --mint-dark: #00a381;
    --mint-light: #55efc4;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --max-width: 1200px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); line-height: 1.7; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----- Container ----- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; font-weight: 600; }

/* ----- Navbar ----- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 0;
    height: 64px;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; }
.logo-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--crimson); color: #fff; border-radius: 10px; font-size: 1rem; }
.logo-text { color: var(--dark); }
.logo-accent { color: var(--crimson); }
.nav-links { display: flex; align-items: center; gap: 32px; }

/* WordPress Menu Fallback Styles */
.nav-links .nav-link,
.nav-links a:not(.logo):not(.cart-btn):not(.auth-dropdown-toggle):not(.auth-dropdown-item) {
    font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: var(--transition); position: relative; padding: 4px 0;
}
.nav-links .nav-link::after,
.nav-links a:not(.logo):not(.cart-btn):not(.auth-dropdown-toggle):not(.auth-dropdown-item)::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--crimson); transition: var(--transition); border-radius: 2px;
}
.nav-links .nav-link:hover,
.nav-links a:not(.logo):not(.cart-btn):not(.auth-dropdown-toggle):not(.auth-dropdown-item):hover { color: var(--crimson); }
.nav-links .nav-link:hover::after,
.nav-links a:not(.logo):not(.cart-btn):not(.auth-dropdown-toggle):not(.auth-dropdown-item):hover::after { width: 100%; }

.cart-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; transition: var(--transition);
    color: var(--gray-700);
}
.cart-btn:hover { background: var(--gray-100); color: var(--crimson); }
.cart-badge {
    position: absolute; top: 0; right: -2px;
    background: var(--crimson); color: #fff;
    font-size: 0.65rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0); transition: var(--transition);
}
.cart-badge.visible { transform: scale(1); }
.hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
    z-index: 1001; margin-left: auto; order: 99;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero ----- */
.hero {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 50%, #e8e8f0 100%);
    overflow: hidden;
    padding-top: 64px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0.5; }
.p1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(220,20,60,0.08), transparent); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.p2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,184,148,0.06), transparent); bottom: -50px; left: -50px; animation: float 10s ease-in-out infinite; }
.p3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(220,20,60,0.05), transparent); top: 50%; left: 30%; animation: float 12s ease-in-out infinite; }
.p4 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(0,184,148,0.04), transparent); bottom: 20%; right: 20%; animation: float 6s ease-in-out infinite; }

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

.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; padding: 60px 0; }
.hero-text { max-width: 560px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; background: rgba(220,20,60,0.08); color: var(--crimson);
    border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
}
.hero-text h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 16px; font-weight: 700; }
.gradient-text { background: linear-gradient(135deg, var(--crimson), var(--crimson-light), var(--mint)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-plus, .stat-percent { font-family: var(--font-heading); font-size: 1.2rem; color: var(--crimson); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual { display: flex; justify-content: center; }
.hero-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); overflow: hidden; width: 360px;
    border: 1px solid rgba(0,0,0,0.05); transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}
.hero-card:hover { transform: perspective(1000px) rotateY(0deg); }
.hero-card-header { display: flex; gap: 8px; padding: 16px 20px; background: var(--gray-100); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.hero-card-body { padding: 24px; }
.mock-pin { background: var(--gray-100); padding: 20px; border-radius: var(--radius-md); margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.mock-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.mock-value { font-family: 'Space Grotesk', monospace; font-size: 1.4rem; letter-spacing: 4px; color: var(--dark); font-weight: 700; }
.mock-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
.mock-status { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--mint-dark); font-weight: 500; }
.mock-check { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--mint); color: #fff; border-radius: 50%; font-size: 0.8rem; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
    transition: var(--transition); border: 2px solid transparent;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-primary { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn-primary:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,20,60,0.3); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); transform: translateY(-2px); }

/* ----- Section Common ----- */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block; padding: 6px 16px; background: rgba(220,20,60,0.08);
    color: var(--crimson); border-radius: 100px; font-size: 0.8rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

/* ----- Products Grid ----- */
.products { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.product-card {
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--gray-200); overflow: hidden;
    transition: var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-inner { padding: 28px; }
.product-category {
    display: inline-block; padding: 4px 12px; background: rgba(220,20,60,0.08);
    color: var(--crimson); border-radius: 100px; font-size: 0.7rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.6; min-height: 44px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--crimson); }
.product-actions { display: flex; align-items: center; gap: 8px; }
.qty-btn {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--gray-100); transition: var(--transition);
    font-size: 1.1rem; font-weight: 600; color: var(--gray-700);
}
.qty-btn:hover { background: var(--crimson); color: #fff; }
.qty-value { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; min-width: 28px; text-align: center; }
.add-to-cart {
    padding: 8px 18px; border-radius: 8px; background: var(--crimson);
    color: #fff; font-size: 0.85rem; font-weight: 600; transition: var(--transition);
    display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.add-to-cart:hover { background: var(--crimson-dark); transform: translateY(-2px); }

/* Skeleton loading */
.product-skeleton { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); padding: 28px; position: relative; overflow: hidden; }
.sk-shimmer { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 100% { left: 100%; } }
.sk-line { height: 14px; background: var(--gray-200); border-radius: 8px; margin-bottom: 12px; }
.sk-line.w-60 { width: 60%; } .sk-line.w-40 { width: 40%; } .sk-line.w-80 { width: 80%; } .sk-line.w-50 { width: 50%; }

/* ----- How It Works ----- */
.how-it-works { background: var(--gray-100); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; text-align: center; border: 1px solid var(--gray-200);
    transition: var(--transition); position: relative;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-number {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    width: 32px; height: 32px; background: var(--crimson); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
}
.step-icon { color: var(--crimson); margin-bottom: 16px; margin-top: 8px; display: flex; justify-content: center; }
.step-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step-card p { color: var(--gray-600); font-size: 0.9rem; }

/* ----- FAQ ----- */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--gray-300); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 24px; font-size: 0.95rem; font-weight: 500;
    background: var(--white); transition: var(--transition); text-align: left;
    color: var(--dark);
}
.faq-question svg { transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question { color: var(--crimson); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 18px; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.faq-answer a { color: var(--crimson); text-decoration: underline; }

/* ----- Contact ----- */
.contact { background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-info .section-tag { margin-top: 0; }
.contact-info h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--gray-700); font-size: 0.9rem; }
.contact-item svg { color: var(--crimson); flex-shrink: 0; }
.contact-cta p { color: var(--gray-600); margin-bottom: 24px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badges span {
    padding: 8px 16px; background: var(--white); border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-sm);
}

/* ----- Footer ----- */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer .logo-text { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-links h4 { font-family: var(--font-heading); color: #fff; margin-bottom: 16px; font-size: 0.9rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--crimson-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--crimson-light); }

/* ----- Cart Panel ----- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-panel {
    position: fixed; top: 0; right: 0; width: 400px; max-width: 90vw; height: 100vh;
    background: var(--white); z-index: 2001; display: flex; flex-direction: column;
    transform: translateX(100%); transition: var(--transition); box-shadow: -4px 0 40px rgba(0,0,0,0.1);
}
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.cart-header h3 { font-size: 1.2rem; }
.cart-close { color: var(--gray-500); padding: 4px; border-radius: 8px; transition: var(--transition); cursor: pointer; }
.cart-close:hover { background: var(--gray-100); color: var(--dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--gray-400); gap: 12px; }
.cart-empty p { font-size: 0.9rem; }
.cart-item { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; font-size: 0.9rem; }
.cart-item-price { color: var(--crimson); font-weight: 600; font-size: 0.85rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-item-qty button { width: 24px; height: 24px; border-radius: 6px; background: var(--gray-100); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer; }
.cart-item-qty button:hover { background: var(--crimson); color: #fff; }
.cart-item-qty span { font-weight: 600; font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--gray-400); padding: 4px; transition: var(--transition); cursor: pointer; }
.cart-item-remove:hover { color: var(--crimson); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-200); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { font-family: var(--font-heading); font-weight: 600; }
.cart-total-amount { font-size: 1.3rem; color: var(--crimson); }

/* ----- Modal ----- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); padding: 20px; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid var(--gray-200); }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { font-size: 1.5rem; color: var(--gray-500); transition: var(--transition); cursor: pointer; }
.modal-close:hover { color: var(--dark); }

/* ----- Forms ----- */
.checkout-form { padding: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--gray-700); }
.form-group small { font-size: 0.75rem; color: var(--gray-500); display: block; margin-top: 4px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 0.95rem;
    transition: var(--transition); background: var(--white); color: var(--dark);
}
.form-control:focus { outline: none; border-color: var(--crimson); box-shadow: 0 0 0 4px rgba(220,20,60,0.1); }
.order-summary { background: var(--gray-100); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; }
.order-summary h4 { font-size: 0.9rem; margin-bottom: 12px; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 6px 0; }
.order-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; padding-top: 12px; border-top: 1px solid var(--gray-300); margin-top: 8px; }
.order-total span:last-child { color: var(--crimson); }
.secure-note { text-align: center; font-size: 0.8rem; color: var(--gray-500); margin-top: 16px; }

/* ----- Toast ----- */
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5000; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
    padding: 14px 24px; border-radius: var(--radius-sm); font-size: 0.9rem;
    font-weight: 500; box-shadow: var(--shadow-lg); animation: slideUp 0.3s ease;
    max-width: 400px; text-align: center;
}
.toast-success { background: var(--mint-dark); color: #fff; }
.toast-error { background: var(--crimson); color: #fff; }
.toast-info { background: var(--dark); color: #fff; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ----- Blog Archive / Grid ----- */
.blog-archive { background: var(--gray-100); }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.blog-posts { min-width: 0; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--gray-200); overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image { display: block; overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.blog-card-category {
    display: inline-block; padding: 4px 12px;
    background: rgba(220,20,60,0.08); color: var(--crimson);
    border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
}
.blog-card-title { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card-title a { color: var(--dark); text-decoration: none; transition: var(--transition); }
.blog-card-title a:hover { color: var(--crimson); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-card-date { font-size: 0.8rem; color: var(--gray-500); }
.blog-card-readmore { font-size: 0.85rem; color: var(--crimson); font-weight: 600; text-decoration: none; }
.blog-card-readmore:hover { text-decoration: underline; }
.blog-no-posts { text-align: center; padding: 60px 0; }
.blog-no-posts h3 { margin-bottom: 8px; }
.blog-no-posts p { color: var(--gray-600); }

/* Blog Pagination */
.blog-pagination { margin-top: 40px; text-align: center; }
.blog-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    margin: 0 4px; border-radius: var(--radius-sm);
    background: var(--white); border: 1px solid var(--gray-200);
    color: var(--gray-700); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition); text-decoration: none;
}
.blog-pagination .page-numbers:hover { border-color: var(--crimson); color: var(--crimson); }
.blog-pagination .page-numbers.current { background: var(--crimson); border-color: var(--crimson); color: var(--white); }
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next { font-weight: 600; padding: 0 16px; }

/* Blog Sidebar */
.blog-sidebar .sidebar-widget { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--gray-200); margin-bottom: 24px; }
.blog-sidebar .sidebar-widget h3 { font-size: 1rem; margin-bottom: 16px; }
.blog-sidebar ul { list-style: none; padding: 0; }
.blog-sidebar ul li { margin-bottom: 8px; }
.blog-sidebar ul li a {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.9rem; color: var(--gray-700); text-decoration: none;
    padding: 8px 12px; border-radius: 8px; transition: var(--transition);
}
.blog-sidebar ul li a:hover { background: rgba(220,20,60,0.08); color: var(--crimson); }

/* Single Blog Post */
.blog-article { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.blog-article p { margin-bottom: 1.2em; }
.blog-article h2, .blog-article h3 { margin-top: 1.5em; margin-bottom: 0.5em; color: var(--dark); }
.blog-article img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 1.5em 0; }
.post-navigation { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.post-navigation .nav-previous, .post-navigation .nav-next { max-width: 45%; }
.post-navigation a { color: var(--crimson); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: var(--transition); }
.post-navigation a:hover { text-decoration: underline; }
.post-tags { display: flex; flex-wrap: wrap; gap: 4px; }

/* Responsive Blog */
@media (max-width: 968px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-posts-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
@media (max-width: 576px) {
    .blog-posts-grid { grid-template-columns: 1fr; }
}

/* ----- Chat Widget ----- */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 4000; }
.chat-toggle {
    width: 56px; height: 56px; border-radius: 50%; background: var(--crimson);
    color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(220,20,60,0.4); transition: var(--transition);
    position: relative;
}
.chat-toggle:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(220,20,60,0.5); }
.chat-toggle .close-icon { display: none; }
.chat-widget.open .chat-toggle .chat-icon { display: none; }
.chat-widget.open .chat-toggle .close-icon { display: block; }
.chat-widget.open .chat-toggle { background: var(--gray-800); }
.chat-panel {
    position: absolute; bottom: 68px; right: 0;
    width: 340px; max-width: 90vw; height: 460px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); display: flex; flex-direction: column;
    opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.95);
    transition: var(--transition); overflow: hidden;
}
.chat-widget.open .chat-panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chat-panel-header { padding: 16px 20px; background: var(--crimson); color: #fff; }
.chat-status { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.chat-dot { width: 8px; height: 8px; background: #55efc4; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-content {
    max-width: 80%; padding: 10px 14px; border-radius: 12px;
    font-size: 0.85rem; line-height: 1.5;
}
.chat-msg.bot .msg-content { background: var(--gray-100); color: var(--dark); border-bottom-left-radius: 4px; }
.chat-msg.user .msg-content { background: var(--crimson); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.typing .msg-content { background: var(--gray-100); display: flex; gap: 4px; padding: 14px 18px; }
.chat-msg.typing .dot { width: 6px; height: 6px; background: var(--gray-500); border-radius: 50%; animation: typingDot 1.4s infinite; }
.chat-msg.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
.chat-msg.ticket-notice .msg-content { background: #fff3cd; color: #856404; border: 1px solid #ffc107; font-size: 0.8rem; border-bottom-left-radius: 4px; }
.chat-input-form { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--gray-200); }
.chat-input-form input {
    flex: 1; padding: 10px 14px; border: 2px solid var(--gray-200);
    border-radius: 24px; font-size: 0.85rem; transition: var(--transition);
}
.chat-input-form input:focus { outline: none; border-color: var(--crimson); }
.chat-input-form button {
    width: 38px; height: 38px; border-radius: 50%; background: var(--crimson);
    color: #fff; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0; cursor: pointer;
}
.chat-input-form button:hover { background: var(--crimson-dark); }

/* ----- Scroll-to-Top Button (Left Side) ----- */
.scroll-to-top {
    position: fixed; bottom: 80px; left: 24px; z-index: 4500;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--crimson); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(220,20,60,0.35);
    transition: var(--transition);
    opacity: 0; transform: translateY(20px) scale(0.8);
    pointer-events: none; cursor: pointer; border: none;
}
.scroll-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-to-top:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 24px rgba(220,20,60,0.45); background: var(--crimson-dark); }

/* ----- Currency & Language Switchers ----- */
.nav-switcher { display: inline-flex; align-items: center; }
.switcher-select {
    padding: 4px 8px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    max-width: 110px;
}
.switcher-select:focus { outline: none; border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(220,20,60,0.1); }
.switcher-select:hover { border-color: var(--crimson); }

/* ----- Auth Dropdown (Login / Register) ----- */
.nav-auth { display: inline-flex; align-items: center; }
.auth-dropdown { position: relative; display: inline-flex; }
.auth-dropdown-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 600; font-family: var(--font-heading);
    color: var(--white); background: var(--crimson);
    border: 2px solid var(--crimson); transition: var(--transition);
    cursor: pointer; white-space: nowrap;
}
.auth-dropdown-toggle:hover {
    background: var(--crimson-dark); border-color: var(--crimson-dark);
    transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220,20,60,0.25);
}
.auth-dropdown-toggle .chevron { transition: var(--transition); }
.auth-dropdown.open .auth-dropdown-toggle .chevron { transform: rotate(180deg); }
.auth-dropdown-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px; background: var(--white);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: var(--transition); z-index: 1100; overflow: hidden;
}
.auth-dropdown.open .auth-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.auth-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; font-size: 0.85rem; font-weight: 500;
    color: var(--gray-700); transition: var(--transition); text-decoration: none;
}
.auth-dropdown-item:hover { background: var(--gray-100); color: var(--crimson); }
.auth-dropdown-divider { height: 1px; background: var(--gray-200); margin: 4px 0; }

/* ----- Pagination ----- */
.pagination,
.wp-block-query-pagination,
.posts-navigation {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.pagination .page-numbers,
.posts-navigation .nav-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200); font-size: 0.9rem;
    font-weight: 500; color: var(--gray-700); transition: var(--transition);
    text-decoration: none;
}
.pagination .page-numbers:hover,
.posts-navigation .nav-links a:hover {
    border-color: var(--crimson); color: var(--crimson);
}
.pagination .page-numbers.current {
    background: var(--crimson); border-color: var(--crimson); color: #fff;
}
.posts-navigation .nav-links {
    display: flex; justify-content: space-between; width: 100%;
}

/* ----- Blog Article Styling ----- */
.blog-article h2, .blog-article h3, .blog-article h4 {
    margin-top: 32px; margin-bottom: 16px;
}
.blog-article p {
    margin-bottom: 20px;
}
.blog-article ul, .blog-article ol {
    margin: 0 0 20px 24px;
}
.blog-article li {
    margin-bottom: 8px;
}
.blog-article a {
    color: var(--crimson); text-decoration: underline;
}
.blog-article img {
    border-radius: var(--radius-md); margin: 24px 0;
}
.blog-article blockquote {
    border-left: 4px solid var(--crimson); padding: 16px 24px;
    margin: 24px 0; background: var(--gray-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}
.blog-article pre {
    background: var(--dark); color: #fff; padding: 20px;
    border-radius: var(--radius-md); overflow-x: auto;
    margin: 24px 0; font-size: 0.85rem;
}
.blog-article code {
    background: var(--gray-100); padding: 2px 8px;
    border-radius: 4px; font-size: 0.85rem;
}
.blog-article pre code {
    background: transparent; padding: 0;
}

/* ----- Comments ----- */
.comments-area {
    margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.comment-list {
    list-style: none; padding: 0;
}
.comment {
    padding: 20px 0; border-bottom: 1px solid var(--gray-100);
}
.comment-meta {
    font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px;
}
.comment-content {
    font-size: 0.9rem; color: var(--gray-700);
}
.comment-reply-link {
    font-size: 0.8rem; color: var(--crimson); font-weight: 600;
}
.comment-form input,
.comment-form textarea {
    width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 0.95rem;
    transition: var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none; border-color: var(--crimson);
    box-shadow: 0 0 0 4px rgba(220,20,60,0.1);
}
.comment-form .submit {
    background: var(--crimson); color: #fff; border: none;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-weight: 600; cursor: pointer; transition: var(--transition);
}
.comment-form .submit:hover {
    background: var(--crimson-dark);
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-text p { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .hero-text h1 { font-size: 2.5rem; }
    .steps-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .blog-layout { grid-template-columns: 1fr !important; }
    .faq-category-title { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 64px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px;
        gap: 12px; border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%); opacity: 0; pointer-events: none;
        transition: var(--transition); box-shadow: var(--shadow-md);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .hamburger { display: flex; }
    .hero-text h1 { font-size: 2rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .stat-number { font-size: 1.6rem; }
    .products-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 0.95rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cart-panel { width: 100%; max-width: 100vw; }
    .nav-switcher { width: 100%; }
    .switcher-select { max-width: 100%; width: 100%; }
    .nav-auth { width: 100%; }
    .auth-dropdown { width: 100%; }
    .auth-dropdown-toggle { width: 100%; justify-content: center; }
    .auth-dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid var(--gray-200);
        margin-top: 4px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
    }
    .auth-dropdown.open .auth-dropdown-menu {
        display: block;
    }
    .scroll-to-top { left: 12px; bottom: 70px; width: 38px; height: 38px; }
    .chat-widget { bottom: 16px; right: 16px; }
    .chat-toggle { width: 48px; height: 48px; }
    .chat-panel { width: 300px; height: 400px; bottom: 60px; }
    .chat-panel-header { padding: 12px 16px; }
    .chat-messages { padding: 12px; }
    .chat-input-form { padding: 8px 12px; }
    .chat-input-form input { padding: 8px 12px; font-size: 0.8rem; }
    .product-card-inner { padding: 20px; }
    .product-card h3 { font-size: 1.1rem; }
    .product-price { font-size: 1.3rem; }
    .step-card { padding: 28px 20px; }
    .step-card h3 { font-size: 1rem; }
    .step-card p { font-size: 0.85rem; }
    .faq-question { padding: 14px 18px; font-size: 0.9rem; }
    .faq-answer p { padding: 0 18px 14px; font-size: 0.85rem; }
    .hero-card { width: 100%; max-width: 320px; }
    .modal { max-width: 95vw; }
    .checkout-form { padding: 20px; }
    .form-control { padding: 10px 14px; font-size: 0.9rem; }
    .contact-grid { gap: 32px; }
    .contact-info h2 { font-size: 1.6rem; }
    .pagination .page-numbers,
    .posts-navigation .nav-links a { width: 36px; height: 36px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.6rem; }
    .hero { min-height: 70vh; }
    .hero-badge { font-size: 0.7rem; padding: 4px 12px; }
    .hero-text p { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    section { padding: 60px 0; }
    .btn-lg { padding: 14px 24px; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.9rem; }
    .product-card-inner { padding: 16px; }
    .product-footer { flex-direction: column; gap: 12px; align-items: stretch; }
    .product-actions { justify-content: center; }
    .add-to-cart { padding: 8px 16px; font-size: 0.8rem; }
    .step-card { padding: 24px 16px; }
    .faq-list { gap: 8px; }
    .faq-question { padding: 12px 14px; font-size: 0.85rem; gap: 8px; }
    .faq-answer p { padding: 0 14px 12px; font-size: 0.8rem; }
    .footer { padding: 40px 0 20px; }
    .footer-grid { gap: 24px; }
    .trust-badges { justify-content: center; }
    .trust-badges span { font-size: 0.8rem; padding: 6px 12px; }
    .cart-header { padding: 16px 20px; }
    .cart-header h3 { font-size: 1rem; }
    .cart-items { padding: 12px 20px; }
    .cart-footer { padding: 16px 20px; }
    .chat-panel { width: calc(100vw - 32px); height: 380px; right: -16px; }
    .comment { padding: 16px 0; }
    .comment-form input,
    .comment-form textarea { padding: 10px 14px; font-size: 0.85rem; }
    .pagination .page-numbers,
    .posts-navigation .nav-links a { width: 32px; height: 32px; font-size: 0.8rem; }
}

@media (max-width: 360px) {
    .hero-text h1 { font-size: 1.3rem; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .stat { align-items: center; }
    .stat-number { font-size: 1.4rem; }
    .container { padding: 0 12px; }
    .nav-container { padding: 0 12px; }
    .logo { font-size: 1rem; }
    .logo-icon { width: 30px; height: 30px; font-size: 0.85rem; }
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

/* ----- Screen Reader Text ----- */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%); height: 1px; margin: -1px;
    overflow: hidden; padding: 0; position: absolute;
    width: 1px; word-wrap: normal !important;
}

/* ----- WordPress Core ----- */
.aligncenter { margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gray-500); text-align: center; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); }
.bypostauthor { background: var(--gray-100); border-radius: var(--radius-sm); padding: 16px; }
.sticky { position: relative; }

/* ----- Ticket Notice in Chat ----- */
.chat-msg.ticket-notice .msg-content {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    font-size: 0.8rem;
    padding: 10px 14px;
}
.chat-msg.ticket-notice .msg-content::before {
    content: '🎫 ';
    font-size: 1rem;
}

/* ----- Exchange Rate Indicator ----- */
.rate-indicator {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 2px;
}
.rate-indicator .live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #00b894;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-dot 2s infinite;
}
.rate-indicator .fallback-dot {
    background: #f39c12;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ----- Navigation Switcher Label ----- */
.nav-switcher-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ----- Security Badge in Admin ----- */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.security-badge.active {
    background: #d4edda;
    color: #155724;
}
.security-badge.warning {
    background: #fff3cd;
    color: #856404;
}
.security-badge.critical {
    background: #f8d7da;
    color: #721c24;
}

/* ----- Loading States ----- */
.loading-pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--crimson);
    animation: pulse-dot 1.5s infinite;
}

/* ----- Currency Update Timestamp ----- */
.currency-timestamp {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 4px;
}
.currency-timestamp strong {
    color: var(--gray-700);
}

/* ----- WordPress Admin Bar Compatibility ----- */
.admin-bar .navbar {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

/* ----- Security Event Severity Colors ----- */
.severity-critical {
    color: #dc3232;
    font-weight: 700;
}
.severity-warning {
    color: #f56e28;
    font-weight: 600;
}
.severity-info {
    color: #46b450;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.rc-testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.rc-testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rc-testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.rc-testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-testimonial-avatar--initials {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.rc-testimonial-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 16px;
}

.rc-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin: 0 0 20px;
    quotes: "“" "”" "‘" "’";
}

.rc-testimonial-text::before {
    content: "“";
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.rc-testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.rc-testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.rc-testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 1;
}

.rc-testimonial-nav:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.rc-testimonial-prev { left: 5px; }
.rc-testimonial-next { right: 5px; }

.rc-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.rc-testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.rc-testimonial-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .rc-testimonials-wrapper {
        padding: 0 40px;
    }
    .rc-testimonial-card {
        padding: 30px 20px;
    }
    .rc-testimonial-text {
        font-size: 0.95rem;
    }
}
