@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
    --font-primary: "Public Sans", sans-serif;
    --font-questral: "Questrial", sans-serif;
    --font-arial: "Arial", sans-serif;
    /* --font-secondary:; */
    --yellow-color: #fbbc04;
    --font-monospace: "Manrope", sans-serif;
    --star-no-fill: #d9d9d9;
    --text-primary-color: #0e1014;
    --text-secondary-color: #141414;
    --text-color-third: #ef622f;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-gray: #00000080;
    --text-light-gray: #979aa0;
    --button-primary: #ef622f;
    --button-secondary: #f4f2f2;
    --button-bg-dark: #261e27;
    --button-bg-green: #1ba71b;
    --bg-primary: #f9f9f9;
    --bg-secondary: #fbd9cd;
    --bg--third: #f4f4f4;
    --bg-white: #ffffff;
    --color-gray: #999999;
    --light-green: #dcffdc;
    --dark-green: #008000;
    --light-red: #ffd7d780;
    --dark-red: #fc0000;
    --border-color: #e7e8eb;
    --border-1px: 1px solid #0000001a;

    --font-size-base: clamp(1.2rem, 1.098rem + 0.366vw, 1.8rem);

    --font-size-sm: clamp(1rem, 0.698rem + 0.366vw, 1.4rem);
    /* 14px*/
    --font-size-md: clamp(1rem, 0.898rem + 0.366vw, 1.6rem);
    /* 16px*/
    --font-size-lg: clamp(1.4rem, 1.298rem + 0.366vw, 2rem);
    /* 20px*/
    --font-size-xl: clamp(1.6rem, 1.463rem + 0.488vw, 2.4rem);
    /* 24px*/
    --font-size-26: clamp(1.8rem, 1.663rem + 0.488vw, 2.6rem);
    /* 26px */
    --font-size-30: clamp(2.2rem, 1.298rem + 0.366vw, 3rem);
    /* 30px*/
    --font-size-32: clamp(2.6rem, 2.498rem + 0.366vw, 3.2rem);
    /* 32px*/
    --font-size-36: clamp(2.8rem, 2.663rem + 0.488vw, 3.6rem);
    /* 36px*/
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    text-decoration: none;
    list-style-type: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
svg {
    vertical-align: bottom;
}
html {
    font-size: 62.5%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
select {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    accent-color: var(--text-color-third);
    font-size: var(--font-size-base);
    padding-right: 2.5rem;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEzIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNi41IDYuNUwxMiAxIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K")
        no-repeat right 0rem center;
    background-size: 1.5rem;
}
option {
    padding: 1rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="date"] {
    position: relative;
    padding-right: 3rem;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
}
input[type="date"]::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/datepick.png") no-repeat center center;
    background-size: contain;
    pointer-events: none;
}
input[type="checkbox"],
input[type="checkbox"]:focus {
    border: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* custom Radio Button */
input[type="radio"] {
    /* Hide the default radio button */
    appearance: none;
    -webkit-appearance: none; /* For older browser compatibility */
    margin: 0;
    position: absolute;
}

/* Style the custom radio button appearance */
input[type="radio"] + label::before {
    content: "" !important;
    display: inline-block;
    cursor: pointer;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #1212121a;
    border: 1px solid var(--color-gray); /* Color of the outer circle (unchecked state) */
    border-radius: 50%;
    margin-right: 1rem;
    vertical-align: middle;
    box-shadow: inset 0 0 0 4px var(--bg-white);
}

@media (max-width: 575px) {
    input[type="radio"] + label::before {
        margin-right: 0.5rem;
    }
}

/* Style for when the radio button is checked */
input[type="radio"]:checked + label::before {
    background-color: var(
        --text-color-third
    ); /* Color of the inner dot (checked state) */
    border-color: var(
        --text-color-third
    ); /* Color of the outer circle (checked state) */
    /* Optional: use box-shadow to create the inner white ring effect */
    box-shadow: inset 0 0 0 4px var(--bg-white);
}

button,
input,
textarea {
    font-family: var(--font-primary);
    color: inherit;
}

textarea {
    display: block;
    width: 100%;
    color: inherit;
    resize: vertical;
}
/* custom checkbox */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--text-gray);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-custom::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMy42ODUuMTUzYS43NTIuNzUyIDAgMDEuMTQzIDEuMDUybC04IDEwLjVhLjc1Ljc1IDAgMDEtMS4xMjcuMDc1bC00LjUtNC41YS43NS43NSAwIDAxMS4wNi0xLjA2bDMuODk0IDMuODkzIDcuNDgtOS44MTdhLjc1Ljc1IDAgMDEuMDUtLjE0M3oiIGZpbGw9IiNFRjYyMkYiLz48L3N2Zz4=);
    font-size: 0.3rem;
    color: var(--bg-white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox:checked + .checkbox-custom {
    border-color: var(--button-primary);
}

.checkbox:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(0.9);
}

