
/* ================= Variables ==================== */
/* ==== colors ==== */
/* ==== spacing ==== */
/**
 * Base Styles
 * This file contains CSS resets and global styles for all HTML elements.
 */
/* ============================
   Reset Styles
   ============================
*/
/* Box Sizing Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}


body, input, select, button {
  font-family: var(--font-family) !important;
}

/* Remove default margin and padding */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Reset body and box styles */
body {
  line-height: 1;
}

/* Reset list styles */
ol,
ul {
  list-style: none;
}

/* Reset blockquote styles */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Reset table styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* For webkit-based browsers */
::-webkit-scrollbar {
  background-color: transparent; /* Removes scrollbar background */
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: transparent; /* Removes track background */
}

::-webkit-scrollbar-thumb {
  background-color: transparent; /* Removes thumb background */
  border-radius: 20px; 
  border: 3px solid var(--site-bg); 
}

/* For Internet Explorer and Edge */
body {
  scrollbar-face-color: var(--text-secondary);
  scrollbar-track-color: var(--site-bg);
}

/* ============================
   Global Styles
   ============================
*/

/* Remove outline on focused elements */
:focus {
  outline: none;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Clearfix for clearing floats */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

body {
  background-color: var(--site-bg);
  color: var(--text-primary);
}

button{
  cursor: pointer;
}

a {
  text-decoration: none;
}

.logo {
  max-height: 50px;
  max-width: 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hidden{
  display: none;
}

/* ================= Layout ==================== */
.container {
  /* Small */
  padding: 0 20px;
  margin: auto;
  /* Medium */
  /* Large */
}
@media (min-width: 768px) {
  .container {
    width: 808px;
  }
}
@media (min-width: 870px) {
  .container {
    width: 870px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
.landing .container{
  max-width:900px;
}
.landing .container .text{
  margin-bottom: 30px;
}
/* ================= Header ==================== */
header:not(.landing) {
  margin-bottom: 56px;
}

header .announcement {
  background-color: var(--announcement-bg);
  padding: 15px 0;
}
header .announcement p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 23px; /* 127.778% */
}
header nav {
  padding: 20px 0;
  background-color: var(--components-bg);
}
header.landing nav {
  display: none;
}

@media (min-width: 768px) {
  header nav {
    padding: 28px 0;
  }

}

header .sticky-btn-container{
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 20;
  background-color: var(--components-bg);
  padding: 40px 20px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: all 0.4s ease-in; 


}

header .sticky-btn-container.show{
  transform: translateY(0);
}

header .sticky-btn-container button#sticky-buy-btn {
  width: 300px;
  text-align: center;
  background-color: var(--cta-button-bg);
  border: 3px solid var(--cta-button-border);
  color: var(--cta-button-text);
  border-radius: var(--border-radius);
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ================= Hero ==================== */
.hero {
  padding: 15px 0;
}
.hero.landing{
  padding:0;
  margin: 10px 0 30px;
}
.hero .product {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .hero .product {
    flex-direction: row;
    align-items: start;
    gap: 30px;
  }
}

.hero .product .product-imgs{
  width: 100%;
}
.hero.landing .product .product-imgs{
  display:none;
}

@media screen and (min-width: 768px) {
  .hero .product .product-imgs {
    display: flex;
    flex-direction: var(--gallery-flex-direction);
    gap: 20px;
    align-items: start;
    position: sticky;
    top: 1rem;
    z-index: 2;
    transition: top 0.5s ease;
    padding-top: 0;
    flex: 1;
  }
}
.hero .product .product-imgs .main-img-container {
  position: relative;
}
.hero .product .product-imgs .main-img-container .main-img {
  height: 440px;
  width: 440px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius);
}
@media screen and (min-width: 1200px){
  .hero .product .product-imgs .main-img-container .main-img{
    height: 550px;
    width: 550px;
  }

}
/* @media screen and (min-width: 768px){
  .hero .product .product-imgs .main-img-container .main-img{
    width: 100%;
  }
} */
@media screen and (max-width: 767px){
  .hero .product .product-imgs .main-img-container .main-img{
    height:660px;
    width: 660px;
  }
}

@media screen and (max-width: 600px){
  .hero .product .product-imgs .main-img-container .main-img{
    height: 500px;
    width: 500px;
  }
}

@media screen and (max-width: 480px){
  .hero .product .product-imgs .main-img-container .main-img{
    height: 400px;
    width: 400px;
  }
}
@media screen and (max-width: 350px){
  .hero .product .product-imgs .main-img-container .main-img{
    height: 320px;
    width: 320px;
  }
}
.hero .product .product-imgs .main-img-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
  border: none;
  padding: 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .product .product-imgs .main-img-container .slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 768px) {
  .hero .product .product-imgs .main-img-container .slider-btn svg {
    width: 24px;
    height: 24px;
  }
}

.hero .product .product-imgs .main-img-container .prev-btn {
  left: 5px;
}
.hero .product .product-imgs .main-img-container .next-btn {
  right: 5px;
}
.hero .product .product-imgs .slide-imgs {
  display: flex;
  flex-direction: var(--gallery-slider-flex-direction);
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
  max-width: 100%;
  overflow-x: scroll;
  background-color: transparent;
}
.hero .product .product-imgs .slide-imgs img.slide-img {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius);
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .hero .product .product-imgs .slide-imgs img.slide-img{
    width: 85px;
    height: 85px;
  }
}

