
/** FONTS */
/*== Satoshi ==*/
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 900;
  src: local("Satoshi Black"), url("/assets/BASE/fonts/satoshi/Satoshi-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  src: local("Satoshi Bold"), url("/assets/BASE/fonts/satoshi/Satoshi-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  src: local("Satoshi Medium"), url("/assets/BASE/fonts/satoshi/Satoshi-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 400;
  src: local("Sathoshi Regular"), url("/assets/BASE/fonts/satoshi/Satoshi-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 100 900;
  src: local("Satoshi Variable"), url("/assets/BASE/fonts/satoshi/Satoshi-Variable.ttf") format("truetype");
}

/* ============================
   Reset Styles
   ============================
*/
/* Box Sizing Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* 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;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--site-bg); 
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-secondary); 
  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
   ============================
*/
/* Set default font family */
body {
  font-family: "Inter", sans-serif;
}
body:lang(ar) * {
  font-family: "IBM Plex Sans Arabic", "Readex Pro", sans-serif;
}

h1 {
  font-family: "Satoshi", "Inter", sans-serif;
}
h1:lang(ar) {
  font-family: "IBM Plex Sans Arabic", "Readex Pro", sans-serif;
}

/* 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;
  }
}

/* ================= Header ==================== */

.thank-you{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--site-bg);
}
.thank-you header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background-color:white;
    background-color: var(--components-bg);
}

/* ================= Main ==================== */

.thank-you .content{
    padding: 1.8rem 0;
    margin: 1rem 0;
}
@media (min-width: 768px) {
  .thank-you .content{
    padding: 2rem 0;
    margin: 1.5rem 0;
  }
}
.thank-you .content .text .illustration{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.thank-you .content .text .illustration span{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  background-color: #E3E1FE;
  border-radius: 18px;
  width: fit-content;
  font-size: 36px;
}
.thank-you .content .text .illustration img{
  width: 70px;
}
.thank-you .content .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
  .thank-you .content .text{
    gap: 2rem;
  }
}
.thank-you .content .text h1{
    font-size: 29px;
    font-weight: 700;
    color: var(--text-primary);
}
@media (min-width: 768px) {
  .thank-you .content .text h1{
    font-size: 32px;
}
}
.thank-you .content .text p{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}
.thank-you .content .link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (min-width: 768px) {
  .thank-you .content .link{
    margin-top: 2rem;
  }
}
.thank-you:lang(ar) .content .link{
    flex-direction: row-reverse;
}
.thank-you .content .link a, .thank-you .content .link a:visited{
    color: var(--primary);
}

/* ================= More Products ==================== */
.thank-you section.more-products{
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .thank-you section.more-products .container{
    padding: 0 ;
  }
  .thank-you section.more-products .list{
    padding: 0 20px;
  }
  .thank-you section.more-products  h2{
    padding-left: 20px;
  }
  .thank-you:lang(ar) section.more-products  h2{
    padding-right: 20px;
  }
}
.thank-you section.more-products  h2{
  font-size: 27px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-family: "Satoshi", "Inter", sans-serif;
}
@media (min-width: 768px) {
  .thank-you section.more-products  h2{
    font-size: 29px;
  }
}
.thank-you section.more-products  h2::first-letter{
  text-transform: uppercase;
}
.thank-you section.more-products h2:lang(ar) {
  font-family: "Readex Pro", sans-serif;
}
.thank-you section.more-products .list{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-wrap: normal;
  white-space: nowrap;
}
.thank-you section.more-products .list .product-card{
  background-color: var(--components-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-width: 240px ;
  max-width: 400px;
}
@media (min-width: 768px) {
  .thank-you section.more-products .list .product-card{
    min-width: 273px ;
  }
}
.thank-you section.more-products .list .product-card .img-container{
  width: 240px;
  height: 240px;
}
@media (min-width: 768px) {
  .thank-you section.more-products .list .product-card .img-container{
    width: 273px;
    height: 273px;
  }
}
.thank-you section.more-products .list .product-card .img-container img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thank-you section.more-products .list .product-card .info-container{
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (min-width: 768px) {
  .thank-you section.more-products .list .product-card .info-container{
    padding: 24px 16px;
    gap: 24px;
  }
}
.thank-you section.more-products .list .product-card .info-container .title{
  font-size: 18px;
  font-weight: 600;
  font-family: "Satoshi", "Inter", sans-serif;
  max-width: 230px;
  overflow: hidden;
  white-space: normal;
  line-height: 1.4;
}
.thank-you section.more-products .list .product-card .info-container .title:lang(ar) {
  font-family: "Readex Pro", sans-serif;
}
.thank-you section.more-products .list .product-card .info-container .price-wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
}
.thank-you section.more-products .list .product-card .info-container .price-wrapper .price{
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Satoshi", "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}
.thank-you section.more-products .list .product-card .info-container .price-wrapper .price:lang(ar) {
  font-family: "IBM Plex Sans Arabic", "Readex Pro", sans-serif;
}
.thank-you section.more-products .list .product-card .info-container .price-wrapper .price span.currency{
  color: var(--text-primary);
  text-transform: uppercase;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.thank-you 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;
  font-family: "Satoshi", "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}
.thank-you section.more-products .list .product-card .info-container .price-wrapper .crossed-price:lang(ar) {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
.thank-you section.more-products .list .product-card .info-container a{
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  font-family: "Satoshi", "Inter", sans-serif;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 3px solid var(--cta-button-border);
  background-color: var(--cta-button-bg);
  color: var(--cta-button-text);
  width: 100%;
  text-align: center;
}
.thank-you section.more-products .list .product-card .info-container a span::first-letter{
  text-transform: uppercase;
}
.thank-you section.more-products .list .product-card .info-container a:lang(ar) {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

/* ================= Footer ==================== */

footer {
  background-color: var(--components-bg);
  border-top: solid 1px #CFCFDE;
  text-align: center;
}
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: 50%;
  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;
  }
}

