*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    text-decoration: none !important;
    list-style: none;
    box-sizing: border-box;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--bg-color);
    border-radius: 20px;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--bg-color);
    color: var(--bg-sections);
}

.bg-custom {
    background-color: var(--bg-color) !important;
}

body[dir="rtl"] {
    font-family: "Alexandria", sans-serif;
}

body[dir="ltr"] {
    font-family: "BricolageGrotesque-Light", sans-serif;
}

[id*="_ar"] {
    direction: rtl;
    text-align: right;
    font-family: "Alexandria", sans-serif;
}

[id*="_en"] {
    direction: ltr;
    text-align: left;
    font-family: "BricolageGrotesque-Light", sans-serif;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999999;
    max-width: 280px;
}

.hasVerifiedEmail {
    width: 100%;
    height: 100%;
    min-height: 80vh;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
    gap: 10px;
    color: var(--bs-danger);
    font-weight: bold;
}

textarea {
    resize: none;
    height: 150px;
}

.section_main {
    min-height: 75vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.img_blog {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.img_blog input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.img_blog input[type="file"] {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
}

.img_blog img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
    border-radius: 50%;
}

.img_blog .upload {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background: var(--bg-sections);
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_blog .upload:hover {
    opacity: 0.7;
}

/* Offcanvas Support */
body[dir="rtl"] .modal-header .btn-close {
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) auto
        calc(-0.5 * var(--bs-modal-header-padding-x))
        calc(-0.5 * var(--bs-modal-header-padding-y));
}

.accordion-item {
    border: var(--bs-accordion-border-width) solid var(--bg-sections) !important;
}

body[dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

body[dir="rtl"] .navbar-nav {
    direction: rtl;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

body[data-theme="dark"] .accordion-button::after,
.accordion-button.collapsed::after {
    filter: brightness(0);
}

body[data-theme="dark"] .accordion-button.collapsed::after {
    filter: brightness(0) invert(1);
}

.custom-accordion-button::after {
    display: none !important;
}

.accordion-button:focus,
.accordion-button:focus-visible {
    box-shadow: none !important;
}

.navbar-toggler {
    border-radius: 50%;
    border: var(--bs-border-width) solid var(--bg-sections);
}

.click_eye {
    cursor: pointer;
}

.input-group-text {
    border-radius: 0;
    border-color: var(--bg-sections);
    background-color: var(--bg-color);
    color: var(--bg-sections);
}

/* Form Controls */
.form-control,
.form-select {
    background-color: var(--bg-color);
    color: var(--bg-sections);
    border-color: var(--bg-sections);
    box-shadow: none;
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg-color);
    color: var(--bg-sections);
    border-color: var(--bg-sections);
    box-shadow: none;
}

/* Theme Toggle Button */
#theme-toggle:hover {
    transform: rotate(20deg);
}

body[data-theme="dark"] #theme-toggle .bi-moon {
    display: none;
}

body[data-theme="dark"] #theme-toggle .bi-sun-fill {
    display: inline-block;
}

body[data-theme="light"] #theme-toggle .bi-sun-fill {
    display: none;
}

body[data-theme="light"] #theme-toggle .bi-moon {
    display: inline-block;
}

a:hover {
    color: var(--bg-sections);
    opacity: 0.8;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}

.accordion {
    --bs-accordion-active-bg: var(--bg-sections) !important;
    --bs-accordion-active-color: var(--bg-color) !important;
    --bs-accordion-active-border-color: var(--bg-sections) !important;
    --bs-accordion-color: var(--bg-sections);
    --bs-accordion-bg: var(--bg-color);
}

.btn {
    transition: all 0.5s ease-in-out;
}

.btn-primary {
    --bs-btn-bg: var(--bg-sections) !important;
    --bs-btn-border-color: var(--bg-sections) !important;
    --bs-btn-color: var(--bg-color) !important;
}

.btn-primary:hover {
    color: var(--bg-sections);
    background-color: var(--bg-color);
    border-color: var(--bg-sections);
    opacity: 0.8;
}

a {
    color: var(--bg-sections);
}

.page-link {
    background-color: transparent;
    color: var(--bg-sections) !important;
    border-color: var(--text-white) !important;
    border-radius: 0 !important;
    opacity: 0.8;
}

.active > .page-link,
.page-link.active {
    background-color: var(--bg-sections) !important;
    color: var(--text-white) !important;
    border-color: var(--bg-sections) !important;
    opacity: 1;
}

.btn-outline-primary {
    --bs-btn-border-color: var(--bg-sections) !important;
    --bs-btn-color: var(--bg-sections) !important;
    --bs-btn-hover-bg: var(--bg-sections) !important;
    --bs-btn-hover-border-color: var(--bg-sections) !important;
    --bs-btn-hover-color: var(--bg-color) !important;
}

.btn-outline-primary.active {
    color: var(--bg-color);
    background-color: var(--bg-sections);
    border: none !important;
}

