@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal }

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('assets/fonts/IBMPlexSansArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal }

* {
    margin: 0; padding: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-sizing: border-box }

html { scroll-behavior: smooth }

span { color: #FF6F2C }

/* تغيير لون الخلفية للنصوص التي يتم تحديدها */
::selection {
    background-color: #FF6F2C;
    color: #F2F2F2 }

/* شريط التمرير */
::-webkit-scrollbar {
    height: 0.5rem; width: 0.5rem;
    background-color: transparent }
::-webkit-scrollbar-thumb {
    background: #FF6F2C;
    border-radius: .625rem }
/* شريط التمرير في  FireFox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF6F2C transparent }

body { background-color: #0D0D0D }

.fade-in-top {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out }

.fade-in-bottom {
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out }

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out }

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out }

.visible {
    opacity: 1;
    transform: translate(0, 0) }

header {
    background-color: #0D0D0D;
    color: #F2F2F2;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.625rem 1rem }

.logo-container {
    display: flex;
    align-items: center }

.logo-container img { height: 4.375rem; width: 4.375rem }

.logo-container span { 
    font-weight: 700;
    font-size: 1.25rem }

nav {
    display: flex;
    gap: 1.25rem }

nav a {
    font-weight: 700;
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s }

nav a:hover, .mobile-menu a:hover { color: #FF6F2C }

#langSelect {
    background-color: #0D0D0D;
    color: #F2F2F2;
    border: 2px solid #FF6F2C;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer }

/* عند التركيز أو التحويم */
#langSelect:hover, #langSelect:focus {
    border-color: #FF6F2C;
    outline: none }

.mobile-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 5.3125rem;
    right: 0;
    width: 100%;
    background-color: #0D0D0D;
    color: #F2F2F2;
    font-weight: 700;
    flex-direction: column;
    gap: 0.9375rem;
    padding: .625rem 0;
    z-index: 1000;
    align-items: center;
    pointer-events: none }

.mobile-menu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto }


.mobile-menu.hiding {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none }

.mobile-menu a { 
    text-align: right;
    text-decoration: none;
    color: #F2F2F2;
    margin-right: .625rem }

.mobile-close {
    align-self: flex-end;
    font-size: 1.5rem;
    cursor: pointer;
    margin: .625rem 1.5625rem }

.bar {
    display: block;
    position: absolute;
    height: 3px; width: 100%;
    background-color: #F2F2F2;
    border-radius: 2px;
    transition: all 0.4s ease-in-out }

.top-bar { top: .3125rem }

.bottom-bar { top: .875rem }

.menu-toggle.active .top-bar {
    transform: rotate(45deg);
    top: .6875rem }

.menu-toggle.active .bottom-bar {
    transform: rotate(-45deg);
    top: .6875rem }

.dropdown { position: relative }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0D0D0D;
    min-width: 150px;
    top: 1.875rem;
    right: 0;
    box-shadow: 0px 4px 6px rgba(160, 160, 160, 0.5);
    z-index: 999 }

.dropdown:hover .dropdown-content { display: block }

.dropdown-content a {
    display: block;
    padding: 0.625rem;
    color: #F2F2F2;
    text-decoration: none }

.dropdown.show .dropdown-content { display: block }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-0.625rem) }
    to { opacity: 1; transform: translateY(0) }}

p { line-height: 1.65 }

.home { 
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('assets/images/Home-BG.webp');
    background-size: cover;
    width: 100% }
.home::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('assets/images/Home-BG.webp') no-repeat center center;
    background-size: cover;
    z-index: -1 }

.home-cont {
    color: #F2F2F2;
    display: flex;
    align-items: center }

.home-text { color: #A0A0A0 }

.home-texts { 
    display: flex;
    flex-direction: column }

.shop-now { margin-top: 15px }

.shop-now-btn {
    font-weight: 600;
    font-size: 1.125rem;
    width: fit-content;
    color: #F2F2F2;
    background-color: #FF6F2C;
    padding: .625rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 10px }
  
.shop-now-btn:hover {
    background-color: #F14D1D;
    transform: scale(1.1);
    gap: .4688rem }

.home-img { animation: float 2s infinite alternate }

@keyframes float {
    0% { transform: translateY(0) }
    100% { transform: translateY(.9375rem) }}

.about {
    position: relative;
    background-color: #0D0D0D;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;       
    padding: 2rem }

.about::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 300px; width: 500px;
    background: radial-gradient(
        circle at top left,
        rgba(255, 111, 44, 0.6),
        transparent 100% );
    filter: blur(80px);
    pointer-events: none;
    z-index: 0 }