/* .checkbox-label {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1;
    color: #00000080;
} */

textarea:focus,
textarea:focus-visible {
    border-color: none;
    outline: none;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text-sm {
    font-size: var(--font-size-sm);
}
.text-lg {
    font-size: var(--font-size-lg);
}
.font-bold {
    font-weight: var(--font-weight-bold);
}
.text-danger {
    color: var(--dark-red);
}
.bg-white {
    background-color: var(--bg-white);
}
body {
    font-size: var(--font-size-base);
    line-height: 1.2;
    background: var(--bg--third);
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
    color: var(--text-black);
}
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: unset;
    padding-left: unset;
    font-weight: unset;
}
a,
a:hover {
    cursor: pointer;
    color: unset;
    text-decoration: none;
    transition: 0.1s all ease;
    outline: none;
}
a:focus {
    text-decoration: none;
    outline: none;
}
img,
picture,
video {
    max-width: 100%;
    display: block;
}
button {
    cursor: pointer;
    border: none;
}
input[type="text"],
input[type="text"]:focus,
button,
input {
    outline: none !important;
    border: none;
    background: none;
    box-shadow: none !important;
}
.flex-center {
    display: flex;
    align-items: center;
}
.container {
    max-width: 170rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    margin: 0 auto;
}

.container-wide {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}
.sec_title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 1.527rem + 0.976vi, 3.4rem);
    color: var(--text-black);
}

.pt-100 {
    padding-top: clamp(4rem, 2.976rem + 3.659vi, 10rem);
}
.mt-100 {
    margin-top: clamp(4rem, 2.976rem + 3.659vi, 10rem);
}
.pb-100 {
    padding-bottom: clamp(4rem, 2.976rem + 3.659vi, 10rem);
}
.mb-100 {
    margin-bottom: clamp(4rem, 2.976rem + 3.659vi, 10rem);
}
/* ::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background-color: var(--white-bg);
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
} */

/* ====================Style Title's============================================*/

/* ******************************************************************************
1. Breadcrumb
2. Slider
3. Product card
4. Empty product
5. Buttons and input styles
6. Breadcrumb banner
7. FAQ styles
8. Tooltip styles
9. js Popup
10. custom select dropdown
11. preloader
12. thumbnail slider
*******************************************************************************/
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(217, 217, 217, 0.4);
    backdrop-filter: blur(6px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}
.backdrop.active {
    opacity: 1;
    visibility: visible;
}
/* breadcrumb ---------------------------------------------------------------------*/
.navigation-header {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: var(--font-size-30) 0;
}
.navigation-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.address-Billing .navigation-header__wrapper {
    justify-content: initial;
    gap: clamp(2rem, -4.829rem + 24.39vi, 25rem);
}
.breadcrumb {
    font-weight: 500;
    font-size: var(--font-size-base);
    line-height: 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC44MTE3IDExLjQ2NzNDMTUuMDYwOSAxMS43NDQzIDE1LjA2MyAxMi4xOTU4IDE0LjgxNjMgMTIuNDc1N0w5Ljk0ODU5IDE4TDkuMDQ2MDQgMTYuOTk2N0wxMy40NjcyIDExLjk3OTNMOSA3LjAxMzY2TDkuODkzMjEgNkwxNC44MTE3IDExLjQ2NzNaIiBmaWxsPSIjNzE3NDdFIi8+Cjwvc3ZnPgo=);
}
.breadcrumb a {
    text-decoration: none;
    color: #5c5f6a;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: var(--text-primary-color);
    font-weight: 500;
}

/* slider css ------------------------------------------------------------------------ */

/* .slider{
  max-width: 600px;
  margin: auto;
} */

