.elementor-element-7d50460,
#content > div > div.elementor-element.elementor-element-89b3faf.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
     background: #fafafa;
    padding: 60px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 280px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.dropdown-selected {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.8px solid #e6e1da;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.04),
        0 10px 24px rgba(184,121,57,0.12);

    transition: all 0.25s ease;
}

.dropdown-selected:hover {
    border-color: #b87939;
    background: #fffaf4;
}

.custom-dropdown.open .dropdown-selected {
    border-color: #b87939;
    box-shadow:
        0 0 0 3px rgba(184,121,57,0.25),
        0 12px 28px rgba(184,121,57,0.25);
}

.dropdown-options {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 14px;
    padding: 8px 0;
    list-style: none;
    display: none;
    z-index: 20;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.12);
}

.custom-dropdown.open .dropdown-options {
    display: block;
    animation: dropdownFade 0.25s ease;
}

.dropdown-options li {
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-options li:hover {
    background: #fff2e6;
    color: #8b4513;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 5px;
}

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

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#find-order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.elementor-element-480f0b1, .elementor-element-7b0c953 {
background: #fff;
border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #fff;


}
.elementor-element-480f0b1:hover, .elementor-element-7b0c953:hover {
border: 1px solid #b87939;

}

.elementor-element-b5eb4c1 .elementor-icon-wrapper  {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff6ff;
    border-radius: 100%;
}
.elementor-element-84d2b24 .elementor-icon-wrapper  {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0fdf4;
    border-radius: 100%; 
    
}

.elementor-element-62f1e17, .elementor-element-63f6f31 {
    display: flex;
    max-width: 900px;
    padding: 0 16px;
}
/* Step container animation */
.step-enter {
    animation: stepFadeIn 0.45s ease forwards;
}
.step-exit {
    animation: stepFadeOut 0.25s ease forwards;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Step indicator pulse */
.step.pulse {
    animation: pulseGlow 0.6s ease;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(139, 69, 19, 0.4);
    }
    100% {
        box-shadow: 0 0 18px rgba(139, 69, 19, 0.6);
    }
}

/* Upload progress */
.upload-progress {
    margin-top: 20px;
    padding: 16px;
    background: #fff7ed;
    border: 1px solid #b87939;
    border-radius: 10px;
    text-align: center;
    animation: stepFadeIn 0.4s ease;
}