.about > * {
    position: relative;
    z-index: 1 }

.about-title, .about-texts, .products-title, .faqs-title, .contact-title { color: #F2F2F2 }

.about-title h1, .products-title h1, .faqs-title h1, .contact-title h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem }
  
.about-title h1::after, .products-title h1::after, .faqs-title h1::after, .contact-title h1::after {
    content: "";
    position: absolute;
    bottom: 0; left: -5%;
    width: 115%;
    height: 4px;
    background: rgba(255,111,44,1);
    border-radius: 2px }

.about-cont {
    max-width: 1000px;
    width: 100%;
    text-align: center }

.about-text { margin-top: 20px }

.features-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem }

.features-cards .card {
    background-color: #1A1A1A;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s }

.features-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) }

.features-cards .card i {
    color: #FF6F2C;
    margin-bottom: 1rem }

.features-cards .card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #F2F2F2 }

.features-cards .card p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.65 }

.products, .faqs, .contact {
    position: relative;
    background-color: #0D0D0D; 
    padding: 2rem }

.products-cont {
    display: flex;
    flex-direction: column;
    align-items: center }

.products-grid { margin-top: 30px }

.product-card-public {
    background: #1A1A1A;
    width: 50%;
    border: 1px solid #333;
    border-radius: 15px;
    color: #F2F2F2;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s }

.product-card-public:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) }

.product-card-public img { 
    margin-bottom: 10px;
    border-radius: 5px }

.product-image-public {
    display: block;
    margin-right: auto; margin-left: auto; 
    max-width: 100%;
    height: auto }

.product-price-public { font-weight: 600 }

.product-rating-public {
    display: flex;
    gap: 2px }

.product-rating-public i, .product-rating-public .far.fa-star {
    color: #FDD017;
    font-size: 1rem }

.btn-view-details {
    font-weight: 600;
    text-decoration: none;
    background-color: #FF6F2C;
    padding: 8px 12px;
    border-radius: 5px;
    color: #F2F2F2 ;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    width: fit-content;
    transition: 0.3s; }

.btn-view-details:hover { background-color: #F14D1D }

.faqs { padding: 1rem }

.faqs-data {
    display: flex;
    flex-direction: column;
    align-items: center }

.faq-section {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    background: #1A1A1A;
    border: 1px solid #333;
    color: #F2F2F2;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) }

.faq-header {
    text-align: center;
    margin-bottom: 2rem }

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem }

.faq-header h1 {
    color: #A0A0A0;
    font-size: 1.2rem }

.faq-card {
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05) }

.faq-card img {
    height: auto;
    vertical-align: middle }

