@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Cormorant+Garamond:wght@400;600&display=swap");

:root {
    --transition: all 500ms ease-out;
    --main-color: rgba(0, 0, 0, 0.849);
    --sec-color: #ffd700;
    --bg-color: #f8f8f8;
    --white-color: #fff;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: serif;
}
main {
    margin-top: 70px;
}
p a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}
ul {
    list-style: none;
}
a {
    text-decoration: none !important;
}
p {
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    padding: 0;
}
/* Header */
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    position: fixed;
    display: flex;
    text-align: center;
    align-items: center;
    left: 0;
    top: 0px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.849);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
.padd-100 {
    padding-top: 100px;
}
#header .logo img {
    padding: 0;
    max-height: 50px;
    max-width: 100%;
}
#header.header-scrolled a,
#header.header-pages a {
    color: #fff;
}
#header.header-scrolled,
#header.header-pages {
    height: 70px;
    padding: 15px 0;
    background-color: var(--main-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled #topbar,
#header.header-pages #topbar {
    display: none;
}
.logo {
    float: right !important;
}
nav.main-nav {
    float: left !important;
    flex-direction: row-reverse;
}

/* Navigation */
.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}
.main-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
    color: var(--sec-color);
    text-decoration: none;
}
.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--main-color);
    border-radius: 8px;
    transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    overflow: hidden;
    visibility: visible;
}
.main-nav .drop-down li:hover a {
    color: var(--main-color);
}
.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}
.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    color: var(--white-color);
}
.main-nav .drop-down > a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.main-nav .drop-down .drop-down > a {
    padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}
.dropdown-menu {
    background-color: var(--main-color);
    color: var(--white-color) !important;
    transition: var(--main-transition);
    border-radius: 8px;
    overflow: hidden;
}
.dropdown-menu a:hover {
    background-color: var(--white-color);
}
/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #8dc2fa;
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\f077";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-toggle {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: left;
    left: 24px;
}
.mobile-nav-toggle i {
    margin: 24px 24px 0 0;
    color: #fff;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    left: 0;
}
.mobile-nav-active .mobile-nav-toggle i.fa-times {
    position: fixed;
    right: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}
/* carousel */
.carousel-item {
    height: 100vh;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
@media (max-width: 771px) {
    .carousel-item {
        height: 50vh;
    }
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    fill: black !important;
    color: black !important;
}

.carousel-item img {
    width: 50%;
}
/* features */
.features {
    background-color: var(--bg-color);
    /* background: linear-gradient(135deg, #fff4e0, #ffe5b4); */
    font-family: "Cormorant Garamond", serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px;
}
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    perspective: 1500px;
}

.section-title {
    width: 100%;
    text-align: center;
    font-family: "Cinzel", serif;
    color: #6a4c3b;
    font-size: 4rem;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.feature-card {
    position: relative;
    width: 260px;
    height: 350px;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 25px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: linear-gradient(45deg, transparent, gold, transparent); */
    /* animation: metallic-shine 5s linear infinite; */
    opacity: 0.2;
}

.feature-card:hover {
    transform: scale(1.05) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.feature-content {
    position: relative;
    padding: 20px 30px;
    text-align: center;
    z-index: 10;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    transform: perspective(500px) rotateX(15deg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(15deg);
}

.feature-icon img {
    width: 70px;
    height: 70px;
    filter: sepia(50%) hue-rotate(40deg);
}

.feature-title {
    font-family: "Cinzel", serif;
    color: var(--sec-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-description {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 800;
}

@keyframes metallic-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 2.5rem;
    }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    transition: transform 1.5s ease;
}
/* Products */
.products {
    margin-inline: auto;
    color: #111;
    padding-bottom: 60px;
    background-color: #fff;
}

.products .card {
    position: relative;
    height: 18.75rem;
    background: var(--clr);
    border: none !important;
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.products .card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}
.products .card-footer h3 {
    margin: 5px 0;
    color: var(--sec-color);
}
.products .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: #fff;
    border-top-left-radius: 50%;
}

.products .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.products .cats {
    display: flex;
}
.products .cats .cat {
    background-color: var(--sec-color);
    border-radius: 6px;
    padding: 5px;
    color: #fff;
    margin: 0 10px 0px 0px;
}

@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v225/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOej.woff2)
        format("woff2");
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    color: var(--sec-color);
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* Contact */
.contact {
    padding: 40px;
}
.contact > .container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contact .row > * {
    padding: 0 !important;
}
.contact .contact-info {
    background-color: var(--main-color);
    padding: 40px;
    height: 100%;
    color: white;
}
.contact .contact-info h1 {
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--sec-color);
}
.contact .contact-info .info-item h3 {
    color: var(--sec-color);
}
.contact .info-item a {
    color: #fff;
}
.contact .info-item {
    display: -webkit-inline-box;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}
