/* Allegro Reviews Funnel Styles */
:root {
    --arf-text: #343434;
    --arf-accent: #A18630;
    --arf-light: #FAFAFA;
    --arf-white: #FFFFFF;
}

.arf-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 60px 40px;
    background: var(--arf-white);
    border: 3px solid var(--arf-text);
    box-shadow: 0 0 0 8px #D4C896;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    min-height: 400px;
}

.arf-step {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
}

.arf-step.arf-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

/* Logo */
.arf-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.arf-logo-image {
    max-width: 100%;
    height: auto;
}

/* Login Notice */
.arf-login-notice {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 50px auto;
}

.arf-notice-text {
    font-size: 28px;
    color: var(--arf-text);
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

/* Product Selection */
.arf-product-select-wrapper {
    text-align: center;
}

.arf-label {
    display: block;
    font-size: 28px;
    color: var(--arf-text);
    margin-bottom: 30px;
    font-weight: 400;
}

.arf-product-select {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 18px;
    color: var(--arf-text);
    background: var(--arf-light);
    border: 2px solid var(--arf-text);
    border-radius: 0;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23343434' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 50px;
}

.arf-product-select:focus {
    outline: none;
    border-color: var(--arf-accent);
}

/* Thumbs Buttons */
.arf-thumbs-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.arf-thumb-btn {
    width: 140px;
    height: 140px;
    background: var(--arf-accent);
    border: 3px solid var(--arf-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 30px;
    color: var(--arf-white);
}

.arf-thumb-btn:hover {
    background: #8A7028;
    border-color: #8A7028;
    transform: scale(1.05);
}

.arf-thumb-btn svg {
    width: 100%;
    height: 100%;
}

.arf-thumbs-selected .arf-thumb-btn {
    cursor: default;
    opacity: 0.3;
}

.arf-thumbs-selected .arf-thumb-btn.arf-selected {
    opacity: 1;
    transform: scale(1);
}

.arf-thumbs-selected .arf-thumb-btn:hover {
    transform: none;
    background: var(--arf-accent);
    border-color: var(--arf-accent);
}

.arf-thumbs-selected .arf-thumb-btn.arf-selected:hover {
    background: var(--arf-accent);
    border-color: var(--arf-accent);
}

.arf-question {
    text-align: center;
    font-size: 28px;
    color: var(--arf-text);
    margin: 0;
    font-weight: 400;
}

/* Positive Response */
.arf-positive-message {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.arf-positive-message h3 {
    font-size: 32px;
    color: var(--arf-text);
    margin: 0 0 10px 0;
    font-weight: 400;
}

.arf-subtitle {
    font-size: 22px;
    color: var(--arf-text);
    margin: 0 0 30px 0;
}

.arf-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.arf-btn-primary {
    background: var(--arf-text);
    color: var(--arf-white);
    margin-bottom: 30px;
    font-family: 'Roboto Slab', serif;
    text-decoration: none !important;
}

.arf-btn-primary:hover {
    background: #1a1a1a;
    text-decoration: none !important;
}

.arf-btn-primary:visited,
.arf-btn-primary:focus,
.arf-btn-primary:active {
    text-decoration: none !important;
}

.arf-help-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Negative Response Form */
.arf-negative-heading {
    text-align: center;
    font-size: 28px;
    color: var(--arf-text);
    margin: 0 0 40px 0;
    font-weight: 400;
}

.arf-form {
    max-width: 600px;
    margin: 0 auto;
}

.arf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.arf-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: var(--arf-text);
    background: var(--arf-light);
    border: 2px solid #E0E0E0;
    border-radius: 0;
    box-sizing: border-box;
}

.arf-input:focus {
    outline: none;
    border-color: var(--arf-accent);
}

.arf-input::placeholder {
    color: #999;
}

.arf-textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px 20px;
    font-size: 16px;
    color: var(--arf-text);
    background: var(--arf-light);
    border: 2px solid #E0E0E0;
    border-radius: 0;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.arf-textarea:focus {
    outline: none;
    border-color: var(--arf-accent);
}

.arf-textarea::placeholder {
    color: #999;
}

.arf-btn-submit {
    background: var(--arf-text);
    color: var(--arf-white);
    width: auto;
    display: block;
    margin: 0 auto;
}

.arf-btn-submit:hover {
    background: #1a1a1a;
}

.arf-btn-submit:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Thank You Message */
.arf-thank-you {
    text-align: center;
    max-width: 500px;
    margin: 50px auto;
}

.arf-thank-you h2 {
    font-size: 32px;
    color: var(--arf-text);
    margin: 0 0 20px 0;
    font-weight: 400;
}

.arf-thank-you p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .arf-container {
        padding: 40px 30px;
        margin: 20px;
    }

    .arf-step {
        left: 30px;
        right: 30px;
    }

    .arf-logo-text {
        font-size: 32px;
    }

    .arf-logo-icon {
        width: 40px;
        height: 40px;
    }

    .arf-label,
    .arf-question,
    .arf-negative-heading {
        font-size: 22px;
    }

    .arf-thumbs-wrapper {
        gap: 20px;
    }

    .arf-thumb-btn {
        width: 110px;
        height: 110px;
        padding: 25px;
    }

    .arf-positive-message h3,
    .arf-thank-you h2 {
        font-size: 26px;
    }

    .arf-subtitle {
        font-size: 18px;
    }

    .arf-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .arf-container {
        padding: 30px 20px;
    }

    .arf-thumb-btn {
        width: 90px;
        height: 90px;
        padding: 20px;
    }
}
