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

html { scroll-behavior: smooth; }

body {
    font-family: var(--avp-fonts-body);
    color: var(--avp-colors-text);
    background: var(--avp-colors-background);
    line-height: 1.6;
    font-size: 16px;
}

a { color: var(--avp-colors-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--avp-colors-primary-dark); }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--avp-fonts-heading);
    color: var(--avp-colors-text);
    font-weight: 700;
    line-height: 1.2;
}

.container { max-width: var(--avp-spacing-container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--avp-radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    line-height: 1;
}
.btn-primary { background: var(--avp-colors-primary); color: #fff; }
.btn-primary:hover { background: var(--avp-colors-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--avp-shadows-md); }
.btn-secondary { background: var(--avp-colors-surface); color: var(--avp-colors-text); border: 1px solid var(--avp-colors-border); }
.btn-secondary:hover { background: var(--avp-colors-border); color: var(--avp-colors-text); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--avp-colors-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--avp-shadows-sm);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--avp-colors-text);
    text-decoration: none;
}
.logo:hover { color: var(--avp-colors-primary); }
.nav { display: flex; gap: 28px; }
.nav a {
    color: var(--avp-colors-text-muted);
    font-weight: 500;
    font-size: 15px;
}
.nav a:hover { color: var(--avp-colors-primary); }

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 20px;
    color: var(--avp-colors-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Features */
.features {
    padding: var(--avp-spacing-section-y) 0;
    background: var(--avp-colors-surface);
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -1px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--avp-radius-lg);
    box-shadow: var(--avp-shadows-sm);
    transition: all 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--avp-shadows-lg);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--avp-colors-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA */
.cta {
    padding: var(--avp-spacing-section-y) 0;
    background: var(--avp-colors-primary);
    color: #fff;
    text-align: center;
}
.cta h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 16px;
}
.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}
.cta .btn-primary {
    background: #fff;
    color: var(--avp-colors-primary);
}
.cta .btn-primary:hover {
    background: var(--avp-colors-surface);
    color: var(--avp-colors-primary-dark);
}

/* Page (универсальный шаблон) */
.page {
    padding: 60px 0 var(--avp-spacing-section-y);
}
.page-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -1px;
}
.page-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--avp-colors-text);
}
.page-content p { margin-bottom: 16px; }
.page-content h2 { font-size: 28px; margin: 32px 0 16px; }
.page-content h3 { font-size: 22px; margin: 24px 0 12px; }
.page-content ul, .page-content ol { margin: 16px 0 16px 24px; }
.page-content li { margin-bottom: 8px; }

/* Footer */
.site-footer {
    background: var(--avp-colors-text);
    color: #fff;
    padding: 60px 0 24px;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}
.footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
}
.footer-text { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive*/
@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 30px; margin-bottom: 32px; }
    .nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .cta h2 { font-size: 28px; }
}

/* Header дополнения */
.logo-image { max-height: 40px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
    font-weight: 600;
    color: var(--avp-colors-text);
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}
.header-phone:hover { color: var(--avp-colors-primary); }

/* Footer соцсети */
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--avp-colors-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-phone { display: none; }
    .header-actions .btn { padding: 8px 14px; font-size: 13px; }
}

/* === Services list === */
.services-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.services-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.services-hero-text {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    padding: 60px 0 var(--avp-spacing-section-y);
}

.services-category {
    margin-bottom: 60px;
}
.services-category:last-child { margin-bottom: 0; }
.services-category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.services-category-desc {
    color: var(--avp-colors-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    display: block;
    background: #fff;
    border: 1px solid var(--avp-colors-border);
    border-radius: var(--avp-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--avp-colors-text);
    transition: all 0.2s;
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--avp-shadows-lg);
    border-color: var(--avp-colors-primary);
    text-decoration: none;
    color: var(--avp-colors-text);
}
.service-card-featured {
    border-color: var(--avp-colors-secondary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.service-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--avp-colors-surface);
}
.service-card-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light), #fff);
}

.service-card-body {
    padding: 20px;
}
.service-card-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--avp-colors-secondary);
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.service-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.service-card-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}
.service-card-desc {
    color: var(--avp-colors-text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--avp-colors-border);
}
.service-card-price {
    font-weight: 700;
    color: var(--avp-colors-primary);
    font-size: 15px;
}
.service-card-link {
    color: var(--avp-colors-primary);
    font-size: 13px;
    font-weight: 600;
}