.btn:disabled {
    color: var(--bg-color) !important;
    border-color: var(--bg-sections) !important;
    background-color: var(--bg-sections) !important;
    opacity: 0.5;
}

.bg-primary {
    background-color: var(--bg-sections) !important;
    color: var(--bg-color) !important;
}

.input-group .btn {
    border-radius: 0 !important;
}

.shadow-sm {
    box-shadow: 0 0 1px var(--bg-sections) !important;
}

.form-check-input[type="radio"] {
    border-radius: 3px !important;
    border-color: var(--bg-sections) !important;
}

.form-check-input[type="checkbox"] {
    border-color: var(--bg-sections) !important;
}

.form-check-input:focus,
.form-check-input:active {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--bg-sections) !important;
    border-color: var(--bg-sections) !important;
}

.form-check-input:checked[type="radio"] {
    background-image: none !important;
    position: relative;
}

.form-check-input:checked[type="radio"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.4rem;
    height: 0.7rem;
    border-right: 2px solid var(--bg-color);
    border-bottom: 2px solid var(--bg-color);
    transform: translate(-50%, -55%) rotate(45deg);
}

body[dir="rtl"] .form-check {
    padding-left: 0;
    padding-right: 1.5em;
}

body[dir="rtl"] .form-check .form-check-input {
    float: right;
    margin-left: 0;
    margin-right: -1.5em;
}

body[dir="rtl"] .form-switch {
    padding-left: 0;
    padding-right: 2.5em;
}

body[dir="rtl"] .form-switch .form-check-input {
    float: right;
    margin-left: 0;
    margin-right: -2.5em;
}

.form-check-label {
    width: 100%;
}

.product-img-wrapper.col-4 img {
    width: 90%;
}

.card {
    background-color: var(--bg-color);
    color: var(--bg-sections);
    border-radius: 0;
}

.select2-container--default .select2-selection--single {
    background-color: var(--bg-color) !important;
    border: 1px solid var(--bg-sections) !important;
    border-radius: 0 !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: var(--bg-sections) !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--bg-sections) !important;
    line-height: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
}

body[dir="rtl"]
    .select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    float: left !important;
    height: auto !important;
    margin-right: 0;
    margin-left: 20px !important;
}

.select2-container {
    width: auto !important;
}

.text-justify {
    text-align: justify !important;
}

.dropdown-menu {
    background-color: var(--bg-color);
    color: var(--bg-sections);
    border: 1px solid var(--bg-sections);
    border-radius: 0;
}

.container:not(.navbar .container) {
    overflow: hidden;
}

body[dir="rtl"] #navbarAuth .offcanvas-header .btn-close {
    margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) auto
        calc(-0.5 * var(--bs-offcanvas-padding-x))
        calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.fs-3 {
    font-size: clamp(16px, 1vw, 30px) !important;
}

.fs-13 {
    font-size: clamp(10px, 1vw, 13px);
}

.fs-16 {
    font-size: clamp(15px, 1.2vw, 16px);
}

.fs-20 {
    font-size: clamp(15px, 1.5vw, 20px);
}

.fs-30 {
    font-size: clamp(20px, 2.5vw, 30px);
}

.fs-40 {
    font-size: clamp(30px, 3vw, 40px);
}

.fs-70 {
    font-size: clamp(50px, 5vw, 70px);
}

.fs-150 {
    font-size: clamp(50px, 12vw, 150px);
}

.ls-n2 {
    letter-spacing: -2px;
}

.p-50 {
    padding: clamp(20px, 5vw, 50px);
}

.border-black {
    border-color: var(--text-black) !important;
}

body[data-theme="dark"] footer .img-theme img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(9%) saturate(620%)
        hue-rotate(350deg) brightness(95%) contrast(90%);
}

body[data-theme="dark"] .img-theme-logo-dark {
    filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(227%)
        hue-rotate(340deg) brightness(103%) contrast(96%);
}

/* =======================
   Colors
======================= */
.bg-color {
    background-color: var(--bg-color);
}

.bg-sections {
    background-color: var(--bg-sections) !important;
}

.bg-black {
    background-color: var(--text-black) !important;
}