@media screen and (max-width: 768px) {
  .hero .product .product-imgs .slide-imgs {
    flex-direction: row;
  }
}

.hero .product .product-imgs .slide-imgs img.slide-img.selected {
  border: 2px solid var(--cta-button-bg);
  box-sizing: border-box;
}
.hero .product .product-details {
  padding-top: 30px;
  border-radius: var(--border-radius);
  background-color: var(--product-details-bg-color);
  border: 3px solid var(--product-details-border-color);
  padding: var(--product-details-padding);
}
@media screen and (max-width: 768px) {
  .hero .product .product-details {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .hero .product .product-details {
    flex: 1;
  }
}
.hero .product .product-details .product-info {
  margin-bottom: 24px;
}
.hero .product .product-details .product-info .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .hero .product .product-details .product-info .header-wrapper {
    flex-direction: column;
  }
}
.hero .product .product-details .product-info .title-wrapper {
  display: flex;
  flex-direction: var(--title-wrapper-display-direction);
  align-items: start;
  gap: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .hero .product .product-details .product-info .title-wrapper {
    flex-direction: row;
  }
}
.hero .product .product-details .product-info .title-wrapper h1.title {
  font-size: 32px;
  color: var(--text-primary);
  font-weight: 800;
}
.hero .product .product-details .product-info .title-wrapper .promo-badge{
  border-radius: var(--border-radius);
  background: var(--promo);
  font-size: 17.5px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  padding: 5px 8px;
  display:flex;
  align-items: center;
}
.hero .product .product-details .product-info .title-wrapper .promo-badge.hidden{
  display: none;
}
.hero .product .product-details .product-info .title-wrapper .promo-badge:lang(ar) {
  flex-direction: row-reverse;
}
.hero .product .product-details .product-info .product-price-wrapper {
  display: var(--price-section-display);
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.hero .product .product-details .product-info .product-price-header-wrapper {
  display: var(--price-in-header-display);
  flex-direction: column;
  align-items: end;
  gap: 10px;
}

@media screen and (max-width: 500px) {
  .hero .product .product-details .product-info .product-price-header-wrapper {
    align-items: start;
  }
  
}

.hero .product .product-details .product-info .product-price-wrapper .price {
  font-weight: 700;
  font-size: 42px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -1.26px;
}
.hero .product .product-details .product-info .product-price-wrapper .price span.currency {
  font-weight: 500;
  font-size: 28px;
  color: #94a3b8;
  text-transform: uppercase;
}
.hero .product .product-details .product-info .product-price-wrapper .crossed-price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--promo);
  font-size: 16px;
  font-weight: 700;
}
.hero .product .product-details .product-info .product-price-wrapper .crossed-price-wrapper.hidden {
  display: none;
}
.hero .product .product-details .product-info .product-price-wrapper .crossed-price-wrapper .crossed-price {
  font-weight: 500;
  font-size: 25px;
  text-decoration: line-through;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  gap: 5px;
}
.hero .product .product-details .product-info .product-price-wrapper .crossed-price-wrapper .crossed-price-header {
  font-weight: 500;
  font-size: 25px;
  text-decoration: line-through;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 900;
}
.hero .product .product-details .product-info .product-price-wrapper .crossed-price-wrapper .crossed-price-title {
  text-transform: capitalize;
}
.hero .product .product-details .product-info .product-price-header-wrapper .price {
  font-weight: 700;
  font-size: 32px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -1.26px;
}
/* ========= START VARIANTS ============ */
.hero .product .product-details .product-info .variants{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero .product .product-details .product-info .variants .variants-wrapper{
  
}
.hero .product .product-details .product-info .variants .variants-wrapper .option{
  margin-bottom: 12px;
  display: block;
  font-size: 14px;
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value{
  cursor: pointer;
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="1"]{
  min-width: 105px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding: 6px;
  background-color: transparent;
  border-radius: var(--border-radius);
  border: 1px var(--border) solid;
  display:flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="1"]{
    min-width: 70px;
  }
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="1"].selected{
  background-color: var(--selected-variant-option);
  position: relative;
  color: var(--cta-button-text);
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="1"]:not(.selected){
  box-shadow: 0px 3px 0px 0px #E2E8F0;  
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="1"].selected::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px var(--cta-button-border) solid;
  border-radius: var(--border-radius);
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="2"]{
  width: 32px;
  height: 32px;
  border: 2px #CBD5E1 solid;
  border-radius: var(--border-radius);
  display: block;
  position: relative;
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="2"].selected{
  border-color: white;
  background-color: white;
}
.hero .product .product-details .product-info .variants .variants-wrapper .option-values .option-value[data-type="2"].selected::before{
  content: "";
  position: absolute;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  left: 50%;
  top: 50%;
  border: 2px var(--cta-button-border) solid;
  border-radius: var(--border-radius);
  transform: translate(-50%, -50%);
}
.hero .product .product-details .product-info .variants .variants-wrapper.select-wrapper{
  position: relative;
}
.hero .product .product-details .product-info .variants .variants-wrapper.select-wrapper::before{
  content: url("./MEDIA/chevron-down.svg");
  font-size: 10px;
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 12px;
  transform: translateY(-50%);
}
.hero .product .product-details .product-info .variants .variants-wrapper.select-wrapper:dir(rtl)::before{
  left: 10px;
  right: auto;
}