/* === Service detail === */
.service-detail {
    padding: 40px 0 60px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--avp-colors-text-muted);
}
.breadcrumbs a { color: var(--avp-colors-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--avp-colors-primary); }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.service-detail-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}
.service-detail-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
    margin-bottom: 24px;
}
.service-detail-image {
    width: 100%;
    border-radius: var(--avp-radius-lg);
    margin-bottom: 24px;
}
.service-detail-summary {
    font-size: 17px;
    color: var(--avp-colors-text);
    padding: 16px 20px;
    background: var(--avp-colors-primary-light);
    border-radius: var(--avp-radius-md);
    margin-bottom: 24px;
    line-height: 1.6;
}
.service-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--avp-colors-text);
}
.service-detail-content p { margin-bottom: 16px; }
.service-detail-content h2 { font-size: 26px; margin: 32px 0 12px; }
.service-detail-content h3 { font-size: 20px; margin: 24px 0 12px; }
.service-detail-content ul, .service-detail-content ol { margin: 16px 0 16px 24px; }
.service-detail-content li { margin-bottom: 6px; }

/* Sidebar with price */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}
.service-price-card {
    background: #fff;
    border: 2px solid var(--avp-colors-border);
    border-radius: var(--avp-radius-lg);
    padding: 24px;
    box-shadow: var(--avp-shadows-md);
}
.service-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--avp-colors-primary);
    line-height: 1;
}
.service-price-label {
    color: var(--avp-colors-text-muted);
    margin-top: 4px;
    font-size: 14px;
}
.service-price-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--avp-colors-border);
    font-size: 14px;
    color: var(--avp-colors-text-muted);
}
.service-price-phone {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    color: var(--avp-colors-text);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--avp-colors-border);
    border-radius: var(--avp-radius-md);
}
.service-price-phone:hover {
    background: var(--avp-colors-surface);
    color: var(--avp-colors-text);
}

@media (max-width: 1024px) {
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-sidebar { position: static; }
    .service-detail-title { font-size: 30px; }
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
    margin-top: 8px;
}
.services-actions {
    text-align: center;
    margin-top: 40px;
}
.services-actions .btn {
    min-width: 200px;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: var(--avp-colors-primary);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About section */
.about-section {
    padding: var(--avp-spacing-section-y) 0;
    background: var(--avp-colors-surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}
.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--avp-colors-text);
    margin-bottom: 24px;
}
.about-image img {
    width: 100%;
    border-radius: var(--avp-radius-lg);
    box-shadow: var(--avp-shadows-lg);
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-image {
        order: -1;
    }
}

/* CTA actions */
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--avp-colors-primary);
}

/* ===== Галерея ===== */
.gallery-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.gallery-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.gallery-hero-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section {
    padding: 60px 0 80px;
}
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
}
.galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #1f2937;
}
.gallery-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
}
.gallery-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.gallery-card-body {
    padding: 20px;
}
.gallery-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.gallery-card-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}
.gallery-card-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 15px;
}
.gallery-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    font-size: 13px;
}
.gallery-card-count {
    color: #6b7280;
}
.gallery-card-link {
    color: var(--avp-colors-primary);
    font-weight: 600;
}

/* Детальная страница галереи */
.gallery-detail {
    padding: 40px 0 60px;
}
.gallery-detail-header {
    margin-bottom: 40px;
}
.gallery-detail-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.gallery-detail-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 16px;
}
.gallery-detail-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}
.gallery-back {
    margin-top: 48px;
    text-align: center;
}

/* Тип "До/после" */
.beforeafter-sliders {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.beforeafter-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.beforeafter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.beforeafter-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.beforeafter-image {
    position: relative;
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
}
.beforeafter-image img {
    width: 100%;
    height: auto;
    display: block;
}
.beforeafter-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.beforeafter-divider {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: var(--avp-colors-primary);
}
.beforeafter-description {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    font-size: 14px;
    color: #6b7280;
}

/* Слайд-шоу */
.slideshow-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
}
.slideshow-main {
    position: relative;
    text-align: center;
}
.slideshow-main img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
}
.slideshow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.slideshow-prev, .slideshow-next {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}
.slideshow-prev:hover, .slideshow-next:hover {
    background: var(--avp-colors-primary);
    color: #fff;
    border-color: var(--avp-colors-primary);
}
.slideshow-counter {
    font-size: 14px;
    color: #6b7280;
}
.slideshow-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.slideshow-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
}
.slideshow-thumb.active, .slideshow-thumb:hover {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--avp-colors-primary);
}