.text-color {
    color: var(--bg-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-black {
    color: var(--text-black) !important;
}

.text-address {
    color: var(--text-address) !important;
}

.text-dark-brown {
    color: var(--text-dark-brown) !important;
}

.text-justify {
    text-align: justify;
}

/* =======================
   Product Card Backgrounds
======================= */
.product-card-bg-one {
    background-color: var(--product-card-bg-one);
}

.product-card-bg-one * {
    color: var(--bg-color) !important;
}

.product-card-bg-two {
    background-color: var(--product-card-bg-two);
}

.product-card-bg-two * {
    color: var(--bg-sections) !important;
}

.product-card-bg-three {
    background-color: var(--product-card-bg-three);
}

.product-card-bg-three * {
    color: var(--bg-color) !important;
}

.product-card-bg-four {
    background-color: var(--product-card-bg-four);
}
.product-card-bg-four * {
    color: var(--bg-sections) !important;
}

.product-card-bg-five {
    background-color: var(--product-card-bg-five);
}

.product-card-bg-five * {
    color: var(--bg-sections) !important;
}

/* =======================
   Ticker & Announcement Bar
======================= */

.ticker-bar {
    overflow: hidden;
}

.tickerSwiper {
    overflow: visible;
}

.ticker-slide {
    width: auto !important;
}

.ticker-slide span {
    font-size: clamp(11px, 2vw, 25px);
    padding: 0 6px;
}

.ticker-dot {
    opacity: 0.6;
}
.navbar-shrink {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px !important;
    background-color: var(--bg-color);
}

.dropdown-toggle::after {
    display: none;
}

.add-btn-plus {
    width: 32px;
    height: 32px;
    cursor: pointer;
    min-width: 32px;
}

.active-link {
    font-weight: 900 !important;
}

.btn-custom {
    background-color: var(--text-dark-brown);
    color: var(--bg-color);
    border-radius: 0;
    padding: 9px 35px;
    font-weight: 600;
}

.btn-custom:hover {
    background-color: var(--text-dark-brown);
    color: var(--bg-color);
    opacity: 0.8 !important;
    border-radius: 5px !important;
}

/* =======================
       Responsive
    ======================= */
@media (max-width: 500px) {
    .made-logo {
        width: 100%;
        max-width: 110px;
    }

    .made-section {
        height: 50vh !important;
    }

    .made-circle {
        width: 25px;
        height: 23px;
    }

    .new_collection_section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 50% !important;
    }

    .fs-10 {
        font-size: 10px !important;
    }

    .fs-11 {
        font-size: 11px !important;
    }

    .fs-12 {
        font-size: 12px !important;
    }

    .fs-14 {
        font-size: 14px !important;
    }

    .fs-15 {
        font-size: 15px !important;
    }

    .fs-17 {
        font-size: 17px !important;
    }

    .fs-18 {
        font-size: 18px !important;
    }

    .fs-19 {
        font-size: 19px !important;
    }

    .fs-22 {
        font-size: 22px !important;
    }

    .fs-24 {
        font-size: 24px !important;
    }

    .fs-25 {
        font-size: 25px !important;
    }

    .small {
        font-size: 11px !important;
    }
}

/* =======================
   Additional Font Sizes (Responsive)
======================= */

.fs-18 {
    font-size: clamp(13px, 1.3vw, 18px);
}

.fs-22 {
    font-size: clamp(15px, 1.8vw, 22px);
}

.fs-25 {
    font-size: clamp(18px, 2vw, 25px);
}

.fs-35 {
    font-size: clamp(25px, 3vw, 35px);
}

/* =======================
   Additional Colors & Backgrounds
======================= */

.bg-sections-two {
    background-color: var(--bg-sections-two);
}

.bg-white {
    background-color: var(--text-white) !important;
}

.star-color {
    color: var(--icon-star-color) !important;
}

.bg-cta-color {
    background-color: var(--bg-cta-color);
}

.text-borwn {
    color: var(--product-card-bg-one) !important;
}

.bg-input-color {
    background-color: var(--bg-input-color);
}

.number-step {
    width: 50px;
    height: 50px;
}

@media (max-width: 500px) {
    .number-step {
        width: 35px !important;
        height: 35px !important;
    }
}

/* =======================
   Product Card
======================= */

.product-card img {
    transform: rotate(-18deg) !important;
}

.product-card .product-title-all {
    transform: translateY(22px) !important;
}

.products-mobile-slider {
    display: none;
}

/* =======================
   Testimonial Section
======================= */

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr minmax(400px, 650px) 1fr;
    align-items: center;
    gap: clamp(30px, 3vw, 100px);
    min-height: 420px;
    padding: 0 60px;
}

.testimonial-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.testimonial-side img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-side img:nth-child(2) {
    width: 100px;
    height: 100px;
}

/* =======================
   CTA Section
======================= */

.cta-section {
    z-index: 2;
    margin-bottom: -250px;
    overflow: visible !important;
}

.cta-img {
    height: 120%;
    max-height: none;
    z-index: 10;
    left: 82%;
}

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

footer {
    position: relative;
    z-index: 1;
    padding-top: 400px !important;
}

/* =======================
   Breadcrumb
======================= */

.breadcrumb {
    background: transparent;
    --bs-breadcrumb-margin-bottom: 0;
}

section {
    margin: 0;
}

/* =======================
   Responsive - Tablet & Mobile
======================= */

@media (min-width: 768px) {
    .products-mobile-slider {
        display: none !important;
    }

    .products-grid {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-center {
        order: 1;
    }

    .testimonial-right {
        order: 3;
    }

    .testimonial-side img:nth-child(2) {
        width: 80px;
        height: 80px;
    }

    .products-mobile-slider {
        display: block;
    }

    .products-grid {
        display: none !important;
    }
}

/* =======================
   Additional Spacing
======================= */

.p-103 {
    padding: clamp(20px, 7vw, 103px);
}