.hero .product .product-details .product-info .variants .variants-wrapper select.option-values{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--border);
  background-color: var(--components-bg);
  padding: 16px 12px;
  outline-color: var(--border);
  border-radius: 6px;
}
.hero .product .product-details .product-info .variants .variants-quantity .cart{
  color: var(--text-primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero .product .product-details .product-info .variants .variants-quantity .quantity-controller .title{
  display: block;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hero .product .product-details .product-info .variants .variants-quantity .quantity-controller .btns{
  display: flex;
  gap: 10px;
  align-items: center;
  border: solid 1px var(--quantity-container-border-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: var(--border-radius);
}
.hero .product .product-details .product-info .variants .variants-quantity .quantity-controller .btns button {
  background-color: transparent;
  border-radius: var(--border-radius);
  border: 1px solid var(--quantity-inner-button-border-color);
  width: 32px;
  height: 32px;
}

.hero .product .product-details .product-info .variants .variants-quantity .quantity-controller .btns button img {
  transform: translateY(2px);
}
.product-info .variants .add-variant{
  color: var(--add-variant-button);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
  text-transform: capitalize;
}
.product-info .variants .add-variant svg{
  stroke: var(--add-variant-button);
}
.product-info .variants .add-variant:dir(rtl){
  flex-direction: row-reverse;
}
.order-summary details .content .info-summary-container{
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--border-radius);
  margin-top: 20px;
}
.order-summary details .content .info-summary-container .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.order-summary details .content .info-summary-container .img-wrapper .product-img {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  -o-object-fit: cover;
     object-fit: cover;
}
.order-summary details .content .info-summary-container .img-wrapper .title{
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}

.order-summary details .content .variant-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-summary details .content .variant-rows-wrapper.scrollable{
  max-height: 250px;
  overflow-y: scroll;
}

.order-summary details .content .variant-row .info-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
 .order-summary details .content .variant-row .info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  flex: 1;
  padding: 12px;
  background-color: var(--variant-summary-bg);
}

.order-summary details .content .variant-row .remove-btn{
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  height: fit-content;
  padding: 0;
}
.order-summary details .content .variant-row .remove-btn svg{
  stroke: var(--total-price);
}
.order-summary details .content .variant-row .variant-options ul{
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
 .order-summary details .content .variant-row .variant-options ul li {
  color: var(--text-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.order-summary details .content .variant-row .order-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.order-summary details .content .variant-row .order-quantity span.title {
  font-size: 12px;
  color: var(--text-primary);
  margin-right: 5px;
}
.order-summary details .content .variant-row .order-quantity span.title:lang(ar) {
  margin-right: 0;
  margin-left: 5px;
}
@media screen and (max-width: 403px) {
  .order-summary details .content .variant-row .order-quantity span.title {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 768px) {
  .order-summary details .content .variant-row .order-quantity span.title {
    font-size: 14px;
  }
}
.order-summary details .content .variant-row .order-quantity span.quantity {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--total-price);
  border-radius: var(--border-radius);
  padding: 4px;
}
.order-summary details .content .variant-row .product-img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
:dir(rtl) .order-summary details .content .variant-row .product-img {
  margin-right: 0;
  margin-left: 10px;
}
.order-summary details .content .variant-row .row-price{
  font-size: 12px;;
  color: var(--text-primary);
}
#order-form #empty-cart-msg{
  color: var(--promo);
  font-size: 13px;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
  display: none;

}
/* ========= END VARIANTS ============ */
.hero .product .product-details .product-info .product-hr {
  margin: 20px 0;
  display: var(--hr-display);
  border: 1px solid var(--primary-light)
}
.hero .product .product-details .product-info .overview {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}
/* ============ START OPTIONS ============== */
#order-form .options {
  margin-bottom:20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#order-form .options .option{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  background-color: transparent;
  padding: 16px 12px;
  border-radius: var(--border-radius);
  border: solid var(--border) 2px;
  position: relative;
  cursor: pointer;
}
#order-form .options .option .badge{
  position: absolute;
  top: -10px;
  left: 12px;
  background-color: var(--primary);
  padding: 4px 4px;
  border-radius: var(--border-radius);
  color: #fff;
  font-size: 12px;
}
#order-form:dir(rtl) .options .option .badge{
  left: auto;
  right: 12px;
}

#order-form .options .option .name-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
}
#order-form .options .option .name-wrapper .custom-radio{
  width: 16px;
  height: 16px;
  min-width: 16px;
  position: relative;
  border-radius: 100%;
  border: 0.89px var(--text-secondary) solid;
}