/* Сетка и Masonry */
.grid-items, .masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.grid-item, .masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.grid-item img, .masonry-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}
.grid-item:hover img, .masonry-item:hover img {
    transform: scale(1.05);
}
.grid-overlay, .masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 40px 12px 12px;
    opacity: 0;
    transition: opacity 0.3s;
}
.grid-item:hover .grid-overlay, .masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.grid-item .grid-overlay span, .masonry-item .masonry-overlay span {
    font-size: 14px;
    font-weight: 500;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}
.lightbox-title {
    color: #fff;
    margin-top: 16px;
    font-size: 18px;
}
.lightbox-desc {
    color: #ccc;
    margin-top: 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .galleries-grid { grid-template-columns: 1fr; }
    .grid-items, .masonry-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .beforeafter-container { flex-direction: column; }
    .beforeafter-divider { transform: rotate(90deg); }
}

/* ===== Отзывы ===== */
.reviews-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.reviews-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}
.reviews-hero-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
}
.reviews-section {
    padding: 60px 0 80px;
}
.reviews-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}
.reviews-stats {
    position: sticky;
    top: 100px;
    align-self: start;
}
.stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--avp-colors-border);
    margin-bottom: 24px;
}
.stats-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--avp-colors-primary);
}
.stats-outof {
    font-size: 20px;
    color: #6b7280;
}
.stats-stars {
    font-size: 20px;
    color: #f59e0b;
    margin: 8px 0;
}
.stats-count {
    font-size: 13px;
    color: #6b7280;
}
.rating-distribution {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--avp-colors-border);
    margin-bottom: 24px;
}
.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.rating-stars {
    width: 55px;
    font-size: 13px;
    color: #f59e0b;
}
.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
}
.rating-count {
    width: 35px;
    font-size: 13px;
    color: #6b7280;
}
.rating-filter h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.filter-link {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 4px;
}
.filter-link:hover {
    background: var(--avp-colors-primary-light);
    color: var(--avp-colors-primary);
}
.filter-link.active {
    background: var(--avp-colors-primary);
    color: #fff;
}
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--avp-colors-border);
    transition: all 0.2s;
}
.review-card-featured {
    border-left: 4px solid var(--avp-colors-secondary);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.review-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--avp-colors-primary), var(--avp-colors-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}
.review-author-name {
    font-weight: 700;
    font-size: 16px;
}
.review-author-car {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.review-rating {
    font-size: 16px;
    color: #f59e0b;
}
.review-service {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}
.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}
.review-response {
    background: var(--avp-colors-primary-light);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}
.response-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--avp-colors-primary);
    margin-bottom: 6px;
}
.response-text {
    font-size: 14px;
    color: #374151;
}
.review-photos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.review-photo-link img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.review-photo-link img:hover {
    transform: scale(1.05);
}
.review-date {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
}
.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    color: #6b7280;
}
.reviews-empty div {
    font-size: 48px;
    margin-bottom: 16px;
}
.reviews-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.review-widget-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--avp-colors-border);
    transition: all 0.2s;
}
.review-widget-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--avp-shadows-lg);
}
.widget-rating {
    font-size: 14px;
    color: #f59e0b;
    margin-bottom: 12px;
}
.widget-text {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 16px;
    font-style: italic;
}
.widget-author {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
}
.widget-car {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}
.reviews-widget-footer {
    text-align: center;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    .reviews-stats {
        position: static;
    }
}

/* ===== Прайс-лист ===== */
.price-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.price-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.price-hero-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
}
.price-section {
    padding: 60px 0 80px;
}

/* Фильтры */
.price-filters {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--avp-colors-border);
}
.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.filter-group {
    flex: 1;
    min-width: 180px;
}
.filter-input, .filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}
.filter-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--avp-colors-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.filter-reset {
    padding: 10px 20px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.filter-reset:hover {
    background: #e5e7eb;
}

/* Категория */
.price-category {
    margin-bottom: 48px;
}
.price-category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--avp-colors-primary);
    display: inline-block;
}

