.shahr-wax-specs-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    direction: rtl;
    font-family: inherit;
    width: 100%;
}
.shahr-wax-specs-box {
	background-color: #ffffff;
	padding: 16px 24px;
	width: 100%;
	box-shadow: 40px -40px 90px 0px #5555550A;
	border-radius: 15px;
}
.shahr-wax-specs-list-wrapper {
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.shahr-wax-specs-list {
    display: flex;
    flex-direction: column;
}
.shahr-wax-spec-row {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}
.shahr-wax-spec-row:last-child {
    border-bottom: none;
}
.shahr-wax-spec-key {
    flex: 0 0 35%;
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    padding-left: 16px;
}
.shahr-wax-spec-val {
    flex: 1;
    color: #333333;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    line-height: 2;
    white-space: pre-line;
}
.shahr-wax-specs-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px;
	background: transparent !important;
	border: 1px solid #927a65 !important;
	color: #927a65 !important;
	border-radius: 8px !important;
	padding: 10px 24px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	flex-direction: row-reverse;
}
.shahr-wax-specs-btn svg {
    transition: transform 0.4s ease;
}
.shahr-wax-specs-btn.active svg {
    transform: rotate(180deg);
}
.shahr-wax-specs-btn:hover {
    background: #927a65;
    color: #ffffff;
}
.shahr-wax-specs-btn:hover svg path {
    stroke: #ffffff;
}