/* Multi-step Feedback System Styling */
:root {
    --feedback-primary: #8bc34a; /* Vibrant matcha green */
    --feedback-dark: #5a8631; /* Darker matcha shade */
    --feedback-light: #c5e1a5; /* Light matcha green */
    --feedback-cream: #f9f7e8; /* Cream color for contrast */
    --feedback-accent: #d4e157; /* Lime accent */
    --feedback-secondary: #43a047; /* Forest green */
    --health-blue: #4fc3f7; /* Refreshing blue */
    --energy-orange: #ffb74d; /* Energy orange */
}

body{
    color: var(--feedback-primary);
}

/* Base styling */
body.bg-main ,#page.bg-main{
    background: linear-gradient(135deg, var(--feedback-light) 0%, var(--feedback-primary) 100%) ;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23aed581' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--feedback-light) 0%, var(--feedback-primary) 100%);
    background-attachment: fixed;

}

/* Logo area */
.main-logo {
    text-align: center;
    padding: 1.5rem 0;
}

.main-logo img {
    max-width: 180px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.main-logo img:hover {
    transform: scale(1.05);
}

/* Feedback container */
.feedback-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-header {
    text-align: center;
    margin-bottom: 30px;
}

.feedback-header h1 {
    font-weight: 700;
    color: var(--feedback-dark) !important;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.feedback-header h1:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -10px;
    left: 20%;
    background: var(--feedback-accent);
    border-radius: 2px;
}

/* Card styling */
.feedback-card {
    background-color: var(--feedback-cream);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
}

.feedback-card:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--feedback-primary) 0%, var(--feedback-light) 100%);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(10px);
}

.feedback-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--feedback-dark);
}

.feedback-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Form elements */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: var(--feedback-dark);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 18px;
    border-left: 4px solid var(--feedback-primary);
    padding-left: 10px;
}

[dir="rtl"] .form-label {
    border-right: 4px solid var(--feedback-dark);
    border-left: 0;
    padding-left: 0;
    padding-right: 10px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--feedback-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--feedback-primary);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.25);
    outline: none;
}

.required-mark {
    color: #ff0000;
}

/* Button styling */
.btn-submit {
    background: linear-gradient(45deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
    background: linear-gradient(45deg, var(--feedback-primary) 0%, var(--feedback-accent) 100%);
}

/* Progress steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--feedback-light);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--feedback-light);
    color: var(--feedback-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--feedback-primary);
    color: white;
    transform: scale(1.2);
}

.step.completed .step-number {
    background-color: var(--feedback-secondary);
    color: white;
}

.step.completed .step-number:after {
    content: '✓';
}

.step-label {
    font-size: 14px;
    color: var(--feedback-dark);
    font-weight: 500;
}

/* Decorative elements */
.leaf-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.leaf-decoration.left {
    top: -20px;
    left: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a8631'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/svg%3E");
    transform: rotate(-30deg);
}

.leaf-decoration.right {
    top: -20px;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a8631'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/svg%3E");
    transform: rotate(30deg) scaleX(-1);
}

/* Matcha benefits section */
.matcha-benefits {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--feedback-light);
    margin-bottom: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}

.benefit-icon.energy {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a8631'%3E%3Cpath d='M11,15H6L13,1V9H18L11,23V15Z'/%3E%3C/svg%3E");
}

.benefit-icon.antioxidants {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a8631'%3E%3Cpath d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12,6A6,6 0 0,0 6,12A6,6 0 0,0 12,18A6,6 0 0,0 18,12A6,6 0 0,0 12,6M12,8A4,4 0 0,1 16,12A4,4 0 0,1 12,16A4,4 0 0,1 8,12A4,4 0 0,1 12,8Z'/%3E%3C/svg%3E");
}

.benefit-icon.focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a8631'%3E%3Cpath d='M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z'/%3E%3C/svg%3E");
}

/* Language switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--feedback-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-switcher:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* RTL support */
html[dir="rtl"] .language-switcher {
    left: 20px;
    right: auto;
}

/* Item selection grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.item-card {
    background-color: #fff9c4; /* Light yellow background for incomplete items */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 15px 10px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffd54f; /* Amber border for incomplete items */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 160px;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd54f 0%, #ffb300 100%); /* Amber gradient for incomplete items */
    border-radius: 12px 12px 0 0;
}

