
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fffaf4;
    color: #333;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 1.5em;
    color: #A372F2;
}

.topbar img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.style-image {
    width: 100%;
    display: block;
    border-radius: 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 5px 20px;
}

.info-row h2 {
    margin: 0;
    font-size: 1.3em;
    color: #A372F2;
}

.share {
    font-size: 1.3em;
    cursor: pointer;
}

.description {
    padding: 0 20px 20px 20px;
    font-size: 1em;
}

.rating-block {
    text-align: right;
    padding: 10px 20px 80px;
}

.stars {
    font-size: 1.4em;
    color: #C251FF;
    margin-bottom: 5px;
}

.rate-button {
    background-color: #C251FF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1em;
    cursor: pointer;
}

.bottombar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: #e6f2e6;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.bottombar img {
    width: 28px;
    height: 28px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e0f0e0;
    padding: 10px 20px;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 1.3em;
    color: #C251FF;
}

.logo span {
    color: #C251FF;
}

.burger-menu {
    font-size: 1.5em;
    cursor: pointer;
}

.profile-icon {
    font-size: 1.5em;
}

.action-icons {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px 0 20px;
    font-size: 1.5em;
    color: #A372F2;
}

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

.modal-content {
    background-color: #fff;
    margin: 30% auto;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content .stars span {
    font-size: 1.8em;
    cursor: pointer;
    color: #C251FF;
}

.modal-content button {
    margin-top: 15px;
    padding: 8px 16px;
    background: #C251FF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.toast {
    visibility: hidden;
    min-width: 220px;
    background-color: #A0CDB4;
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 15;
}

.toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}
