.store-logo {
    max-height: 60px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.hero-subtitle-emphasis {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Founder section styles */
.founder-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.founder-image {
    border-radius: 50%;
    max-width: 250px;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--blue-gradient-start), var(--blue-gradient-end));
    color: white;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Advanced visualization styles for email */
.advanced-chart {
    height: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.chart-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.chart-tab {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
}

.chart-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.chart-content {
    padding: 15px;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 5px;
}

/* Fix for blank hero image */
.hero-image {
    position: relative;
    background: linear-gradient(135deg, var(--blue-gradient-start), var(--purple-gradient-end));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    border: 10px solid white;
}

.email-preview-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.email-preview-header {
    background: linear-gradient(to right, var(--blue-gradient-start), var(--blue-gradient-end));
    padding: 15px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin-bottom: 10px;
}

.email-preview-header h4 {
    color: white;
    margin: 0;
    font-size: 16px;
}

.email-preview-body {
    background: white;
    flex-grow: 1;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    color: #333;
    font-size: 14px;
    text-align: left;
    overflow: hidden;
}

.email-preview-kpi {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.email-preview-kpi-item {
    background: #f8fafc;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    width: 48%;
}

.email-preview-kpi-value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

.email-preview-chart {
    height: 100px;
    background: #f8fafc;
    border-radius: 5px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.email-preview-chart::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to right, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(37, 99, 235, 0.3) 50%, 
        rgba(37, 99, 235, 0.1) 100%);
    clip-path: polygon(0 100%, 10% 70%, 20% 85%, 30% 60%, 40% 50%, 50% 60%, 60% 40%, 70% 55%, 80% 30%, 90% 40%, 100% 20%, 100% 100%);
}

.email-preview-chart::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
}

.email-preview-action {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    margin-top: 10px;
}