#order-form .options .option.selected{
  border: solid 2px var(--primary);
  background-color: var(--primary-light);
}
#order-form .options .option.selected .name-wrapper .custom-radio::before{
  content: "";
  width: 70%;
  height: 70%;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
}
#order-form .options .option.selected .name-wrapper .custom-radio{
  border-color: var(--primary);
}
option {
  color: #000000; /* Text color of the options in the dropdown */
}
#order-form .options .option .price-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#order-form .options .option .price-wrapper .currency{
  text-transform: uppercase;
}
#order-form .options .option .price-wrapper .price, #order-form .options .option .price-wrapper .crossed-price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
#order-form .options .option .price-wrapper .price{
  font-size: 15px;
}
#order-form .options .option .price-wrapper .crossed-price{
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-secondary);
  margin-top: 5px;
}
#order-form .options .option .price-wrapper .free-shipping{
  font-size: 13px;
  font-weight: 600;
  color: #22C55E;
  margin-top: 9px;
}
/* ============ END OPTIONS ================ */
.hero .product .product-details #order-form {
  margin-bottom: 30px;
}
.hero .product .product-details #order-form .form-title{
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 15px;
}

@media screen and (min-width: 456px) {
  .hero .product .product-details #order-form .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 456px) {
  .hero .product .product-details #order-form .inputs {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }
}
.hero .product .product-details #order-form .inputs div.input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  background-color: var(--components-bg);
  outline-color: var(--text-primary);
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 456px) {
  .hero .product .product-details #order-form .inputs div.input-wrapper {
    margin-bottom: 0;
  }
}
.hero .product .product-details #order-form .inputs div.input-wrapper .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
}

:dir(ltr) .hero .product .product-details #order-form .inputs div.input-wrapper .icon {
  border-right: 1px solid var(--border);
}

