* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Files */
@font-face {
    font-family: F_Bold;
    src: local("F_Bold"), url("BOLD.TTF");
  }
  
body {
    background: #fff;
    font-family: F_Bold, sans-serif;
}
html {
    scroll-behavior: smooth;
    direction: rtl;
  }
  
  a {
    text-decoration: none;
  }
  
  li {
    list-style: none;
  }
  
  img {
    width: 100%;
    display: block;
  }
  
  input,
  button {
    border: none;
    outline: none;
  }
  
  /* error form style */
  
  #error {
    position: relative;
    top: -5px;
    color: red;
    font-size: 14px;
    width: max-content;
    margin: 0 auto;
    padding: 0 5px 3px;
    background: #fcfefe;
    border-radius: 3px;
    border: 1px solid red;
    line-height: 1.2;
    opacity: 0;
    transition: 0.2s;
  }
  
  #error.active {
    opacity: 1;
  }
  
header{
    padding: 10px 4%;
}
.hdr-container {
    padding: 10px 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hdr-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hdr-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ba-section {
    width: 100%;
}

.ba-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.ba-wrapper {
    position: relative;
    width: 100%;
    padding-top: 55%;
    overflow: hidden;
}

.ba-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before-image,
.ba-after-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.ba-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.ba-before-image {
    z-index: 1;
}

.ba-after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    transition: transform 0.3s ease;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ba-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    pointer-events: none;
}

.ba-slider-arrow-left {
    left: -25px;
}

.ba-slider-arrow-right {
    right: -25px;
}

.ba-slider-arrow svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ba-container.user-interacted .ba-slider-handle {
    transition: left 0.05s linear;
}

.ba-container.user-interacted .ba-after-image {
    transition: clip-path 0.05s linear;
}

@media (min-width: 600px) {
    .ba-container {
        width: 500px;
        margin: 0 auto;
    }
}

/* Products Section - Mobile First */
.prod-section {
    width: 100%;
    padding: 10px 4%;
}

.prod-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prod-one-product .prod-add-to-cart-btn{
    font-size: 4.5vw;
    padding: 4px 25px 6px;
}
.prod-one-product{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
    border-radius: 20px;
    padding:10px 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}
.prod-one-product .prod-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/product-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.prod-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.prod-card.selected {
    border-color: #FFD700;
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.4), 0 0 0 3px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(90deg, rgba(107, 151, 217, 0.95) 10%, rgba(123, 44, 191, 0.95) 100%);
}

.prod-card.selected::before {
    content: "✓";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FF7F50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
    animation: checkmarkAppear 0.3s ease;
}

@keyframes checkmarkAppear {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.prod-bundle-card {
    flex-direction: row-reverse;
    direction: ltr;
    text-align: right;
    padding: 5px 15px;
    gap: 10px;
}

.prod-bundle-card .prod-image {
    order: 1;
    flex: 0 0 100px;
    height: 100px;
}

.prod-bundle-card .prod-info {
    order: 2;
    text-align: right;
    direction: rtl;
    gap: 4px;
}

.prod-bundle-card .prod-title {
    font-size: 3.5vw;
    line-height: 1.5;
    width: 100%;
}

.prod-bundle-card .prod-old-price {
    font-size: 3.7vw;
}

.prod-bundle-card .prod-current-price {
    font-size: 4vw;
}

.prod-bundle-card .prod-add-to-cart-btn {
    padding: 2px 25px 3px;
    font-size: 4.2vw;
    align-self: flex-start;
}

.prod-bundle-card .prod-badge {
    top: 5px;
    right: 10px;
    font-size: 2.7vw;
    padding: 3px 12px;
}

.prod-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FF7F50 100%) ;
    color: #333;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
}

