.feedback-title  {
    text-align: center;
    margin: 5rem 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    background: linear-gradient(120deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    position: relative;
    padding: 20px 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    line-height: 1.2;
}


@media (max-width: 768px)  {
    
    .feedback-title  {
    font-size: 1.8em;
    padding: 15px 5px;
    letter-spacing: 2px;
    gap: 10px;
}

.icon-spin, .icon-pulse  {
    font-size: 0.7em;
}
}


@media (max-width: 480px)  {
    
    .feedback-title  {
    font-size: 1.4em;
    padding: 10px 5px;
    letter-spacing: 1px;
    gap: 8px;
}

.icon-spin, .icon-pulse  {
    font-size: 0.6em;
}
}

.icon-spin  {
    animation: spinIcon 3s linear infinite;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255,215,0,0.7);
    font-size: 0.8em;
}

.icon-pulse  {
    animation: pulseIcon 2s ease-in-out infinite;
    color: #FFA500;
    text-shadow: 0 0 15px rgba(255,165,0,0.7);
    font-size: 0.8em;
}

@keyframes spinIcon  {
    from  {
    transform: rotate(0deg);
}

to  {
    transform: rotate(360deg);
}
}

@keyframes pulseIcon  {
    0%, 100%  {
    transform: scale(1);
    opacity: 0.8;
}

50%  {
    transform: scale(1.2);
    opacity: 1;
}
}

@keyframes shine  {
    0%  {
    background-position: 200% center;
    text-shadow: 0 0 15px rgba(255,215,0,0.5);
}

50%  {
    text-shadow: 0 0 30px rgba(255,215,0,0.8), 0 0 60px rgba(255,165,0,0.4);
}

100%  {
    background-position: -200% center;
    text-shadow: 0 0 15px rgba(255,215,0,0.5);
}
}

.feedback-title::before, .feedback-title::after  {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
}

.feedback-title::before  {
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), rgba(255,215,0,0.8), rgba(255,215,0,0.5), transparent );
}

.feedback-title::after  {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,165,0,0.5), rgba(255,165,0,0.8), rgba(255,165,0,0.5), transparent );
}

.product-price  {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.product-header  {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.order-amount  {
    position: static;
    color: #FFD700;
    font-size: 0.85em;
    padding: 1px 6px;
    border-radius: 3px;
    background: rgba(255,215,0,0.1);
    white-space: nowrap;
    line-height: 1.2;
    width: fit-content;
    display: inline-block;
    min-width: min-content;
    margin-bottom: 4px;
}

.product-header a  {
    flex: 1;
}

.product-header p  {
    margin: 0;
}

.feedback-card  {
    position: relative;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 550px;
    height: 300px;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255,215,0,0.1);
}

.feedback-date  {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
}

.form-group  {
    margin-bottom: 20px;
}

select  {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFD700;
    background: rgba(255,215,0,0.1);
    color: #FFD700;
    border-radius: 4px;
}

select option  {
    background: #1a1a1a;
    color: #FFD700;
}

.product-info-text svg  {
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 0 2px rgba(255,215,0,0.3));
    animation: floatIcon 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatIcon  {
    0%, 100%  {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(255,215,0,0.3));
}

50%  {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 4px rgba(255,215,0,0.6));
}
}

.product-info-text:hover svg  {
    animation: pulseAndSpin 1s ease-in-out;
}

@keyframes pulseAndSpin  {
    0%  {
    transform: scale(1) rotate(0deg);
}

50%  {
    transform: scale(1.2) rotate(180deg);
}

100%  {
    transform: scale(1) rotate(360deg);
}
}


@media (max-width: 768px)  {
    
    .feedback-card  {
    padding-bottom: 30px;
}

.order-amount  {
    font-size: 0.8em;
    padding: 1px 5px;
}
}

.user-name-section  {
    text-align: center;
    margin: 8px 0;
    position: relative;
}

.feedback-header  {
    margin-bottom: 5px;
}

.feedback-content  {
    margin-top: 10px;
}

.feedback-container {
    display: grid;
    grid-template-columns: repeat(3, 550px);
    gap: 20px;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 1024px) {
    .feedback-container {
        grid-template-columns: repeat(2, 550px);
        padding: 20px 10px;
    }
}
.feedback-container .feedback-card:last-child:nth-child(odd) {
    grid-column: unset !important;
    margin: unset !important;
    max-width: unset !important;
}
@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .feedback-card {
        width: 100%;
        height: auto;
        min-height: 250px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feedback-title {
        margin: 3rem 0;
    }
}

@media (max-width: 480px) {
    .feedback-card {
        padding: 10px;
        min-height: 200px;
    }
    
    .feedback-title {
        margin: 2rem 0;
        font-size: 1.5em;
    }
}

.feedbacks-section {
    padding: 0 5% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .feedbacks-section {
        padding: 0 3% !important;
    }
}

@media (max-width: 480px) {
    .feedbacks-section {
        padding: 0 2% !important;
    }
}