/* Подключение шрифта Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-color: #7f93f1;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Кнопка контактов */
.contact-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn svg {
    flex-shrink: 0;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 20px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    padding: 0 20px 20px;
    border-bottom: 2px solid var(--bg-color);
}

.mobile-menu-header h3 {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.mobile-menu-header p {
    font-size: 13px;
    color: var(--text-light);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 15px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
}

.mobile-categories {
    margin-top: 20px;
}

.mobile-categories-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    padding: 0 15px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-category-item {
    margin-bottom: 5px;
}

.mobile-category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.mobile-category-link:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.mobile-category-icon {
    font-size: 20px;
}

.mobile-contacts {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 12px;
}

.mobile-contacts-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.mobile-contact-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.mobile-contact-info {
    flex: 1;
}

.mobile-contact-label {
    font-size: 11px;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}

.mobile-contact-value {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
}

.mobile-contact-value a {
    color: var(--text-color);
    text-decoration: none;
}

.mobile-contact-value a:hover {
    color: var(--primary-color);
}

/* Main */
.main {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Hero */
.hero {
    text-align: center;
    padding: 40px 0 60px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-light);
}

/* Category Header */
.category-header {
    text-align: center;
    padding: 20px 0 40px;
}

.category-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-placeholder {
    color: #ccc;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Subcategories */
.subcategories-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.subcategory-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.subcategory-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-color);
}

.subcategory-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
    margin-top: -10px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.subcategory-section .product-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    color: #ddd;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-meta {
    font-size: 13px;
    color: var(--text-light);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--border-color);
    color: var(--text-color);
    transform: rotate(90deg);
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.error {
    text-align: center;
    padding: 40px;
    color: #f44336;
}

/* Product Modal */
.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-modal-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-color);
    position: sticky;
    top: 0;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-placeholder-large {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 18px;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
}

.product-modal-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-modal-category {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    display: inline-block;
    border-left: 4px solid var(--primary-color);
}

.product-modal-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.product-modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.spec-item {
    font-size: 14px;
    line-height: 1.6;
}

.spec-item.full-width {
    grid-column: 1 / -1;
}

.spec-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 3px;
}

/* Buttons */
.btn-order {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
}

.btn-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    padding: 12px 24px;
    background: var(--bg-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* Order Form */
.order-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.order-form-container h2 {
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
}

.order-product-name {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

#formMessage {
    margin-top: 15px;
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 60px 0 0;
    margin-top: 80px;
    color: #e2e8f0;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contacts {
    list-style: none;
    padding: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.footer-contacts svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer-contacts a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contacts a:hover {
    color: white;
}

.footer-features {
    list-style: none;
    padding: 0;
}

.footer-features li {
    padding: 8px 0;
    color: #a0aec0;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    color: #718096;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-copyright {
        order: 2;
    }
    
    .footer-payment {
        order: 1;
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .contact-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-modal-image {
        position: relative;
    }
    
    .product-modal-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-content {
        padding: 25px 15px;
        max-height: 95vh;
    }
    
    .product-modal-title {
        font-size: 22px;
    }
    
    .product-modal-price {
        font-size: 26px;
        padding: 12px 15px;
    }
    
    .subcategory-section {
        padding: 15px;
    }
    
    .subcategory-title {
        font-size: 20px;
    }
    
    .subcategory-description {
        font-size: 14px;
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 25px 0 40px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image,
    .product-image {
        height: 180px;
    }
    
    .category-name {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 20px 12px;
    }
    
    .product-modal-title {
        font-size: 20px;
    }
    
    .mobile-menu {
        width: 90%;
    }
}

/* Плавающий виджет мессенджеров */
.messenger-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.messenger-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 200;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.messenger-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7);
    }
}

.messenger-links {
    position: absolute;
    bottom: 85px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.messenger-widget:hover .messenger-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.messenger-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 0.3s ease forwards;
}

.messenger-link:nth-child(1) {
    animation-delay: 0.1s;
}

.messenger-link:nth-child(2) {
    animation-delay: 0.2s;
}

.messenger-link:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.messenger-link:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.messenger-phone {
    background: linear-gradient(135deg, #34c759 0%, #2fb84a 100%);
}

.messenger-viber {
    background: linear-gradient(135deg, #7d3daf 0%, #7d3daf 100%);
}

.messenger-telegram {
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .messenger-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .messenger-btn {
        width: 60px;
        height: 60px;
        font-size: 11px;
    }
    
    .messenger-links {
        bottom: 75px;
    }
    
    .messenger-link {
        width: 50px;
        height: 50px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}


/* Video Section */
.video-section {
    padding-bottom: 40px;
    text-align: center;
}

.video-container {
    background: white;
    border-radius: 12px;
    /*padding: 20px;*/
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
