/* Base & Reset */
:root {
    --bg-main: #ffffff;
    --bg-secondary: #edf2f7;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent-blue: #1a73e8; /* Vibrant Google/Omnicalculator Brand Blue */
    --accent-blue-hover: #1557b0;
    --accent-mint: #0d9488;
    --card-border: rgba(15, 23, 42, 0.08);
    
    /* Vibrant Gauge Colors */
    --gauge-blue: #1a73e8;
    --gauge-green: #10b981;
    --gauge-yellow: #eab308;
    --gauge-red: #ef4444;
    
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 8px;
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #fde2f0 0%, #ebdcf9 220px, #d6e6fe 480px, #f8fafc 750px, #f8fafc 100%);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

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

/* Header */
.main-header {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, #ff007f 0%, #7928ca 50%, #1a73e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 24px;
    font-weight: 600;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent-blue);
}

/* Trust Badge */
.trust-badge {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e3a8a;
    font-size: 15px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

/* Calculator Grid */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.panel {
    background: var(--bg-main);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
}

.calc-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

/* Gender Selector */
.gender-selector {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.gender-card {
    flex: 1;
    cursor: pointer;
}

.gender-card input {
    display: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.card-content svg {
    margin-bottom: 8px;
}

.card-content span {
    font-weight: 600;
    font-size: 16px;
}

.male-card input:checked + .card-content {
    border-color: var(--accent-blue);
    background-color: #eff6ff;
    color: var(--accent-blue);
}

.female-card input:checked + .card-content {
    border-color: var(--accent-mint);
    background-color: #f0fdfa;
    color: var(--accent-mint);
}

/* Sliders */
.slider-group {
    margin-bottom: 24px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.slider-header label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.value-display {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.unit-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--card-border);
    border-radius: 4px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 3px solid #fff;
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

/* Button */
.primary-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: auto;
}

.primary-btn:hover {
    background-color: var(--accent-blue-hover);
}

.primary-btn:active {
    transform: scale(0.98);
}

.secondary-btn {
    padding: 16px;
    background-color: transparent;
    color: var(--text-muted);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s, transform 0.1s;
}

.secondary-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--text-main);
    border-color: var(--text-muted);
}

.secondary-btn:active {
    transform: scale(0.98);
}

/* Utility */
.hidden {
    display: none !important;
}

/* Results Panel States */
.placeholder-state, .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.placeholder-state h3, .loading-state h3 {
    font-size: 20px;
    color: var(--text-main);
    margin: 16px 0 8px;
}

/* Spinner Animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--card-border);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.small-spinner {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gauge SVG */
.gauge-container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.gauge-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.health-analysis {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.health-analysis h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.status-box {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border-left: 4px solid var(--card-border);
}

.status-line {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.status-line span {
    font-size: 18px;
    font-weight: 700;
}

/* Status Colors */
.status-under { color: var(--gauge-blue); border-left-color: var(--gauge-blue) !important; }
.status-normal { color: var(--gauge-green); border-left-color: var(--gauge-green) !important; }
.status-over { color: var(--gauge-yellow); border-left-color: var(--gauge-yellow) !important; }
.status-obese { color: var(--gauge-red); border-left-color: var(--gauge-red) !important; }

.analysis-desc {
    color: var(--text-main);
    font-size: 15px;
}

.focus-line {
    font-size: 15px;
    color: var(--text-muted);
}

.focus-line span {
    color: var(--text-main);
}

/* Products Section */
.recommendations-section {
    padding: 40px 0 80px;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 24px 24px 24px 28px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Premium gradient highlight stripe on the left of each card */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff007f 0%, #7928ca 50%, #1a73e8 100%);
    opacity: 0.8;
    transition: width 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(121, 40, 202, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02);
    border-color: rgba(121, 40, 202, 0.2);
}

.product-card:hover::before {
    width: 6px;
    opacity: 1;
}

/* Centered container for portrait/vertical Amazon images */
.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 220px;
    background-color: #f8fafc;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.product-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.05);
}

.product-tag {
    background-color: #eff6ff;
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    align-self: flex-start;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-title a:hover {
    color: var(--accent-violet) !important;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Premium Amazon Brand Orange Button styling */
.product-link {
    display: block;
    text-align: center;
    background: linear-gradient(180deg, #ffc233 0%, #ff9900 100%);
    color: #111111;
    text-decoration: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.12);
    border: 1px solid #e68a00;
    transition: all 0.2s ease;
    font-size: 15px;
}

.product-link:hover {
    background: linear-gradient(180deg, #ffa800 0%, #e68a00 100%);
    box-shadow: 0 6px 14px rgba(255, 153, 0, 0.22);
    transform: translateY(-1px);
}

/* SEO Intro Section */
.seo-intro-section {
    padding: 48px 0 12px;
    max-width: 800px;
    margin: 0 auto;
}

.seo-intro-content {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
    text-align: left;
}

.seo-intro-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.seo-intro-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.seo-intro-content strong {
    color: var(--text-main);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-section {
    padding: 48px 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.accordion-header.active {
    color: var(--accent-blue);
}

.accordion-header.active .icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

#gauge-needle {
    transform-origin: 150px 140px;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotate(-90deg);
}

/* Footer */
.main-footer {
    background-color: var(--bg-main);
    padding: 48px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
    margin-top: 64px;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.main-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* High Impact Risk Badges */
.risk-indicator-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    margin-top: 16px;
}

.risk-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.risk-badge {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Pastel Neon Risk Levels */
.risk-low {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.risk-moderate {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.risk-increased {
    background-color: #ffedd5;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.risk-high {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.risk-extreme {
    background-color: #fce7f3;
    color: #9d174d;
    border: 1px solid #fbcfe8;
}

/* Copy Result Toast Alert */
.toast-copied {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #0f172a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    opacity: 0;
}

.toast-copied.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Ideal Weight Card */
.ideal-weight-card {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.ideal-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.ideal-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.ideal-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-blue);
}

/* Progress bar inside ideal weight card */
.weight-progress-wrapper {
    position: relative;
    padding: 10px 0;
}

.weight-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.progress-lbl-current {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-main);
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.weight-progress-track {
    position: relative;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: visible;
    margin: 4px 0;
}

.weight-progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    border-radius: 4px;
    width: 100%;
    opacity: 0.25;
}

.weight-progress-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: var(--accent-blue);
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: left 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    left: 50%;
}

.weight-suggestion-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed var(--card-border);
}

.weight-suggestion-text strong {
    color: var(--text-main);
}

/* Bullet Systems / Detail Cards */
.detail-card {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
}

.detail-card-header strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.3px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-list li {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}

/* Why Matters Section */
.matters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.matters-chip {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    transition: transform 0.2s;
}

.matters-chip:hover {
    transform: translateY(-2px);
    background: var(--bg-main);
    border-color: var(--text-muted);
}

/* Premium Dynamic Glow borders for Classification status-box */
.status-box.status-underweight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(59, 130, 246, 0.08) 100%) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.12) !important;
}

.status-box.status-healthy {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%) !important;
    border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12) !important;
}