.contact .info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    border: 1px solid #fff;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    transition: 0.3s ease-in-out all;
}
.contact .social-links .link:hover,
.contact .info-item .icon:hover {
    border-color: var(--sec-color);
    color: #fff;
    background-color: var(--sec-color);
}
.contact .contact-form {
    padding: 40px;
}
.contact .contact-form h2 {
    color: var(--sec-color);
    margin-bottom: 30px;
    font-size: 2em;
}
.contact .form-group {
    margin-bottom: 25px;
    position: relative;
}
.contact .form-group input,
.contact .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 16px;
}
.contact .form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}
.contact .form-group input:focus,
.contact .form-group textarea:focus {
    border-color: var(--sec-color);
}
.contact .form-group input:focus + label,
.contact .form-group textarea:focus + label,
.contact .form-group input:not(:placeholder-shown) + label,
.contact .form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 14px;
    color: var(--sec-color);
}
.contact button {
    background: var(--sec-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
}
.contact button:hover {
    transform: translateY(-2px);
}
.contact .social-links {
    margin-top: 40px;
    display: -webkit-inline-box;
}
.contact .social-links .link:not(:first-child) {
    margin-left: 30px;
}
.contact .social-links a {
    color: white;
    transition: 0.3s ease;
}
.contact .social-links .link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: 0.3s ease;
    place-content: center;
    transition: 0.3s ease-in-out all;
}
.map .map-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}
@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }
    .contact .social-links .link:not(:first-child) {
        margin-left: 1px;
    }
    .contact .social-links .link {
        width: 40px;
        height: 40px;
    }
    .contact .contact-info {
        padding: 20px !important;
    }
}
/* main title */
.main-title {
    padding: 60px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.main-title .golden {
    color: var(--sec-color);
}
.main-title h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}
.main-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 20px auto;
}
.main-title.lines h2::before,
.main-title.lines h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="%23ffd700" stroke-width="2"/></svg>')
        repeat-x;
}
.main-title.lines h2::before {
    left: -120px;
}
.main-title.lines h2::after {
    right: -120px;
}
/* About  */
.about {
    background: linear-gradient(to bottom, #f8f9fa, #e3e3e3);
    padding: 50px;
}
.about .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: AboutfadeIn 1s forwards;
}

.about .image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

.about .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.about .image-wrapper img:hover {
    transform: scale(1.05);
}
.about .image-wrapper::before,
.about .image-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.2);
    z-index: -1;
}

.about .image-wrapper::before {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
}

.about .image-wrapper::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    background: rgba(33, 150, 243, 0.2);
}

.about .text-wrapper {
    max-width: 600px;
    text-align: left;
    opacity: 1;
}

.about .text-wrapper h1 {
    font-size: 2.5em;
    color: var(--sec-color);
    position: relative;
    display: inline-block;
}

.about .text-wrapper h1::after {
    content: "";
    width: 100px;
    height: 4px;
    background: var(--sec-color);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}
.about .text-wrapper h1::before {
    content: "";
    width: 50px;
    height: 4px;
    background: var(--sec-color);
    position: absolute;
    left: 0;
    bottom: -20px;
    border-radius: 2px;
}

