* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(150deg, #000000 , #a47e1b );
            color: #f5f5f5;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero {
            text-align: center;
            padding: 60px 20px 40px;
            animation: fadeIn 0.8s ease-in;
        }
        .logo {
            width: 150px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        }

        .hero h3  {
            font-size: 1.5rem;
            color: #e8d5c4;
            margin-bottom: 10px;
        }
        .hero h4  {
            font-size: 1.5rem;
            color: #e6dbd2;
            margin-bottom: 30px;
        }


        .icon {
        display: inline-block;
        font-size: 5rem;
        animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
        }


        .form-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            animation: slideUp 0.6s ease-out;
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
            animation: fadeIn 0.4s ease-in;
        }

        .question {
            margin-bottom: 30px;
        }

        .question-label {
            display: block;
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c1810;
            margin-bottom: 15px;
        }

        .question-number {
            display: inline-block;
            background: #6b4423;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .radio-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .radio-option {
            flex: 1;
            min-width: 120px;
        }

        .radio-option input[type="radio"] {
            display: none;
        }

        .radio-option label {
            display: block;
            padding: 15px 25px;
            background: #f8f8f8;
            border: 2px solid #ddd;
            border-radius: 12px;
            cursor: pointer;
            text-align: left;
            font-weight: 600;
            color: #2c1810;
            transition: all 0.3s ease;
        }

        .radio-option input[type="radio"]:checked + label {
            background: #6b4423;
            color: white;
            border-color: #6b4423;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(107, 68, 35, 0.3);
        }

        .radio-option label:hover {
            border-color: #6b4423;
            transform: translateY(-1px);
        }

        .input-field {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .input-field:focus {
            outline: none;
            border-color: #6b4423;
        }

        .product-selector {
            display: grid;
            gap: 20px;
            margin-bottom: 30px;
        }

        .product-card {
            position: relative;
        }

        .product-card input[type="radio"] {
            display: none;
        }

        .product-card label {
            display: block;
            padding: 25px;
            background: linear-gradient(135deg, #302f2f 0%, #614c32 100%);
            border: 3px solid #ddd;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-card input[type="radio"]:checked + label {
            border-color: #6b4423;
            background: linear-gradient(135deg, #6b4423 0%, #8b5a3c 100%);
            color: white;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(107, 68, 35, 0.4);
        }

        .product-card label:hover {
            border-color: #6b4423;
            transform: translateY(-2px);
        }

        .product-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            
        }

        .product-roast {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #FFA422 0%, #8b5a3c 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(107, 68, 35, 0.4);
        }

        .btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .btn-secondary {
            background: #f5f5f5;
            color: #6b4423;
            border: 2px solid #6b4423;
            margin-top: 15px;
        }

        .btn-secondary:hover {
            background: #f8f5f2;
        }

        .thank-you {
            text-align: center;
        }

        .thank-you h2 {
            font-size: 2.2rem;
            color: #2c1810;
            margin-bottom: 50px;
        }

        .thank-you .emoji {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .order-info {
            background: #f8f5f2;
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 4px solid #6b4423;
        }

        .order-info p {
            color: #2c1810;
            margin-bottom: 20px;
        }

        .action-buttons {
            display: grid;
            gap: 15px;
            margin-top: 30px;
        }

        .action-btn {
            padding: 15px 25px;
            background: white;
            color: #6b4423;
            border: 2px solid #6b4423;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .action-btn:hover {
            background: #6b4423;
            color: white;
            transform: translateY(-2px);
        }
        .funnel-btn {
            padding: 15px 25px;
            background: white;
            color: #6b4423;
            border: 2px solid #6b4423;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .locate-btn {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            border: none;
            margin-top: 20px;
        }

        .locate-btn:hover {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
        }

        .progress-bar {
            height: 6px;
            background: #e0e0e0;
            border-radius: 10px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #6b4423 0%, #8b5a3c 100%);
            transition: width 0.4s ease;
            border-radius: 10px;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid #6b4423;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .form-container {
                padding: 25px;
            }

            .radio-option {
                min-width: 100px;
            }
        }
