.accords-bars .progress-bar {
    text-align: right;
    padding-right: 10px;
    margin-bottom: 2px;
}

.perfume-accords .accord-bar {
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 30px;
}

.perfume-accords .progress-bar {
    height: 100%;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.perfume-accords .progress-bar .accord-title {
    position: relative;
    z-index: 2;
}

.accord-title {
    font-size: 14px;
    text-shadow: 0px 0px 3px #000;
}

.perfume-info img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-left: 10px;
    display: inline-block;
}

.perfume-votes {
    text-align: center;
    margin-top: 20px;
}

.perfume-votes .vote-option {
    display: inline-block;
    margin: 10px;
    cursor: pointer;
}

.perfume-votes .vote-option img {
    width: 50px;
    height: 50px;
}

.perfume-votes .progress-bar {
    width: 100px;
    height: 10px;
    margin-top: 13px;
    border-radius: 15px;
}

.perfume-portfolio .owl-item a img {
    height: 200px;
}

.perfume-portfolio button {
    background: var(--main-color) !important;
    color: #fff !important;
    position: absolute;
    top: 43%;
    width: 35px;
    height: 35px;
    font-size: 27px !important;
}

.perfume-portfolio .owl-prev {
    right: -13px;
}

.perfume-portfolio .owl-next {
    left: -13px;
}

.perfume-content {
    height: 375px;
    overflow: hidden;
    position: relative;
    transition: height 0.5s ease;
}

.show-more-btn {
    background: #cccccc33;
    color: #181818;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    display: none;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.perfume-type-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.perfume-type-list li {
    background: #cccccc42;
    padding: 15px 30px;
    font-size: 17px;
    margin: 15px 20px;
    font-weight: normal;
}
.perfume-type-list li a{
    color: #999; 
}

.perfume-type-list li.active {
    background: var(--main-color);
    transform: scale(1.2);
}
.perfume-type-list li.active a{
    color: #fff;
}

.perfurmer-sec img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 100%;
}

.season-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.season-list li {
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: top center;
    text-align: center;
    color: var(--main-text-color);
    font-weight: 700;
    font-size: 17px;
    width: 25%;
    height: 100px;
    line-height: 170px;
    margin-top: 30px;
    filter: grayscale(1);
    opacity: 0.3;
}

#season-spring {
    background-image: url(../img/spring.svg);
    order: 1;
}

#season-summer {
    background-image: url(../img/summer.svg);
    order: 2;
}

#season-autumn {
    background-image: url(../img/fall.svg);
    order: 3;
}

#season-winter {
    background-image: url(../img/winter.svg);
    order: 4;
}

.season-list .selected-season {
    filter: grayscale(0);
    opacity: 1;
}

.perfume-cat-wrap {
    background: linear-gradient(135deg, #f8f9fa, #eceff1);
    border-radius: 12px;
    padding: 15px;
    margin-top: 50px;
}

.perfume-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.perfume-categories a {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 25px;
    background: #ffffff;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.perfume-categories a:hover {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 8px #165e528f;
    transform: scale(1.05);
}

.comments-area {
    background: linear-gradient(135deg, #f8f9fa, #eceff1);
    padding: 50px;
    border-radius: 15px;
    margin: 70px auto 30px;
}

.comments-title {
    color: #2c3e50;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 0;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li {
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar-img {
    border-radius: 50%;
}

.comment-content {
    overflow: hidden;
    flex-grow: 1;
}

.comment-author {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
}

.comment-text {
    margin: 0 0 10px;
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.comment-date {
    font-size: 14px;
    color: #95a5a6;
}

.no-comments {
    color: var(--main-color);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

.comment-reply-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.comment-form {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
}

.comment-notes {
    color: #34495e;
    margin-bottom: 15px;
}

.required-field-message {
    font-weight: bold;
    color: var(--main-color);
}

.comment-form textarea,
.comment-form input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus {
    border-color: var(--main-color);
    outline: none;
}

.comment-form label {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.comment-form .required {
    color: var(--main-color);
    font-weight: bold;
}

.comment-form-cookies-consent {
    margin-top: 10px;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-cookies-consent input {
    margin: 0;
    transform: scale(1.2);
    cursor: pointer;
}

.submit-btn {
    background: var(--main-color);
    border: none;
    padding: 10px 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
}

.submit-btn:hover {
    background: #10423A;
}

.perfume-aside-title {
    font-size: 17px;
    padding-right: 27px;
    font-weight: bold;
}

.perfume-aside-title::before,
.perfume-aside-title::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    position: absolute;
    right: 0;
}

.perfume-aside-title::before {
    background-color: var(--main-color);
    top: 10px;
}

.perfume-aside-title::after {
    background-color: var(--second-color);
    top: 16px;
}

.related-perfumes img {
    height: 190px;
    object-fit: contain;
    display: table;
    margin: auto;
}

.perfume-gender-wrap {
    background-color: #d4af370a;
}

.gender-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.gender-list li {
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center 10px;
    height: 160px;
    text-align: center;
    width: 170px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
    padding-top: 120px;
    opacity: 0.2;
}

#gender-men {
    background-image: url(../img/man.svg);
}

#gender-women {
    background-image: url(../img/woman.svg);
}

#gender-unisex {
    background-image: url(../img/man-and-woman.svg);
}

.gender-list li.selected-gender {
    opacity: 1;
}

.perfume-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.perfume-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.perfume-notes>div:nth-child(1) {
    background-color: #cccccc13;
}

.perfume-notes>div:nth-child(2) {
    background-color: #cccccc18;
}

.perfume-notes>div:nth-child(3) {
    background-color: #cccccc33;
}

.notes-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.note-item {
    width: 124px;
    height: max-content;
}

.note-item img {
    max-width: 85px;
    max-height: 85px;
    object-fit: cover;
    margin-bottom: 10px;
}

.note-item span {
    font-size: 14px;
}

.feedback-item label {
    font-weight: bold;
    color: #111;
    display: block;
    margin-bottom: 8px;
}

.feedback-item input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--main-color) 0%, #eee 100%);
    cursor: pointer;
}

.feedback-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.feedback-item input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.feedback-item .value-display {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

.feedback-averages ul {
    list-style: none;
}

.feedback-averages ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

@media only screen and (max-width: 850px) {
    .comments-area {
        padding: 20px;
    }

    .comment-list li {
        flex-direction: column;
        align-items: center;
    }

    .comment-avatar {
        margin-bottom: 10px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .comment-form {
        padding: 15px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
.perfume-type-list li {
	padding: 10px 27px;
	margin: 10px 10px;
}
.perfume-type-list li.selected {
	transform: scale(1.1);
}
#main-perfume-left-sec{
    display:none;
}
}

@media only screen and (max-width: 500px) {

#main-perfume-left-sec{
    display:block;
}
.gender-list li {
	background-size: 75px;
	height: 130px;
	width: 110px;
	font-size: 15px;
	padding-top: 100px;
}
.perfume-type-list li {
	padding: 7px 20px;
	margin: 10px 10px;
	font-size: 14px;
}
.season-list li {
	background-size: 40px;
	font-size: 13px;
	width: 25%;
	height: 75px;
	line-height: 130px;
	margin-top: 15px;
}
.feedback-averages ul li {
	font-size: 14px;
}
.perfume-portfolio .owl-item a img {
	height: auto;
}
}