:dir(rtl) .hero .product .product-details #order-form .inputs div.input-wrapper .icon {
  border-left: 1px solid var(--border);
}
.hero .product .product-details #order-form .inputs .input-wrapper.select-wrapper::before{
  content: url("MEDIA/chevron-down.svg");
  font-size: 10px;
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 13px;
  transform: translateY(-50%);
}
.hero .product .product-details #order-form .inputs .input-wrapper.select-wrapper:dir(rtl)::before{
  left: 10px;
  right: auto;
}
.hero .product .product-details #order-form .inputs div.input-wrapper label {
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.hero .product .product-details #order-form .inputs div.input-wrapper input, .hero .product .product-details #order-form .inputs div.input-wrapper select {
  padding: 16px 12px;
  outline-color: var(--text-primary);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  background-color: transparent;
  width: 100%;
  border: none;
}
:dir(rtl) .hero .product .product-details #order-form .inputs div.input-wrapper input, :dir(rtl) .hero .product .product-details #order-form .inputs div.input-wrapper select {
  text-align: right;
}
.hero .product .product-details #order-form .inputs div.input-wrapper select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.hero .product .product-details #order-form .inputs div.input-wrapper input::-moz-placeholder {
  color: var(--text-placeholder);
}
.hero .product .product-details #order-form .inputs div.input-wrapper input::placeholder {
  color: var(--text-placeholder);
}
.hero .product .product-details #order-form .inputs div.input-wrapper select {
  color: var(--text-placeholder);
}
.hero .product .product-details #order-form .inputs div.input-wrapper select#delivery-type {
  color: var(--text-primary);
}
.hero .product .product-details #order-form .inputs div.input-wrapper:nth-child(odd):last-child {
  grid-column: span 2;
}
.hero .product .product-details #order-form .quantity-controller {
  margin: 10px 0 27px;
}
.hero .product .product-details #order-form .quantity-controller .title {
  display: block;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hero .product .product-details #order-form .quantity-controller .btns {
  display: flex;
  gap: 10px;
  align-items: center;
  border: solid 1px var(--quantity-container-border-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: var(--border-radius);
}
.hero .product .product-details #order-form .quantity-controller .btns button {
  background-color: transparent;
  border-radius: var(--border-radius);
  border: 1px solid var(--quantity-inner-button-border-color);
  width: 32px;
  height: 32px;
}
.hero .product .product-details #order-form .quantity-controller .btns button img {
  transform: translateY(2px);
}
.hero .product .product-details #order-form button#buy-btn {
  width: 100%;
  text-align: center;
  background-color: var(--cta-button-bg);
  border: 3px solid var(--cta-button-border);
  color: var(--cta-button-text);
  border-radius: var(--border-radius);
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 27px;
}
.hero .product .product-details .order-summary details {
  width: 100%;
  background-color: var(--components-bg);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
}

.hero .product .product-details .order-summary details[open] svg {
  transform: rotate(180deg);
}

.hero .product .product-details .order-summary details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .product .product-details .order-summary details summary::-webkit-details-marker {
  display: none;
}
.hero .product .product-details .order-summary details summary .title {
  font-size: 20px;
  font-weight: 700;
}
.hero .product .product-details .order-summary details summary .title:lang(ar) {
  font-weight: 600;
}
.hero .product .product-details .order-summary details summary .title:not(:lang(ar))::first-letter {
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero .product .product-details .order-summary details summary .title {
    font-size: 24px;
  }
}
.hero .product .product-details .order-summary details .content {
  display: flex;
  flex-direction: column;
}
.hero .product .product-details .order-summary details .content .content-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 20px 12px;
}
.hero .product .product-details .order-summary details .content .content-row:first-child {
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  margin-top: 20px;
  padding: 12px;
}
.hero .product .product-details .order-summary details .content .content-row:last-child {
  border-bottom: none;
  padding-bottom: 12px;
}
.hero .product .product-details .order-summary details .content .content-row .order-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .product .product-details .order-summary details .content .content-row .order-quantity span.title {
  font-size: 12px;
  color: var(--text-primary);
  margin-right: 5px;
}
.hero .product .product-details .order-summary details .content .content-row .order-quantity span.title:lang(ar) {
  margin-right: 0;
  margin-left: 5px;
}
@media screen and (max-width: 403px) {
  .hero .product .product-details .order-summary details .content .content-row .order-quantity span.title {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 768px) {
  .hero .product .product-details .order-summary details .content .content-row .order-quantity span.title {
    font-size: 14px;
  }
}
.hero .product .product-details .order-summary details .content .content-row .order-quantity span.quantity {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--total-price);
  border-radius: var(--border-radius);
  padding: 4px;
  margin-right: 10px;
}
.hero .product .product-details .order-summary details .content .content-row .product-img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
:dir(rtl) .hero .product .product-details .order-summary details .content .content-row .product-img {
  margin-right: 0;
  margin-left: 10px;
}
.hero .product .product-details .order-summary details .content .content-row .row-title {
  color: var(--text-primary);
  font-size: 14px;
}
.hero .product .product-details .order-summary details .content .content-row .row-title::first-letter {
  text-transform: uppercase;
}
.hero .product .product-details .order-summary details .content .content-row .row-price {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}
.hero .product .product-details .order-summary details .content .content-row .row-price.total-price {
  color: var(--total-price);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .hero .product .product-details .order-summary details .content .content-row .row-price.total-price {
    font-size: 17px;
  }
}
.hero .product .product-details .order-summary details .content .content-row .row-price span:nth-child(2) {
  text-transform: uppercase;
}

