/*
Theme Name: גפן - מרכז לטיפול בתפילה
Description: תבנית וורדפרס למרכז לטיפול בתפילה של גפן. תבנית מותאמת אישית עם עיצוב חם ומזמין, תומכת בעברית ו-RTL.
Author: גפן - מרכז לטיפול בתפילה
Version: 1.0.0
Text Domain: gefen-therapy
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: hebrew, rtl, therapy, prayer, spiritual, responsive, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Assistant', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3E342F;
    background-color: #F5EFE7;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-bg: #F5EFE7;
    --secondary-bg: #D4C5B9;
    --accent-primary: #8B7355;
    --accent-secondary: #B8956A;
    --white-warm: #FFF9F0;
    --olive-soft: #9CAF88;
    --text-dark: #3E342F;
    --text-light: #6B5D54;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Typography */
h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--accent-secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white-warm);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h2 {
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 0;
}

.logo span {
    font-size: 14px;
    color: var(--text-light);
}

.contact-header {
    display: flex;
    gap: 30px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.header-contact:hover {
    color: var(--accent-primary);
}

.header-contact i {
    font-size: 16px;
}

.contact-text {
    font-size: 14px;
}

/* Hamburger Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white-warm);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 999;
    padding: 80px 30px 30px;
}

.side-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.nav-links {
    list-style: none;
    padding-top: 30px;
}

.nav-links li {
    margin-bottom: 25px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--secondary-bg);
    color: var(--accent-primary);
    transform: translateX(-5px);
}

.nav-links i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #F5EFE7 0%, #FFF9F0 100%);
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.newspaper-article {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 12px;
    /* overflow: hidden; */
    /* box-shadow: var(--shadow-medium); */
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.primary-btn {
    background: var(--accent-primary);
    color: white;
}

.primary-btn:hover {
    background: var(--text-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.large-btn {
    padding: 22px 50px;
    font-size: 20px;
}

/* Video Section */
.intro-video-section {
    padding: 80px 20px;
    background: white;
}

/* Swiper Video Slider Fixes */
.intro-videos-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.intro-videos-slider .video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.intro-videos-slider .swiper-wrapper {
    align-items: center;
}

.video-player-wrapper {
    border-radius: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.video-player-wrapper.ratio-9-16 {
    max-width: 320px;
    margin: 0 auto;
}

.video-player-wrapper.ratio-1-1 {
    max-width: 420px;
    margin: 0 auto;
}

.play-button {
    width: 68px;
    height: 68px;
}

.play-button::after {
    border-width: 13px 0 13px 22px;
}

.video-pause-button {
    bottom: 20px;
    left: 20px;
    width: 46px;
    height: 46px;
}

.video-sound-toggle {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
}


/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--primary-bg);
}

.contact-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.contact-card .cta-button {
    margin: 10px auto;
}

.contact-title {
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 1025px) {
    .contact-items {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 24px;
    }

    .contact-item {
        flex: 1 1 0;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white-warm);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 220px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    overflow-wrap: anywhere;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #F5EFE7 0%, #8B7355 100%);
    display: flex;
    justify-content: center;
}

.final-cta-container {
    max-width: 520px;
    width: 100%;
}

.final-cta-form {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(50, 40, 30, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C2A899 0%, #A89587 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF9F0;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(168, 149, 135, 0.35);
}

.form-badge i {
    font-size: 32px;
}

.form-header h3 {
    margin: 0;
    color: #5A4A42;
    font-size: 26px;
    font-weight: 700;
}

.form-header p {
    margin: 0;
    color: #8B7A6F;
    font-size: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #5A4A42;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 52px 16px 18px;
    border-radius: 14px;
    border: 2px solid #E2CDBE;
    background: #FAF8F6;
    font-size: 16px;
    color: #5A4A42;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #C2A899;
    box-shadow: 0 6px 22px rgba(194, 168, 153, 0.2);
    outline: none;
}

.input-wrapper input.error {
    border-color: #f44336;
    box-shadow: 0 6px 22px rgba(244, 67, 54, 0.15);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #A89587;
    font-size: 18px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-wrapper input:focus+.input-icon {
    color: #C2A899;
    transform: translateY(-50%) scale(1.1);
}

#ctaPhone {
    direction: rtl;
    text-align: right;
}

.form-message {
    min-height: 24px;
    font-size: 15px;
    text-align: center;
    color: #5A4A42;
}

.form-message.success {
    color: #2E7D32;
}

.form-message.error {
    color: #C62828;
}

.submit-btn {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C2A899 0%, #A89587 100%);
    box-shadow: 0 15px 40px rgba(168, 149, 135, 0.3);
}

.submit-btn .button-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
}

.submit-btn .success-state {
    display: none;
}

.submit-btn.success {
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.35);
}

.submit-btn.success .default-state {
    display: none;
}

.submit-btn.success .success-state {
    display: inline-flex;
}

.submit-btn:disabled {
    opacity: 0.85;
    cursor: default;
}

.form-note {
    font-size: 13px;
    color: #8B7A6F;
    text-align: center;
    margin: 0;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #5A4A42;
    cursor: pointer;
}

.form-consent input {
    display: none;
}

.consent-checkbox {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(194, 168, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.consent-checkbox svg {
    width: 24px;
    height: 24px;
    overflow: visible;
}

.consent-path {
    fill: none;
    stroke: #8B7355;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 0.4s ease, stroke-dashoffset 0.4s ease;
    stroke-dasharray: 241 999;
    stroke-dashoffset: 0;
}

.form-consent input:checked+.consent-checkbox .consent-path {
    stroke-dasharray: 70 999;
    stroke-dashoffset: -262;
}

.form-consent:hover .consent-checkbox {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

.consent-text {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
}

.consent-link {
    color: #8B7355;
    font-weight: 600;
}

.consent-link:hover {
    text-decoration: underline;
}

.final-cta::before,
.final-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
}

.final-cta::before {
    top: 120px;
    left: 12%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.18);
}

.final-cta::after {
    bottom: 80px;
    right: 8%;
    width: 320px;
    height: 320px;
    background: rgba(139, 115, 85, 0.35);
}

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta>* {
    position: relative;
    z-index: 1;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--primary-bg);
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-left: 10px;
    color: var(--accent-secondary);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.footer-social a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .contact-header {
        display: none;
    }

    .logo h2 {
        font-size: 24px;
    }

    .hero {
        min-height: calc(100vh - 70px);
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-items {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .final-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .large-btn {
        padding: 18px 35px;
        font-size: 18px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 20px 30px;
    }

    .contact-header .contact-text {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .contact-items {
        justify-content: space-around;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {

    .main-header,
    .side-nav,
    .menu-toggle,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* WordPress Specific Styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-image {
    margin-bottom: 1.5rem;
}

.wp-block-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.wp-block-quote {
    border-right: 4px solid var(--accent-primary);
    padding-right: 20px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.wp-block-button .wp-block-button__link {
    background: var(--accent-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .contact-info {
    text-align: left;
}

body.rtl .input-icon {
    left: 18px;
    right: auto;
}

body.rtl .input-wrapper input {
    padding: 16px 18px 16px 52px;
}

body.rtl .article-overlay {
    left: 20px;
    right: auto;
}

body.rtl .side-nav {
    right: -300px;
    left: auto;
}

body.rtl .side-nav.active {
    right: 0;
}

body.rtl .close-menu {
    right: 20px;
    left: auto;
}

body.rtl .nav-links a:hover,
body.rtl .nav-links a.active {
    transform: translateX(5px);
}

body.rtl .footer-contact i {
    margin-right: 10px;
    margin-left: 0;
}

body.rtl .wp-block-quote {
    border-right: none;
    border-left: 4px solid var(--accent-primary);
    padding-right: 0;
    padding-left: 20px;
}

/* Profile Image inside circular frame */
img.profile-image {
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    /* raise image to show more top */
}

/* Optional wrapper to enforce the circle clipping */
.profile-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image-wrap img.profile-image {
    width: 100%;
    height: 100%;
}

/* Video Player Styles */
.video-player-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-player-wrapper.ratio-9-16 {
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
}

.video-player-wrapper.ratio-1-1 {
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
}

.video-player-wrapper iframe,
.video-player-wrapper video,
.video-player-wrapper img.video-preview,
.video-player-wrapper .video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-cover-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-player-wrapper:hover .video-cover-layer {
    background: rgba(0, 0, 0, 0.1);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-player-wrapper:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--accent-primary);
    margin-left: 4px;
    /* Optical adjustment */
}

.video-pause-button,
.video-sound-toggle {
    position: absolute;
    bottom: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s ease;
}

.video-pause-button:hover,
.video-sound-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-pause-button {
    left: 15px;
}

.video-sound-toggle {
    right: 15px;
}

.hidden {
    display: none !important;
}