.about .text-wrapper p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}
@keyframes AboutfadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Login  */
.login {
    padding: 100px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: left;
    height: 100%;
}
.login-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    padding: 0px 20px 0;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.login-form {
    width: 100%;
    padding: 40px 30px 15px;
    background: #fff;
    border-radius: 15px;
}
.login-form h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 0 25px 0;
    color: var(--sec-color);
}
.login .form-group {
    margin-bottom: 25px;
    position: relative;
}
.login .form-group input {
    width: 100%;
    padding: 15px 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: transparent;
    color: var(--main-color);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.login .form-group input:focus {
    border-color: var(--sec-color);
    background: #f9f9f9;
}
.login .form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 0.9rem;
    color: #999;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}
.login .form-group input:focus + label,
.login .form-group input:not(:placeholder-shown) + label {
    top: 0px;
    left: 10px;
    font-size: 0.8rem;
    color: #fff;
    padding: 5px 7px;
    border-radius: 4px;
    background: var(--sec-color);
}
.login .btn-submit {
    background-color: var(--main-color);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 10px;
}
.login .btn-submit:hover {
    transform: translateY(-3px);
    background-color: var(--sec-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.login .forgot-password {
    text-align: center;
    margin-top: 10px;
}
.login .forgot-password a {
    color: var(--sec-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.login .circle {
    position: absolute;
    background: linear-gradient(45deg, #ffd700, #ffffff, #000000);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.3;
    z-index: 1;
}
.login .circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}
.login .circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation-delay: -5s;
    background: linear-gradient(45deg, #ffd700, #ffffff, #000000);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
/* Footer */
footer {
    padding: 0px 0px 0 0px;
    color: #fff;
    background-color: var(--main-color);
}
.footer .container .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px 10px 10px;
    background-color: #ffffff;
    width: 200px;
    border-radius: 0 0 50px 50px;
}
.footer .container .footer-logo img {
    width: 100px;
}
footer a {
    color: #fff;
}
.ul-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 60px !important;
}
footer ul {
    margin-top: 30px;
}
footer ul li a {
    position: relative;
}
footer ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
footer ul li:hover,
footer ul li:hover a {
    transition: var(--main-transition);
    color: var(--sec-color);
}
footer ul li i {
    margin-right: 10px;
}
.footer .angles li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f101";
}
footer .angles li a {
    margin-left: 30px;
}
.ul,
footer ul span,
footer ul li a {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.copyright {
    margin: 0px !important;
    padding: 0px 0 !important;
    background-color: var(--sec-color);
    width: 100% !important;
}
.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright .social a:hover {
    transition: var(--main-transition);
    color: var(--white-color);
}
.copyright .social a:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid var(--main-color);
    margin: 0 15px;
}
.copyright p.copyright-content,
.copyright p a {
    transform: translate(10px, 10px);
}
.copyright p,
.copyright a {
    color: var(--main-color);
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.copyright img {
    width: 30px;
    height: 30px;
}
/* RTL */
html:lang(ar) {
    .mobile-nav-active .mobile-nav-toggle i.fa-times {
        position: fixed;
        left: 24px !important;
        right: unset !important;
    }
    .mobile-nav {
        direction: rtl !important;
        right: -260px !important;
        left: unset !important;
    }
    .mobile-nav .drop-down > a:after {
        padding-right: 10px;
        left: 15px;
    }
    .mobile-nav .drop-down > a {
        padding-left: 35px;
    }
    .mobile-nav .drop-down li {
        padding-right: 20px !important;
    }
    .mobile-nav-toggle {
        position: fixed;
        right: 0 !important;
        top: 0;
        z-index: 9998;
        border: 0;
        background: none;
        font-size: 24px;
        transition: all 0.4s;
        outline: none !important;
        line-height: 1;
        cursor: pointer;
        text-align: right;
        left: 24px;
    }
    .mobile-nav-toggle i {
        margin: 24px 24px 0 0;
        color: #fff;
    }
    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        right: 0 !important;
        position: fixed;
        background: rgba(40, 38, 70, 0.8);
        overflow: hidden;
        display: none;
    }

    .mobile-nav-active .mobile-nav {
        right: 0 !important;
    }
    .products {
        direction: rtl;
    }
    footer {
        text-align: right;
        direction: rtl;
    }
    .ul-title {
        text-align: right;
        margin-bottom: 60px !important;
    }
    footer ul {
        padding-right: 20px;
    }
    footer ul li i {
        margin-left: 10px;
    }
    .footer .angles li::before {
        content: "\f100";
    }
    footer .angles li a {
        text-align: right;
        margin-right: 30px;
    }
    .copyright .social a:not(:last-child) {
        padding-left: 40px;
        padding-right: 0px;
        border-right: none;
        border-left: 1px solid var(--main-color);
        margin: 0 15px;
    }
    .mobile-nav-toggle {
        left: unset !important;
    }

    .logo {
        float: left !important;
    }
    .main-nav > ul {
        display: flex;
        flex-direction: row-reverse;
    }

    nav.main-nav {
        float: right !important;
    }

    .login {
        text-align: right;
    }
    .login .form-group label {
        right: 15px !important;
        left: unset !important;
    }
    .login .form-group input:focus + label,
    .login .form-group input:not(:placeholder-shown) + label {
        right: 10px !important;
        left: unset !important;
    }
    .about {
        direction: rtl;
    }
    .about .text-wrapper {
        text-align: right;
    }
    .about .text-wrapper h1::after {
        right: 0;
    }
    .about .text-wrapper h1::before {
        right: 0;
    }
    .contact .contact-info,
    .contact,
    input,
    .contact-form {
        direction: rtl;
        text-align: right;
    }

    .contact .info-item .icon {
        margin-left: 15px;
    }

    .contact .form-group label {
        right: 15px;
        left: unset;
    }

    .contact .social-links .link:not(:last-child) {
        margin-left: 25px;
    }
    .product.container {
        direction: rtl;
    }
    .cart {
        display: inline-block;
        text-align: center;
        flex-direction: row-reverse;
    }
    .cart button {
        margin-right: 10px;
    }
    .cart button i {
        float: left;
        margin: 5px 7px 0 0;
    }
    .product .details-section {
        text-align: right;
    }
    .summary-card {
        text-align: right;
    }

    .pagination li:last-child .page-link {
        border-radius: 12px 0 0 12px;
    }

    .pagination li:first-child .page-link {
        border-radius: 0px 12px 12px 0;
    }
    @media (max-width: 768px) {
        .contact .social-links .link:not(:last-child) {
            margin-left: 5px;
        }
    }
    .features2 {
        direction: rtl;
        text-align: right;
    }
    .features2 .feature-list li {
        padding-right: 30px;
    }
    .features2 .feature-list li::before {
        right: 0;
    }
    .features2 .second-image {
        right: -80px;
    }
    @media (max-width: 768px) {
        .features2 .image-wrapper img {
            max-width: 86%;
        }
        .features2 .second-image {
            position: absolute;
            top: -51px !important;
            right: -22px !important;
            width: 112px !important;
        }
    }
}

.product.container {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    margin-top: 100px;
    padding: 20px;
    background: #2a2a3b;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.product.container .checkout-button,
.products .checkout-button {
    display: unset;
}
.product .cats .cat {
    margin: 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sec-color);
}
.product .image-section {
    flex: 1;
    position: relative;
}

.product .main-image-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.product .thumbnail-gallery {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.product .thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.3s ease;
}

.product .thumbnail:hover,
.thumbnail.active {
    transform: scale(1.1);
    border: 2px solid #ffcc00;
}

.product .details-section {
    flex: 1;
    text-align: left;
}

.product .product-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 15px;
}

.product .product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fca311;
    margin-bottom: 15px;
}

.product .product-description {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 25px;
}

.product .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: var(--white-color);
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.product .cta-button:hover {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    transform: scale(1.05);
}

/*  Responsive  */
@media (max-width: 991px) {
    #header {
        padding: 15px 0;
    }
}
@media (max-width: 768px) {
    .copyright .container {
                flex-direction: column-reverse;
        padding:10px 0px;
    }
    .about {
        padding: 0px 15px 50px;
    }
    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about .text-wrapper {
        text-align: center;
        width: 100%;
        transform: translateY(50px);
    }

    .about .image-wrapper {
        width: 100%;
        margin-top: 30px;
    }
    .product.container {
        direction: rtl;
        flex-direction: column-reverse;
    }
}