/* Shake error */
.shake {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

/* Loading button */
button.loading {
    pointer-events: none;
    opacity: 0.85;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.order-found {
    background: #fff8e1;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.order-tag {
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
}


.confirmation-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.what-next {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.what-next ul {
    list-style: none;
}

.what-next li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.what-next li:before {
    content: '○';
    position: absolute;
    left: 0;
    color: #8B4513;
}
    .return-form-wrapper {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Tab Buttons */
    
    .elementor-element-e9e29dd {
         display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
    }
  .tab-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      padding: 4px;
      border: 1px solid #e5e7eb;
      background: white;
      width: auto;
            border-radius: 30px;

  }
  .tab-btn {
      color: #6b7280;
      border: none;
      border-radius: 20px;
      padding: 8px 24px;
      font-size: 14px;
      font-weight: 500;
      
  }
  .tab-btn:hover {
      background: white;
      color: #b87939 ;
  }
  .tab-btn.active {
      color: #fff;
      background:  #b87939;
      
  }
 
  

    /* Tab Content */
    .tab-content {
        display: none;
        animation: fadeIn 0.4s ease;
    }
    .tab-content.active {
        display: block;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Policy Content Styling */
    .policy-content-wrapper {
        background: white;
        width: 100%;
    }
    .policy-content-wrapper h2 {
        color: #333;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .policy-content-wrapper > p {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .satisfaction-section {
        padding: 32px;
        background: #fffbf7;
        border: 1px solid #ffedd5;
        border-radius: 8px;
    margin-bottom: 3rem;
    
    }
    .satisfaction-section div {
        display: flex;
        justify-content:start;
        align-items: center;
        gap: 8px;
         margin-bottom: 1rem ;

        
    }
    .satisfaction-section div h3 {
        font-size: 24px;
        color: #4a3426;
        margin: 0 ;
;
        
    }
      .satisfaction-section p {
       font-size: 16px;
       color: #4b5563
;
        
    }
    
    .policy-section {
        background: white;
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 36px;
        border-left: 4px solid #a67c52;
    }
    .policy-section h3 {
        color: #a67c52;
        font-size: 20px;
        margin-bottom: 12px;
    }
    .policy-section p {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    .policy-section ul {
        margin-left: 20px;
        color: #555;
        line-height: 1.8;
    }
    .policy-section ul li {
        margin-bottom: 8px;
    }
    .policy-section .note {
        background: #fff7ed;
        color: #c2410c !important;
        padding: 12px;
        display: flex;
        align-items: start;
        justify-content: start;
        gap: 10px;
        border-radius: 10px;
    }
      .policy-section .note p {
        color: #c2410c !important;
        margin: 0;
        line-height: 1.25rem;
    }
    /* Return Steps Styling */
    .return-steps {
        padding: 30px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        max-width: 450px;
        margin: auto;
    }
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e5e5e5; /* default upcoming */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.35s ease, transform 0.25s ease;
}

/* ACTIVE (current step) */
.step.active {
    background: #8b4513;
    transform: scale(1.08);
}

/* COMPLETED */
.step.completed {
    background: #caa07a;
}

/* Line between steps */
.step-line {
    width: 60px;
    height: 3px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #8b4513;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-line.filled::after {
    transform: scaleX(1);
}

/* BACK ANIMATION */
.step-line.unfill::after {
    width: 0%;
}
    
    .step-content {
        display: none;
    }
    .step-content.active {
        display: block;
    }
    .step-content h2 {
        color: #333;
        font-size: 26px;
        margin-bottom: 10px;
    }
    .step-content > p {
        color: #6b7280;
        margin-bottom: 30px;
        font-size: 0.875rem;
        text-align: center;
    }
    .back-link {
        display: inline-block;
        color: #a67c52;
        text-decoration: none;
        margin-bottom: 20px;
        font-weight: 500;
    }
    .back-link:hover {
        text-decoration: underline;
    }
#comments {
    width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;

    background-color: #ffffff;
    border: 1.8px solid #e6e1da;
    border-radius: 12px;
    resize: vertical;

    /* Soft premium shadow */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(184, 121, 57, 0.08);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

/* Focus – Brand Highlight */
#comments:focus {
    outline: none;
    border-color: #b87939;

    box-shadow:
        0 0 0 3px rgba(184, 121, 57, 0.22),
        0 8px 20px rgba(184, 121, 57, 0.25);

    background-color: #fffaf4;
}

/* Optional hover (very subtle) */
#comments:hover {
    border-color: #d1b08a;
}

#comments::placeholder {
    color: #a0aec0;
    font-style: italic;
}

/* Label Styling */
label[for="upload_proof"] {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #4a5568;
    text-transform: uppercase;
}

label[for="comments"] {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #4a5568;
    text-transform: uppercase;
}


/* File Input Container */
.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* File Input Styling */
#upload_proof {
    width: 100%;
    padding: 40px 20px;
    font-size: 14px;
    color: #4a5568;
    background-color: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#upload_proof:hover {
    background-color: #edf2f7;
    border-color: #b87939;
}

#upload_proof:focus {
    outline: none;
    border-color: #b87939;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Custom File Input (Optional - Better UX) */
#upload_proof::file-selector-button {
    padding: 10px 20px;
   margin-right: 16px;
    background: linear-gradient(to right, #b87939, #a36833);
    color: #ffffff;
    border-radius: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border: none !important;
    transition: all 0.2s 
ease;
    transform: translateY(0);
    cursor: pointer;
}

#upload_proof::file-selector-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1),
                0 8px 10px -6px rgba(0,0,0,0.1);     
    transform: translateY(-0.125rem);  
        background: linear-gradient(to left, #b87939, #a36833); /* from-blue-500 → to-cyan-500 */
        color: white;
}

/* Upload Hint Text */
.upload-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #718096;
    font-style: italic;
}

.upload-hint::before {
    content: "💡 ";
    margin-right: 4px;
}
 
   
    
   /* Label Styling */
label[for="reason"] {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #4a5568;
    text-transform: uppercase;
}

/* Select Dropdown Styling */
#reason {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .what-next h3 {
        color: #a67c52;
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    .elementor-element-7d50460,
    #content > div > div.elementor-element.elementor-element-89b3faf.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    min-height: 250px;
    }
   

    /* Responsive */
    @media (max-width: 768px) {
            .policy-section {
        background: white;
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 36px;
        border-left: 4px solid #a67c52;
    }
   
    .policy-section p,  .policy-section ul li, .satisfaction-section p  {
        font-size: 14px;
    }
        
    }
      @media (max-width: 448px) {
           .return-form-wrapper {
    
        padding: 12px;
    }

           .return-steps {
        padding: 16px;
      
    }
        #content > div > div.elementor-element.elementor-element-7d50460.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
            padding: 40px 0;
        }
        
        .elementor-element-62f1e17, .elementor-element-63f6f31 {
    padding: 0 12px;
}
    }
}