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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.navbar {
    background: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.nav-logo img {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(2352%) hue-rotate(351deg) brightness(85%) contrast(95%);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #ffffff;
}

.mobile-menu-button:hover {
    color: #C41E3A;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #C41E3A;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 2rem;
}

.lang-button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-button svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 160px;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.lang-dropdown a:hover {
    background: #C41E3A;
    color: white;
}

@media (max-width: 768px) {
    body {
        transition: margin-top 0.3s ease;
        margin-top: 82px; /* Высота шапки */
    }

    body.menu-open {
        margin-top: 182px; /* Высота шапки + высота меню (2 строки по 50px) */
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        background: #000000;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        height: 100px; /* Высота для двух строк */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-wrap: wrap;
    }

    .nav-menu li {
        width: 50%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    #hero-slideshow {
        transition: margin-top 0.3s ease;
    }

    body.menu-open + main > #hero-slideshow {
        margin-top: 182px;
    }
}

/* Hero Slideshow */
#hero-slideshow {
    padding-top: 120px; /* For fixed header */
    padding-bottom: 20px; /* Space below */
    overflow: hidden;
}

#hero-slideshow .container {
    /* Uses global container styles for padding */
}

#hero-slideshow .slideshow-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 40px; /* More space from header */
    aspect-ratio: 21 / 9;
}

#hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0; /* Hidden slides are at the bottom */
}

#hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1; /* The visible slide */
}

/* The slide that is fading in is temporarily brought to the very top */
#hero-slideshow .slide.preparing {
    z-index: 2;
}

#hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #hero-slideshow {
        /* The user previously set this to 120px, reducing for mobile */
        padding-top: 30px; /* Reduced top padding for mobile */
        padding-bottom: 20px;
    }
    
    #hero-slideshow .slideshow-wrapper {
        aspect-ratio: unset;
        /* vh - section_padding_top - section_padding_bottom - body_margin_top */
        height: calc(100vh - 20px - 20px - 82px);
        margin-top: 0;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fff;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 300;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    width: 350px;
    flex-shrink: 0;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #ffffff;
    padding-top: 40px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.product-image .slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image .slide.active {
    opacity: 1;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 2;
    pointer-events: none;
}

.slider-nav button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-nav button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-nav button svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.slider-nav button:hover svg {
    stroke: #007BFF;
}