.faq-toggle {
    background: none;
    border: none;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
    background-color: #FFA770;
    color: #F2F2F2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s }

.faq-toggle:hover { background-color: #CCC }

.faq-toggle p { color: #F2F2F2 }

.faq-answer {
    padding: 0 1.5rem;
    height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #F2F2F2;
    border-top: 1px solid #DDD;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.4s ease }

.faq-answer.show {
    padding: 1rem 1.5rem;
    height: auto;
    opacity: 1 }

.faq-answer.show p { 
    color: #000;
    font-weight: 500 }

.contact-data {
    display: block;
    text-align: right }

.contact-title { text-align: center }

.contact-message-title {
    font-weight: 600;
    margin-top: 15px;
    color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center }

.message-cont { padding-top: 20px }

.message-form, .message-group {
    display: grid;
    row-gap: 10px }

.message-form { position: relative }

.name-input, .email-input, .message-input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    background: #1A1A1A;
    border: 1px solid #333;
    color: hsl(228, 8%, 95%) }

.name-input::placeholder, .email-input::placeholder, .message-input::placeholder { color: hsl(228, 8%, 65%) }

.message-input {
    height: 150px;
    resize: none;
    margin-bottom: 10px }

.submit-button {
    justify-self: center;
    cursor: pointer;
    display: inline-block; 
    background-color: #FF6F2C;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 8px;
    color: #F2F2F2;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0px 6px 0px #333;
    transition: all .1s }

.submit-button:active {
    box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.25);
    position: relative;
    top: 2px }

#toast {
    position: fixed;
    top: 20px; right: 20px;
    padding: 1em;
    border-radius: 4px;
    color: #F2F2F2;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1000 }

#toast.show {
    opacity: 1;
    pointer-events: auto }

#toast.success { background-color: #74B72E }

#toast.error { background-color: #e74c3c }

footer { background-color: #1A1A1A }

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between }

.logo-footer div {
    display: flex;
    align-items: center }

.logo-footer h2 {
    margin-right: 10px;
    font-weight: 600;
    color: #F2F2F2 }

.tow { margin-top: 10px }

.logo-footer img { border-radius: 50% }

.logo-footer p {
    margin-right: 10px;
    color: #F2F2F2 }

.payment-methods img {
    height: auto;
    object-fit: contain }

.copy-right p {
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0;
    color: #F2F2F2 }

.footer-left {
    display: flex;
    justify-content: center;
    line-height: 1.65 }

.footer-left div { 
    display: flex;
    flex-direction: column }

.footer-left h1 {
    font-weight: 600;
    color: #F2F2F2 }

.footer-left a {
    text-decoration: none;
    font-weight: 400;
    color: #F2F2F2;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s }

.footer-left a:hover { color: #FF6F2C }

@media screen and (max-width: 394px) {
    nav { display: none }

    .menu-toggle {
        display: block;
        height: 1.5625rem; width: 1.875rem;
        position: relative;
        cursor: pointer;
        z-index: 1100 }
    
    .home-cont { flex-direction: column }

    .home-texts, .about-texts { gap: .5rem }

    .home-texts { margin: 120px 25px 20px }

    .home-title { font-size: 1.125rem }

    .home-text { font-size: 1.0625rem }

    .home-img { 
        display: flex;
        justify-content: center;
        margin-bottom: 40px }

    .home-img img { width: 80% }

    .about, .products, .faqs, .contact { padding: 15px }

    .about-title, .products-title { font-size: 1rem }

    .about-text { font-size: 1.3125rem }

    .about-text p { font-size: 1rem }

    .features-cards { flex-wrap: wrap }

    .product-card-public img { width: 100px }

    .product-name-public { font-size: 1rem }

    .product-subdescription-public { font-size: 0.8rem }

    .faq-card img { width: 6% }

    .contact-data { padding: 20px }

    .contact-message-title { font-size: .875rem }

    footer { padding: 1.25rem }

    .logo-footer img { max-width: 40px }

    .logo-footer h2, .footer-left h1 { font-size: 1.125rem }

    .payment-methods { margin-top: 10px }

    .payment-methods img { width: 90% }

    .footer-left { 
        gap: 30px;
        margin: 15px 0 }

    .footer-left a { 
        font-size: 15px;
        line-height: 25px }
    
    .copy-right p { text-align: center }}

@media screen and (min-width: 394px) {
    nav { display: none }

    .menu-toggle {
        display: block;
        height: 1.5625rem; width: 1.875rem;
        position: relative;
        cursor: pointer;
        z-index: 1100 }

    #langSelect { padding: 4px 8px }
    
    .home-cont { flex-direction: column }

    .home-texts, .about-texts { gap: .5rem }

    .home-texts { margin: 120px 25px 20px }

    .home-title { font-size: 1.25rem }

    .home-text { font-size: 1.0625rem }

    .home-img { 
        display: flex;
        justify-content: center;
        margin-bottom: 40px }

    .home-img img { width: 70% }

    .about, .products, .faqs, .contact { padding: 20px }

    .about-title, .products-title, .faqs-title, .contact-title { font-size: 1.0625rem }

    .about-text { font-size: 1.3125rem }
    
    .about-text p { font-size: 1rem }

    .features-cards { flex-wrap: wrap }

    .product-card-public img { width: 115px }

    .product-name-public { font-size: 1rem }

    .product-subdescription-public { font-size: 0.8rem }

    .contact-data { padding: 20px }

    footer { padding: .9375rem }

    .logo-footer img { max-width: 40px }

    .logo-footer h2, .footer-left h1 { font-size: 20px }

    .footer-left { margin-bottom: 10px }

    .payment-methods { margin: .9375rem 0 }

    .footer-left a { 
        font-size: 15px;
        line-height: 25px }}

@media screen and (max-width: 426px) {
    .footer-content { 
        display: flex;
        flex-direction: column;
        align-items: center }
    
    .footer-left { gap: 30px }

    .payment-methods img { max-width: 150px }}

@media screen and (min-width: 426px) {
    .footer-content { 
        display: grid;
        grid-template-areas: "a b" "c b" }

    .footer-left { gap: 10px }

    .payment-methods img { 
        max-width: 170px;
        margin-bottom: 65px }
    
    .copy-right { margin-top: -60px }}

@media screen and (min-width: 683px) {
    .payment-methods img { 
        max-width: 200px;
        margin-bottom: 75px }}

@media screen and (min-width: 767px) {
    header { justify-content: space-around }

    nav { display: flex }

    .menu-toggle { display: none }

    nav a { font-size: 1.0625rem }

    .home, .about {
        display: flex;
        justify-content: center }

    .home { height: 100vh }

    .home-cont { 
        flex-direction: row;
        gap: 1.25rem;
        margin: 60px }

    .home-texts, .about-texts { gap: .9375rem }

    .home-title { font-size: 1.25rem }

    .home-text { font-size: 1.0625rem }

    .home-img img { width: 100% }

    .about, .products, .faqs, .contact { padding: 30px }

    .about-title, .products-title, .faqs-title, .contact-title { font-size: 1.0625rem }

    .about-text p { font-size: 1.5rem }

    .features-cards { flex-wrap: wrap }

    .product-card-public { width: 50% }

    .product-card-public img { width: 40% }

    .contact-data { padding: 25px }

    footer { padding: 20px 75px } 

    .logo-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column }
    
    .payment-methods img { 
        max-width: 215px;
        margin-bottom: 57px }

    .footer-left { 
        flex-direction: row;
        gap: 3.75rem;
        margin-bottom: 0 }
    
    .copy-right { margin-top: -60px }}

@media screen and (max-width: 768px) {
    header { justify-content: space-between }

    .faq-header h1 { font-size: 1rem }

    .faqs p, .faqs i { font-size: 0.9rem }}

@media screen and (min-width: 1023px) {
    nav a, #langSelect { font-size: 1.25rem }

    .home-title { font-size: 1.5625rem }

    .home-text { font-size: 1.125rem }

    .home-img img { width: 85% }

    .about, .products { padding: 40px }

    .about-title, .products-title, .faqs-title, .contact-title { font-size: 1.25rem }

    .about-text { font-size: 1.5rem }

    .features-cards { flex-wrap: wrap }

    .product-card-public { width: 40% }

    .product-card-public img { width: 50% }

    .product-name-public { font-size: 1.2rem }

    .product-subdescription-public { font-size: 0.9rem }

    .faq-card img { width: 1.5% }

    .payment-methods img {
        max-width: 200px;
        margin-bottom: 55px }

    .footer-left { margin-bottom: 0 }

    .copy-right { margin-top: -60px }}

@media screen and (min-width: 1439px) { 
    .home-title { font-size: 1.875rem }

    .home-text { font-size: 1.375rem }

    .home-img img { width: 100% }

    .about-title, .products-title, .faqs-title, .contact-title { font-size: 1.5625rem }

    .about-text { font-size: 1.5rem }

    .features-cards { flex-wrap: nowrap }

    .product-card-public { width: 30% }

    .product-card-public img { width: 40% }

    .contact { height: 78vh }

    .contact-data { padding: 40px 80px }
    
    .contact-message-title { font-size: 22px }

    footer { padding: 20px 0 }

    .footer-content {
        display: grid;
        justify-content: space-around;
        margin: 0 140px }

    .logo-footer img { max-width: 60px }

    .logo-footer h2, .footer-left h1 { font-size: 1.875rem }

    .payment-methods img { margin-bottom: 90px }

    .footer-left a { 
        font-size: 25px;
        line-height: 40px }
    
    .footer-left a::before {
        margin-top: 25px;
        height: 12px; width: 95% }

    .footer-url a, .copy-right p { font-size: 20px }

    .copy-right { margin-top: -90px }}