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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

body {
    font-family: 'Anjoman', sans-serif;
    direction: rtl;
    
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background-color: #ffffff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.logo {
    height: 50px;
    border-radius: 15px;
}

.desktop-menu {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: #E8C8A9;
    border-radius: 10px;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.mobile-call-btn {
    display: none;
    background: #8B3A21;
    border-radius: 10px;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
   
    padding: 10px 20px;
    border-radius: 10px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #373737;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 13px;
}

.nav-links li img {
    width: 20px;
    height: 20px;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    background-color: #F2D2A9;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link img {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

.order-link {
    padding: 7px 20px;
    background-color: #8B3A21;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #E8C8A9;
    padding: 4px 10px;
    border-radius: 10px;
}

.social-icons a {
    display: inline-block;
    text-decoration: none;    
    margin-top: 4px;
}

.social-icons img {
    width: 17px;
    height: 17px;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Media query for mobile slider height */
@media (max-width: 768px) {
    .slider {
        height: 50vh;
    }
}

.slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

/* Slide background images */
.slide-image-1, .slide-image-2, .slide-image-3, .slide-image-4 {
    background-image: url('../images/slide_main.jpeg');
}

.slide-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.slide-indicators {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    gap: 12px;
    background-color: white;
    padding: 61px 12px 32px 12px;
    border-radius: 137px;
}
.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E8C8A9;
    cursor: pointer;
    transition: all 0.3s ease;
    top: -29px;
    position: relative;
}

.indicator.active {
    background-color: #8B3A21;
}

.slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.arrow.next-arrow img{
    margin-right: 60px;
    width: 40px;
}
.arrow.prev-arrow img{
    margin-left: 60px;
    width: 40px;
}
.arrow {
    width: 93px;
    height: 40px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Override width for ceremonies arrows specifically */
.ceremonies-arrows .arrow {
    width: 40px;
}



/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    z-index: 200;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-contact-links {
    margin-top: 30px;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
}

/* Media Queries */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .contact-links {
        display: none;
    }
    
    .header-container {
        grid-template-columns: auto 1fr;
        display: grid;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-container {
        grid-column: 2;
        text-align: left;
        justify-self: end;
    }
    
    .mobile-buttons {
        grid-column: 1;
        display: flex;
        gap: 10px;
        justify-self: start;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-call-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.section-title h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.title-icon {
    width: 60px;
   
    padding: 8px;
    border-radius: 10px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    align-items: baseline;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

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

.service-title {
    width: 100%;
    background-color: #E8C8A9;
    border-radius: 0 0 20px 20px;
    padding: 15px 20px;
    text-align: center;
    position: relative;
}

.service-title h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.service-decoration {
    width: 60px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.divider-line {
    flex: 1;
    height: 6px;
    background-color: #E8C8A9;
}

.divider-decoration {
    width: 80px;
    height: auto;
    margin: 0 20px;
}

@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
        width: 80%;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 50px;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-content {
    flex: 1;
    padding-top: 20px;
}

.section-title-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

.section-title-right h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    order: 2;
}

.section-title-right .title-icon {
    width: 60px;
    order: 1;
}

.about-text {
    overflow: visible;
    background-image: url('../images/PatternAboutUs.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 20px;
    max-width: 100%;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.vector-right {
    position: absolute;
    top: 40%;
    right: 0;
    width: 100px;
    height: auto;
  
}

.vector-mobile {
    display: none;
    width: 80px;
    height: auto;
    margin: 20px auto 0;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
        width: 100%;
    }

    
    .about-content {
        padding-top: 0;
    }
    
    .section-title-right {
        justify-content: center;
    }
    
    .desktop-vector {
        display: none;
    }
    
    .vector-mobile {
        display: block;
    }
}

/* Ceremonies Section */
.ceremonies-section {
    padding: 36px 0;
    background-color: rgba(234, 190, 143, 1);
    position: relative;
}

.ceremonies-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px;
}

.ceremony-cards {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ceremony-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ceremony-slide {
    display: none;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.ceremony-slide.active {
    display: flex;
}

.card {
 
    overflow: hidden;
 
    transition: all 0.3s ease;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-left, .card-right {
    width: 25%;
}

.card-center {
    width: 40%;
}

.vector-left, .vector-right {
    position: absolute;
    width: 80px;
    height: auto;
 
}

.vector-left {
    left: 0;
    transform: rotate(180deg);
}

.vector-left img{
    width: 45px;
}

.vector-right img{
    width: 45px;
}

.vector-right {
    right: 0;
}

.ceremonies-arrows {
    position: absolute;
    width: 100%;
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -50px;
    z-index: 5;
    pointer-events: none;
}

.ceremonies-arrows .arrow {
    pointer-events: auto;
   
    margin: 0 -20px;
}

.ceremonies-indicators {
   
    bottom: auto;
    margin-top: -2px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
}

.ceremonies-indicators .indicator {
    background-color: rgba(139, 58, 33, 0.3);
}

.ceremonies-indicators .indicator.active {
    background-color: #8B3A21;
}

@media (max-width: 992px) {
    .ceremonies-arrows .arrow {
        margin: 0;
    }
    
    .ceremony-slide {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .card-left, .card-right {
        display: none;
    }
    
    .card-center {
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .vector-left, .vector-right {
        display: none;
    }
    
    .ceremonies-section::after {
        content: '';
        background: url('../images/VectorWhite.png') no-repeat center;
        background-size: contain;
        width: 60px;
        height: 30px;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.5;
    }
    
    .ceremonies-section {
        width: 100%;
        max-width: 100%;
     
    }
    
    .ceremonies-slider {
        width: 100%;
        max-width: 100%;
    }
}

/* Welcome Section */
.welcome-section {
    padding:25px 0;
    background-color: rgba(173, 145, 108, 1);
    position: relative;
 
    margin-top: 78px;
}

.welcome-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.welcome-container
{
    overflow: visible;
}
.welcome-content {
    flex: 1;
    padding-right: 140px;
    color: #fff;
}

.welcome-content .section-title-right h2 {
    color: rgba(72, 72, 72, 1);
    font-size: 25px;
    margin-bottom: 0;
}

.welcome-content .title-icon {
    background: transparent;
}

.welcome-text {
    line-height: 1.8;
    margin-bottom: 40px;
          color: rgba(255, 235, 208, 1);
}

.welcome-text p {
    margin-bottom: 15px;
    font-size: 18px;
}

.welcome-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 width: fit-content;
 margin: 0 24px;
}

.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #333;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.instagram-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
}

.instagram-button img {
    width: 20px;
    height: 20px;
}

.vector-mini {
    width: 30px;
    height: auto;
    position: absolute;
    bottom: -5px;
}

.vector-mini-right {
    right: -34px;
    transform: scaleX(-1);
}

.vector-mini-left {
    left: -35px;
    transform: scaleX(1);
}

.welcome-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mobiles-image {
    max-width: 115%;
    height: auto;
    margin-top: -130px;
}

.welcome-vectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vector-welcome {
    position: absolute;
    opacity: 1;
    width: 300px;
    height: auto;
}

.vector-welcome-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.vector-welcome-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 992px) {
    .welcome-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-content {
        padding-right: 0;
        margin-bottom: 40px;
        order: 2;
    }
    
    .welcome-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .welcome-content .section-title-right {
        justify-content: center;
    }
    
    .welcome-text {
        padding: 0 20px;
    }
    
    .welcome-text p {
        font-size: 16px;
    }
    
  
    
    .mobiles-image {
        max-width: 80%;
    }
    
    .welcome-section {
        padding: 50px 0;
    }
}

.vector-welcome {
    width: 60px;
}

.vector-welcome-right {
    right: 0px;
}

.vector-welcome-left {
    left: 0px;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
   
    position: relative;
}

.contact-section .container{
    background-color: rgba(255, 247, 238, 1);
    width: 1200px;
    padding: 20px;
    border-radius: 20px;
}

.contact-form-container {
    max-width: 900px;
    margin: 30px auto 50px;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.form-input {
    padding: 14px 20px;
    border: 1px solid #E8C8A9;
    border-radius: 10px;
    font-family: 'Anjoman', sans-serif;
    font-size: 16px;
    width: 300px;
    background-color: #fff;
    color: #333;
    outline: none;
    text-align: right;
}

.form-input::placeholder {
    color: #888;
}

.submit-btn {
    background-color: #E8C8A9;
    color: #333;
    border: none;
    border-radius: 10px;
    padding: 14px 60px;
    font-family: 'Anjoman', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #d8b696;
}

.bottom-vector {
    text-align: center;
    margin-top: 20px;
}

.vector-decoration {
    width: 138px;
    margin: 0 auto;
}
.welcome-bottom-vector{
    display: none;
}
@media (max-width: 992px) {
    .welcome-bottom-vector{
        display: block;
    }
    .contact-form {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .welcome-vectors{
        display: none !important;
    }
    .welcome-button-container{
        margin: 0 auto;
    }
    
    .form-input {
        width: 100%;
    }

    .contact-section .container {
     
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .bottom-vector {
        margin-top: 40px;
    }
}

/* Comments Section */
.comments-section {
    padding: 7px 0;
    padding-top: 40px;
    position: relative;
}

.comments-section .container {
    width: 1300px;
    padding: 20px;
    border-radius: 20px;
}

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

.comment-main {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-image {
    width: 100%;
    height: auto;
    display: block;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
}

.comment-cafe-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.comment-reactions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comment-likes, .comment-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-heart, .icon-comment {
    width: 20px;
    height: 20px;
}

.comments-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comment-thumbnail {
    width: 220px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comment-thumbnail.active {
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.thumbnail-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
}

.thumbnail-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.thumbnail-reactions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thumbnail-likes, .thumbnail-comments {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
}

.icon-heart-small, .icon-comment-small {
    width: 16px;
    height: 16px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E8C8A9;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8B3A21;
}

@media (max-width: 992px) {
    .comments-section .container {
        width: 100%;
    }
    
    .comment-thumbnail {
        width: 130px;
    }
    
    .thumbnail-image {
        height: 100px;
    }
    
    .thumbnail-info {
        padding: 8px 10px;
    }
    
    .thumbnail-info h4 {
        font-size: 12px;
    }
    
    .thumbnail-reactions {
        gap: 6px;
    }
    
    .thumbnail-likes, .thumbnail-comments {
        font-size: 10px;
    }
    
    .icon-heart-small, .icon-comment-small {
        width: 12px;
        height: 12px;
    }
}

/* Footer */
.footer {
    background-color: rgba(132, 109, 93, 1);
    color: #fff;

    position: relative;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 40px;
    margin-bottom: 40px;
 
    width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 60px 0 0;
}

.footer-title {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: flex-end;
}

.footer-title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-title-icon {
    width: 35px;
    height: auto;
}

.footer-contact-list {
    list-style: none;
    padding-right: 45px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact-list li img {
    width: 20px;
    height: 20px;
}

.footer-nav-list {
    list-style: none;
    padding-right: 45px;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-nav-list li a:hover {
    opacity: 0.8;
}

.footer-nav-list li a img {
    width: 20px;
    height: 20px;
}

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

.footer-logo img {
    width: 163px;
    margin-top: -8px;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.footer-social {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-block;
}

.social-links a img {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

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

.footer-copyright {
    background-color: rgba(112, 91, 77, 1);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}
.logo-column{
    padding: 0;
}
@media (max-width: 992px) {
    .footer-container {
        width: 100%;
    }
  
    .footer-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .about-column {
        margin-bottom: 20px;
    }
    
    .links-column {
        margin-bottom: 20px;
    }
    
    .footer-nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-nav-list li {
        margin-bottom: 0;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-description {
        padding: 0 20px;
    }
    
    .footer-contact-list {
        padding: 0 20px;
    }
}



.comments-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comments-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.comment-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
   
    width: 100%;
    max-width: 320px;
}

.comment-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.comment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background: linear-gradient(rgba(234, 190, 143, 0.1), rgba(234, 190, 143, 1));
    pointer-events: none;

    opacity: 0.7;
}

.comment-image img,
.comment-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comment-video {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.comment-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.comment-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.comment-stats {
    display: flex;
    gap: 15px;
}

.comment-likes, .comment-comments {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #8B3A21;
}

.comment-likes img, .comment-comments img {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .comments-slider {
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    
    .comment-slide {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        justify-content: center;
    }
    
    .comment-slide.active {
        display: flex;
        opacity: 1;
    }
    
    .comments-indicators {
        display: flex;
    }
    
    .comment-content {
        padding: 15px;
    }
    
    .comment-title {
        font-size: 16px;
    }
    
    .comment-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .comment-stats {
        gap: 15px;
    }
    
    .comment-likes, .comment-comments {
        font-size: 12px;
    }
    
    .comment-likes img, .comment-comments img {
        width: 16px;
        height: 16px;
    }
}


.comment-image{
    border-radius: 25px;
    height: 240px;
}

/* Comments Styles */
.comments-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.comments-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.comment-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E5CBAF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-indicator.active {
    background-color: #8B3A21;
}

.comments-slider{
    margin:  0 auto;
}