.product-info {
    padding: 30px 30px 0 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    min-height: 3.2em; /* Место для 2 строк */
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Уменьшаем расстояние между иероглифами для китайских версий Libido Boost в модальном окне */
html[lang="zh-HK"] .modal-product-details h3[data-lang="prod_libido_name"],
html[lang="zh-CN"] .modal-product-details h3[data-lang="prod_libido_name"] {
    letter-spacing: -0.05em;
}

/* Убираем стили для цены */
.price {
    display: none;
}

.description {
    color: #666;
    line-height: 1.5;
    min-height: 4.5em; /* Место для 3 строк */
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.features li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.features li::before {
    content: "✓";
    color: #007BFF;
    font-weight: bold;
    margin-right: 10px;
}

.no-break {
    display: inline-block;
}

.video-container {
    margin: 0;
}

.video-container video {
    width: 100%;
    max-height: 200px;
    border: 1px solid #ddd;
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.card-footer.single .product-button {
    flex: none;
    width: 100%;
}

.product-button, .video-preview-button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-button {
    background: #007BFF;
    color: white;
    border: 2px solid #007BFF;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.product-button:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.product-button svg {
    stroke: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(0, 123, 255, 0.03);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 300;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px 20px;
    max-width: 600px;
    padding: 20px;
}

.main-image {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    transform: translateX(-20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.secondary-images {
    display: contents;
}

.image-frame {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-frame:first-child {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1;
    transform: translate(-10px, 110px);
    width: 100%;
    justify-self: end;
}

.image-frame:last-child {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 1;
    width: 50%;
    margin: 0 auto;
    transform: translate(10px, 0px);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 600px;
    }

    .about-images {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .about {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .about-images {
        margin-bottom: 20px;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 60px;
        max-width: 600px;
    }

    .about-images {
        grid-template-columns: 1.8fr 1fr;
        width: 100%;
        max-width: 400px;
    }

    /* ↓↓↓ НАСТРОЙТЕ ПОЗИЦИИ КАРТИНОК ЗДЕСЬ ↓↓↓ */
    
    .image-frame:first-child {
        /* Первая картинка (розовая) */
        transform: translate(10px, 50px);
        width: 115%;
        /* Дополнительные стили при необходимости:
        margin: 0 auto;    - отступы со всех сторон
        width: 100%;       - ширина
        position: relative;  - позиционирование
        top: 0;            - отступ сверху
        left: 0;           - отступ слева
        */
    }

    .image-frame:last-child {
        /* Вторая картинка (черная) */
        transform: translate(0px, 0px);  /* X и Y отступы */
        /* Дополнительные стили при необходимости:
        margin: 0 auto;    - отступы со всех сторон
        width: 50%;        - ширина
        position: relative; - позиционирование
        top: 0;            - отступ сверху
        left: 0;           - отступ слева
        */
    }
    
    /* ↑↑↑ КОНЕЦ НАСТРОЙКИ ПОЗИЦИЙ КАРТИНОК ↑↑↑ */

    .main-image {
        transform: translateX(0);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.contact-text {
    padding-right: 40px;
    max-width: 420px;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 300;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-text {
        padding-right: 0;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }
    
    .contact {
        padding: 60px 0;
    }
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 0px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.company-address p,
.contact-info p {
    color: #999;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info a {
    display: block;
    margin-bottom: 15px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: none;
        text-align: left;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .company-address,
    .contact-info {
        margin: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products,
    .about,
    .contact {
        padding: 30px 0;
    }
}

/* Video Preview Button */
.video-preview-button {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.video-preview-button:hover {
    background: rgba(51, 51, 51, 0.1);
}

.video-preview-button svg {
    stroke: #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

#modalVideo {
    width: 100%;
    max-height: 80vh;
    background: #000;
    border-radius: 12px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: contain;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    margin: 5vh auto;
    padding: 30px;
    z-index: 1002;
    }
    
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    cursor: pointer;
    z-index: 1003;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #007BFF;
}

.modal-body {
    display: flex;
    gap: 30px;
    height: calc(90vh - 100px);
    overflow: hidden;
}

.modal-product-info {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

.modal-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.modal-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-slides img.active {
    opacity: 1;
    position: relative;
}

.modal-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 2;
    pointer-events: none;
}

.modal-slider-nav button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.modal-slider-nav button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.modal-slider-nav button svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.modal-slider-nav button:hover svg {
    stroke: #007BFF;
}

.modal-product-details {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.modal-product-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.product-description {
    margin-bottom: 20px;
}

.features-specs-container {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.features-specs-container.single-column {
    flex-direction: column;
}

.key-features, .specifications {
    flex: 1;
}

.key-features h4, .specifications h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.key-features ul, .specifications ul {
    list-style: none;
    padding: 0;
}

.key-features li, .specifications li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.key-features li::before, .specifications li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007BFF;
}

.modal-body .contact-form {
    margin-top: auto;
    padding: 20px;
    background: #ddefff;
    border-radius: 10px;
}

.modal-body .contact-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 90vh;
        margin: 5vh auto;
        padding: 15px;
    }

    .modal-body {
        flex-direction: column;
        height: calc(90vh - 30px);
        gap: 15px;
        overflow-y: auto;
    }

    .modal-product-info {
        width: 100%;
        height: auto;
    }

    .modal-product-details {
        width: 100%;
        padding: 10px;
    }

    .features-specs-container {
        flex-direction: column;
        gap: 15px;
    }

    .modal-slider {
        height: 300px;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-modal.active {
    display: flex;
}

.video-modal .modal-content {
    background: #000;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.video-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    cursor: pointer;
    z-index: 1003;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-modal .close-modal:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #007BFF;
}

.video-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-modal .modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

.coming-soon {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.coming-soon-button {
    background: transparent;
    border: 2px solid #9CA3AF;
    color: #6B7280;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.coming-soon-button svg {
    width: 24px;
    height: 24px;
    stroke: #6B7280;
    transition: all 0.3s ease;
}

.coming-soon-button:hover {
    background: rgba(156, 163, 175, 0.1);
}

@media (max-width: 768px) {
    .coming-soon {
        margin-top: 40px;
    }
    
    .coming-soon-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
} 