<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* review-style-v2.css - Complete rewrite for flexible review system */

:root {
    --primary-color: #8b4513;
    --secondary-color: #d2691e;
    --accent-color: #f4a460;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --error-color: #cc0000;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Container */
.review-container {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 70px;
}

/* Section styling */
.review-section {
    background-color: white;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

/* Step header with back button */
.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.back-button {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

    .back-button:hover {
        background-color: rgba(139, 69, 19, 0.1);
    }

/* Location help text */
.location-help-text {
    background-color: rgba(139, 69, 19, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 4px;
    text-align: center;
}

    .location-help-text p {
        margin: 0;
        margin-bottom: 8px;
    }

        .location-help-text p:last-child {
            margin-bottom: 0;
        }

.loading-spinner {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Review options */
.review-options {
    margin-top: 20px;
}

.review-options-container {
    text-align: center;
    padding: 20px;
}

    .review-options-container h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .review-options-container p {
        color: #666;
        margin-bottom: 20px;
    }

.review-option-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.review-option-btn {
    display: flex;
    align-items: center;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .review-option-btn:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .review-option-btn.primary {
        border-color: var(--primary-color);
        background-color: rgba(139, 69, 19, 0.05);
    }

.option-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-text {
    flex-grow: 1;
}

.option-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.option-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* Venue info */
.venue-info {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.venue-name {
    color: var(--primary-color);
    margin-bottom: 4px;
}

.venue-address {
    color: #666;
    font-size: 0.9rem;
}

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

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        color: #555;
    }

        .form-group label.required::after {
            content: "*";
            color: var(--error-color);
            margin-left: 4px;
        }

.form-input,
.textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 16px;
    box-sizing: border-box;
    background-color: white;
    transition: border-color 0.2s;
}

    .form-input:focus,
    .textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }

.textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* Form row for side-by-side inputs */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

/* Form sections */
.form-section {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 16px;
}

    .form-section h4 {
        margin-top: 0;
        margin-bottom: 12px;
        color: var(--secondary-color);
        font-size: 1rem;
    }

.form-scrollable {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 20px;
}

/* Photo upload */
.photo-upload {
    background-color: #f9f6f2;
    border: 2px dashed #d6cfc7;
    border-radius: var(--radius);
    padding: 0;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

    .photo-upload:hover {
        background-color: #f5f0e8;
        border-color: #c9bcab;
    }

.photo-upload-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

    .photo-upload-icon::before {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: white;
    }

    .photo-upload-icon::after {
        content: "";
        position: absolute;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--primary-color);
    }

.photo-upload span {
    font-size: 0.95rem;
    color: #7a654a;
}

.photo-preview {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 8px;
    display: none;
    background-color: #f5f5f5;
}

    .photo-preview.has-image {
        display: block;
    }

    .photo-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.retake-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(139, 69, 19, 0.85);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .retake-button:hover {
        background-color: rgba(139, 69, 19, 1);
    }

/* Rating slider */
.rating-container {
    margin-top: 12px;
}

.rating-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background-color: #ddd;
    border-radius: 4px;
    outline: none;
}

    .rating-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background-color: var(--primary-color);
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .rating-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background-color: var(--primary-color);
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

.rating-display {
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Product review cards */
.product-review-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-number {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.remove-product-btn {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}

    .remove-product-btn:hover {
        opacity: 0.7;
    }

/* Product search */
.product-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: var(--shadow);
    margin-top: 4px;
}

.search-result-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

    .search-result-item:hover {
        background-color: #f9f5f1;
    }

    .search-result-item:last-child {
        border-bottom: none;
    }

.result-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.result-details {
    font-size: 0.8rem;
    color: #666;
}

.result-producer {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 2px;
}

.add-new-product {
    background-color: #f0f8ff;
    color: var(--primary-color);
    font-weight: 500;
}

/* Product details section */
.product-details {
    margin-top: 16px;
}

/* Buttons */
.primary-button,
.secondary-button {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
}

    .primary-button:hover {
        background-color: var(--secondary-color);
    }

    .primary-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

.secondary-button {
    background-color: #f0f0f0;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .secondary-button:hover {
        background-color: var(--primary-color);
        color: white;
    }

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

    .form-actions .secondary-button {
        flex: 1;
    }

    .form-actions .primary-button {
        flex: 2;
    }

/* Review summary */
.summary-section {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

    .summary-section h3 {
        color: var(--primary-color);
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

.summary-venue {
    display: flex;
    gap: 16px;
    align-items: start;
}

.summary-venue-photo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    background-color: #ddd;
    flex-shrink: 0;
    overflow: hidden;
}

    .summary-venue-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.summary-venue-info {
    flex-grow: 1;
}

.summary-venue-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.summary-venue-rating {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.summary-venue-review {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.summary-product {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: white;
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.summary-product-photo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background-color: #ddd;
    flex-shrink: 0;
    overflow: hidden;
}

    .summary-product-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.summary-product-info {
    flex-grow: 1;
}

.summary-product-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.summary-product-details {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.summary-product-rating {
    color: var(--primary-color);
    font-weight: 600;
}

.summary-product-quicktake {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Category selection */
.category-selection {
    margin-bottom: 20px;
}

    .category-selection label {
        display: block;
        margin-bottom: 12px;
        font-weight: 500;
        text-align: center;
    }

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

@media (min-width: 480px) {
    .category-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: var(--dark-color);
    min-height: 80px;
}

    .category-btn:hover {
        border-color: var(--primary-color);
        background-color: rgba(139, 69, 19, 0.05);
    }

    .category-btn.selected {
        border-color: var(--primary-color);
        background-color: rgba(139, 69, 19, 0.1);
    }

.category-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Product search section */
.product-search-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.search-input-wrapper {
    position: relative;
}

.search-status {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.search-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Selected product info */
.selected-product-info {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 16px;
}

.selected-product-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.selected-product-details {
    font-size: 0.9rem;
    color: #666;
}

.selected-product-producer {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 4px;
}

/* Product creation form */
.product-creation-form {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 16px;
}

    .product-creation-form h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
    }

/* Producer search */
.producer-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: var(--shadow);
    margin-top: 4px;
}

.producer-result-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

    .producer-result-item:hover {
        background-color: #f9f5f1;
    }

    .producer-result-item:last-child {
        border-bottom: none;
    }

.producer-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.producer-location {
    font-size: 0.85rem;
    color: #666;
}

.producer-type {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-left: 8px;
}

.add-new-producer {
    background-color: #f0f8ff;
    color: var(--primary-color);
    font-weight: 500;
}

.selected-producer-info {
    background-color: #e8f4e8;
    border: 1px solid #4CAF50;
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 8px;
    font-size: 0.9rem;
}

    .selected-producer-info .remove-producer {
        float: right;
        color: #666;
        cursor: pointer;
        font-size: 0.8rem;
    }

/* IBU field visibility */
.ibu-field {
    display: none;
}

/* Loading states */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.loading-message {
    text-align: center;
    color: var(--primary-color);
}

    .loading-message .spinner {
        font-size: 2rem;
        animation: spin 1s linear infinite;
        display: block;
        margin-bottom: 10px;
    }

/* Year dropdown */
.product-year option {
    padding: 8px;
}

/* Variant suggestions */
.variant-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.variant-chip {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .variant-chip:hover {
        background-color: var(--accent-color);
        border-color: var(--primary-color);
    }

/* No results state */
.no-products-found {
    text-align: center;
    padding: 20px;
    color: #666;
}

    .no-products-found .icon {
        font-size: 3rem;
        margin-bottom: 12px;
        opacity: 0.5;
    }

.create-product-btn {
    margin-top: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

    .create-product-btn:hover {
        background-color: var(--secondary-color);
    }

/* Style filter dropdown */
.product-style-filter {
    margin-bottom: 16px;
}

/* Notification */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    border-radius: var(--radius);
    color: white;
    font-weight: bold;
    z-index: 1050;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 80%;
    min-width: 250px;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.notification.info {
    background-color: rgba(52, 152, 219, 0.95);
}

.notification.success {
    background-color: rgba(46, 204, 113, 0.95);
}

.notification.error {
    background-color: rgba(231, 76, 60, 0.95);
}

.notification.warning {
    background-color: rgba(243, 156, 18, 0.95);
}

/* Hidden state */
.hidden {
    display: none !important;
}

/* Step transitions */
.review-step {
    display: none;
}

    .review-step.active {
        display: block;
        animation: slideIn 0.3s forwards;
    }

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Venue type buttons */
.venue-type-selection {
    padding: 20px;
    text-align: center;
}

    .venue-type-selection h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

.venue-type-options h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.type-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.type-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background-color: white;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    min-height: 80px;
}

    .type-button:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Responsive design */
@media (max-width: 480px) {
    .review-container {
        padding: 10px;
    }

    .review-section {
        padding: 12px;
    }

    .type-buttons {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
        margin-bottom: 16px;
    }
}

@media (min-width: 600px) {
    .review-option-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 600px;
    }

    .review-option-btn {
        flex: 1;
        min-width: 160px;
        max-width: 180px;
        flex-direction: column;
        text-align: center;
    }

    .option-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* Add these styles to review-style-v2.css */

/* Beverage prompt after venue review */
.beverage-prompt {
    text-align: center;
    padding: 40px 20px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prompt-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Producer context in search */
.producer-context {
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.context-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.context-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Selected category context */
.selected-category-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    border-radius: var(--radius);
    padding: 8px 12px;
    margin-bottom: 12px;
}

    .selected-category-context span {
        font-weight: 500;
        color: var(--primary-color);
    }

.change-category-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .change-category-btn:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Prominent add new product */
.add-new-product.prominent {
    background-color: rgba(139, 69, 19, 0.05);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.add-new-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.add-new-product.prominent .result-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Results separator */
.results-separator {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    padding: 8px;
    background-color: #f5f5f5;
    margin: 8px 0;
}

/* Current producer highlight */
.search-result-item.current-producer {
    background-color: rgba(139, 69, 19, 0.05);
    border-left: 3px solid var(--primary-color);
}

/* Producer locked indicator */
.producer-locked {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Search result count */
.search-result-count {
    text-align: center;
    padding: 12px;
    color: #666;
    font-size: 0.85rem;
    background-color: #f9f9f9;
}

/* Mobile optimizations for search */
@media (max-width: 480px) {
    /* Auto-focus search input */
    .product-search-section:not(.hidden) .product-search {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Sticky continue button */
    .form-actions {
        position: sticky;
        bottom: 0;
        background-color: white;
        padding: 16px;
        margin: 0 -16px -16px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        z-index: 5;
    }

    /* Compact product results on mobile */
    .search-result-item {
        padding: 10px 12px;
    }

    .result-name {
        font-size: 0.95rem;
    }

    .result-details,
    .result-producer {
        font-size: 0.75rem;
    }

    /* Full-width prompt buttons on mobile */
    .prompt-buttons {
        width: 100%;
        max-width: none;
        padding: 0 20px;
    }
}

/* Faster style filter dropdown */
.product-style-filter {
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    font-weight: 500;
}

    .product-style-filter:focus {
        border-color: var(--primary-color);
    }

/* Quick filter buttons for premium venues */
.quick-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.quick-filter-btn {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

    .quick-filter-btn:hover {
        border-color: var(--primary-color);
    }

    .quick-filter-btn.active {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

/* Narrow search helpers */
.search-helpers {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.search-helper-btn {
    flex: 1;
    padding: 8px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .search-helper-btn:hover {
        background-color: #e8e8e8;
    }

/* Add these styles to review-style-v2.css for the producer-first flow */

/* Selected category chip */
.selected-category-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    margin: 12px 0;
}

.category-label {
    font-weight: 500;
    margin-right: 12px;
}

.change-category-btn,
.change-producer-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .change-category-btn:hover,
    .change-producer-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* Producer selection section */
.producer-selection-section {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 16px;
    margin: 12px 0;
}

.section-header h4 {
    margin: 0 0 4px 0;
    color: var(--secondary-color);
}

.helper-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 12px 0;
}

/* Producer search wrapper */
.producer-search-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.producer-main-search {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Producer result items */
.producer-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

    .producer-result-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.producer-info {
    flex: 1;
}

.producer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.producer-location {
    font-size: 0.85rem;
    color: #666;
}

.producer-stats {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 2px;
}

.select-arrow {
    color: #999;
    font-size: 1.2rem;
}

/* No producers found */
.no-producers-found {
    text-align: center;
    padding: 24px;
    color: #666;
}

    .no-producers-found .icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
        opacity: 0.5;
    }

.suggest-producer-btn {
    margin-top: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
}

/* Selected producer display */
.selected-producer-display {
    margin-top: 12px;
}

.selected-producer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 12px;
}

.producer-details .producer-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.producer-details .producer-location {
    font-size: 0.85rem;
    color: #666;
}

.change-producer-btn {
    background: var(--primary-color);
    border: none;
}

/* Product search section updates */
.product-search-section .section-header {
    margin-bottom: 16px;
}

.product-search-section .form-group {
    margin-bottom: 12px;
}

/* Results separator */
.results-separator {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    padding: 8px;
    background-color: #f5f5f5;
    margin: 8px 0;
}

/* Product result year */
.result-year {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 2px;
}

/* Producer locked in creation form */
.producer-locked {
    display: inline-block;
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .producer-selection-section,
    .product-search-section {
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 0;
    }

    .producer-result-item {
        border-left: none;
        border-right: none;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

        .producer-result-item:last-child {
            border-bottom: 1px solid #e0e0e0;
        }
}

/* Loading states */
.producer-search-wrapper .search-status,
.product-search-section .search-status {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Smooth transitions */
.producer-selection-section,
.product-search-section {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category selected state */
.product-review-card.category-selected .category-selection {
    display: none;
}

/* Improve touch targets for mobile */
.producer-result-item,
.search-result-item {
    min-height: 48px; /* Google's recommended touch target size */
}

/* Fix product creation form for pre-selected producer */
.product-creation-form .selected-producer-info {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: var(--radius);
    padding: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #2e7d32;
}
/* Simplified search results that work on both mobile and desktop */

/* Search results container - inline style that pushes content down */
.product-search-results,
.producer-search-results {
    /* Remove absolute positioning - use static flow instead */
    position: static;
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    margin-top: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Scrollable with reasonable max height */
    max-height: 280px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    /* Remove the ::after padding - not needed with inline layout */
    .product-search-results::after,
    .producer-search-results::after {
        display: none;
    }

/* Search result items */
.search-result-item,
.producer-result-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
    min-height: 48px;
    display: flex;
    align-items: center;
}

    .search-result-item:hover,
    .producer-result-item:hover {
        background-color: #f8f8f8;
    }

    .search-result-item:last-child,
    .producer-result-item:last-child {
        border-bottom: none;
    }

    /* Add new product - make it stand out */
    .search-result-item.add-new-product.prominent {
        background-color: #f0f8ff;
        border: 2px solid var(--primary-color);
        margin: 8px;
        border-radius: var(--radius);
    }

        .search-result-item.add-new-product.prominent:hover {
            background-color: #e6f3ff;
        }

/* Results separator */
.results-separator {
    padding: 8px 16px;
    background-color: #f5f5f5;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* No results found */
.no-producers-found {
    padding: 32px 16px;
    text-align: center;
    color: #666;
}

/* Make the product search section more contained */
.product-search-section {
    background-color: #f9f9f9;
    border-radius: var(--radius);
    padding: 16px;
    margin: 12px 0;
}

/* Ensure proper spacing from bottom navigation */
.review-container {
    padding-bottom: 100px;
}

/* For very small screens, reduce max height */
@media (max-height: 600px) {
    .product-search-results,
    .producer-search-results {
        max-height: 200px;
    }
}

/* Visual indicator for scrollable content */
.product-search-results::-webkit-scrollbar,
.producer-search-results::-webkit-scrollbar {
    width: 6px;
}

.product-search-results::-webkit-scrollbar-track,
.producer-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.product-search-results::-webkit-scrollbar-thumb,
.producer-search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

    .product-search-results::-webkit-scrollbar-thumb:hover,
    .producer-search-results::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

/* Improve the "add new" icon alignment */
.add-new-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    color: var(--primary-color);
}

/* Product info in results */
.result-name {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.result-details {
    font-size: 0.85rem;
    color: #666;
}

.result-producer {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 2px;
}

/* Producer result styling */
.producer-result-item {
    justify-content: space-between;
}

.producer-info {
    flex: 1;
}

.select-arrow {
    color: #ccc;
    font-size: 1.2rem;
    margin-left: 12px;
}

/* Search status styling */
.search-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    padding: 4px 0;
}

.search-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Make sure the form groups have proper spacing */
.product-search-section .form-group {
    margin-bottom: 0;
}

/* Selected producer card adjustment */
.selected-producer-card {
    margin-bottom: 16px;
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .product-search-section {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }

    .product-search-results,
    .producer-search-results {
        margin-left: 0;
        margin-right: 0;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
}</pre></body></html>