/* ================= Description ==================== */
section.product-description {
  margin: 54px 0;
}
section.product-description.landing{
  margin: 0;
}
section.product-description.landing img{
  display:block;
}
section.product-description h2 {
  font-size: 29px;
  font-weight: 900;
  color: var(--header-text-description);
  text-transform: capitalize;
  margin-bottom: 11px;
}
section.product-description.landing h2 {
    display: none;
}
section.product-description .text {
  font-size: 16px;
  color: var(--text-description);
  line-height: 1.5;
  font-weight: 400;
}
.product-description.landing .container{
  padding: 0 10px;
}
/* ================= Bundles ==================== */
section.bundle {
  background-color: var(--components-bg);
  padding: 56px 0;
  margin-bottom: 50px;
}
section.bundle .bundle-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  section.bundle .bundle-container {
    flex-direction: row;
  }
}
section.bundle .products-cards{
  flex: 1;
}
section.bundle .products-cards-wrapper{
  display: flex;
  flex-direction: column;
  gap: 11px;
}
section.bundle h2.title{
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  section.bundle h2.title {
    font-size: 32px;
  }
}
section.bundle .product-card{
 padding-top: 12.78px;
 padding-bottom: 12.78px;
 padding-left: 12.78px;
 padding-right: 25.56px;
 padding: 13px 25px 13px 13px;
 background: white;
 border-radius: 4px;
 border: 1px var(--total-price) solid;
 align-items: center;
 gap: 29px;
 display: inline-flex
}
section.bundle .product-card img {
  object-fit: cover;
  height: 70px;
}
section.bundle .product-card .title-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
section.bundle .product-card .title-wrapper h4{
  color: var(--total-price);
  font-size: 15px;
  font-weight: 600;
}
section.bundle .product-card .title-wrapper .quantity{
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--total-price);
  border-radius: 5px;
  padding: 3px;
}
section.bundle .product-card .price-wrapper{
  font-size: 15px;
  color: #64748B;
  font-weight: 500;
}
section.bundle .product-card .price-wrapper span{
  text-transform: uppercase;
}
section.bundle .special-offer{
  background-color: var(--components-bg);
  padding: 24px 30px;
  flex: 1; 
  border: 1px var(--total-price) solid;
  border-radius: 12px;
}
section.bundle .special-offer .title{
  font-size: 28px;
  margin-bottom: 35px;
  font-style: italic;
  text-align: center;
  font-weight: 800;
}
body:lang(ar) section.bundle .special-offer .title{
  font-style: normal;
}
@media screen and (min-width: 768px) {
  section.bundle .special-offer .title {
    font-size: 35px;
  }
}
section.bundle .special-offer .imgs-container{
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  overflow-x: auto;
  margin-bottom: 22px;
}
section.bundle .special-offer .imgs-container .plus{
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  section.bundle .special-offer .imgs-container {
    gap: 16px;
  }
}
section.bundle .special-offer .img-wrapper{
  border: 3px solid var(--total-price);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  section.bundle .special-offer .img-wrapper{
    border-width: 5px;
  }
}
section.bundle .special-offer .img-wrapper img{
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.bundle .special-offer .img-wrapper .quantity{
  position: absolute;
  bottom: 0;
  right:0;
  border-top-left-radius: 10px;
  color: #fff;
  background-color: #DC2626;
  padding: 5px;
  font-size: 14px;
}
@media screen and (min-width: 500px) {
  section.bundle .special-offer .img-wrapper .quantity{
    padding: 7px;
    font-size: 16px;
  }
}
section.bundle .special-offer .free-shipping-conatiner {
  margin: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.bundle .special-offer .free-shipping-conatiner .free-shipping-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px 10px;
  border-radius: 53px;
  border: 2px solid #22C55E;
  background:  #DCFCE7;
  color: #22C55E;
} 
section.bundle:dir(rtl) .special-offer .free-shipping-conatiner .free-shipping-badge svg{
  transform: rotateY(-180deg);
}
section.bundle .special-offer .price-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
section.bundle .special-offer .price-container h4{
  font-weight: 700;
  font-size: 24px;
}
section.bundle .special-offer .price-container .crossed-price{
  color: var(--text-secondary);
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 500px) {
  section.bundle .special-offer .price-container .crossed-price{
    font-size: 25px;
  }
}
section.bundle .special-offer .price-container .crossed-price span{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
}
section.bundle .special-offer .price-container .price{
  font-size: 32px;
  font-weight: 700;
  word-wrap: break-word; 
  display: flex;
  align-items: center;
  gap: 4px
}
@media screen and (min-width: 500px) {
  section.bundle .special-offer .price-container .price{
    font-size: 35px;
  }
}
section.bundle .special-offer .price-container .price span{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 23px;
}
section.bundle .special-offer .bundle-btn {
  width: 100%;
  text-align: center;
  background-color: var(--cta-button-bg);
  border: 3px solid var(--cta-button-border);
  color: var(--cta-button-text);
  border-radius: 15px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 27px;
}

.bundle-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
}
.bundle-overlay .bundle-popup {
background-color: var(--components-bg);
max-width: 940px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border-radius: 10.357px;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 960px) {
.bundle-overlay .bundle-popup {
  width: 90%;
}
}
:dir(rtl) .bundle-overlay .bundle-popup {
transform: translate(50%, -50%);
left: -50%;
}
.bundle-popup .header {
  padding: 20px;
  background-color: var(--selected-variant-option);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bundle-popup .header span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
@media screen and (min-width: 768px) {
  .bundle-popup .header span {
    font-size: 24px;
  }
}
.bundle-popup .header .close-bundle{
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.bundle-popup #bundle-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .bundle-popup #bundle-form {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .bundle-popup #bundle-form {
    padding: 30px;
  }
}
.bundle-popup #bundle-form .inputs-container{
  flex: 1;
}

