/*----------  Genral CSS  ----------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/ProximaNovaT-Light.woff2") format("woff2");
    font-weight: 300;
    /* Assuming Light is weight 300 */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TheSeasons";
    src: url("../fonts/TheSeasons-Bd.woff2") format("woff2");
    font-weight: bold;
    /* Assuming 'Bd' means Bold */
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: baseline;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: auto !important;
}

body {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "ProximaNova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #232323;
    background-color: var(--white);
    position: relative;
}

:root {
    --white: #fff;
    --off-white: #FAFAFA;
    --black: #000;
    --light-black: #141414;
    --light-blue: #F7F7F7;
    --grey-border: #D9D9D9;
    --grey: #717171;
    --blue: #b13c3c;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700 !important;
}

a {
    text-decoration: none;
    color: #232323;
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
    outline: none !important;
}

a:focus {
    text-decoration: none;
    outline: none !important;
}

*:focus {
    outline: none;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.hidden {
    width: 0;
    height: 0;
    display: none
}

.back-to-top {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--light-black);
    border-radius: 4.375rem;
    text-align: center;
    border: 2px solid #fff;
    opacity: 0;
    overflow: hidden;
    color: #fff
}

.back-to-top.active {
    bottom: 85px;
    opacity: 1;
    z-index: 9
}

.back-to-top>div {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out
}

.back-to-top>.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center
}

.back-to-top>.arrow svg {
    fill: #fff;
    height: 20px;
    width: 100%
}

.back-to-top>.text {
    font-size: .5rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px
}

.back-to-top:hover {
    transform: scale(1.1);
    bottom: 85px;
    cursor: pointer
}

.back-to-top:hover>.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0
}

.back-to-top:hover>.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000000s ease-in-out 0s !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

body input[type="checkbox"]:checked {
    background-color: var(--light-black);
    border-color: var(--light-black);
    position: relative;
}

