@charset "UTF-8";
@import url(woocommerce.css);

@font-face {
    font-family: "saudi_riyal";
    src: url("../fonts/regular/saudi_riyal.woff2") format("woff2"), url("../fonts/regular/saudi_riyal.woff") format("woff"), url("../fonts/regular/saudi_riyal.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "saudi_riyal_bold";
    src: url("../fonts/bold/saudi_riyal.woff2") format("woff2"), url("../fonts/bold/saudi_riyal.woff") format("woff"), url("../fonts/bold/saudi_riyal.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

.wow {
    animation-duration: 2s;
    animation-fill-mode: both;
    visibility: hidden;
}

.bg-light {
    background-color: #FEF9F2 !important;
}

.bg-white {
    background: white !important;
}

/* Ensure the icon class correctly loads the Riyal symbol */
.woocommerce-Price-currencySymbol {
    font-size: 0;
}

.icon-saudi_riyal::before {
    content: "\e900";
    font-family: "saudi_riyal" !important;
    font-size: inherit;
    color: inherit;
    font-weight: 300;
}

.woocommerce-Price-currencySymbol::after {
    content: "\e900";
    font-family: "saudi_riyal" !important;
    font-size: 25px;
    color: inherit;
    font-weight: 300;
    margin-inline-start: 4px;
    display: inline-block;
    transform: translateY(2px);
}

.icon-saudi_riyal_bold::before {
    content: "\e900";
    font-family: "saudi_riyal_bold" !important;
    font-size: inherit;
    color: inherit;
}

.icon-saudi_riyal_new::after {
    content: "⃁";
    font-family: "saudi_riyal" !important;
    font-size: inherit;
    color: inherit;
}

.icon-saudi_riyal_bold_new::after {
    content: "⃁";
    font-family: "saudi_riyal_bold" !important;
    font-size: inherit;
    color: inherit;
}

.marquee-wrapper {
    background: #EA840D;
    padding: 8px 0;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    gap: 100px;
}

.marquee-content.paused {
    animation-play-state: paused !important;
}

.marquee-item {
    flex-shrink: 0;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.marquee-item:hover {
    color: black;
}

/* LTR Animation */
.marquee-content.ltr {
    animation: scrollLTR linear infinite;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* RTL Animation */
.marquee-content.rtl {
    animation: scrollRTL linear infinite;
}

@keyframes scrollRTL {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.fz18 {
    font-size: 18px;
}

.fz20 {
    font-size: 20px;
}

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

.bg-orange {
    background-color: #EA840D;
}

.bg-gray {
    background: #ECECEC !important;
}

.text-orange {
    color: #EA840D;
}

.text-black {
    color: #120F0D;
}

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

::-webkit-scrollbar-track {
    background: #120F0D;
}

::-webkit-scrollbar-thumb {
    background: #EA840D;
}

::-moz-selection {
    background: #EA840D;
    color: white;
}

::selection {
    background: #EA840D;
    color: white;
}

body {
    font-weight: 400;
    font-family: "Cairo", sans-serif;
    background: #fff;
    position: relative;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.bg-none {
    background-image: none !important;
    background: none !important;
}

.mb-100 {
    margin-bottom: 100px;
}

.py-64 {
    padding-block: 64px;
}

@media only screen and (max-width: 600px) {
    .py-64 {
        padding-block: 40px;
    }
}

.btn-1,
.snp-form button,
.form-submit .submit {
    border-radius: 5px;
    background: #EA840D;
    color: white;
    padding: 13px 25px;
    display: inline-block;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 0 0 #CE6F00;
}

@media (max-width: 767px) {

    .btn-1,
    .snp-form button {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {

    .btn-1,
    .snp-form button {
        flex-shrink: 0;
    }
}

.btn-1:hover,
.snp-form button:hover,
.form-submit .submit:hover {
    color: #EA840D;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
    background: white;
}

.readmore-btn {
    border-radius: 5px;
    background: #EA840D;
    color: white;
    padding: 10px 25px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
    border: none;
    font-weight: 400;
    box-shadow: 0 2px 0 0 #CE6F00;
}

.readmore-btn:hover {
    color: #EA840D;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
    background: white;
}

.btn-white-outlined {
    color: white;
    padding: 13px 25px;
    display: inline-block;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    font-weight: bold;
    box-shadow: inset 0 0 0 2px white;
}

.btn-white-outlined:hover {
    color: white;
    box-shadow: inset 0 0 0 2px #EA840D, 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
    background: #EA840D;
}

.btn-orange-outlined {
    border: 1px solid #EA840D !important;
    color: #EA840D;
    padding: 13px 25px;
    display: inline-block;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    font-weight: 500;
}

.btn-orange-outlined:hover {
    color: white;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
    background: #EA840D;
}

.btn-2 {
    border-radius: 5px;
    background: white;
    color: #EA840D;
    padding: 13px 25px;
    display: inline-block;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    font-weight: bold;
}

.btn-2:hover {
    color: #EA840D;
    box-shadow: 0px 9px 19px 1px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    background: #EA840D;
    color: white;
}

@media only screen and (max-width: 600px) {
    .btn {
        padding: 10px 15px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    z-index: 20;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.19);
}

header:has(.search-form-wrapper.active) {
    padding-bottom: 10px;
    background: rgba(106, 74, 25, 0.69);
}

header img {
    transition: 0.3s;
}

header.sticky-header {
    background: rgba(106, 74, 25, 0.8);
}

header.sticky-header img {
    filter: brightness(0) invert(1);
}

header .btn-1 {
    padding: 9px 11px;
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    header .btn-1 {
        padding: 6px 11px;
        font-size: 14px;
        flex-shrink: 0;
    }
}

header .header-main-content {
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo-img img {
    max-height: 69px;
    transition: 0.3s;
}

@media only screen and (max-width: 1024px) {
    header .logo-img img {
        max-height: 42px;
    }
}

.global-search-form .form-control {
    box-shadow: 0 2px 0 0 #CE6F00;
}

.global-search-form .form-control:focus {
    border-color: #EA840D;
}

.global-search-form .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-form-wrapper {
    background-color: #f3f3f3;
    border-radius: 30px;
    padding: 0 25px 0 15px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: 0.3s;
}

.search-form-wrapper:has(.open) {
    border-radius: 30px 30px 0 0;
}

.search-form-wrapper:focus-within {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.438);
}

.search-form-wrapper .search-form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-form-wrapper .search-form .search-btn {
    border: none !important;
    color: #120F0D;
    font-size: 20px;
    transition: 0.3s;
    padding-top: 8px;
}

.search-form-wrapper .search-form .search-btn:hover {
    color: #EA840D;
}

.search-form-wrapper .search-form .form-control {
    padding-block: 10px;
    width: 100%;
    background-color: transparent;
    border: none;
    color: #120F0D;
    font-size: 18px;
    box-shadow: none;
}

.search-form-wrapper .search-form .form-control::-moz-placeholder {
    color: #120F0D;
    font-size: 14px;
    opacity: 0.5;
}

.search-form-wrapper .search-form .form-control::placeholder {
    color: #120F0D;
    font-size: 14px;
    opacity: 0.5;
}

.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    max-height: 100px;
    margin-top: 5px;
}

.snp-form input:focus {
    border-color: #EA840D;
    outline: 0;
    box-shadow: 0 0 5px rgba(234, 132, 13, 0.3);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.main-menu a {
    text-transform: capitalize;
    transition: 0.3s;
}

.main-menu>li {
    margin-inline-end: 32px;
    position: relative;
}

.main-menu>li>a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    display: block;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .main-menu>li>a {
        font-size: 16px;
    }
}

.main-menu>li:hover>a {
    color: #EA840D;
}

.main-menu>li:hover>a:before {
    width: 100%;
    transition: 0.3s;
    opacity: 1;
}

.main-menu>li:last-of-type {
    margin: 0;
}

.show-submenu,
.show-overlay {
    opacity: 1;
    visibility: visible;
}

.main-menu .menu-item-has-children {
    position: relative;
    padding: 0;
}

.main-menu .menu-item-has-children>a {
    color: #fff;
    -moz-column-gap: 5px;
    column-gap: 5px;
    display: flex;
    align-items: baseline;
    position: relative;
}

.main-menu .menu-item-has-children>a::after {
    content: "\f078";
    position: relative;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    transition: 0.3s;
}

.main-menu .menu-item-has-children:hover>a {
    color: #EA840D;
}

.main-menu .menu-item-has-children:hover>a::after {
    color: #EA840D;
}

.main-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    pointer-events: auto;
}

.main-menu .menu-item-has-children .sub-menu {
    width: 230px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform-origin: center top;
    transform-style: preserve-3d;
    border-radius: 8px;
    z-index: 12;
    background-color: #fff;
    position: absolute;
    top: 80px;
    right: -22px;
    list-style: none;
    box-shadow: 0px 2px 13px 9px rgba(0, 0, 0, 0.02);
    padding: 12px;
    transition: 0.3s;
}

.main-menu .menu-item-has-children .sub-menu li {
    transition: 0.3s;
}

.main-menu .menu-item-has-children .sub-menu a {
    padding: 10px;
    align-items: center;
    font-size: 16px;
    border-radius: 4px;
    line-height: 1.5;
    color: #120F0D;
    justify-content: flex-start;
    font-weight: 400;
    display: flex;
    width: 100%;
    -moz-column-gap: 10px;
    column-gap: 10px;
    transition: color linear 0.2s;
}

.main-menu .menu-item-has-children .sub-menu a:hover {
    color: #EA840D;
}

.bars {
    z-index: 21;
    display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 6px;
    background: none;
    border: 0;
}

.bars .line {
    flex-shrink: 0;
    width: 25px;
    display: block;
    height: 1.5px;
    background-color: #EA840D;
    transition: 0.3s;
}

.rotate-line1 {
    transform: rotate(45deg) translateX(-2px) translateY(-2px);
    transform-origin: 0% 0%;
}

.rotate-line3 {
    transform: rotate(-45deg) translateX(0px) translateY(0px);
    transform-origin: 0 100%;
}

.bars .hide-line2 {
    transform: translateX(-30px);
    opacity: 0;
    visibility: hidden;
}

.header-icons {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.header-icons .header-icon {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.header-icons .header-icon:hover {
    color: #EA840D;
}

.header-icons .cart-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-icons .cart-count {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-icons .icon-saudi_riyal {
    font-size: 30px;
}

.search-icon {
    width: 25px;
}

.search-icon.active i:before {
    content: "\e59b";
    font-family: "Font Awesome 6 Pro";
}

.dropdown-parent {
    position: relative;
    display: inline-block;
}

.dropdown-parent .dropdown-list {
    width: 230px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform-origin: center top;
    transform-style: preserve-3d;
    border-radius: 8px;
    z-index: 12;
    background-color: #F8F4EC;
    position: absolute;
    top: 80px;
    inset-inline-end: -22px;
    list-style: none;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 12px;
    transition: all 0.4s;
}

.dropdown-parent .dropdown-list li {
    text-align: center;
    transition: 0.3s;
}

.dropdown-parent .dropdown-list a {
    padding: 10px;
    align-items: center;
    font-size: 18px;
    color: #120F0D;
    text-align: center;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    -moz-column-gap: 10px;
    column-gap: 10px;
    transition: 0.3s;
}

.dropdown-parent .dropdown-list a:hover {
    color: #EA840D;
}

.dropdown-parent:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    top: 100%;
    pointer-events: auto;
}

@media only screen and (max-width: 1200px) {
    .menu-item-has-children .sub-menu {
        inset-inline-start: 0;
        transform: unset;
    }

    .main-menu>li {
        margin-inline-end: 25px;
    }
}

@media only screen and (max-width: 992px) {
    .navigation .main-menu>li>a {
        color: #000;
    }

    .navigation .container {
        padding-inline: 12px;
    }

    .rotate-line3 {
        transform: -45deg translateX(-1px) translateY(0px);
    }

    .logo-img {
        margin-inline-end: auto;
    }

    .header-main-content {
        height: auto;
        justify-content: flex-end;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .main-menu>li {
        margin-inline-end: 0;
        margin-bottom: 25px;
    }

    .main-menu>li:nth-child(5) {
        margin-inline-start: unset;
    }

    .main-menu>li>a {
        font-size: 18px;
        font-weight: 500;
    }

    .main-menu>li:nth-child(4) {
        margin-inline-start: 0;
    }

    .bars {
        display: flex;
    }

    .navigation {
        overflow-y: auto;
        position: fixed;
        opacity: 0;
        transition-duration: 1s;
        visibility: hidden;
        top: 0;
        inset-inline-start: 0;
        width: 100%;
        height: 100vh;
        padding: 40px;
        padding-top: 3rem;
        background-color: #fff;
        transition: 0.3s;
        z-index: 20;
        -webkit-clip-path: circle(0.5% at 0 0);
        clip-path: circle(0.5% at 0 0);
    }

    .open-sidebar {
        opacity: 1;
        visibility: visible;
        -webkit-clip-path: circle(140.9% at 0 0);
        clip-path: circle(140.9% at 0 0);
        transition: 0.3s;
    }

    .main-menu .menu-item-has-children>a::after {
        font-size: 14px;
        transition: 0.3s;
        color: #EA840D;
    }

    .main-menu .menu-item-has-children>a.icon-rotate::after {
        transform: rotate(180deg);
    }

    .main-menu .menu-item-has-children>a::after {
        font-size: 15px;
    }

    .main-menu .menu-item-has-children .sub-menu {
        position: static;
        background-color: unset;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: unset;
        padding: 0;
        display: none;
        transition: none;
        width: 100%;
        padding-top: 18px;
    }

    .main-menu .menu-item-has-children .sub-menu li {
        display: flex;
        align-items: center;
        -moz-column-gap: 10px;
        column-gap: 10px;
        padding-inline-start: 14px;
    }

    .main-menu .menu-item-has-children .sub-menu li:before {
        content: "\e404";
        font-family: "Font Awesome 6 Pro";
        font-weight: 300;
        color: #EA840D;
        font-size: 14px;
        transition: 0.3s;
    }

    .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
        margin-bottom: 17px;
    }

    .main-menu .menu-item-has-children .sub-menu li {
        text-align: start;
    }

    .main-menu .menu-item-has-children:hover .sub-menu {
        transform: unset;
    }

    .main-menu .menu-item-has-children .sub-menu a {
        display: flex;
        padding: 0;
        gap: 8px;
        width: -moz-max-content;
        width: max-content;
        color: #120F0D;
    }

    .main-menu .menu-item-has-children {
        width: auto;
        padding: 0;
    }

    .main-menu .menu-item-has-children>a {
        justify-content: space-between;
        cursor: pointer;
    }

    .main-menu .menu-item-has-children {
        line-height: normal;
    }
}

@media only screen and (max-width: 768px) {
    .navigation .container {
        padding-inline: 20px;
    }

    .main-menu .menu-item-has-children .sub-menu li a:hover {
        background-color: transparent;
        color: #EA840D;
    }

    .main-menu .menu-item-has-children {
        padding: 0;
    }
}

.hero-gap {
    margin-top: -77px;
}

.hero-section {
    transition: 0.3s;
    overflow: hidden;
}

.hero-section .hero-main-content {
    position: relative;
    width: 100%;
    max-height: 688px;
    height: 96vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.hero-section .hero-main-content video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .hero-section .hero-main-content {
        height: auto;
        padding-block: 7rem;
    }
}

@media only screen and (max-width: 1024px) {
    .hero-section .hero-main-content {
        width: 100%;
    }
}

.hero-section .hero-main-content .hero-content {
    width: 85%;
    position: relative;
    text-align: center;
    margin-inline: auto;
    z-index: 2;
}

@media only screen and (max-width: 600px) {
    .hero-section .hero-main-content .hero-content {
        width: 100%;
    }
}

.hero-section .hero-main-content .hero-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 35px;
}

@media only screen and (max-width: 1024px) {
    .hero-section .hero-main-content .hero-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
}

.hero-section .hero-main-content .hero-text {
    font-size: 25px;
    margin-bottom: 40px;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .hero-section .hero-main-content .hero-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .hero-section .hero-main-content .hero-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.hero-section .hero-btn {
    display: flex;
       flex-direction: column;
    align-items: center;
    gap: 24px;
	 .btn.btn-1  {
    min-width: 240px;
}
}
.row-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
    .hero-section .hero-btn {
        justify-content: center;
    }
}

@keyframes zoomBackground {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 120%;
    }
}

.hero-features {
    margin-bottom: 65px;
}

.hero-features .features-wrapper {
    border-radius: 4px;
    background: #f6e9d2;
    box-shadow: 0px 3px 6px rgba(123, 66, 0, 0.19);
    padding: 30px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 70%;
    margin: -50px auto 0 auto;
}

@media only screen and (max-width: 1024px) {
    .hero-features .features-wrapper {
        width: 100%;
    }
}

.hero-features .features-wrapper .single-feature {
    flex: 0 1 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.hero-features .features-wrapper .single-feature:not(:last-child) {
    border-left: 1px solid #874900;
    padding-left: 10px;
}

@media only screen and (max-width: 600px) {
    .hero-features .features-wrapper .single-feature:not(:last-child) {
        border-left: 1px dotted rgba(135, 72, 0, 0.4274509804);
    }
}

@media only screen and (max-width: 600px) {
    .hero-features .features-wrapper .single-feature .icon {
        width: 30px;
        height: 30px;
    }
}

.hero-features .features-wrapper .single-feature p {
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .hero-features .features-wrapper .single-feature p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .hero-features .features-wrapper .single-feature p {
        font-size: 13px;
    }
}

.section-title {
    font-weight: bold;
    font-size: 35px;
    color: #000;
    position: relative;
    margin-bottom: 45px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .section-title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .section-title {
        font-size: 25px;
    }
}

@media only screen and (max-width: 600px) {
    .section-title {
        font-size: 20px;
    }
}

.section-description {
    font-size: 20px;
    color: #120F0D;
    font-weight: 500;
    width: 70%;
    margin-inline: auto;
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .section-description {
        font-size: 16px;
    }
}

.single-category-card {
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.single-category-card .cat-img {
    position: relative;
}

.single-category-card .cat-img:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(rgba(119, 64, 0, 0.27) 0%, #774000 100%);
    opacity: 0.48;
}

.single-category-card .cat-img .cat-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}

.single-category-card:hover {
    box-shadow: 0px 3px 6px rgba(119, 64, 0, 0.56);
    transform: translateY(-5px);
}

.swiper-x-padding {
    padding-inline: 40px;
}

@media only screen and (max-width: 600px) {
    .swiper-x-padding {
        padding-inline: 0;
    }
}

.about-us-section {
    position: relative;
    background: linear-gradient(180deg, rgba(234, 132, 13, 0.04) 0%, rgba(234, 132, 13, 0.04) 100%), url(../images/pattern-bg.png);
    background-size: cover;
    background-position: center;
    margin-top: 64px;
}

@media only screen and (max-width: 768px) {
    .about-us-section {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .about-us-section {
        margin-top: 20px;
    }
}

.about-us-section .section-title {
    color: #EA840D;
    justify-content: start;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 24px;
}

@media only screen and (max-width: 768px) {
    .about-us-section .section-title {
        justify-content: center;
    }
}

.about-us-section .description {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: normal;
}

@media only screen and (max-width: 600px) {
    .about-us-section .description {
        font-size: 16px;
        text-align: center;
    }
}

.about-us-section .about-video {
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .about-us-section .about-video {
        margin-top: 40px;
    }
}

.about-us-section .about-img {
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .about-us-section .about-img {
        margin-bottom: 40px;
    }
}

.our-values-list {
    gap: 32px;
    margin-inline-start: 10px;
}

.our-values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #000;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #EA840D;
    padding: 3px 8px 3px 15px;
}

.our-values-list li p {
    margin: 0;
}

.our-values-list li .icon {
    width: 40px;
    height: 40px;
    margin-right: -20px;
    border-radius: 4px;
    background: #EA840D;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
}
.accreditation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
  .accreditation-item {
    text-align: center;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 1px 2px 5px #8080804a;
	  flex: 1 0 0;
/*       width: 8%; */
	  @media screen and (max-width:600px) {
/* 		  width: 14%; */
		      padding: 6px;
	  }
}

  .accreditation-item img {
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
	max-height:130px;
}

@media only screen and (max-width: 768px) {
    .our-values-list {
        justify-content: center;
    }

    .our-values-list li {
        flex-direction: column;
        padding: 5px;
        font-size: 14px;
    }

    .our-values-list li .icon {
        margin: -20px auto 0;
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .our-values-list li .icon img {
        width: 90%;
    }

    .accreditation-content {
        width: 100% !important;
    }
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: bold;
    margin-bottom: 24px;
    color: #EA840D;
    display: flex;
    gap: 20px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price del {
    opacity: 0.5;
    font-weight: normal;
    display: inline-flex !important;
}

.woocommerce div.product .product_title {
    font-size: clamp(25px, 2.5vw, 30px);
    font-weight: bold;
    color: #000;
}

.product-info-wrapper .product-title {
    font-size: clamp(20px, 2.5vw, 35px);
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.product-info-wrapper .price {
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: bold;
    margin-bottom: 24px;
    color: #EA840D;
    display: flex;
    gap: 20px;
}

.product-info-wrapper .price del {
    opacity: 0.5;
    font-weight: normal;
    display: inline-flex !important;
}

.product-info-wrapper .product-description {
    font-size: 18px;
    line-height: 1.8;
}

.product-info-wrapper .product-weight,
.product-info-wrapper .product-size {
    margin-bottom: 20px;
}

.product-info-wrapper .product-meta select {
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ea840d;
    box-shadow: none;
    display: inline-flex;
    width: auto;
    min-width: 300px;
}

.product-info-wrapper .meta-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.custom-select,
.woocommerce div.product form.cart .variations select,
.woocommerce .woocommerce-ordering select {
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ea840d !important;
    box-shadow: none;
    display: inline-flex;
    width: auto;
    min-width: 300px;
    box-shadow: none !important;
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: none !important;
}

@media only screen and (max-width: 768px) {

    .custom-select,
    .woocommerce div.product form.cart .variations select,
    .woocommerce .woocommerce-ordering select {
        min-width: 100%;
    }
}

.product-quantity {
    gap: 20px;
    align-items: center;
}

.product-quantity .meta-title {
    margin-bottom: 0;
}

.product-quantity .btn-1 {
    padding: 7.3px 45px;
}

.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #EA840D;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    float: none !important;
    margin: 0 !important;
    height: 45px;
    transform: translateY(2px);
}

.quantity button {
    width: 40px;
    height: 45px;
    border: none;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    color: #EA840D;
    font-weight: bold;
}

.quantity button:hover {
    background: #EA840D;
    color: #fff;
}

.quantity-input,
.woocommerce .quantity .qty {
    width: 60px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid #EA840D;
    border-right: 1px solid #EA840D;
    font-size: 16px;
    outline: none;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product_meta>span {
    display: block;
}

.shop-features {
    margin-top: 40px;
    gap: 20px;
}

.shop-features .shop-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    font-weight: normal;
}

.shop-features .shop-feature:not(:last-child) {
    border-left: 1px solid #F8D7B1;
    padding-left: 20px;
}

.shop-features .shop-feature i {
    color: #EA840D;
}

.shop-features .shop-feature p {
    margin: 0;
}

.shop-features.wide-features {
    gap: 80px;
    margin-top: 80px;
}

@media only screen and (max-width: 768px) {
    .shop-features.wide-features {
        gap: 20px;
    }
}

.shop-features.wide-features .shop-feature {
    flex-direction: column;
}

.shop-features.wide-features .shop-feature:not(:last-child) {
    padding-left: 80px;
}

.shop-features.wide-features .shop-feature i {
    font-size: 40px;
}

.shop-features.wide-features .shop-feature p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .shop-features.wide-features .shop-feature {
        text-align: center;
        padding-left: 0px !important;
        border: 0;
    }

    .shop-features.wide-features .shop-feature i {
        font-size: 20px;
    }

    .shop-features.wide-features .shop-feature p {
        font-size: 13px;
        margin: 0;
        font-weight: normal;
    }
}

.single-product-page-wrapper .nav-tabs {
    margin-top: 4rem;
    gap: 25px;
    border-bottom: 1px solid #F8D7B1;
    padding-bottom: 1.5rem;
}

.single-product-page-wrapper .nav-tabs .nav-link {
    border: 1px solid #ea840d;
    border-radius: 4px;
    padding: 7px 20px;
    font-size: 20px;
    color: #000;
    transition: 0.3s;
}

.single-product-page-wrapper .nav-tabs .nav-link.active {
    background: #EA840D;
    color: #fff;
}

.single-product-page-wrapper .tab-pane {
    padding-top: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.snp-is-oos:after {
    display: none !important;
}

.single-product-card {
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
    background: #FCF8F1;
    font-size: 18px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-product-card .product-img {
    position: relative;
}

.single-product-card .product-img img {
    aspect-ratio: 1;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.single-product-card .product-img span.onsale {
    position: absolute;
    background: #ce201d;
    color: #ffffff;
    font-size: 13px;
    margin: 13px;
    padding: 3px 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px 3px rgba(206, 32, 29, 0.26);
    min-height: unset;
    min-width: unset;
    font-weight: 500;
    line-height: normal;
}

.single-product-card .product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.single-product-card .product-info .btn {
    margin-top: auto;
    font-size: 16px;
    font-weight: bold;
    padding-block: 10px;
}

@media only screen and (max-width: 600px) {
    .single-product-card .product-info .btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

.single-product-card .product-title {
    text-align: center;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: box;
    min-height: 50px;
    align-content: center;
}

.single-product-card .product-title a {
    color: #774000;
    font-weight: bolder;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .single-product-card .product-title a {
        font-size: 16px;
    }
}

.single-product-card .price {
    color: black;
    font-weight: bold;
    margin-bottom: 5px;
    transition: 0.3s;
    text-align: center;
    gap: 10px;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .single-product-card .price {
        margin-bottom: 16px;
        font-size: 16px;
    }
}

.single-product-card .price del {
    font-weight: normal;
    color: rgba(0, 0, 0, 0.48);
    margin-inline-start: 10px;
    text-decoration: line-through !important;
    display: inline-flex;
}

.single-product-card:hover {
    background: #f6e9d2;
    box-shadow: 0px 3px 6px rgba(119, 64, 0, 0.3);
}

.single-product-card:hover .btn {
    background: #EA840D;
    color: #fff;
}

.single-product-card:hover .price {
    color: black;
}

.single-vm-wrapper {
    background: url("../images/grad-bg.jpg") no-repeat center center;
    background-size: 100% auto;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #EA840D;
    position: relative;
    overflow: hidden;
}

.single-vm-wrapper .bg {
    background: linear-gradient(#0074f1 0%, #dbe0e1 100%);
    height: 100%;
    transition: 0.5s;
    position: absolute;
    inset: 0;
    z-index: 0;
    -webkit-clip-path: circle(0% at 100% 0);
    clip-path: circle(0% at 100% 0);
}

.single-vm-wrapper .icon {
    border-radius: 5px 0px 34px 0px;
    background: rgba(0, 116, 241, 0.46);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.single-vm-wrapper .icon img {
    max-width: 33px;
}

.single-vm-wrapper .title {
    font-size: 20px;
    font-weight: bold;
    color: #EA840D;
    margin-bottom: 32px;
    text-align: center;
    z-index: 1;
    position: relative;
    padding-top: 20px;
    transition: 0.3s;
}

.single-vm-wrapper .description {
    font-weight: 500;
    font-size: 18px;
    color: #120f0d;
    padding: 10px;
    z-index: 1;
    position: relative;
    transition: 0.3s;
    line-height: 1.7;
}

.single-vm-wrapper .description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-vm-wrapper .description ul li {
    display: flex;
    gap: 10px;
}

.single-vm-wrapper .description ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: #EA840D;
    transition: 0.3s;
}

.single-vm-wrapper:hover .title,
.single-vm-wrapper:hover .description {
    color: white;
}

.single-vm-wrapper:hover ul li:before {
    color: white;
}

.single-vm-wrapper:hover .bg {
    -webkit-clip-path: circle(200% at 100% 0);
    clip-path: circle(200% at 100% 0);
}

.services-section {
    background: url(../images/silver-glittering-halftone-texture-halftone-background.png) no-repeat center top;
    background-size: cover;
}

@media (min-width: 768px) {
    .service-page-wrapper .service-img {
        position: sticky;
        top: 100px;
    }
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    border-radius: 5px;
}

.single-service-card img {
    max-width: 32px;
}

.single-service-card .front,
.single-service-card .back {
    background-size: cover;
    border-radius: 5px;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    text-align: center;
    min-height: 220px;
    height: auto;
    color: #fff;
}

.single-service-card .back {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    border-radius: 5px;
    background: linear-gradient(to left, #A7ABAC, #242525);
}

.single-service-card .back a:not(.btn) {
    color: white;
    font-size: 18px;
}

.single-service-card .back .btn {
    padding: 7px 30px;
    margin-top: 15px;
}

.single-service-card .front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    backface-visibility: hidden;
    border-radius: 5px;
    background: linear-gradient(rgba(18, 15, 13, 0.44) 0%, #000 100%);
    opacity: 0.8;
}

.single-service-card:hover .front,
.single-service-card:hover .back {
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.single-service-card .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.single-service-card .inner {
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    outline: 1px solid transparent;
    perspective: inherit;
    z-index: 2;
}

.single-service-card .back {
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}

.single-service-card .front {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.single-service-card:hover .back {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.single-service-card:hover .front {
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}

@media only screen and (max-width: 768px) {
    .single-service-card {
        margin-top: 0 !important;
    }
}

.single-service-card .service-title {
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-align: center;
    line-height: 1.8;
    margin: 8px 0 10px;
    padding-inline: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.single-service-card .service-description {
    font-weight: normal;
    font-size: 18px;
    color: white;
    padding: 0 10px 10px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid #EA840D;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #EA840D;
    opacity: 1;
    border-radius: 7px;
    transition: 0.3s;
}

.our-projects .single-project {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.our-projects .single-project>a {
    color: #120F0D;
}

.our-projects .single-project .project-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.our-projects .single-project .project-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.our-projects .single-project .project-img .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    transform: scale(2);
    transition: 0.3s;
}

.our-projects .single-project .project-info {
    padding: 16px;
}

.our-projects .single-project .project-info .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.our-projects .single-project .project-info .description {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 1;
    transition: 0.3s;
}

.our-projects .single-project .project-info .btn {
    padding: 10px 20px;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.our-projects .single-project:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.24);
    transform: translateY(-5px);
}

.our-projects .single-project:hover .description {
    opacity: 0;
}

.our-projects .single-project:hover .btn {
    opacity: 1;
    transform: translateY(-50px) translateX(-50%);
    visibility: visible;
    height: auto;
}

.our-projects .single-project:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

.projects-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.projects-filter .filter-item {
    padding: 10px 20px;
    border-radius: 5px;
    background: #fff;
    color: #EA840D;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid #EA840D;
}

.projects-filter .filter-item.active,
.projects-filter .filter-item:hover {
    background: #EA840D;
    color: #fff;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    direction: ltr;
}

@media only screen and (max-width: 768px) {
    .project-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        direction: rtl;
    }
}

.project-gallery .project-img {
    grid-column: span 2;
    border-radius: 5px;
    overflow: hidden;
    flex-basis: 20%;
    flex-grow: 1;
}

.project-gallery .project-img:first-child {
    flex-basis: 100%;
}

.project-gallery .project-img:last-child {
    grid-column: 3;
    grid-row: 1/4;
}

.project-gallery .project-img:nth-child(3) {
    position: relative;
}

.project-gallery .project-img:nth-child(3):after {
    content: "+" attr(data-count);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    pointer-events: none;
}

.project-gallery .project-img img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-gallery .project-img:hover img {
    transform: scale(1.1);
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
}

@media only screen and (max-width: 768px) {
    .stats-wrapper {
        flex-wrap: wrap;
        gap: 40px;
        width: 100%;
    }

    .stats-wrapper .single-counter {
        flex: 0 0 40%;
    }

    .stats-wrapper .single-counter:nth-child(2):after {
        display: none;
    }
}

.stats-wrapper .single-counter {
    text-align: center;
    position: relative;
    width: 100%;
}

.stats-wrapper .single-counter:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    left: -24.555px;
    width: 1px;
    height: 100%;
    background: #2f4858;
}

@media only screen and (max-width: 600px) {
    .stats-wrapper .single-counter {
        flex: 0 0 40%;
    }
}

.stats-wrapper .single-counter .counter {
    font-size: 40px;
    font-weight: bold;
    color: #EA840D;
    margin-top: 8px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.stats-wrapper .single-counter .counter--shown {
    transform: translateY(0);
    opacity: 1;
}

.stats-wrapper .single-counter .counter__num {
    display: inline-block;
}

.stats-wrapper .single-counter .state-title {
    font-size: 18px;
    font-weight: 600;
    color: #120F0D;
    margin-top: 15px;
}

.why-us ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 80%;
    margin-inline: auto;
}

@media only screen and (max-width: 1024px) {
    .why-us ul {
        width: 100%;
    }
}

.why-us .section-title {
    margin-bottom: 85px;
}

@media only screen and (max-width: 600px) {
    .why-us .section-title {
        margin-bottom: 25px;
    }
}

.why-us li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    position: relative;
    flex-basis: 20%;
    flex-grow: 1;
    flex-shrink: 0;
    flex-direction: column;
    text-align: center;
    border-radius: 4px;
    background: rgba(255, 252, 248, 0.89) url(../images/pattern-bg.png);
    background-size: 170%;
    background-position: center;
    box-shadow: 0px 2px 2px rgba(119, 64, 0, 0.08);
}

@media only screen and (max-width: 600px) {
    .why-us li {
        flex-basis: 40%;
        margin-top: 2rem;
    }
}

.why-us li .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ea840d;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: 0.3s;
    margin-top: -50px;
}

.why-us li .icon img {
    -o-object-fit: contain;
    object-fit: contain;
	max-width: 38px;
}

.why-us li .title {
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    color: #774000;
}

.why-us li .description {
    font-size: 16px;
    color: #575757;
    transition: 0.3s;
}

.cta-section {
    padding-block: 4rem;
    background-size: cover !important;
    line-height: 1.8;
}

.cta-section .cta-title {
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 18px;
}

.cta-section .cta-description {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 32px;
}

.testimonials-section .swiper-slide {
    height: auto;
}

.testimonials-section .single-testimonial-card {
    padding: 16px 20px;
    color: #120F0D;
    border-radius: 5px;
    background: #fff;
    position: relative;
    text-align: center;
    align-items: center;
    display: flex;
    height: 100%;
    margin-block: 14px 40px;
}

.testimonials-section .single-testimonial-card:before {
    content: "";
    width: 122px;
    height: 80%;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #f6e9d2;
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 50px;
}

.testimonials-section .single-testimonial-card .user-info {
    background: #fff;
    z-index: 1;
    position: relative;
    padding: 20px 10px;
}

.testimonials-section .single-testimonial-card .user-info img {
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.testimonials-section .single-testimonial-card .name {
    font-weight: bold;
    color: #000;
    margin-top: 10px;
}

.testimonials-section .testimonials-text {
    font-size: 18px;
    font-weight: 600;
    background: #F7EDDA url("../images/pattern-bg.png");
    background-size: 100%;
    background-position: center;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    text-align: center;
    height: 150px;
    overflow: hidden;
}

.testimonials-section .testimonials-text p {
    margin-bottom: 0;
	font-size:14px;
}

.testimonials-section .testimonials-text img {
    margin: 0 auto;
}

.testimonials-swiper {
    padding-bottom: 40px;
    padding-inline: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    transition: 0.3s;
    top: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px;
    content: "\f0d9" !important;
    font-family: "Font Awesome 6 pro" !important;
    font-weight: 900;
    color: #EA840D;
}

.swiper-button-next.swiper-button-prev:after,
.swiper-button-prev.swiper-button-prev:after {
    content: "\f0da" !important;
}

@media only screen and (max-width: 600px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center center !important;
    padding-top: 32px;
    color: #fff;
}

footer .payments {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;

    img {
        object-fit: contain;
        height: 40px;
        background: #ffffff;
        padding: 6px;
        border-radius: 11px;

    }
}

footer .footer-about {
    margin-top: 32px;
    font-weight: 500;
}

@media only screen and (max-width: 600px) {
    footer .footer-about {
        text-align: start;
    }
}

footer .footer-about img {
    max-height: 117px;
    margin: 0 0 20px;
    display: block;
}

@media only screen and (max-width: 600px) {
    footer .footer-about img {
        margin: 0 0 10px;
    }
}

footer .footer-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 1rem;
}

footer .footer-menu {
    margin-top: 32px;
}

@media only screen and (max-width: 600px) {
    footer .footer-menu {
        gap: 20px !important;
    }
}

footer .footer-menu ul {
    line-height: 2;
}

footer .footer-menu a {
    font-size: 16px;
    color: white;
    transition: 0.3s;
}

@media only screen and (max-width: 600px) {
    footer .footer-menu a {
        font-size: 14px;
    }
}

footer .footer-menu a:hover {
    color: #EA840D;
}

footer .footer-info {
    margin-top: 32px;
    font-size: 16px;
    color: white;
}

@media only screen and (max-width: 600px) {
    footer .footer-info {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    footer .footer-info {
        text-align: start;
    }

    footer .footer-info ul {
        justify-content: start;
    }
}

footer .footer-info i {
    width: 23px;
    height: 23px;
    border-radius: 5px;
    background-color: white;
    color: #6B4B18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 10px;
    transition: 0.3s;
}

footer .footer-info a {
    color: white;
    transition: 0.3s;
}

footer .footer-info a:hover {
    color: #EA840D;
}

footer .footer-info a:hover i {
    background-color: #EA840D !important;
    color: white !important;
}

footer .footer-info ul {
    line-height: 2;
}

footer .social-icons {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: end;
}

@media only screen and (max-width: 600px) {
    footer .social-icons {
        justify-content: center;
        margin-top: 30px;
    }
}

footer .social-icons i {
    font-size: 25px;
    color: #6B4B18;
    transition: 0.3s;
}

footer .social-icons a {
    display: block;
}

footer .social-icons a:hover i {
    background-color: #EA840D !important;
    color: white !important;
}

.copyrights {
    padding-block: 15px;
    color: white;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.copyrights a {
    color: #EA840D;
    transition: 0.3s;
}

.copyrights a:hover {
    color: white;
}

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 18;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.floating-icons .up-btn {
    background-color: #EA840D;
    filter: drop-shadow(0px 3px 6px rgba(222, 133, 66, 0.47));
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
}

.floating-icons .up-btn.show {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.floating-icons .up-btn:hover {
    background-color: white;
    color: #120F0D;
}

.floating-icons .whatsapp-icon {
    background-color: #2AA81A;
    color: white;
    padding: 10px;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 20px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse-green 2s infinite;
}

.floating-icons .whatsapp-icon:hover {
    background-color: #EA840D;
    color: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 168, 26, 0.93);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
    }
}

.workshop-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
    object-fit: cover;
}

.breadcrumb-section {
    background-size: cover !important;
    padding-top: calc(2rem + 77px);
    padding-bottom: 2rem;
}

@media only screen and (max-width: 600px) {
    .breadcrumb-section {
        padding-top: calc(2rem + 50px);
    }
}

.breadcrumb-section ul {
    padding: 0;
    margin: 0;
}

.breadcrumb-section ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-section ul li:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #D2D2D2;
    margin-inline: 10px;
}

.breadcrumb-section ul li a {
    color: #D2D2D2;
    transition: 0.3s;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .breadcrumb-section ul li a {
        font-size: 16px;
    }
}

.breadcrumb-section ul li a:hover {
    color: #EA840D;
}

.breadcrumb-section .hero-main-title {
    color: white;
    font-size: 35px;
    margin: 10px 0 0;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .breadcrumb-section .hero-main-title {
        font-size: 25px;
    }
}

.common-page-wrapper {
    padding-block: 5rem;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: rtl;
}

.button-wrapper {
    position: relative;
    display: inline-flex;
    /* Ensures the wrapper fits the button */
}

.wpcf7-spinner {
    position: absolute;
    top: 60%;
    inset-inline-end: 10px;
    margin: 0;
    transform: translateY(-50%);
}

.wpcf7-form.submitting .wpcf7-submit {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

/*FAQ*/
.faqs-section {
    background: #FDFDFC url(../images/faq-pattern.png) center top/contain no-repeat;
}

@media only screen and (min-width: 992px) {
    .faq-img {
        position: sticky;
        top: 100px;
    }
}

.single-faq-item {
    margin-bottom: 16px;
}

.single-faq-item .faq-title {
    border-radius: 5px;
    background: #fff;
    border: 1px solid #EA840D;
    padding: 11px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #EA840D;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.single-faq-item .faq-title .fa-comment {
    color: #EA840D;
}

@media only screen and (max-width: 600px) {
    .single-faq-item .faq-title {
        padding: 12px 30px 12px 80px;
        font-size: 16px;
    }
}

.single-faq-item .faq-title::after {
    content: "\f0d7";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 20px;
    color: #EA840D;
    transition: 0.3s;
    bottom: 0;
    top: 0;
    inset-inline-end: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.single-faq-item .faq-title.active {
    color: white;
    background: #EA840D;
    border-radius: 5px 5px 0 0;
}

.single-faq-item .faq-title.active i.fa-comment {
    color: white;
}

.single-faq-item .faq-title.active .fa-question {
    color: #EA840D;
}

.single-faq-item .faq-title.active::after {
    content: "\f0d8";
    transition: 0.3s;
    color: white;
}

.single-faq-item .faq-content {
    font-size: 18px;
    font-weight: normal;
    line-height: 2;
    padding: 20px;
    display: none;
    border-radius: 0 0 5px 5px;
    background: #fff;
    border: 1px solid #EA840D;
    border-top-color: transparent;
}

@media only screen and (max-width: 600px) {
    .single-faq-item .faq-content {
        font-size: 16px;
    }
}

.blogs {
    background: #FEFDFB;
}

.blog-tabs .nav-link {
    color: #EA840D;
    transition: 0.3s;
    box-shadow: inset 0 0 0 1px #EA840D;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.blog-tabs .nav-link:hover,
.blog-tabs .nav-link.active {
    background: #EA840D;
    color: white;
}

.single-blog-card {
    border-radius: 4px;
    background: #FFFCF8;
    overflow: hidden;
    padding: 16px;
    transition: 0.3s;
    box-shadow: 0px 3px 6px rgba(234, 132, 13, 0.19);
    height: 100%;
}

.single-blog-card .blog-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-blog-card .post-date {
    margin-bottom: 20px;
}

.single-blog-card a {
    color: #120F0D;
    text-decoration: none;
}

.single-blog-card .blog-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.single-blog-card .blog-card-img img {
    height: 155px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 4px;
}

.single-blog-card .blog-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.8;
    transition: 0.3s;
}

.single-blog-card .post-date i {
    color: #FFC45C;
}

.single-blog-card .post-date span {
    color: #858482;
    font-size: 16px;
}

.single-blog-card .description {
    font-size: 16px;
    line-height: 1.8;
}

.single-blog-card .btn {
    padding: 9px 35px;
    font-weight: bold;
    margin: auto auto 0;
    display: flex;
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
}

.single-blog-card:hover {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(119, 64, 0, 0.3);
    transform: translateY(-5px);
}

.single-blog-card:hover .blog-title {
    color: #EA840D;
}

.single-blog-card:hover .btn {
    color: white;
    background: #EA840D;
}

@media only screen and (min-width: 768px) {
    .single-blog-card.wide-blog-card a {
        padding: 10px;
        display: flex;
    }

    .single-blog-card.wide-blog-card a .blog-card-img {
        margin-inline-end: 1rem;
        width: 45%;
        flex-shrink: 0;
    }

    .single-blog-card.wide-blog-card a .blog-card-img img {
        height: 100%;
        border-radius: 10px;
    }

    .single-blog-card.wide-blog-card .info {
        display: flex;
        flex-direction: column;
    }

    .single-blog-card.wide-blog-card .read-more {
        margin-top: auto;
    }
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    color: #EA840D;
    margin-bottom: 24px;
}

.single-recent-post {
    font-size: 18px;
    transition: 0.3s;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ea840d;
    padding: 8px;
}

.single-recent-post a {
    display: flex;
    color: #000;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.single-recent-post img {
    width: 110px;
    aspect-ratio: 1;
    border-radius: 4px;
    flex-shrink: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-recent-post .title {
    position: relative;
    margin-inline-start: 10px;
}

.single-recent-post .read-more {
    color: #EA840D;
    font-size: 16px;
    font-weight: bold;
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
}

.single-recent-post:hover {
    box-shadow: 0px 3px 6px rgba(119, 64, 0, 0.3);
}

.single-recent-post:hover a {
    color: #EA840D;
}

.share-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #EA840D;
}

.share-btn .front {
    position: absolute;
    inset: 0;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EA840D;
    transition: 0.3s;
    font-weight: bold;
}

.share-btn .back {
    display: flex;
    gap: 15px;
}

.share-btn .back a {
    color: #EA840D;
}

.share-btn .back a:hover {
    color: #120F0D;
}

.share-btn:hover .front {
    transform: translateX(-90%);
}

.post-content a {
    color: #EA840D;
}

.post-content a:hover {
    color: #7E633B;
}

.post-content,
.page-content {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
	img {
		max-width:100%;
	}
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #EA840D;
    font-weight: bold;
    margin-block: 20px;
}
.post-content h3 {
    font-size: 21px;
}
.post-content h4 {
    font-size: 18px;
}
.post-content h5 {
    font-size: 16px;
}
.post-content h6 {
    font-size: 14px;
}
.page-content {
    background-image: url("../images/3d-rendering-honeycomb.png");
}

.page-content .post-content ul:not(.list-unstyled) {
    padding: 0;
}

.page-content .post-content ul:not(.list-unstyled) li {
    line-height: 2;
    list-style: none;
}

.page-content .post-content ul:not(.list-unstyled) li:before {
    content: "\f100";
    color: #EA840D;
    margin-inline-end: 10px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 16px;
}

.category-page-wrapper .single-blog-card .blog-title {
    color: #000;
}

.category-page-wrapper .single-blog-card:hover .blog-title {
    color: #EA840D;
}

.shipping-policy .title {
    font-size: clamp(20px, 5vw, 35px);
    margin-bottom: 40px;
    font-weight: bold;
    color: #EA840D;
}

.shipping-policy .table-wrapper {
    border-radius: 4px;
    background: #f8f8f8;
    border: 1.5px solid #ea840d;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    padding: 10px 25px 10px;
}

.shipping-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.shipping-policy-table td,
.shipping-policy-table th {
    background: #F8F8F8;
    padding: 10px;
    text-align: center;
}

.shipping-policy-table th {
    border-bottom-color: #F4D3AD;
}

.shipping-policy-table th:not(:last-child) {
    border-left: 1px solid #F4D3AD;
}

.shipping-policy-table tr td {
    border-bottom: none;
}

.shipping-policy-table tr td:not(:last-child) {
    border-left: 1px solid #F4D3AD;
}

.complains-page .contact-form-wrapper {
    border: 2px solid #EA840D;
    filter: drop-shadow(0px 3px 6px rgba(234, 132, 13, 0.32));
    border-radius: 4px;
}

.pagination,
.woocommerce nav.woocommerce-pagination ul,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    border: none;
}

.pagination li,
.woocommerce nav.woocommerce-pagination ul li,
.nav-links li {
    border: none;
}

.pagination .page-link,
.pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul .page-link,
.woocommerce nav.woocommerce-pagination ul .page-numbers,
.nav-links .page-link,
.nav-links .page-numbers {
    color: #120F0D;
    background-color: #EEEEEE;
    color: #9A9A9A;
    border: none;
    min-width: 33px;
    height: 33px;
    border-radius: 5px;
    display: flex;
    font-size: 18px;
    box-shadow: none !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.pagination .page-link:hover,
.pagination .page-link.active,
.pagination .page-link.current,
.pagination .page-numbers:hover,
.pagination .page-numbers.active,
.pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul .page-link:hover,
.woocommerce nav.woocommerce-pagination ul .page-link.active,
.woocommerce nav.woocommerce-pagination ul .page-link.current,
.woocommerce nav.woocommerce-pagination ul .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul .page-numbers.active,
.woocommerce nav.woocommerce-pagination ul .page-numbers.current,
.nav-links .page-link:hover,
.nav-links .page-link.active,
.nav-links .page-link.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.active,
.nav-links .page-numbers.current {
    background-color: #EA840D;
    color: white;
}

.contact-us-page-wrapper {
    background: url("../images/contact-bees.png") no-repeat 0 0;
    background-size: 100%;
}

@media only screen and (max-width: 600px) {
    .contact-us-page-wrapper {
        background-size: 200%;
        background-position: 100% top;
    }
}

.contact-form-wrapper {
    background: url("../images/form-bg.png") no-repeat 0 0;
    background-size: cover;
    padding: 24px 48px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-wrapper label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    font-weight: bold;
}

.contact-form-wrapper .input-wrapper {
    position: relative;
}

.contact-form-wrapper .input-wrapper i {
    position: absolute;
    inset-inline-start: 15px;
    inset-block-start: 15px;
    color: #EA840D;
}



.contact-form-wrapper .form-control,
#commentform input:not(.submit),
#commentform textarea {
max-width:100%;
    color: #120F0D;
    font-size: 18px;
    margin-bottom: 24px;
    padding: 7px 40px 7px 10px;
    transition: 0.3s;
    direction: rtl;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid #EA840D;
    opacity: 0.7;
    outline: 0;
}
#commentform {
    label {
        display: block;
    }

    input:not(.submit),
    textarea {
        margin-bottom: 0 !important;
    }
}
.contact-form-wrapper .form-control::-moz-placeholder {
    font-size: 15px;
}

.contact-form-wrapper .form-control::placeholder {
    font-size: 15px;
}

.contact-form-wrapper .form-control:focus,
#commentform input:not(.submit):focus,
#commentform textarea:focus {
    border: 1px solid #EA840D;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.19);
    background: rgba(255, 255, 255, 0.58);
    opacity: 1;
}

.contact-form-wrapper .btn {
    padding-inline: 3rem;
    margin-top: 1rem;
}

.contact-form-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-info {
    position: relative;
}

.contact-info ul {
    line-height: 2.5;
}

.contact-info li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-info li a:hover {
    color: #EA840D;
}

.contact-info li a:hover i {
    background: black;
    color: white;
}

.contact-info li i {
    width: 30px;
    height: 30px;
    background: #EA840D;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 15px;
}

.google-map {
    width: 100%;
    margin-bottom: 2rem;
}

.google-map iframe {
    width: 100%;
    display: block;
    max-height: 170px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-content .description h1,
.about-content .description h2,
.about-content .description h3,
.about-content .description h4,
.about-content .description h5,
.about-content .description h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 600px) {
    .about-content {
        text-align: center;
    }
}

.contact-info-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #EA840D;
    padding-top: 40px;
}

.contact-info-content .contact-info-item:last-child {
    flex-grow: 1;
    flex-basis: 100%;
}

.contact-info-content .contact-info-item i {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #EA840D;
    color: #120F0D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-info-content .contact-info-item p {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-content .contact-info-item a {
    font-size: 18px;
    color: white;
    font-weight: 400;
    transition: 0.3s;
}

.contact-info-content .contact-info-item a:hover {
    color: #EA840D;
}

.quotation-form {
    padding: 50px;
    background: #ECECEC;
    border: 0;
    border-radius: 10px;
}

.quotation-form .form-control {
    background-color: #ECECEC;
}

.book-page-wrapper {
    background: url("../images/book-bg.jpg") no-repeat;
    padding-block: 50px;
    background-size: 100% auto;
}

@media only screen and (max-width: 600px) {
    .book-page-wrapper {
        background-size: cover;
    }
}

.book-form {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 50px 20%;
}

.book-form label {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.book-form .form-control {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(13, 33, 50, 0.6117647059);
    border-radius: 5px;
    color: #120F0D;
    padding: 10px;
    transition: 0.3s;
    direction: rtl;
    margin-bottom: 16px;
}

.book-form .form-control:focus {
    border-color: #EA840D;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    outline: none;
    transition: 0.3s;
    background: #fff;
}

#search-results {
    list-style: none;
    background: #F3F3F3;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    top: calc(100% - 9px);
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#search-results::-webkit-scrollbar-track {
    margin-top: 10px;
    margin-bottom: 20px;
}

#search-results.open {
    padding: 20px;
}

#search-results li {
    margin-bottom: 15px;
}

#search-results li a {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    font-size: 16px;
    color: #0D2132;
}

#search-results li a img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    flex-grow: 0;
    flex-shrink: 1;
}

#search-results li a:hover {
    color: #EA840D;
}

/* == WordPress WYSIWYG Editor Styles ==
   Updated for WordPress 6.x+
   -------------------------------------------------------------------- */
/* --- Alignment & Images --- */
.alignnone,
a img.alignnone {
    display: inline-block;
    margin: 0 0 1.5em 0;
}

.alignleft,
a img.alignleft {
    float: left;
    margin: 0 1.5em 1.5em 0;
}

.alignright,
a img.alignright {
    float: right;
    margin: 0 0 1.5em 1.5em;
}

.aligncenter,
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    clear: both;
}

/* --- Captions --- */
.wp-caption {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    text-align: center;
    margin-bottom: 1.5em;
    padding: 5px 0 10px;
    max-width: 100%;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
}

.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding: 5px 0 0;
}

/* --- Smilies --- */
.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
    vertical-align: middle;
}

/* --- Blockquotes --- */
blockquote {
    border-left: 4px solid #ddd;
    margin: 1.5em 0;
    padding-left: 1em;
    color: #555;
    font-style: italic;
}

blockquote.left {
    float: left;
    width: 33%;
    margin: 0 1.5em 1em 0;
    text-align: right;
}

blockquote.right {
    float: right;
    width: 33%;
    margin: 0 0 1em 1.5em;
    text-align: left;
}

.table-of-contents {
    background: #f3f3f3;
    padding: 20px;
    margin: 20px 0;
    text-align: start;
    width: 50%;
    border: 1px solid #e5e5e5;
    border-inline-start: 3px solid #EA840D;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1411764706);
}

@media all and (max-width: 992px) {
    .table-of-contents {
        width: 100%;
    }
}

.toc-title {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #EA840D;
}

.toc-title::before {
    content: "\f46d";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 17px;
    margin-inline-end: 6px;
}

.toc-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.toc-link {
    color: #110f0d;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.toc-link::before {
    content: "\f100";
    font-family: "Font Awesome 6 Pro";
    color: #EA840D;
    margin-inline-end: 6px;
    font-size: 13px;
}

.toc-link:hover {
    color: #EA840D;
    margin-inline-start: 5px;
}

/* Add invisible spacer above H2 headings */
h2[id^=toc-] {
    scroll-margin-top: 100px;
    /* Adjust to header height + padding */
}

.cart-items-count {
    position: relative;
    font-size: 10px;
    background: #EA840D;
}

.cart-items-count::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Pro";
    color: white;
    margin-inline-start: 6px;
    font-size: 20px;
    position: absolute;
    font-weight: 300;
    z-index: -1;
    top: 0px;


}

a.added_to_cart.wc-forward {
    display: none;
}

span.woocommerce-Price-amount.amount {
    display: inline-block;
}

.snp-oos {
    top: 0;
    right: 0;
    position: absolute;
    background: #423b30;
    color: #ffffff;
    font-size: 13px;
    margin: 13px;
    padding: 3px 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px 3px rgba(114, 103, 103, 0.26);
}

.woocommerce .star-rating,
.single-product-card .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 13px;
    width: 5.6em;
    font-family: "Font Awesome 6 Pro";
    margin: -12px auto 10px;
}

.woocommerce .star-rating::before,
.single-product-card .star-rating::before {
    content: "\f005\f005\f005\f005\f005";
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    color: #d3ced2;
    font-weight: 400;
}

.woocommerce .star-rating span,
.single-product-card .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.woocommerce .star-rating span::before,
.single-product-card .star-rating span::before {
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    color: #EA840D;
    font-weight: 900;
}

.snp-form h4 {
    border-bottom: 2px solid #ea840d;
}

/*# sourceMappingURL=main.css.map */


@media (max-width:600px) {
    footer {
        background: #f8eedd !important;
        color: #000000;
        /* background-size: contain !important;
        background-position: center top;
         background-attachment: fixed;
        background: #80663f url(../images/pattern-bg.png) !important; */
    }

    footer .footer-info footer .footer-menu a:hover,
    footer .footer-info a:hover {
        color: #EA840D;
    }

    footer .footer-menu a,
    footer .footer-info a,
    footer .footer-info {
        text-decoration: none;
        color: #000000;
    }



    footer .footer-info i {
        background-color: #D3A863;
        color: #333333;
    }

    /* .footer-title::after {
        content: '\2b';
        font-family: 'Font Awesome 6 Pro';
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    } */

    /* .footer-title {
        position: relative;

        &.active {
            &::after {
                content: '\2d';
            }
        }
    } */

    footer .payments {
        margin-top: 20px;
        gap: 6px;

        img {
            width: 40px;
        }
    }

    footer .footer-info,
    footer .footer-menu {
        margin-top: 7px;
    }

    .header-icons {
        padding-inline-end: 10px;
    }

    .copyrights {
        color: #000000;
        font-size: 12px;
    }
}

span.wlr-product-message {
    background: #ea840d;
    display: inline-flex !important;
    color: #ffffff;
    font-size: 15px;
    padding: 5px 10px !important;
}

.single-product-card {
    .wlr-product-message {
        display: none !important;
    }
}

.wlr-message-info.wlr_block_points_rewards_earn_points,
.wlr-message-info.wlr_points_rewards_earn_points {
    margin: 5px 0 !important;
    padding: 5px !important;
    border: none !important;
    border-radius: 6px !important;
    color: #2c1800 !important;
    background-color: #ea840d38 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px;

    i.wlr.wlrf-point.wlr-theme-color-apply {
        margin: 0 !important;
        font-size: 22px !important;
    }
}


.wpcf7:has(.bulk-form) {
    direction: rtl !important;

}

.woocommerce-shipping-methods li:before {
    display: none !important;
}

p.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
}


.comment-meta.commentmetadata {
    font-size: 13px;
}
ol.comment-list {
    list-style: none;
    padding: 0;
}
.comment-body {
    border: 1px solid #dddddd;
    padding: 1rem;
    border-radius: 15px;
}

.woocommerce-Tabs-panel h2:first-child {
   display: none !important;
}

table.product-info {
	th,td {
		    border: 1px solid #e7e5e5;
	}
}

nav.woocommerce-MyAccount-navigation li::before {
    display: none;
}
table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table .button {
    margin-inline-end: 10px;
}