.item-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238bc34a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 195, 74, 0.3);
}

.item-card.completed {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border: 2px solid var(--feedback-primary);
}

.item-card.completed::before {
    background: linear-gradient(90deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
}

.completed-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(45deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background-color: rgba(139, 195, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Different icon background for incomplete items */
.item-card:not(.completed) .item-icon {
    background-color: rgba(255, 179, 0, 0.1);
}

.item-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--feedback-primary);
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--feedback-dark);
    position: relative;
    z-index: 1;
}

.item-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Button styling for items */
.btn-rate {
    background: linear-gradient(45deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(139, 195, 74, 0.2);
    position: relative;
    z-index: 1;
    min-width: 80px;
}

.btn-rate:hover {
    background: linear-gradient(45deg, var(--feedback-primary) 0%, var(--feedback-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(139, 195, 74, 0.3);
    text-decoration: none;
    color: white;
}

.btn-edit {
    background: linear-gradient(45deg, var(--feedback-accent) 0%, var(--feedback-secondary) 100%);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.2);
}

/* Style for incomplete items button */
.item-card:not(.completed) .btn-rate {
    background: linear-gradient(45deg, #ffb300 0%, #ffa000 100%);
    box-shadow: 0 3px 8px rgba(255, 179, 0, 0.2);
}

.item-card:not(.completed) .btn-rate:hover {
    background: linear-gradient(45deg, #ffa000 0%, #ff8f00 100%);
    box-shadow: 0 6px 15px rgba(255, 179, 0, 0.3);
}

.btn-edit:hover {
    background: linear-gradient(45deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

/* Progress bar */
.progress-container {
    margin-bottom: 35px;
    padding: 0 10px;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(139, 195, 74, 0.3);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite linear;
    opacity: 0.7;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Choice options */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.form-check {
    position: relative;
}

.form-check-input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* Flat box style for choice options */
.form-check-label {
    display: block;
    padding: 8px 12px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-align: center;
}

/* Only apply star styling to rating labels */
.rating-stars .form-check-label {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 28px;
    color: #cccccc;
}

.rating-stars .form-check-label::before {
    content: '\2605'; /* Star symbol */
    position: relative;
    display: inline-block;
}

/* Make sure non-rating labels don't have the star */
.form-check:not(.rating-stars .form-check) .form-check-label::before {
    content: none;
}

/* Style for non-rating labels */
.form-check-label:not(.rating-stars .form-check-label):hover {
    background-color: #f0f7ed;
    border-color: #8bc34a;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    color: #2e7d32;
}

.form-check-input[type="radio"]:checked + .form-check-label:not(.rating-stars .form-check-label) {
    background-color: #e8f5e9;
    border-color: var(--feedback-primary);
    color: var(--feedback-dark);
    font-weight: 600;
}

.rating-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 15px;
}
[dir="rtl"] .rating-container {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.form-check {
    margin: 0;
    padding: 0;
}

.form-check-input[type="radio"] {
    display: none;
}

.rating-star {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    transition: all 0.3s ease;
    position: relative;
}

.rating-star:hover {
    transform: scale(1.1);
}

.rating-star.active, .form-check-input[type="radio"]:checked + .form-check-label {
    color: #FFD700;
}

.form-check-label {
    cursor: pointer;
    font-size: 20px;
    display: inline-block;
    color:#6c757d;
    transition: all 0.3s ease;
    position: relative;
}

.form-check-label::before {
    content: '★';
    position: relative;
    display: inline-block;
}

.form-check-label:hover {
    transform: scale(1.1);
    color: #FFD700;
}

.form-check-label:hover ~ .form-check-label {
    color: #ddd;
}

.form-check-input[type="radio"]:checked + .form-check-label,
.form-check-input[type="radio"]:checked + .form-check-label ~ .form-check-label {
    color: #FFD700;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Drink title in feedback form */
.item-details .item-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--feedback-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.item-details .item-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--feedback-accent);
    opacity: 0.5;
}

.item-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.item-details {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.item-details::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--feedback-secondary) 0%, var(--feedback-primary) 100%);
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feedback-card {
        padding: 20px;
    }

    .matcha-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        margin-bottom: 15px;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .item-card {
        padding: 15px 10px;
        min-height: 160px;
    }
}