.bundle-popup #bundle-form .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.bundle-popup #bundle-form .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-bottom: 15px;
}

.bundle-popup #bundle-form .input-wrapper label{
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.bundle-popup:dir(rtl) #bundle-form .input-wrapper input{
  text-align: right;
}
.bundle-popup #bundle-form .input-wrapper input, .bundle-popup #bundle-form .input-wrapper select {
  border: 1px solid var(--border);
  background-color: var(--components-bg);
  padding: 16px 12px;
  outline-color: var(--text-primary);
  border-radius: 6px;
  color: var(--text-primary);
  width: 100%;
}
.bundle-popup #bundle-form .input-wrapper select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bundle-popup #bundle-form .input-wrapper.select-wrapper::before {
  content: url(MEDIA/chevron-down.svg);
  font-size: 10px;
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 13px;
  transform: translateY(-50%);
}
.bundle-popup #bundle-form .input-wrapper.select-wrapper:dir(rtl)::before{
  left: 10px;
  right: auto;
}
#bundle-form .quantity-controller .title {
  display: block;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
#bundle-form .quantity-controller .btns {
  display: flex;
  gap: 10px;
  align-items: center;
  border: solid 1px var(--border);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: 6px;
}
#bundle-form .quantity-controller .btns button {
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
}
.bundle-popup #bundle-form .bundle-summary {
  flex: 1;
}
.bundle-popup #bundle-form .bundle-summary .summary-wrapper {
  width: 100%;
  background-color: var(--components-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.bundle-popup #bundle-form .bundle-summary .summary-wrapper .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bundle-popup #bundle-form .bundle-summary .summary-wrapper .summary-header .title{
  font-weight: 600;
}
.bundle-popup #bundle-form .bundle-summary .summary-wrapper .content {
  display: flex;
  flex-direction: column;
}
.bundle-popup #bundle-form .bundle-summary .summary-wrapper .content .content-row:first-child {
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-top: 20px;
  padding: 12px;
}
#bundle-form .bundle-summary .content .content-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 20px 12px;
}
#bundle-form .bundle-summary .content .content-row:last-child {
  border-bottom: none;
  padding-bottom: 12px;
}
#bundle-form .bundle-summary .content-row .order-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#bundle-form .bundle-summary .content-row .order-quantity .bundle-img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}
#bundle-form .bundle-summary .content-row .order-quantity .title {
  font-size: 12px;
  color: var(--text-primary);
  margin-right: 5px;
}
@media screen and (min-width: 768px){
  #bundle-form .bundle-summary .content-row .order-quantity .title {
      font-size: 14px;
  }
}
#bundle-form .bundle-summary .content-row .order-quantity span.quantity {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--total-price);
  border-radius: 5px;
  padding: 4px;
  margin-right: 10px;
}
#bundle-form .bundle-summary .content-row .row-price {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}
#bundle-form .bundle-summary .content-row .row-title{
  color: var(--text-primary);
  font-size: 14px;
}
#bundle-form .bundle-summary .content-row .row-price.total-price {
  color: var(--total-price);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #bundle-form .bundle-summary .content-row .row-price.total-price {
    font-size: 17px;
  }
}
#bundle-form .bundle-summary .content-row .row-price span:nth-child(2) {
  text-transform: uppercase;
}
.bundle-popup #bundle-form .bundle-summary #bundle-buy-btn {
  width: 100%;
  text-align: center;
  background-color: var(--cta-button-bg);
  border: 3px solid var(--cta-button-border);
  color: var(--cta-button-text);
  border-radius: 15px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
}
/* ================= More Products ==================== */
section.more-products{
  margin-bottom: 60px;
}
section.more-products  h2{
  font-size: 29px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
}
section.more-products  h2::first-letter{
  text-transform: uppercase;
}
section.more-products .list{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-wrap: normal;
  white-space: nowrap;

}
section.more-products .list .product-card{
  background-color: var(--components-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  overflow: hidden;
  min-width: 273px ;
  max-width: 400px;

}
section.more-products .list .product-card .img-container{
  width: 273px;
  height: 273px;
}
section.more-products .list .product-card .img-container img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.more-products .list .product-card .info-container{
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
section.more-products .list .product-card .info-container .title{
  font-size: 18px;
  font-weight: 600;
  max-width: 230px;
  overflow: hidden;
  white-space: normal;
  line-height: 1.4;
}
section.more-products .list .product-card .info-container .price-wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
}
section.more-products .list .product-card .info-container .price-wrapper .price{
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
section.more-products .list .product-card .info-container .price-wrapper .price span.currency{
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
section.more-products .list .product-card .info-container .price-wrapper .crossed-price{
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-decoration: line-through;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 4px;
}
section.more-products .list .product-card .info-container a{
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: 3px solid var(--cta-button-border);
  background-color: var(--cta-button-bg);
  color: var(--cta-button-text);
  width: 100%;
  text-align: center;
}
section.more-products .list .product-card .info-container a span::first-letter{
  text-transform: uppercase;
}
/* ================= Footer ==================== */
footer {
  background-color: var(--components-bg);
  border-top: solid 1px #CFCFDE;
  text-align: center;
  margin-bottom: 80px;
}
footer.landing{
  margin-bottom:0;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 0px;
}

footer .footer-top .top-scroll-btn {
  background-color: var(--up-button);
  border-radius: var(--border-radius);
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .devider {
  border: 0.5px solid #CFCFDE;
  margin: 0;
}

footer .footer-bottom {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 768px) {
  footer .footer-bottom {
    flex-direction: row;
  }
}
footer .footer-bottom .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
footer .footer-bottom .copyright {
  color: var(--text-description);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.65;
}
@media screen and (min-width: 767px) {
  footer .footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    border-top: none;
    padding: 0;
  }
  footer .footer-bottom .social-icons {
    margin-bottom: 0;
  }
}

/* ================= Congratulations ==================== */
  .congrats-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
  }
.congrats-overlay .congrats-popup {
  background-color: var(--components-bg);
  max-width: 440px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10.357px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .congrats-overlay .congrats-popup {
    width: 90%;
  }
}
:dir(rtl) .congrats-overlay .congrats-popup {
  transform: translate(50%, -50%);
  left: -50%;
}
.congrats-overlay .congrats-popup .content {
  display: flex;
  padding: 20px 32px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.congrats-overlay .congrats-popup .content .bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.congrats-overlay .congrats-popup .content .icon {
  z-index: 99;
}
.congrats-overlay .congrats-popup .content h3 {
  color: var(--text-primary);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
}
.congrats-overlay .congrats-popup .content p {
  color: var(--text-description);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.congrats-overlay .congrats-popup .content button {
  padding: 10px 19.81px;
  border-radius: 6px;
  background-color: var(--cta-button-bg);
  border: 2.589px solid var(--cta-button-border);
  color: var(--cta-button-text);
  font-size: 12px;
}
@media screen and (min-width: 767px) {
  .congrats-overlay .congrats-popup .content h3 {
    font-size: 32px;
  }
  .congrats-overlay .congrats-popup .content p {
    font-size: 18px;
  }
  .congrats-overlay .congrats-popup .content button {
    font-size: 14px;
    height: 45px;
    padding: 12px 19.81px;
  }
  .congrats-overlay .congrats-popup .content .icon svg {
    width: 72px;
    height: 72px;
  }
}
/* ================= Toast ==================== */
.toast {
  position: fixed;
  left: 1rem;
  top: 100vh;
  z-index: 5;
  padding: 1rem;
  max-width: 30rem;
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5);
  transform: translateY(0%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 4px;
  z-index: 30;
}
.toast:lang(ar){
  right: 1rem;
  left: auto;
}
.toast.success {
  background: linear-gradient(138deg, rgba(52,156,100,1) 0%, rgba(50,187,113,1) 100%);
}

.toast p.message{
  color: white;
}
.toast .close-toast{
  background-color: transparent;
  border: none;
  outline: none;
}
.toast.active {
  animation-name: Toast;
  animation-duration: 0.9s;
  animation-iteration-count: 1;
}

@keyframes Toast {
  0% {
    transform: translateY(0%);
  }

  5% {
    transform: translateY(-110%);
  }

  95% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(90%);
  }
}

/* ================= Loader ==================== */
.loader-spinner {
  border: 3px solid #f3f3f3; 
  border-top: 3px solid #7f7f7f00; 
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