body input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    background-image: url(../img/svg/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

body input[type="checkbox"] {
    width: 18px;
    height: 18px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    appearance: none;
    border: 1px solid var(--grey);
}

/*----------  Common CSS  ----------*/
.wrapper {
    display: block;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.body-fixed {
    overflow: hidden;
}

.container {
    max-width: 1460px;
    padding: 0 30px;
}

.container-lg {
    max-width: 1680px;
    padding: 0 30px;
}

.common-sec {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec-head {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

:is(h1, h2, h3, h4, h5, h6),
.sec-title,
.hero-title {
    font-family: "TheSeasons", sans-serif;
    letter-spacing: 1.5px;
}

.sec-title {
    font-size: 48px;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #232323;
    font-weight: 400;
}

.btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border-radius: 50px;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    letter-spacing: 0rem;
    min-width: auto;
    line-height: 1;
    z-index: 2;
    border: none;
    text-transform: uppercase;
}

.btn.btn-white {
    background-color: #fff;
    color: var(--light-black);
}

.btn.btn-white:hover {
    color: #fff;
    background-color: #000;
}

.btn.btn-black {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--white);
    border: 1px solid var(--light-black);
}

.btn.btn-black:hover {
    color: var(--white);
    border-color: var(--light-black);
    background-color: transparent;
}

.icon {
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    width: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    background-color: currentColor;
    transition: all .3s ease-in-out;
}

.icon.icon-right-arrow {
    mask-image: url(../img/right-arrow.png);
    background-color: #fff;
    width: 14px;
    min-width: 14px;
}

.icon.icon-search {
    mask-image: url(../img/svg/search.svg);
    background-color: var(--light-black);
}

.icon.icon-user {
    mask-image: url(../img/svg/user.svg);
    background-color: var(--light-black);
}

.icon.icon-cart {
    mask-image: url(../img/svg/cart.svg);
    background-color: var(--light-black);
}

.icon.icon-heart {
    mask-image: url(../img/svg/heart.svg);
    background-color: rgb(255 255 255 / 60%);
    width: 22px;
    min-width: 22px;
}

.icon.icon-heart {
    mask-image: url(../img/svg/icon-heart.svg);
    background-color: var(--light-black);
}

.icon.icon-compare {
    mask-image: url(../img/svg/icon-compare.svg);
    background-color: var(--light-black);
}

.icon.icon-star-outline {
    mask-image: url(../img/svg/icon-star.svg);
    background-color: var(--light-black);
}

.icon.icon-star-outline.active {
    mask-image: url(../img/svg/icon-star-active.svg);
    background-color: var(--light-black);
}

.icon.icon-facebook {
    mask-image: url(../img/facebook.png);
}

.icon.icon-twitter {
    mask-image: url(../img/svg/twitter.svg);
}

.icon.icon-instagram {
    mask-image: url(../img/svg/instagram.svg);
}

.icon.icon-youtube {
    mask-image: url(../img/svg/youtube.svg);
}

.icon.icon-tiktok {
    mask-image: url(../img/svg/tiktok.svg);
}

.icon.icon-whatapp {
    mask-image: url(../img/whatapp.png);
}

.icon.icon-pinterest {
    mask-image: url(../img/svg/pinterest.svg);
}

.icon.icon-categories {
    mask-image: url(../img/svg/cat-icon.svg);
    width: 18px;
    min-width: 18px;
    background-color: var(--light-black);
}

.icon.icon-date {
    mask-image: url(../img/svg/date.svg);
    width: 22px;
    min-width: 22px;
    background-color: var(--light-black);
}

.icon.icon-view-more {
    mask-image: url(../img/svg/right-arrow.svg);
    background-color: var(--light-black);
    width: 15px;
    min-width: 15px;
}

.side-bar .icon.icon-search {
    mask-image: url(../img/search.png);
    width: 20px;
    min-width: 20px;
    background-color: var(--light-black);
}

.icon.icon-author {
    mask-image: url(../img/svg/user.svg);
    background-color: var(--light-black);
    width: 20px;
    min-width: 20px;
}

/* header */
.header .header-main.has_sticky {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .09);
    background: #fff;
    backdrop-filter: blur(50px);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999;
    border-radius: 0;
    padding: 12px 70px;
}

.header-main.has_sticky .site-logo {
    width: 75px;
}

.header .header-top {
    padding: 15px;
    background-color: var(--light-black);
}

.header-details {
    display: flex;
    align-items: center;
}

.header-top-con {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-details span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
    padding: 0 5px;
}

.header-top-con .header-details:first-child {
    border-right: 1px solid #fff;
    padding-right: 5px;
    margin-right: 5px;
}

.header-top-con .shop-now {
    color: var(--off-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration-line: underline;
    display: block;
    margin-left: 15px;
    transition: all .4s ease-in-out;
}

.header-top-con .shop-now:hover {
    color: #8a8686;
}

.navbar-main .nav-menu-main ul li:hover .arrow {
    border-color: var(--light-black);
    transform: rotate(-135deg);
    top: 14px;
}

.home .header-main-wrapper {
    background-color: transparent;
}

.header-main-wrapper {
    background-color: #fff;
}

.header-main {
    padding: 15px 70px;
}

.header-main .row {
    --bs-gutter-y: 20px;
}

.site-logo {
    display: block;
    width: 95px;
    margin: auto;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-btn {
    float: right;
}

.header-btn a {
    display: inline-block;
    margin-right: 12px;
}

.header-btn a:last-child {
    margin-right: 0;
}

.header-btn a .icon {
    width: 28px;
    min-width: 28px;
}

.header-btn a:hover .icon {
    background-color: var(--blue);
}

.head_search a:hover .icon {
    background-color: var(--blue);
}

.mb-menu-logo {
    display: none;
}

.sidebar-overlay {
    visibility: hidden;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--black);
    z-index: 998;
}

.nav-menu-main ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-main .nav-menu-main>ul>li {
    padding: 0 22px;
    position: relative;
}

.navbar-main .nav-menu-main>ul>li>a {
    color: var(--light-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    position: relative;
    padding: 5px 0;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li>a::before {
    content: '';
    position: absolute;
    background-color: var(--light-black);
    width: 0;
    height: 1px;
    bottom: 18px;
    left: 0;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main ul li .arrow {
    position: absolute;
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 1px solid var(--light-black);
    border-right: 1px solid var(--light-black);
    transform: rotate(45deg);
    right: 5px;
    top: 9px;
    transition: all .4s ease-in-out;
    padding-right: 0;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu {
    position: absolute;
    left: -30px;
    top: 85%;
    right: 0;
    margin: auto;
    background: var(--white);
    z-index: 9;
    display: block;
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    visibility: hidden;
    opacity: 0;
    width: 230px;
    overflow: hidden;
    border-radius: 0 px;
    border-top: 3px solid var(--light-black);
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li:hover>.sub-menu {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: 1;
    visibility: visible;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li {
    width: 100%;
    border-bottom: 1px solid #E7E7E7;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li:last-child {
    border-bottom: none;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--light-black);
    display: block;
    background-color: var(--off-white);
    transition: all .2s ease-in-out;
    padding: 12px 24px;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li:hover a {
    background-color: var(--light-black);
    color: var(--white);
}

.menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: 0;
    margin-right: 5px;
    color: var(--light-black);
}

.menu-icon span {
    display: block;
    width: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--light-black);
    margin: auto
}

.menu-icon span:before {
    content: "";
    width: 20px;
    position: absolute;
    top: -.5rem;
    left: 0;
    height: .125rem;
    background: currentColor
}

.menu-icon span:after {
    content: "";
    width: 20px;
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: .125rem;
    background: currentColor
}

/* header */

/* footer */

.footer {
    background-color: var(--light-black);
    padding-top: 100px;
}

.footer-main {
    padding-bottom: 80px;
}

.foot-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.foot-box ul li {
    display: block;
    margin-bottom: 8px;
}

.foot-box ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: all .4s ease-in-out;
}

.foot-box ul li a:hover {
    color: var(--white);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 170px;
    width: 100%;
}

.foot-box.quick-link {
    padding-left: 0px;
}

.newsletter-box .cms-con {
    max-width: 330px;
    margin-bottom: 24px;
}

.newsletter-box .cms-con p {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.newsletter-box .form-group {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

.newsletter-box .form-group .form-control {
    width: calc(100% - 106px);
    flex: 0 0 calc(100% - 106px);
    height: 45px;
}

.newsletter-box .btn {
    text-transform: capitalize;
    min-width: 95px;
    font-size: 13px;
    min-height: 45px;
    background: #000000;
    border-radius: 7px;
    padding: 0px;
}

.newsletter-box .btn:hover {
    background: var(--blue);
    color: #fff;
}

.social-media {
    padding-left: 0;
}

.social-media a {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 4px;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin-bottom: 4px;
}

.social-media a:last-child {
    margin-right: 0;
}

.social-media .icon {
    background-color: var(--white);
    width: 16px;
    min-width: 16px;
    transition: all .4s ease-in-out;
}

.social-media .fb:hover {
    background: #3b5998;
}

.social-media .instagram:hover {
    background: #c13584;
}

.social-media .twitter:hover {
    background: #1da1f2;
}

.social-media .youtube:hover {
    background: red;
}

.social-media .pinterest:hover {
    background: #e60023;
}

.social-media .linkedin:hover {
    background: #0077b5;
}

.social-media .tiktok:hover {
    background: #69c9d0;
}

.social-media .whatapp:hover {
    background: #25D366;
}

.footer-con {
    margin-bottom: 20px;
}

.foot-contact {
    display: flex;
    align-items: start;
}

.foot-contact .img-box {
    width: 20px;
    height: 20px;
    flex: 0 0 25px;
    margin-right: 15px;
}

.foot-contact .cms-con p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0px;
}

.foot-contact .cms-con a {
    color: rgba(255, 255, 255, 0.7);
}

.foot-contact .cms-con a:hover {
    color: #fff;
}

.copy-right {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px 15px;
    text-align: center;
}

.copy-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
}

.copy-right p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: all .4s ease-in-out;
}

.copy-right p a:hover {
    color: var(--orange);
}

/* footer */

/* Hero banner sec*/

.hero-banner-wrap {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.hero-banner-wrap .content-image {
    margin: 0px;
    padding: 0px;
    width: 100%;
    min-height: 600px;
    height: calc(100vh - var(--header-height));
}

.hero-banner-wrap .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-wrap .item-info {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translate(0, -50%);
}

.hero-banner-wrap .item-info .item-info-text {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 40%;
    color: var(--white);
}

.hero-banner-wrap .sec-head .banner-title {
    color: var(--white);
}

.hero-banner-wrap .cms-con p {
    color: var(--white);
}

.hero-banner-sec-slider .slick-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #cecece;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: #adadad;
    font-size: 10px;
    background: #fff;
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-sec-slider .slick-arrow .icon {
    width: 14px;
    height: 14px;
}

.hero-banner-sec-slider .slick-next.slick-arrow {
    left: auto;
    right: 15px;
}

.hero-banner-sec-slider .item-info .sec-head {
    visibility: hidden;
    animation-delay: 0.2s;
    animation-name: none;
}

.hero-banner-sec-slider .item-info .cms-con {
    visibility: hidden;
    animation-delay: 0.3s;
    animation-name: none;
}

.hero-banner-sec-slider .item-info .hero-banner-btn {
    visibility: hidden;
    animation-delay: 0.5s;
    animation-name: none;
}

.hero-banner-sec-slider .slick-active .item-info .sec-head {
    visibility: visible;
    animation-delay: 0.2s;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.hero-banner-sec-slider .slick-active .item-info .cms-con {
    visibility: visible;
    animation-delay: 0.3s;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.hero-banner-sec-slider .slick-active .item-info .hero-banner-btn {
    visibility: visible;
    animation-delay: 0.5s;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

/* Hero banner sec*/

/* Top Category Sec */
.top-category-sec .banner-title {
    text-align: center;
}

.top-category-sec .slick-slider .slick-list .slick-slide {
    padding: 0 35px;
}

.top-category-sec .item-product-cat-content {
    text-align: center;
}

.top-category-sec .item-product-cat-content .item-image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.top-category-sec .item-product-cat-content:hover .item-image img {
    transform: scale(1.1);
}

.top-category-sec .item-image {
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: #f6f6f6;
}

.top-category-sec .item-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 5px;
}

.top-category-sec .item-title a {
    position: relative;
    padding-bottom: 5px;
}

.top-category-sec .item-title a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--black);
    bottom: 0;
    left: 50%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.top-category-sec .item-title a:hover:before {
    width: 100%;
    left: 0;
}

body .slick-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #cecece;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: #adadad;
    font-size: 10px;
    background: #fff;
    position: absolute;
    left: -15px;
    top: 35%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.icon.icon-left-arrow-slick {
    mask-image: url(../img/svg/left-arrow.svg);
    background-color: #cecece;
}

.icon.icon-right-arrow-slick {
    mask-image: url(../img/svg/right-arrow.svg);
    background-color: #cecece;
}

.slick-arrow .icon {
    width: 14px;
    height: 14px;
}

.top-category-sec .slick-next.slick-arrow {
    left: auto;
    right: -15px;
}

/* home banner two  */
@media only screen and (max-width:767px) {
    .single_banner {
        margin-bottom: 20px;
    }

}

.banner_thumb {
    position: relative;
    overflow: hidden;
    background: #f6f6f6;
}

.banner_thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.banner_thumb img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

.banner_thumb:hover::before {
    opacity: 1;
}

.banner_thumb:hover img {
    transform: scale(1.05);
}

.banner_content {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50%;
}

.banner_content p {
    color: #7d7d7d;
    margin-bottom: 0;
}

.banner_content h2 {
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 15px;
}

@media only screen and (max-width:767px) {
    .banner_content h2 {
        font-size: 20px;
        line-height: 23px;
    }

}

.banner_content span {
    color: #242424;
}

.home_banner_two {
    border-bottom: 0;
}

@media only screen and (max-width:767px) {
    .home_banner_two .banner_content {
        top: 8px;
    }

}

@media only screen and (max-width:767px) {
    .home_banner_two .banner_content h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

}

/*Product sec*/
.product-sec {
    overflow: hidden;
}

.product-sec:hover {
    overflow: visible;
}

.product-sec .banner-title {
    text-align: center;
}

.product-sec .product-sec-slider-bg {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 0px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.product-sec .product-sec-slider-bg .slick-slide {
    padding: 0 6px;
}

section.product-sec .slick-slider .slick-dots {
    position: relative;
    transform: none;
    text-align: center;
    left: auto;
}

.product-sec .slick-list {
    padding-bottom: 135px !important;
    margin-bottom: -135px;
    padding-top: 18px !important;
    margin-top: -30px;
    position: relative;
}

.product-sec:hover .slick-list {
    z-index: 9;
    position: relative;
}

.single_product:hover .product_thumb a.secondary_img {
    opacity: 1;
    visibility: visible;
}

.single_product:hover .quick_button {
    opacity: 1;
    visibility: visible;
}

.product_thumb {
    position: relative;
    margin-bottom: 8px;
}

.product_thumb a.secondary_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.quick_button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.quick_button a {
    line-height: 45px;
    background: #3e3e3e;
    color: var(--white);
    padding: 0 10px;
    font-weight: normal;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 13px;
    text-transform: capitalize;
    width: 100%;
    text-align: center;
    display: block;
}

.quick_button a:hover {
    background: var(--black);
}

.product_content {
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}

.product_content h3 {
    line-height: 22px;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 13px;
}

.product_content h3::before {
    background-image: linear-gradient(to right, transparent, #ebebeb 30%, 85%, transparent);
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.product_content h3 a {
    color: #242424;
    padding-left: 10px;
    padding-right: 10px;
}

.product_content h3 a:hover {
    color: var(--black);
}

.product_hover {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 0;
    background: var(--white);
    padding: 3px 8px 20px 8px;
    box-shadow: 0px 6px 7px 0 rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.single_product {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
}

.single_product:hover {
    background: var(--white);
    border-radius: 3px;
    box-shadow: 0px 0 15px 0 rgba(0, 0, 0, 0.3);
}

.single_product:hover .product_hover {
    top: 66%;
    opacity: 1;
    visibility: visible;
}

.product_ratings {
    margin-bottom: 6px;
}

.product_ratings ul li {
    display: inline-block;
}

.product_ratings ul li a {
    color: var(--black);
}

.action_links ul li {
    display: inline-block;
}

.action_links ul li.add_to_cart a {
    line-height: 35px;
    padding: 0 18px;
    font-family: "Playfair Display", serif;
    width: 100%;
    text-transform: capitalize;
    font-size: 12px;
}

.action_links ul li a {
    line-height: 37px;
    height: 35px;
    width: 35px;
    background: #f1f1f1;
    color: #666;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.action_links ul li a:hover {
    background: var(--black);
    color: var(--white);
}

.action_links ul li a .icon {
    width: 14px;
    height: 14px;
}

.action_links ul li a:hover .icon {
    background-color: var(--white);
}

.tag_cate {
    margin-bottom: 10px;
}

.tag_cate a {
    color: #5a5a5a;
    font-size: 13px;
}

.tag_cate a:hover {
    color: var(--black);
}

.product_desc {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 14px;
}

.product_desc::before {
    background-image: linear-gradient(to right, transparent, #ebebeb 30%, 85%, transparent);
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.product_desc p {
    font-size: 13px;
    line-height: 18px;
    color: #5a5a5a;
}

.product-sec .slick-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #cecece;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: #adadad;
    font-size: 10px;
    background: #fff;
    position: absolute;
    left: -15px;
    top: 35%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-sec .slick-arrow .icon {
    width: 14px;
    height: 14px;
}

.product-sec .slick-next.slick-arrow {
    left: auto;
    right: -15px;
}

.product_tab_button {
    margin-bottom: 35px;
    text-align: center;
}

.product_tab_button ul.nav::before {
    content: "";
    width: 200px;
    height: 2px;
    position: absolute;
    right: 100%;
    top: 50%;
    background-image: linear-gradient(to right, transparent, #ebebeb);
}

.product_tab_button ul.nav::after {
    content: "";
    width: 200px;
    height: 2px;
    position: absolute;
    left: 100%;
    top: 50%;
    background-image: linear-gradient(to right, #ebebeb, transparent);
}

.product_tab_button ul {
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #ebebeb;
}

.product_tab_button ul.nav {
    display: inline-block;
    position: relative;
}

.product_tab_button ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.product_tab_button ul li a {
    font-size: 20px;
    color: #242424;
    line-height: 48px;
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    font-family: "Playfair Display", serif;
    border-left: 2px solid #ebebeb;
    padding: 0 30px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product_tab_button ul li a:hover,
.product_tab_button ul li a.active {
    position: relative;
    color: var(--white);
}

.product_tab_button ul li a span {
    position: relative;
}

.product_tab_button ul li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid transparent;
    background: var(--black);
    left: 50%;
    top: 50%;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product_tab_button ul li a:hover::before,
.product_tab_button ul li a.active::before {
    position: absolute;
    content: "";
    width: 104%;
    height: 106%;
    border: 2px solid var(--black);
    background: var(--black);
    left: -2px;
    top: -1px;
    border-radius: 2px;
}

.fade:not(.show) {
    opacity: 0;
}

.fade {
    transition: opacity .15s linear;
}

.tab-content>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.tab-content>.tab-pane.active {
    display: block;
    height: auto;
    opacity: 1;
    overflow: visible;
}

.product-bottom {
    background: var(--off-white);
}

/* testimonial-sec */
.testimonial-sec {
    position: relative;
    z-index: 1;
    background: var(--off-white) url(../img/testimonial-bg.png) no-repeat center;
    background-size: cover;
}

.testimonial-sec .slick-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #cecece;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: #adadad;
    font-size: 10px;
    background: #fff;
    position: absolute;
    left: -15px;
    top: 35%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-sec .slick-arrow .icon {
    width: 14px;
    height: 14px;
}

.testimonial-sec .slick-next.slick-arrow {
    left: auto;
    right: -15px;
}

.testimonial-sec .slick-slide {
    padding: 0 30px;
}

.testimonial-sec .banner-title {
    text-align: center;
}

.testimonial-sec .testimonial-sec-slider {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 0px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-sec .testimonial-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: normal;
}

.testimonial-sec-item {
    text-align: center;
}

.testimonial-sec-item .star-sec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.testimonial-sec-item .star-sec .icon {
    width: 16px;
    height: 16px;
    margin: 0 1px;
}

.testimonial-sec-item .cms-con {
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-sec-item .cms-con p {
    font-size: 14px;
}

.testimonial-sec-item .testimonial-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.testimonial-sec-item .testimonial-image .thumbnail {
    margin: 0 0 10px;
    padding: 0px;
    width: 100%;
}

.testimonial-sec-item .testimonial-image .thumbnail img {
    width: 84px;
    border-radius: 50%;
    margin: auto;
}

.testimonial-sec-item .testimonial-image .testimonial-customer-name {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
}

/*Home banner sec*/
.home-banner-wrapper {
    width: 100%;
    min-height: 500px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 80%;
    background-size: 140%;
    display: flex;
    align-items: center;
}

#home-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.6;
}

#home-banner img.img-banner-caption {
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1
}

#home-banner .home-banner-caption {
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

#home-banner .home-banner-caption p,
#home-banner .home-banner-action a {
    color: var(--white);
    font-weight: 500;
    line-height: 20px;
    font-size: 15px;
}

#home-banner .home-banner-action a {
    text-transform: capitalize;
    font-weight: 300;
    color: var(--white);
    position: relative;
    letter-spacing: .05em;
}

#home-banner .home-banner-action a:after {
    content: "";
    position: absolute;
    width: 30px;
    border-bottom: 1px solid;
    top: -5px;
    left: 20px;
}

a {
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    outline: none;
}

@media (max-width:320px) {
    #home-banner .home-banner-caption p {
        display: none;
    }

}

/* hero image text sec */
.hero-image-text-sec {
    background: #fbf8f3;
    margin-bottom: 50px;
}

.hero-image-text-sec .hero-text-sec {
    margin: auto;
    max-width: 670px;
    padding: 30px;
}

.hero-image-text-sec .hero-text-sec .sec-title {
    color: var(--black);
}

.hero-image-text-sec .hero-text-sec .cms-con p {
    color: var(--black);
    font-size: 18px;
}

.hero-image-text-sec .btn.btn-white {
    background: var(--black);
    border: 1px solid var(--light-black);
    color: #fff;
}

.hero-image-text-sec .btn.btn-white:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.hero-image-text-sec .col-lg-6 {
    display: flex;
    align-items: center;
}

section .slick-slider .slick-arrow:hover .icon {
    background-color: var(--white);
}

section .slick-slider .slick-arrow:hover {
    border: 1px solid var(--light-black);
    background-color: var(--light-black);
}

section .slick-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}

section .slick-slider .slick-dots li {
    margin: 0 5px;
    padding: 0px;
    display: inline-block;
}

section .slick-slider .slick-dots li button {
    margin: 0px;
    padding: 0px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    font-size: 0px;
    border: 2px solid #ffffff;
    transition: all .3s ease-in-out;
}

section .slick-slider .slick-dots li.slick-active button {
    background: var(--black);
}

.shop-cat-sec .slick-slide {
    padding: 0 10px;
}

section.shop-cat-sec .slick-slider .slick-dots {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
}

.pp-overlay-card img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pp-overlay-card .category-title {
    background-color: var(--white);
    padding: 0 30px;
    display: inline-block;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 176px;
    height: 70px;
    font-size: 24px;
    text-align: center;
    line-height: 70px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pp-overlay-card .pp-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4);
    /* display: -webkit-inline-box; */

    /* display: -ms-inline-flexbox; */
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pp-overlay-card .pp-overlay span {
    font-size: 34px;
    color: var(--white);
}

.pp-overlay-card:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pp-overlay-card:hover .category-title {
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
}

.pp-overlay-card:hover .pp-overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.text-with-icon-sec {
    background: #f6f6f6;
}

.text-with-icon-sec.common-sec {
    padding-top: 50px;
    padding-bottom: 40px;
}

.text-with-icon-img img {
    margin: auto;
    width: 60px;
}

.text-with-icon-img {
    margin-bottom: 20px;
}

.text-with-icon-info h4 {
    margin-bottom: 20px;
}

.text-with-icon-sec .sec-head {
    margin-bottom: 50px;
}

.why-choose-us-sec .why-choose-us-img {
    width: 100%;
    overflow: hidden;
}

.why-choose-us-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    transition: all .4s ease-in-out;
}

.why-choose-us-img img:hover {
    transform: scale(1.02);
}

.why-choose-us-sec .row {
    --bs-gutter-x: 50px;
}

.why-choose-us-sec .sec-head {
    margin-bottom: 40px;
}

.why-choose-us-sec .cms-con ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #575757;
    font-weight: 400;
    margin-bottom: 30px;
    display: block;
    padding-left: 70px;
    position: relative;
}

.why-choose-us-sec .cms-con ul li:last-child {
    margin-bottom: 0;
}

.why-choose-us-sec .cms-con ul li::before {
    content: '';
    position: absolute;
    background-color: #f9f8f6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 0;
    top: 0;
}

.cms-con ul li::after {
    content: '';
    position: absolute;
    background-image: url(../img/svg/right-arrow2.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-size: contain;
    left: 16px;
    top: 17px;
}

.why-choose-us-sec .cms-con ul li b {
    font-size: 22px;
    line-height: 1.4;
    color: #121212;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.our-vision-box {
    backdrop-filter: blur(16px) saturate(180%);
    background-color: #f9f8f6;
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 10px;
    padding: 40px 30px;
}

.our-vision-sec .row .our-vision-col:last-child .our-vision-box {
    border-right: none;
}

.our-vision-box .img-box {
    width: 64px;
    margin: 0 auto 20px;
}

.our-vision-box .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.our-vision-title {
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.our-vision-box .cms-con p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
}

.call-to-action-sec .row {
    --bs-gutter-x: 0;
}

.call-to-action-img {
    width: 100%;
    min-height: 500px;
    position: relative;
}

.call-to-action-sec .img-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.call-to-action-img::before {
    content: '';
    position: absolute;
    background-color: rgb(0 0 0 / 70%);
    top: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.call-to-action-sec .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.call-to-action-con {
    backdrop-filter: blur(16px) saturate(180%);
    background-color: #efefef;
    width: 100%;
    height: 100%;
    position: relative;
}

.info-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
    padding: 0 20px;
    position: relative;
}

.info-caption .sec-head {
    margin-bottom: 20px;
}

.info-caption .sec-title {
    color: #fff;
    text-align: center;
    font-size: 50px;
}

.info-caption .sec-title span {
    font-size: 28px;
    letter-spacing: 3px;
    display: block;
    text-transform: uppercase;
}

.info-call {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1;
}

.info-phone {
    position: relative;
    text-align: center;
}

.info-phone a {
    font-weight: 700;
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
    transition: all .4s ease-in-out;
}

.info-phone a:hover {
    color: var(--blue);
}

.info-phone img {
    display: inline-block;
    vertical-align: middle;
    filter: brightness(100) invert(1);
    width: 40px;
    flex: 0 0 40px;
    aspect-ratio: 1 / 1;
    margin-right: 20px;
    animation: innerCircle 1s ease-in-out infinite alternate;
    -webkit-animation: innerCircle 1s ease-in-out infinite alternate
}

@keyframes innerCircle {

    0% {
        -webkit-transform: rotate(0) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

}

.call-to-action-con {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.let-talk {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.let-talk img {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-left: 6px;
}

.let-talk::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: all .4s ease-in-out;
}

.let-talk:hover::before {
    background-color: var(--blue);
}











.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* ✅ 2 images per row */
    gap: 10px;
    /* ✅ Space between images */
    justify-content: center;
    max-width: 600px;
    /* ✅ Adjust width */
    margin: auto;
}

.product-image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    /* ✅ Optional styling */
}

.woocommerce-product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* ✅ 4 images per row */
    gap: 10px;
    /* ✅ Adjust spacing */
    justify-content: center;
    max-width: 800px;
    /* ✅ Adjust width */
    margin: auto;
}

.product-image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    /* ✅ Optional */
}

.variation-details {
    margin-top: 32px;
    background-color: #f6f6f9;
    border-radius: 20px;
    padding: 12px;
}

.variation-details-title {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}

.variation-details-title svg {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 50%;
}

.width-approx-boxes {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.width-approx-box {
    width: calc(50% - 8px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 3px #0000001a;
    padding: 12px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.width-approx-box-title {
    color: #000;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    opacity: .4;
    text-transform: uppercase;
    padding-left: 8px;
}

.width-approx-box .variation-width,
.width-approx-box .variation-tcw,
.metal-box .variation-metal-name,
.width-approx-box .variation-profile {
    color: #000;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1;
    flex: 1;
}

.metal-box .variation-metal-name {
    margin-bottom: 10px;
}

.value-content {
    gap: 12px;
    flex: 1;
}

.value-content .variation-gem-color,
.value-content .variation-gem-clarity {
    color: #000;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1;
}

.value-content .clarity {
    border-left: 1px solid #e0e0e0;
    padding-left: 8px;
    height: 100%;
}

.width-approx-box span,
.metal-box span {
    color: #666;
    font-size: 14px;
    line-height: 1.23;
    font-weight: 500;
    display: block;
}

.metal-box span {
    margin-top: 10px;
}

.metal-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 3px #0000001a;
    padding: 12px;
    margin-top: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
}


.pie-chart-container {
    display: none;
    text-align: center;
    font-family: Arial, sans-serif;
}

.pie-chart {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(gray 0% 100%);
}

.pie-hole {
    width: 50%;
    height: 50%;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pie-legend {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 50%;
}

.pie-legend li {
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 45%;
}

.pie-legend span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 0;
}

.pie-chart-container {
    display: flex !important;
    align-items: center;
    column-gap: 8px;
}

.woo-variation-swatches .variable-items-wrapper .variable-item img {
    object-fit: cover;
}

.product-type-simple .woocommerce div.product form.cart div.quantity {
    margin: 10px 4px 0 0;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
    display: none !important;
}

.header-line-search #searchform {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    width: 200px;
}

.header-line-search input {
    border: none !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.header-line-search input::placeholder{
    text-transform: uppercase !important;
}

.header-line-search button{
    background-color: transparent;
}

.woocommerce ul.products li.product .button.added {
	display: none;
}

.woocommerce .product a.added_to_cart {
	background-color: var(--light-black) !important;
    color: var(--white) !important;
    border-radius: 30px;
    padding: 11px 30px;
    font-weight: 500;
    font-size: 16px;
	line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 150px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: all .4s ease-in-out;
}
.woocommerce .product a.added_to_cart:hover {
    background: var(--blue) !important;
}

.woocommerce div.product form.cart div.quantity {
    margin-top: 10px !important;
}