.main-slider {
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    flex-shrink: 1;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 0.8rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 2.6rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    z-index: 10;
}

.slider-nav.prev {
    left: 1rem;
}
.slider-nav.next {
    right: 1rem;
}

/* Thumbnails slider -----------------------------------------------*/
.thumb-slider {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    overflow-x: auto;
}

.thumb {
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    border-radius: 0.4rem;
}

.thumb.active {
    opacity: 1;
    border-color: #000;
}

.thumb img {
    display: block;
    border-radius: 4px;
}
/* end slider css */

/* product-card --------------------------------------------------------------------*/

.product-card {
    max-width: 32.8rem;
    width: 100%;
    background-color: var(--bg-white);
    position: relative;
    border-radius: 1rem;
}
.product-card__top {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.product-card__image {
    object-fit: cover;
    width: 100%;
}

.product-card .wishlist-btn {
    position: absolute;
    top: 3%;
    right: 4%;
}
.wishlist-btn {
    cursor: pointer;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #80808033;
    border-radius: 3.4rem;
}
.wishlist-btn:focus,
.wishlist-btn.active {
    background-color: #ff00001a;
}
.wishlist-btn:focus svg,
.wishlist-btn:focus svg path,
.wishlist-btn.active svg,
.wishlist-btn.active svg path {
    fill: #ff0000;
    stroke: #ff0000;
}
.product-card__cart-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1;
    background-color: var(--button-secondary);
    padding: 1.6rem 3.8rem;
    position: absolute;
    left: 20%;
    bottom: 10%;
    border: 1px solid #0000001a;
    border-radius: 1.2rem;
    transform: translateY(200%);
    transition: all 0.7s ease;
}
.product-card__cart-btn:hover {
    background-color: var(--bg-white);
    border-color: transparent;
}

.product-card:hover .product-card__cart-btn {
    transform: translateY(0%);
}
.product-card:hover .product-card__image {
    transform: scale(1.1);
}
.product-card:hover {
    box-shadow: 11px 18px 29px -10px rgba(135, 129, 129, 0.7);
    -webkit-box-shadow: 11px 18px 29px -10px rgba(135, 129, 129, 0.7);
    -moz-box-shadow: 11px 18px 29px -10px rgba(135, 129, 129, 0.7);
}

.product-card__content {
    padding: 1.8rem;
}
.product-card__brand {
    text-transform: capitalize;
    margin-right: 1rem;
    padding: 0.4rem 0.6rem;
    font-size: 1.4rem;
    line-height: 1;
    color: #717171;
    background-color: #f7f7f7;
    border-radius: 0.4rem;
}
.product-card__title {
    margin-block: 0.9rem 1.6rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1;
    text-transform: capitalize;
    color: #141414;
}

