﻿#slogan-container {
    background-color: #282828;
    /*height: 60vw;*/ /*DEBUG*/
    /*opacity: 0.5;*/ /*DEBUG*/
    /*margin-top: 3.5vw;*/ /*DEBUG*/
    /*border: 1px solid red;*/ /*DEBUG*/
}

    #slogan-container > div {
        background-color: #00b262;
        width: 88.5%;
        margin-top: 4.5vw;
        margin-right: 5.5vw;
        border-radius: 3vw;
        /* height: 55.5vw;*/ /*DEBUG*/
        overflow: hidden; /*DEBUG*/
        padding-bottom: 3.5vw;
    }

#slogan-1 {
    color: #fefefe;
    font-size: 2.71vw;
    text-align: center;
    font-weight: 400;
    margin-top: 1vw;
}

#slogan-2 {
    color: #272727;
    font-size: 1.45vw;
    text-align: center;
    font-weight: 500;
    margin-top: 1.1vw;
    background-color: white;
    width: 90.5%;
    margin-right: 4.5%;
    border-radius: 3vw;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
}

#open-details-container {
    /* بدون تغییر */
}

/* ✅ دکمه با متن و پیکان جداگانه */
#open-details {
    display: flex;
    flex-direction: row-reverse; /* پیکان سمت راست، متن سمت چپ */
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    margin-right: 42.5%;
    width: 15.5%;
    background-color: #282828;
    font-size: 1.2vw;
    color: white;
    padding: 0.25vw 2vw 0.45vw 2vw;
    box-sizing: border-box;
    border-bottom-right-radius: 1vw;
    border-bottom-left-radius: 1vw;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    top: -0.1vw;
    transition: background-color 0.3s ease;
    direction: rtl;
}

.details-text {
    white-space: nowrap;
}

/* ✅ آیکون پیکان */
.arrow-icon {
    display: inline-block;
    width: 0.75vw;
    height: 0.75vw;
    background-image: url(../../../images/BoxMaker/Desktop/open-slogan-details.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
}

/* ✅ حالت بسته: پیکان به سمت پایین */
#open-details.closed .arrow-icon {
    transform: rotate(0deg);
}

/* ✅ حالت باز: پیکان به سمت بالا */
#open-details.open .arrow-icon {
    transform: rotate(180deg);
}

#details-container {
    margin-top: 1vw;
}

#details {
    background-color: #282828;
    margin-right: 4vw;
    width: calc(100% - 2 * 4vw);
    border-radius: 3vw;
    padding: 1.75vw 2vw 1vw 2vw;
    box-sizing: border-box;
    margin-bottom: 1vw;
}

#details {
    background-color: #282828;
    margin-right: 4vw;
    width: calc(100% - 2 * 4vw);
    border-radius: 3vw;
    padding: 1.75vw 2vw 1vw 2vw;
    box-sizing: border-box;
    margin-bottom: 1vw;
}

#details-title {
    color: #6efd4f;
    font-size: 1.74vw;
    font-weight: bold;
    background-image: url(../../../images/BoxMaker/Desktop/slogan.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 3.75vw;
    margin-bottom: 1vw;
    background-size: auto 72%;
}

#details-content {
    color: white;
    font-size: 1.39vw;
    text-align: justify;
}