.status-box.status-overweight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04) 0%, rgba(245, 158, 11, 0.08) 100%) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12) !important;
}

.status-box.status-obese {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(239, 68, 68, 0.08) 100%) !important;
    border: 1.5px solid rgba(239, 68, 68, 0.4) !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.12) !important;
}

/* Premium Frosted Header Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    padding: 14px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.logo {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
}

.logo a {
    text-decoration: none !important;
    color: inherit !important;
    transition: opacity 0.2s !important;
}

.logo a:hover {
    opacity: 0.85 !important;
}

.logo span {
    color: #4f46e5 !important;
    background: linear-gradient(135deg, #6366f1, #ec4899) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
}

.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.main-nav a.nav-link {
    text-decoration: none !important;
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: color 0.2s !important;
}

.main-nav a.nav-link:hover {
    color: #4f46e5 !important;
}

/* Dropdown Menu CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent !important;
    color: #475569 !important;
    border: none !important;
    padding: 8px 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    border-radius: var(--radius-sm) !important;
    transition: all 0.2s !important;
}

.dropdown-toggle:hover {
    color: #4f46e5 !important;
    background: rgba(99, 102, 241, 0.05) !important;
}

.caret {
    font-size: 10px !important;
    transition: transform 0.2s !important;
    display: inline-block !important;
}

.dropdown:hover .caret {
    transform: rotate(180deg) !important;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #ffffff !important;
    min-width: 200px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    padding: 6px !important;
    z-index: 1100 !important;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease !important;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(4px) !important;
}

.dropdown-menu a {
    color: #334155 !important;
    padding: 10px 12px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: var(--radius-sm) !important;
    transition: all 0.2s !important;
    text-align: left !important;
}

.dropdown-menu a:hover {
    background-color: rgba(99, 102, 241, 0.06) !important;
    color: #4f46e5 !important;
    padding-left: 16px !important;
}

/* Refined Trust Badge */
.trust-badge-refined {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 16px !important;
    margin: 20px auto !important;
    max-width: 800px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #475569 !important;
    font-size: 12.5px !important;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.02) !important;
}

.trust-icon-refined {
    width: 14px !important;
    height: 14px !important;
    color: #6366f1 !important;
    flex-shrink: 0 !important;
}

.trust-badge-refined p {
    margin: 0 !important;
    line-height: 1.4 !important;
}

.trust-badge-refined a {
    color: #4f46e5 !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

/* Sleek Center Compact Copy Results button */
#copy-btn {
    max-width: 250px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    border: 1px solid #cbd5e1 !important;
    background-color: #f8fafc !important;
    color: #475569 !important;
}

#copy-btn:hover {
    background-color: #f1f5f9 !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
}

/* Premium Affiliate Catalyst Pulse Card */
.cta-pulse-card {
    margin: 24px auto 12px auto;
    max-width: 480px;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1.5px solid rgba(236, 72, 153, 0.25);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.08);
    animation: ctaPulse 2.5s infinite alternate ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-pulse-badge {
    background: linear-gradient(135deg, #ec4899, #6366f1);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(236, 72, 153, 0.2);
}

.cta-pulse-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #db2777;
    margin: 4px 0 0 0;
}

.cta-pulse-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.cta-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.cta-pulse-text {
    font-size: 12px;
    font-weight: 700;
    color: #4f46e5;
    animation: textGlow 1.5s infinite alternate;
}

.scrolling-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
    animation: bounceArrow 1.2s infinite ease-in-out;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 4px 15px rgba(236, 72, 153, 0.08);
        border-color: rgba(236, 72, 153, 0.25);
    }
    100% {
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.18);
        border-color: rgba(99, 102, 241, 0.45);
    }
}

@keyframes textGlow {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}