.prod-image {
    flex: 0 0 auto;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.prod-card.prod-one-product .prod-image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:url(../img/product-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.prod-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    z-index: 2;
}
.prod-image img.prod-img-2,
.prod-image img.prod-img-3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product Images Animations */
.prod-image img.prod-img-1 {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.prod-image img.prod-img-1.animate {
    opacity: 1;
    transform: translateY(0);
}

.prod-image img.prod-img-2 {
    opacity: 0;
    transition: opacity 1s ease;
}

.prod-image img.prod-img-2.animate {
    animation: fadeInOut 2s ease;
}

.prod-image img.prod-img-3 {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.prod-image img.prod-img-3.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.prod-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
    align-items: center;
}

.prod-title {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.prod-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.prod-old-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.prod-current-price {
    font-size: 28px;
    font-weight: bold;
}

.prod-currency {
    font-size: 3.5vw;
    opacity: 0.9;
}

.prod-add-to-cart-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FF7F50 100%);
    color: #333;
    border: none;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 4.2vw;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.prod-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.prod-add-to-cart-btn:active {
    transform: translateY(0);
}

@media (min-width: 600px) {

    .prod-section{
        padding: 10px 0%;
    }
    .prod-section .prod-container{
        width: 600px;   
        margin: 0 auto;
    }
    .prod-image{
        width: 50%;
    }
    .prod-currency{
        font-size: 26px;
    }
    .prod-currency{
        font-size: 20px;
    }
    .prod-one-product .prod-add-to-cart-btn{
        font-size: 26px;
    }

    .prod-bundle-card .prod-title{
        font-size: 20px;
        text-align: center;
    }
    .prod-bundle-card .prod-image{
        height: 120px;
    }
    .prod-bundle-card .prod-badge{
        font-size: 14px;
    }
    .prod-bundle-card .prod-add-to-cart-btn{
        font-size: 20px;
    }
    .prod-bundle-card .prod-current-price{
        font-size: 26px;
    }
    .prod-bundle-card .prod-old-price{
        font-size: 20px;
    }

}



/* FAQ Section */
.faq-section {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.faq-container {
    width: 92%;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.faq-container::before,
.faq-container::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: #764ba2;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #fafafa;
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-question {
    padding-bottom: 15px;
}

.faq-question:hover .faq-text {
    color: #764ba2;
}

.faq-q {
    display: none;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 16px;
    color: #764ba2;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    padding: 0 0 20px 0;
    max-height: 1000px;
}

.faq-answer-content {
    display: flex;
    gap: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    align-items: flex-start;
}

.faq-a {
    font-weight: 900;
    font-size: 15px;
    color: #667eea;
    flex-shrink: 0;
    min-width: 30px;
}

.faq-answer-content span:last-child {
    flex: 1;
}

.faq-answer strong {
    color: #764ba2;
    font-weight: 700;
}

@media (min-width: 600px) {

    .faq-container {
        width: 600px;
        margin: 0 auto;
    }
}



/* ================== */
/* Start form_section Section */

/* top form section */

/* form */

  
  .form_section .sm-p {
    font-size: 2.7vw;
    text-align: center;
    line-height: 1.5;
    color: #764ba2;
    padding: 7px 0;
  }

  .form_section .prod-add-to-cart-btn{
    font-size: 4.8vw;
    padding: 4px 30px 6px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    width: 70%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: F_Bold, sans-serif;
  }
  
  .form_section form {
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
    text-align: center;
    width: 95%;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 5px 5px 8px #00000027;
    padding-bottom: 15px;
  }
  .form_section .top_form {
    padding: 12px 0;
  }
  .form_section .top_form p {
    font-size: 5.2vw;
    line-height: 1.3;
    color: #fbfdfd;
  }
  .form_section form .input_div {
    position: relative;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 12px;
  }
  
  .form_section form .input_div svg {
    position: absolute;
    width: 25px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
  
  .form_section form .input_div .icon_Phone {
    transform: translateY(-50%) scaleX(-1);
  }
  
  .form_section form input {
    width: 100%;
    padding: 12px 35px 12px 12px;
    font-size: 17px;
    box-shadow: 5px 5px 8px #00000031;
    text-align: right;
    font-family: sans-serif;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.3s ease-in;
  }
  .form_section form input:focus {
    border-color: #68e03e;
  }

  .form_section form .input_div.coupone input{
    padding: 12px 35px 12px 70px;
  }
.form_section form .input_div.coupone .coupone_btn{
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background: linear-gradient(to left, #FFD700 0%, #FF7F50 100%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    box-shadow: 0 5px 15px #58585833;
    cursor: pointer;
    height: 100%;
    width: 65px;
    font-size: 4vw;
  font-family: F_Bold, sans-serif;
  line-height: 1;
} 


  /* Order Summary Styles */
  .form_section form .order-summary {
    width: 95%;
    margin: 15px auto;
    padding: 0 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 8px #00000031;
  }

  .form_section form .order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    font-size: 15px;
    color: #333;
  }

  .form_section form .order-summary .summary-row.summary-total {
    border-top: 1px solid #e0e0e0;
    padding-top: 8px;
    margin-top: 5px;
    font-weight: bold;
  }

  .form_section form .order-summary .summary-label {
    color: #333;
  }

  .form_section form .order-summary .summary-value {
    color: #000;
    font-weight: bold;
  }

  .form_section form .order-summary .summary-total .summary-label {
    font-weight: bold;
  }

  .form_section form .order-summary .summary-total .summary-value {
    font-weight: bold;
    font-size: 18px;
  }

  .form_section form .order-summary .summary-currency {
    color: #999;
    font-size: 14px;
    margin-left: 5px;
    font-weight: normal;
  }
  
  /* ==========  Responsive Design  ========== */
  /* ==========  sm ≥ 576px  ========== */
  @media (min-width: 576px) {
    .form_section .sm-p {
      font-size: 2vw;
    }

    .form_section form .input_div {
      width: 90%;
    }
    .form_section .top_form p {
      font-size: 3.8vw;
    }
    .form_section form {
      width: 85%;
    }
    .form_section form{
        width: 600px;
    }
    .form_section .prod-add-to-cart-btn{
        font-size: 24px;
    }
    .form_section form .input_div.coupone .coupone_btn{
        font-size: 16px;
    }
  }
  @media (min-width: 850px){
    .form_section .sm-p {
        font-size: 1.7vw;
      }
      .form_section .top_form p {
        font-size: 3.3vw;
      }
  }
  
  /* ==========  lg ≥ 992px  ========== */
  @media (min-width: 992px) {
    .form_section .sm-p {
      font-size: 13.5px;
    }
    .form_section .top_form p {
      font-size: 24px;
    }
  }
  
  /* ==========  xl ≥ 1200px  ========== */
  @media (min-width: 1200px) {
    .form_section form {
      padding: 25px 20px 30px;
    }
  }
  
  /* End form_section Section */
  /* ================== */

/* ================== */
/* Start how_us Section */
.how_us {
    padding: 10px 0;
}
.how_us .how_us_container{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 92%;
    margin: 0 auto;
    
}
.how_us .step{
    display: flex;
    position: relative;
}

.how_us .step.step2{
    flex-direction: row-reverse;
}
.how_us .step_img{
    width: 50%;
}
.how_us .step_text{
    width: 50%;
    background: linear-gradient(90deg, rgba(107, 151, 217, 1) 10%, rgba(123, 44, 191, 1) 100%);
    padding: 10px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.how_us .step.step1 .step_text::before{
    content: "01";
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 7vw;
    color: rgba(255,255,255, 0.3);
    line-height: 1.5;
    font-weight: bolder;
}
.how_us .step.step2 .step_text::before{
    content: "02";
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 7vw;
    color: rgba(255,255,255, 0.3);
    line-height: 1.5;
    font-weight: bolder;
}
.how_us .step.step3 .step_text::before{
    content: "03";
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 7vw;
    color: rgba(255,255,255, 0.3);
    line-height: 1.5;
    font-weight: bolder;
}


.how_us .step_title{
    font-size: 8vw;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.how_us .step_description{
    font-size: 4vw;
    font-weight: normal;
    color: #fff;
    opacity: 0.9;
    line-height: 1.5;
}

@media (min-width: 600px) {
    .how_us .how_us_container{
        width: 600px;
    }
    .how_us .step_title{
        font-size: 36px;
    }
    .how_us .step_description{
        font-size: 18px;
    }

    .how_us .step.step1 .step_text::before{
        font-size: 6VW;
    }
    .how_us .step.step2 .step_text::before{
  font-size: 6VW;
    }
    .how_us .step.step3 .step_text::before{
       font-size: 6VW;
    }
}

@media (min-width: 1200px) {
    .how_us .step.step1 .step_text::before{
        font-size: 60px;
    }
    .how_us .step.step2 .step_text::before{
  font-size: 60px;
    }
    .how_us .step.step3 .step_text::before{
       font-size: 60px;
    }
}