.product-card__rating-count {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
    color: #6e6e6e;
}
.product-card__price {
    margin-top: 1.6rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1;
}
.product-card__price span {
    color: var(--text-color-third);
}
.product-card__reviews {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.review__stars {
    --percent: calc(var(--rating) / 5 * 100%);
    position: relative;
    display: inline-block;
}
.review__stars svg.active path {
    fill: #e4b90d;
}
.review__stars > .review__beforeRating,
.review__stars > .review__afterRating {
    display: flex;
}
.review__stars > .review__afterRating {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--percent);
    overflow: hidden;
    pointer-events: none;
}
.review__stars svg {
    min-width: fit-content;
}
/* empty product -----------------------------------------------------------------------------------*/
.NOP-list {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.NOP-title {
    color: #0000001a;
}

/* butttons and input styles starts here ----------------------------------------------------------*/
.btn {
    width: 100%;
    padding: clamp(1.6rem, 1.498rem + 0.366vw, 2.2rem) 1.6rem;
    font-size: clamp(1.6rem, 1.498rem + 0.366vw, 2.2rem);
    font-weight: 500;
    border-radius: 1.2rem;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.btn-primary {
    background: var(--button-primary);
    color: var(--text-white);
}
.btn-primary:hover {
    background: #db5629;
}
.btn-secondary {
    background: var(--button-secondary);
    color: var(--text-black);
    border: 1px solid #e2e2e2;
}
.btn-secondary:hover {
    background: #e2e2e2;
}
.btn-dark {
    background: var(--button-bg-dark);
    color: var(--text-white);
    transition: opacity 0.3s ease-in-out;
}
.btn-dark:hover {
    opacity: 0.9;
}
.btn-green {
    background-color: var(--button-bg-green);
    color: var(--text-white);
    transition: background-color 0.25s ease-in-out;
}
.btn-green:hover {
    background-color: var(--button-bg-green);
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.form-label {
    color: var(--text-light-gray);
    font-size: var(--font-size-md);
}
.input-field {
    width: 100%;
    padding: 1.4rem 1.2rem;
    background: transparent;
    border: 1px solid var(--border-color) !important;
    border-radius: 0.4rem;
    color: var(--text-primary-color);
}
.input-field:focus {
    border-color: var(--button-primary) !important;
}
/* butttons and input styles ends here */

/* js Popup--------------------------------------------------------------------------- */
body.no-scroll {
    overflow: hidden;
}
.js-popup-overlay,
.hamburger-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1003;
}
.js-popup-content {
    max-width: 90%;
    position: relative;
    animation: popupFade 0.25s ease-in;
}
.js-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: var(--font-size-xl);
    background: none;
    border: none;
    cursor: pointer;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* tooltip styles -----------------------------------------------------------------*/

.tooltip {
    position: relative;
    cursor: pointer;
}

/* Tooltip box */
.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    background: #222;
    color: #fff;
    padding: 6px 10px;
    width: auto;
    /* min-width: 13rem; */

    border-radius: 6px;
    font-size: 13px;
    /* white-space: nowrap; */
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* Tooltip arrow */
.tooltip::before {
    content: "";
    position: absolute;
    border: 6px solid transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show on hover */
.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
}

/* ===== TOP ===== */
.tooltip[data-position="top"]::after {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
}

.tooltip[data-position="top"]::before {
    bottom: 95%;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: #222;
}

/* ===== RIGHT ===== */
.tooltip[data-position="right"]::after {
    left: 100%;
    top: 50%;
    transform: translate(8px, -50%);
}

.tooltip[data-position="right"]::before {
    left: 95%;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: #222;
}

/* ===== BOTTOM ===== */
.tooltip[data-position="bottom"]::after {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
}

.tooltip[data-position="bottom"]::before {
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: #222;
}

/* ===== LEFT ===== */
.tooltip[data-position="left"]::after {
    right: 100%;
    top: 50%;
    transform: translate(-8px, -50%);
}

.tooltip[data-position="left"]::before {
    right: 95%;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: #222;
}

/*breadcrumb-banner -----------------------------------------------------------------------------  */
.breadcrumb-banner {
    margin-block: 2.8rem;
}
.breadcrumb-banner__bg {
    padding-top: clamp(10rem, 4.024rem + 21.341vw, 45rem);
    padding-bottom: 2rem;
    padding-inline: 4rem;
    position: relative;
    border-radius: 1.6rem;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.breadcrumb-banner__bg > * {
    color: var(--text-white);
}
.breadcrumb-banner__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}
.breadcrumb-banner__content {
    position: relative;
    z-index: 1;
}
.breadcrumb-banner__content h1 {
    font-weight: 700;
    font-size: clamp(3rem, 2.693rem + 1.098vi, 4.8rem);
}
.text-area__content {
    padding-bottom: 3rem;
    position: relative;
}
.text-area__content :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 500;
    padding-top: clamp(3rem, 2.693rem + 1.098vi, 4.8rem);
    padding-bottom: 1.2rem;
}
.text-area__content p {
    margin-bottom: 1.2rem;
}
/* empty products --------------------------------------------------------------------------------------------------*/
.emp {
    padding: clamp(3rem, 1.805rem + 4.268vi, 10rem);
    display: flex;
    justify-content: center;
}
.emp__content {
    text-align: center;
    max-width: 43rem;
}
.emp__content .emp__image {
    margin-bottom: 2rem;
    margin-inline: auto;
}
.emp__content .emp__title {
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-size-xl);
    margin-bottom: 1.4rem;
}

/* faq style's --------------------------------------------------------------------------------------------------*/
.faq__wrapper {
    max-width: 79.2rem;
    margin: 0 auto;
}
.faq__title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(2rem, 1.761rem + 0.854vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: clamp(1.8rem, 1.356rem + 1.585vi, 4.4rem);
}
.faq__box {
    background-color: #efeded;
    color: var(--text-black);
    border-radius: 1.6rem;
    /* box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25); */
    margin: 1.2rem 0;
    padding: 2rem 2.4rem;
}