/* Таблица */
.price-table {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--avp-colors-border);
    overflow: hidden;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}
.price-row:last-child {
    border-bottom: none;
}
.price-row:hover {
    background: #f9fafb;
}
.price-row-highlight {
    background: #fef3c7;
}
.price-row-highlight:hover {
    background: #fde68a;
}
.price-info {
    flex: 2;
    padding-right: 20px;
}
.price-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}
.price-description {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}
.price-unit {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}
.price-carmodel {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.price-brand, .price-model, .price-engine {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
}
.price-value {
    text-align: right;
    min-width: 140px;
}
.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--avp-colors-primary);
}
.price-row-highlight .price-current {
    color: #dc2626;
    font-size: 20px;
}
.price-old-value {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 8px;
    display: inline-block;
}
.price-unit-value {
    font-size: 12px;
    color: #6b7280;
    font-weight: normal;
}
.price-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    color: #6b7280;
}
.price-empty div {
    font-size: 48px;
    margin-bottom: 16px;
}
.price-note {
    margin-top: 32px;
    padding: 16px 20px;
    background: #fef3c7;
    border-radius: 12px;
    font-size: 13px;
    color: #92400e;
    text-align: center;
}

@media (max-width: 768px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .price-value {
        text-align: left;
        width: 100%;
    }
    .filters-form {
        flex-direction: column;
    }
    .filter-group {
        width: 100%;
    }
    .price-hero-title {
        font-size: 32px;
    }
}

/* ===== Сотрудники ===== */
.staff-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.staff-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.staff-hero-subtitle {
    color: var(--avp-colors-text-muted);
    font-size: 18px;
}
.staff-section {
    padding: 60px 0 80px;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.staff-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--avp-colors-border);
}
.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.staff-card-featured {
    border: 2px solid var(--avp-colors-secondary);
}
.staff-card-link {
    text-decoration: none;
    color: var(--avp-colors-text);
    display: block;
}
.staff-card-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.staff-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-card-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--avp-colors-primary), var(--avp-colors-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}
.staff-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--avp-colors-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.staff-card-body {
    padding: 20px;
}
.staff-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.staff-card-position {
    color: var(--avp-colors-primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}
.staff-card-experience {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}
.staff-card-description {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 12px;
}
.staff-card-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--avp-colors-primary);
}
.staff-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}
.staff-empty div {
    font-size: 64px;
    margin-bottom: 16px;
}

/* Детальная страница */
.staff-detail {
    padding: 40px 0 80px;
}
.staff-detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.staff-detail-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.staff-detail-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--avp-colors-primary), var(--avp-colors-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 700;
    color: #fff;
}
.staff-detail-name {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.staff-detail-position {
    font-size: 18px;
    color: var(--avp-colors-primary);
    font-weight: 500;
    margin-bottom: 16px;
}
.staff-detail-experience {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}
.staff-detail-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}
.staff-detail-bio {
    margin: 24px 0;
}
.staff-detail-bio h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.staff-detail-bio p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}
.staff-detail-specializations {
    margin: 24px 0;
}
.staff-detail-specializations h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.specializations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.specialization-badge {
    padding: 6px 14px;
    background: var(--avp-colors-primary-light);
    color: var(--avp-colors-primary-dark);
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
}
.specialization-badge:hover {
    background: var(--avp-colors-primary);
    color: #fff;
}
.staff-detail-contacts {
    margin: 24px 0;
    padding: 20px;
    background: var(--avp-colors-surface);
    border-radius: 16px;
}
.staff-detail-contacts h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-item {
    margin-bottom: 8px;
    font-size: 14px;
}
.contact-item a {
    color: var(--avp-colors-primary);
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}
.staff-detail-back {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .staff-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .staff-detail-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-hero-title {
        font-size: 32px;
    }
}

/* ===== Виджет сотрудников на главной ===== */
.staff-widget {
    padding: var(--avp-spacing-section-y) 0;
    background: var(--avp-colors-surface);
}
.staff-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}
.staff-widget-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--avp-colors-border);
}
.staff-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.staff-widget-link {
    text-decoration: none;
    color: var(--avp-colors-text);
}
.staff-widget-photo {
    height: 240px;
    overflow: hidden;
}
.staff-widget-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-widget-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--avp-colors-primary), var(--avp-colors-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}
.staff-widget-info {
    padding: 16px;
}
.staff-widget-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1f2937;
}
.staff-widget-position {
    font-size: 13px;
    color: var(--avp-colors-primary);
    margin-bottom: 6px;
}
.staff-widget-experience {
    font-size: 12px;
    color: #6b7280;
}
.staff-widget-footer {
    text-align: center;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .staff-widget-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    .staff-widget-photo {
        height: 180px;
    }
}

