:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-rgb: 26, 115, 232;
    --secondary: #F5F5F7;
    --text-main: #1D1D1F;
    --text-secondary: #5f6368;
    --success: #34C759;
    --error: #FF3B30;
    --border: #D2D2D7;
    --bg-page: #FBFBFD;
    --bg-selection: #F0F7FF;
    --bg-payment-selected: linear-gradient(135deg, #F0F7FF 0%, #F5FAFF 100%);
    --avatar-bg: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    --google-blue: #4285F4;
    --google-green: #34A853;
    --google-yellow: #FBBC05;
    --google-red: #EA4335;
}

/* Specific to Kurmer */
.modern-select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

/* Override testimonial item for Kurmer */
.testimonial-item {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    transition: transform 0.2s;
    display: block; /* revert flex */
}

.testimonial-item:hover {
    transform: scale(1.02);
    border-color: var(--border);
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reset or hide elements not in Kurmer testimonial if they are in shared */
.testimonial-item .t-header,
.testimonial-item .t-text {
    display: none;
}