.faq__question {
    line-height: 1.2;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq__question::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDQuMTY3OTdWMTUuODM0NiIgc3Ryb2tlPSIjMTUxNTE1IiBzdHJva2Utd2lkdGg9IjEuNiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik00LjE2Njk5IDEwSDE1LjgzMzYiIHN0cm9rZT0iIzE1MTUxNSIgc3Ryb2tlLXdpZHRoPSIxLjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
    font-size: 2.2rem;
    position: absolute;
    right: 0;
    transition: 0.2s;
}

.faq__question.active::after {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq__answercontent {
    font-size: var(--font-size-md);
    color: #747474;
    margin-top: 2rem;
}

/* ...............................custom select dropdown ........................*/

/* Wrapper */
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

/* Trigger */
.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-white);
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.select-trigger:hover {
    border-color: #888;
}

.select-trigger .arrow {
    font-size: var(--font-size-sm);
    transition: transform 0.2s;
}

/* Dropdown options container */
.options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 10;
}

/* Show dropdown (add this class via JS) */
.custom-select.open .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

/* Option items */
.option {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.option:hover {
    background: #f2f2f2;
}

/* Optional selected state */
.option.selected {
    background: #e9f0ff;
    font-weight: 600;
}

/* ...............................custom select dropdown css ends ........................*/

/*................................. preloader css................................. */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    inset: 0;
}
/* ...............................preloader css ends.............................. */

/* ...............................gallery popup css...............................*/
/* Popup */
.gallpopup{
  display:none;
  position:fixed;
  inset:0;
      background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  justify-content:center;
  align-items:center;
  flex-direction:column;
  z-index:999;
}

.gallpopup .close{
  position:absolute;
  top:20px;
  right:35px;
  font-size:40px;
  color:white;
  cursor:pointer;
}

.gallpopup .counter{
  position:absolute;
  top:20px;
  left:35px;
  color:white;
  font-size:18px;
}

/* Slider */
.gallpopup .gall-slider-container{
  width:80%;
  max-width:600px;
  overflow:hidden;
}

.gallpopup .gall-slider-track{
  display:flex;
  transition:transform 0.5s ease-in-out;
}

.gallpopup .gall-slider-track img{
  width:100%;
  flex-shrink:0;
  border-radius:12px;
}

/* Arrows */
.gallpopup .prev, .gallpopup .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:50px;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
  padding:20px;
}

.gallpopup .prev{ left:5%; }
.gallpopup .next{ right:5%; }

/* Thumbnails */
.gallpopup .thumbnails{
  display:flex;
  gap:10px;
  margin-top:20px;
  overflow-x:auto;
}

.gallpopup .thumbnails img{
  width:90px;
  height:65px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  opacity:0.6;
  border:2px solid transparent;
  transition:0.3s;
}

.gallpopup .thumbnails img.active{
  opacity:1;
  border:2px solid white;
}

.gallpopup .thumbnails img:hover{
  opacity:1;
}

/* ===== MOBILE IMPROVEMENTS ===== */
@media(max-width:768px){

  .gallpopup .prev, .gallpopup .next{
    font-size:28px;
    padding:8px 12px;
    z-index: 99;

  }
  .gallpopup .prev{
    left:0;
  }

   .gallpopup .next{
    right:  0;
  }
  .gallpopup .slider-track img{
    max-height:60vh;
  }

  .gallpopup .thumbnails img{
    width:65px;
    height:50px;
  }

  .gallpopup .counter{
    font-size:14px;
  }
}

@media(max-width:480px){

  .gallpopup .slider-track img{
    max-height:55vh;
  }

  .gallpopup .thumbnails{
    gap:6px;
  }

  .gallpopup .thumbnails img{
    width:55px;
    height:42px;
  }

  .gallpopup .close{
    font-size:26px;
  }
}
.btn1 {
    width: 20%;
    padding: 5px 3px;
    font-size: clamp(1.6rem, 1.498rem + 0.366vw, 2.2rem);
    font-weight: 500;
    border-radius: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
/* ...............................end gallery popup css...............................*/
