    /* ===== Overall Container ===== */
        .luloo-subscribe-wrap {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 60px 20px;
            background: #fafafa;
        }

        #luloo-subscribe-form {
            width: 100%;
            max-width: 900px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 60px 70px;
            position: relative;
            font-family: "Poppins", sans-serif;
        }

        @media(max-width:768px){
            #luloo-subscribe-form { padding: 40px 25px; }
        }

        /* ===== Header ===== */
        .step-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 22px;
            color: #222;
            margin-bottom: 20px;
        }

        .progress {
            height: 8px;
            background: #e9e9e9;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .progress-bar {
            height: 8px;
            width: 0%;
            background: #fdca02;
            transition: width 0.5s ease;
        }

        /* ===== Steps ===== */
        .form-step {
            display: none;
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.5s ease;
        }
        .form-step.active {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

        .form-group {
            margin-bottom: 35px;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
            font-size: 17px;
        }

        input[type="text"],
        input[type="date"],
        select {
            width: 100%;
            padding: 25px 20px;
            font-size: 18px;
            border: 2px solid #7a7a7a!important;
            border-radius: 10px!important;
            transition: all 0.3s;
        }
        input:focus, select:focus {
            border-color: #1d2327;
            outline: none;
            box-shadow: 0 0 0 4px rgba(253,202,2,0.2);
        }

        /* ===== Checkbox & Radios ===== */
        .radio-group {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            margin-top: 25px;
            position: relative;
        }
        .radio-group::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #ddd;
            z-index: 0;
        }

        .radio-option {
            position: relative;
            background: #fff;
            padding: 14px 25px;
            border-radius: 10px!important;
            border: 2px solid #ccc!important;
            cursor: pointer;
            z-index: 1;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

        .radio-option input {
            display: none;
        }

        .radio-option .checkmark {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid #ccc;
            position: relative;
            flex-shrink: 0;
        }

        .radio-option input:checked + .checkmark {
            border-color: #1cd910;
            background: #1cd910;
        }

        .radio-option input:checked + .checkmark::after {
            content: "✔";
            color: #fff;
            position: absolute;
            top: 1px;
            left: 5px;
            font-size: 14px;
        }

        .radio-option input:checked ~ span {
            font-weight: 600;
            color: #000;
        }

        /* ===== Option Grid (for breeds etc.) ===== */
        .option-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 25px;
        }

        .option-grid label {
            flex: 1;
            border: 2px solid #ccc;
            border-radius: 12px;
            text-align: center;
            padding: 25px 15px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            background: #fff;
        }

        .option-grid input { display: none; }

        .option-grid input:checked + label {
            border-color: #fdca02;
            background: #fff7d1;
            box-shadow: 0 2px 10px rgba(253,202,2,0.2);
        }

        .option-grid img {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }

        /* ===== Buttons ===== */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 50px;
        }

        button.next-step, button.prev-step {
            background-color: #fdca02;
            border: none;
            color: #000;
            padding: 14px 36px;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        button.next-step:hover, button.prev-step:hover {
            transform: translateY(-2px);
        }
        
     
.form-group.inline-checkbox {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin-bottom: 30px;
}

.form-group.inline-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #fdca02; 
}

.form-group.inline-checkbox label {
    font-weight: 500;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    margin: 0;
}

.option-grid img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Highlight selected option */
.option-grid input:checked + label img {
    border-color: #fdca02;
    box-shadow: 0 0 10px rgba(253,202,2,0.4);
    transform: scale(1.05);
}

.option-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.option-grid input[type="radio"] {
  display: none;
}

.option-grid label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #cccccc;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  width: 130px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.option-grid label:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.option-grid input:checked + label {
  border-color: #ffb400;
  background-color: #fff9e6;
  box-shadow: 0 0 12px rgba(255,180,0,0.3);
}

.option-grid img {
  width: 200px!important;
  height: 150px!important;
  object-fit: contain;
  margin-bottom: 10px;
}

.option-title {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.option-sub {
  font-size: 13px;
  color: #777;
}

.product-select-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
}

.product-card {
  flex: 1;
  min-width: 230px;
  max-width: 250px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin: 8px 0;
}

.product-card .price {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.product-card input {
  display: none;
}

/* Highlight selected card */
.product-card:has(input:checked) {
  border-color: #fdca02;
  background: #fffbea;
  box-shadow: 0 3px 12px rgba(253,202,2,0.4);
}

.subscribe-btn-wrap {
  text-align: center;
  margin-top: 35px;
}

#subscribe-btn {
  background: #fdca02;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 34px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#subscribe-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

#subscribe-btn {
  background: #ff7b00;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#subscribe-btn:hover {
  background: #e86f00;
}

.form-navigation {
    display: flex;
    justify-content: space-between; /* Previous on left, Next/Subscribe on right */
    margin-top: 30px;
}

#subscribe-btn {
    background: #ff7b00;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#subscribe-btn:hover {
    background: #e86f00;
}
.error-msg {     
    color: red;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px; }