/* ===== Блог ===== */
.blog-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--avp-colors-primary-light) 0%, #fff 100%);
    text-align: center;
}
.blog-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.blog-section {
    padding: 60px 0 80px;
}
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--avp-colors-border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.blog-card-image {
    height: 240px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-content {
    padding: 24px;
}
.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--avp-colors-primary-light);
    color: var(--avp-colors-primary-dark);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-card-title a {
    color: #1f2937;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: var(--avp-colors-primary);
}
.blog-card-excerpt {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
    padding-top: 16px;
    border-top: 1px solid var(--avp-colors-border);
}
.blog-card-readmore {
    color: var(--avp-colors-primary);
    font-weight: 600;
    text-decoration: none;
}

/* Sidebar */
.blog-sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--avp-colors-border);
    margin-bottom: 24px;
}
.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--avp-colors-primary);
    display: inline-block;
}
.sidebar-list {
    list-style: none;
}
.sidebar-list li {
    margin-bottom: 10px;
}
.sidebar-list li a {
    color: #4b5563;
    text-decoration: none;
}
.sidebar-list li a:hover {
    color: var(--avp-colors-primary);
}
.sidebar-list .count {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 6px;
}
.archive-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archive-month a {
    color: #4b5563;
    text-decoration: none;
}
.archive-month a:hover {
    color: var(--avp-colors-primary);
}
.archive-count {
    font-size: 12px;
    color: #9ca3af;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--avp-colors-border);
    border-radius: 8px;
    text-decoration: none;
    color: #4b5563;
}
.pagination a:hover {
    background: var(--avp-colors-primary);
    color: #fff;
    border-color: var(--avp-colors-primary);
}
.pagination .active {
    background: var(--avp-colors-primary);
    color: #fff;
    border-color: var(--avp-colors-primary);
}

/* Детальная страница */
.blog-detail {
    padding: 40px 0 80px;
}
.blog-detail-header {
    margin-bottom: 32px;
}
.blog-detail-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 24px;
}
.blog-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
}
.blog-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}
.blog-detail-content p {
    margin-bottom: 20px;
}
.blog-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 32px 0 16px;
}
.blog-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 12px;
}
.blog-detail-content ul, .blog-detail-content ol {
    margin: 20px 0 20px 30px;
}
.blog-detail-content li {
    margin-bottom: 8px;
}
.blog-detail-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}
.blog-detail-tags {
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-detail-tag {
    padding: 6px 14px;
    background: #f3f4f6;
    border-radius: 20px;
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
}
.blog-detail-tag:hover {
    background: var(--avp-colors-primary);
    color: #fff;
}
.blog-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--avp-colors-border);
}
.blog-related h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.blog-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--avp-colors-border);
}
.blog-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.blog-related-card-content {
    padding: 16px;
}
.blog-related-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.blog-related-card-title a {
    color: #1f2937;
    text-decoration: none;
}
.blog-related-card-title a:hover {
    color: var(--avp-colors-primary);
}
.blog-back {
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
    .blog-detail-title {
        font-size: 30px;
    }
    .blog-hero-title {
        font-size: 32px;
    }
}

.service-car-badge {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

.blog-section {
    padding: 60px 0;
    background: var(--avp-colors-surface);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--avp-colors-border);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.blog-card-image {
    height: 200px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-content {
    padding: 20px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: #1f2937;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: var(--avp-colors-primary);
}
.blog-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
    padding-top: 12px;
    border-top: 1px solid var(--avp-colors-border);
}
.blog-card-readmore {
    color: var(--avp-colors-primary);
    font-weight: 600;
    text-decoration: none;
}
.blog-actions {
    text-align: center;
    margin-top: 40px;
}

/* Flash messages */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}
.flash-message {
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.flash-success {
    background: #10b981;
    color: #fff;
    border-left: 4px solid #047857;
}
.flash-error {
    background: #ef4444;
    color: #fff;
    border-left: 4px solid #b91c1c;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}