/*panel*/
.panel-class {
    display: flex;
    gap: 2rem;
}

/*menu*/
.menu-panel {
    background: #572D01;
    padding: 28px;
    border-radius: 18px;
    width: 100%;
    max-width: 360px;
}

.menu-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-panel li a.active {
    background: #FFFFFF;
    color: #000000;
}

.menu-panel li a {
    background: transparent;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    border-radius: 14px;
}

.logo-panel {
    width: 100%;
    opacity: 60%;
}


/*profile-panel*/
.profile-panel {
    border: 1px solid #E5E5E5;
    border-radius: 2.75rem;
    padding: 2.25rem;
    box-shadow: 0 8px 24px rgb(0 0 0 / 17%);
    background: #ffffff;
    width: 100%;
}

.profile-panel form div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    margin-bottom: 1.5rem;
}

.profile-panel form label {
    display: flex;
    flex-direction: column;
    justify-content: right;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #572D01;
    gap: 0.75rem;
}

.profile-panel form label input {
    border: 1px solid #474444;
    outline: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
}

.profile-panel form button {
    padding: 0.75rem 6rem;
    border: 0;
}



/*order-cards*/
.order-panel {
    width: 100%;
}
.order-cards-accordion {
    border: 1px solid #572D01;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
}

.order-cards {
    display: flex;
    gap: 3rem;
}

.order-cards-accordion h6 {
    font-weight: 700;
    font-size: 20px;
    color: #572D01;
}
.order-cards-accordion ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #572D01;
}

.order-cards-accordion ul li::marker {
    color: #572D01;
}

.order-cards-accordion ul li {
    font-weight: 400;
    font-size: 12px;
    color: #626262;
    margin-bottom: .75rem;
}

.img-order-div {
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: row-reverse;
}

.img-order-div img {
    height: 100%;
    max-height: 8rem;
    border-radius: 1rem;
}

.img-order-div .main-btn{
    border: 1px solid #572D01;
    color:  #572D01;
    background: #ffffff;
}

.order-cards-accordion {
    list-style: none;
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition:
            max-height 0.6s ease,
            opacity 0.4s ease,
            transform 0.4s ease;
}

.order-cards-accordion.open .accordion-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1rem;
}

.accordion-btn {
    cursor: pointer;
}


/*menu:*/
.menu-panel {
    transition: transform .35s ease;
    bottom: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1300;
    backdrop-filter: blur(3px);
    display:  none;
}

.menu-toggle {
    display: none;
    position: sticky;
    top: 120px;
    z-index: 1000;
    background: #572D01;
    border: none;
    font-size: 26px;
    cursor: pointer;
    height: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    color: #FFFFFF;
}

.menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin: 10px;
}

.dashboard-panel {
    max-width: 70%;
}

.dashboard-header {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    text-align: right;
    color: #572D01;
    margin-bottom: 1.5rem;
}


.btn-nav {
    display: flex;
    gap: 1rem;
}

.btn-nav span {
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.btn-nav span:hover {
    background: #d5d5d5;
    color: #ffffff;
}

.btn-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-btn .main-btn {
    width: fit-content;
    padding: 0.75rem 2rem;
}

.btn-nav .disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.prev-icon {
    transform: rotate(180deg);
}

.m-top-panel {
    margin-top: 2rem;
}