.confirmation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.confirmation-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.confirmation-popup button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.confirmation-popup button.btn-danger {
    background-color: #ff4e42;
    color: white;
}

.confirmation-popup button.btn-secondary {
    background-color: #ddd;
}

.cart-container {
    max-width: 1200px;
    margin: 7rem auto 3em;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-title {
    font-size: 2.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    margin-left: 1rem;
    font-size: 3rem;
}

.cart-content {
    display: flex;
    gap: 2rem;
}

.cart-items-section {
    flex: 2;
}

.cart-item-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.cart-item-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin-left: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item-card:hover .item-image {
    transform: scale(1.1);
}

.item-details {
    flex: 1;
    margin-left: 20px;
}

.item-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.item-price {
    color: var(--sec-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.qty-btn {
    background-color: var(--sec-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--main-color);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--sec-color);
    margin: 0 10px;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-btn:hover {
    background: #c0392b;
}

.cart-summary {
    flex: 1;
}

.summary-card {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.checkout-button {
    width: 100%;
    background-color: var(--sec-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.checkout-button:hover {
    background-color: var(--main-color);
}
@media (max-width: 768px) {
    .cart-content {
        flex-direction: column;
    }

    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-image-container {
        width: 100%;
        height: auto;
        margin: 0 auto 10px;
        text-align: center;
    }

    .item-details {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .quantity-control {
        justify-content: center;
    }

    .cart-summary {
        width: 100%;
    }

    .summary-card {
        text-align: center;
    }

    .checkout-button {
        width: 100%;
    }
    .features2 .container {
        flex-direction: column-reverse;
    }
    .features2 .feature,
    .features2 .image-wrapper {
        width: 100% !important;
    }
    .features2 .image-wrapper img {
        max-width: 86%;
    }
    .features2 .second-image {
        position: absolute;
        top: -51px !important;
        left: -22px !important;
        width: 112px !important;
    }
}

.pagination li {
    margin: 7px;
}
.pagination li a:hover {
    color: var(--sec-color);
}
.pagination li a {
    padding: 10px;
    font-weight: bold;
    color: var(--sec-color);
}
.pagination li:last-child .page-link {
    border-radius: 0px 12px 12px 0;
}
.pagination li:first-child .page-link {
    border-radius: 12px 0 0 12px;
}
.page-item.disabled .page-link,
.active > .page-link,
.page-link.active {
    padding: 10px;
    border: none !important;
    outline: none !important;
    background-color: #4d4c4cc2 !important;
}
.pagination {
    display: flex;
    justify-content: center;
}
.Collections {
    padding: 50px 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.Collections i {
    font-size: 50px;
    color: var(--sec-color);
    margin-bottom: 20px;
}
.features2 {
    padding: 80px 5%;
    background: #fff;
}
.features2 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.features2 .container .feature,
.features2 .container .image-wrapper {
    width: 50%;
}
.features2 .feature h2 {
    font-size: 28px;
    color: var(--sec-color);
    margin-bottom: 20px;
}
.features2 .feature-list {
    list-style-type: none;
    padding: 0;
}
.features2 .feature-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}
.features2 .feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--sec-color);
    font-size: 20px;
}
.features2 .feature-list li:hover {
    transform: translateX(5px);
}
.features2 .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features2 .image-wrapper img {
    max-width: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
.features2 .image-wrapper img:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
.features2 .second-image {
    position: absolute;
    top: -20px;
    left: -80px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.map {
    width: 100%;
    padding: 40px 0;
}
.map iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
}
.videos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.videos .video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.videos .video-card:hover {
    transform: translateY(-5px);
}

.videos .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.videos .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.videos .video-info {
    padding: 15px;
}

.videos .video-title {
    font-size: 1.1em;
    margin: 0 0 10px 0;
    color: #333;
}

.videos .video-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .videos .video-grid {
        grid-template-columns: 1fr;
    }
}
