/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Gloock&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #6f1d2f;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin: 0;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.img {
    perspective: none;
    overflow: hidden;
    transform-style: preserve-3d;
}

.img img {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    display: block;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition:
        width 0.3s ease-in-out,
        height 0.3s ease-in-out,
        margin 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    -o-transition:
        width 0.3s ease-in-out,
        height 0.3s ease-in-out,
        margin 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    transition:
        width 0.3s ease-in-out,
        height 0.3s ease-in-out,
        margin 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner div {
    width: 8px;
    height: 100%;
    background: #fff;
    margin: 0 2px;
    animation: load 1s infinite ease-in-out;
}

.spinner .rect2 {
    animation-delay: -0.9s;
}

.spinner .rect3 {
    animation-delay: -0.8s;
}

.spinner .rect4 {
    animation-delay: -0.7s;
}

.spinner .rect5 {
    animation-delay: -0.6s;
}

@keyframes load {
    0%,
    40%,
    100% {
        transform: scaleY(0.3);
    }

    20% {
        transform: scaleY(1);
    }
}

/* site hidden at start */
.site {
    opacity: 0;
    transition: 0.5s ease;
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    border: 1px solid var(--black);
    font-size: 15px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    padding: 1rem 2rem 1rem 2rem;
    line-height: normal;
    letter-spacing: -0.15px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
    margin: 0 auto;
    width: 100%;
    padding: 1rem 2.6875rem 1rem 2.6875rem;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
    letter-spacing: -0.15px;
    position: relative;
}

/* !NAV HEADER CSS */

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
    list-style: none;
}

.quicklist li a:hover {
    color: var(--white);
}

.navbar .drop-down > a:after {
    content: "\f0c9";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding-left: 5px;
    color: var(--black);
    font-size: 1.0125rem;
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 0.875rem;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 1.0625rem;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: var(--white);
}

.top-bar {
    padding: 1rem 0 1rem 0;
    border-bottom: 1px solid #e1e1e1;
    margin: 0 2.5rem 0 2.5rem;
}

.top-form .form-control {
    height: 2.5rem;
    border: unset;
    box-shadow: unset;
    outline: unset;
    border-radius: 50px;
    padding: 1rem 2rem 1rem 1.25rem;
    background-color: #f2f2f2;
}

.top-form .form-group {
    position: relative;
}

.top-form .form-group a {
    height: fit-content;
    width: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1.5rem;
    color: var(--black);
}

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

.top-info {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black);
}

.top-flex ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-flex ul li a i {
    color: #6f1d2f;
}

.top-flex ul li a span {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.15px;
}

.nav-item.drop-down a {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
    letter-spacing: -0.15px;
}

/* Drop-Down Css End  */

/* Main Banner Css Start */

.main-sec {
    padding: 0 2rem 0 2rem;
}

.main-img img {
    border-radius: 20px;
}

.main-wrapper {
    position: relative;
}

.main-wrapper::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: rgb(111 29 47 / 49%);
    border-radius: 20px;
    transition: 0.6s ease;
}

.main-content {
    text-align: center;
    background-color: var(--white);
    width: fit-content;
    margin: auto;
    transition: 0.6s ease;
    padding: 1.5rem 5rem 1.5rem 5rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    border-radius: 10px;
}

.main-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #6f1d2f;
}

.main-content a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #6f1d2f;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    justify-content: center;
    margin: 0.5rem 0 0 0;
}

.main-content a i {
    transform: rotate(-45deg);
}

.main-wrapper:hover .main-content {
    bottom: 4rem;
    background-color: var(--primary);
}

.main-wrapper:hover::before {
    background-color: rgb(111 29 47 / 30%);
}

/* Main Banner Css End */

/* Product Sec Css Start */

.product-sec {
    padding: 0 2.5rem 1.875rem 2.5rem;
}

.product-img img {
    border-radius: 20px;
    transition: 0.6s ease;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.product-wrapper {
    position: relative;
    margin: 1.5625rem 0 0 0;
}

.product-content {
    position: absolute;
    left: 1.5625rem;
    right: 1.5625rem;
    bottom: 1.5625rem;
    text-align: center;
    background-color: #6f1d2f;
    border-radius: 12px;
    padding: 1rem 0 1rem 0;
    transition: 0.6s ease;
}

.product-content h5 {
    font-size: 1.375rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
}

.product-content h5 span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin: 0.75rem 0 0 0;
}

.product-img {
    overflow: hidden;
}

.product-wrapper:hover .product-img img {
    transform: scale(1.1);
}

.product-wrapper:hover .product-content {
    bottom: 3rem;
    background-color: var(--white);
}

.product-main {
    text-align: center;
    position: relative;
    margin: 1.5625rem 0 0 0;
}

.product-main::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: rgb(111 29 47 / 38%);
    border-radius: 20px;
    transition: 0.6s ease;
}

.product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--white);
    width: fit-content;
    margin: auto;
    padding: 1.25rem 6rem 2rem;
    border-radius: 6px;
    bottom: 2rem;
}

.product-overlay a span {
    display: block;
    font-size: 29px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Gloock", serif;
    color: #6f1d2f;
}

.product-imag img {
    border-radius: 20px;
}

.product-btn {
    font-size: 9px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.09px;
    background-color: var(--primary);
    padding: 0.625rem 1rem 0.625rem 1rem;
    border-radius: 50px;
    color: var(--white);
}

.subHead {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #6f1d2f;
    margin: 0 0 1rem 0;
}

.mainHead {
    font-size: 2.75rem;
    font-weight: 400;
    font-family: "Gloock", serif;
    line-height: 1.1;
}

.next-product .product-content a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    margin: 0.5rem 0 0 0;
}

/* Product Sec Css End */

/* Categories Sec Css Start */

.categories-sec {
    padding: 6rem 0 26rem;
}

.categories-form .form-control {
    border-radius: 50px;
    border: unset;
    background-color: #6f1d2f;
    outline: unset;
    box-shadow: unset;
    width: 330px;
    height: 2.5rem;
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white);
}

.categories-form .form-control::placeholder {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white);
}

.categories-form .form-group {
    position: relative;
    width: fit-content;
}

.categories-form .form-group a {
    position: absolute;
    top: 0;
    right: 1.5rem;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    color: var(--white);
}

.sticky-box {
    position: sticky;
    top: 0;
}

.categories-main h6 {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 1rem 0 0.825rem 0;
}

.categories-list li a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #5c5b5b;
}

.categories-info {
    margin: 2.5rem 0 5rem 0;
}

.categories-info li figure {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.categories-info li figure img {
    border-radius: 10px;
}

.categories-info li figure h5 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black);
}

.categories-info li figure h5 span {
    display: block;
    margin: 0.5rem 0 0 0;
    font-size: 13px;
    font-weight: 500;
}

.categories-info li + li {
    margin: 1rem 0 0 0;
}

.categories-main {
    border-right: 1px solid #e8e8e8;
}

.categories-content h6 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 1rem 0 0.875rem 0;
}

.categories-content h4 {
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
}

.categories-content p {
    margin: 0.52rem 0 0 0;
    color: var(--black);
    letter-spacing: -0.16px;
}

.categories-img img {
    border-radius: 20px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.categories-wrapper {
    margin: 0 0 2.5rem 0;
}

.box-img {
    position: absolute;
    bottom: -2rem;
    z-index: 22;
}

/* Categories Sec Css End */

/* Client Sec Css Start */

.client-sec {
    z-index: 3;
    background: url(../images/clientbg.webp) center/cover no-repeat;
    background-color: #f5f5f5;
}

.client-top {
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 2rem 0;
    margin: 0 0 2.5rem 0;
}

.client-flex {
    display: flex;
    align-items: start;
    gap: 1.75rem;
}

.quote {
    font-size: 1.5rem;
    color: #6f1d2f;
}

.client-content p {
    line-height: 1.5;
    color: var(--black);
}

.client-content h5 {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.75rem 0 0.825rem 0;
}

.client-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-stars li a i {
    color: var(--black);
}

.client-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-list li figure h5 {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
}

.client-list li figure {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-sec .row + .row {
    padding: 10rem 0 0 0;
}

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

.client-sec .swiper-button-next,
.client-sec .swiper-button-prev {
    top: 22%;
    bottom: unset;
    height: 3rem;
    width: 3rem;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--black);
    transition: 0.6s ease;
    left: unset;
    right: 17%;
}

.client-sec .swiper-button-next {
    right: 14%;
}

.client-sec .swiper-button-next:hover,
.client-sec .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Client Sec Css End */

/* Footer Sec Css Start */

footer {
    padding: 6rem 0 0 0;
}

footer h6 {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 1.125rem 0;
}

footer h2 {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #6f1d2f;
    margin: 0 0 1.025rem 0;
}

.footer-top {
    border-bottom: 1px solid #e8e8e8;
    padding: 0 0 1.5rem 0;
    margin-bottom: 2.5rem;
}

.footer-form .form-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-form .form-control {
    height: 2.99rem;
    border-radius: 50px;
    outline: unset;
    border: unset;
    box-shadow: unset;
    background-color: #f5f5f5;
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black);
}

.footer-form .form-control::placeholder {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--black);
}

.footer-form button {
    border: unset;
    background-color: var(--black);
    color: var(--white);
    flex-shrink: 0;
}

.footer-list li a {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black);
    position: relative;
}

.footer-list li + li {
    margin: 0.5rem 0 0 0;
}

footer p {
    line-height: 1.5;
    color: var(--black);
    width: 80%;
}

.footer-icon {
    margin: 1rem 0 0 0;
}

.footer-icon li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}

.footer-icon li + li {
    margin: 0.75rem 0 0 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 0 0;
}

.footer-social li a i {
    color: var(--black);
}

.footer-bottom {
    margin: 3.75rem 0 0 0;
    border-top: 1px solid #e8e8e8;
    padding: 1.25rem 0 1.25rem 0;
}

.footer-bottom .col-md-6:last-child p {
    display: flex;
    align-items: center;
    gap: 0.2625rem;
    justify-content: end;
    width: 100%;
}

.footer-bottom .col-md-6:last-child p a {
    color: var(--black);
}

.choose-img img {
    width: 100%;
}

/* Footer Sec Css End */

/* Hover Effect Css Start */

.navbar-nav .nav-item .nav-link:hover {
    color: #6f1d2f;
}

.navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 0%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--black);
    top: -2.1rem;
    transition: 0.6s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.themeBtn::before {
    position: absolute;
    content: "";
    height: 100%;
    inset: 0;
    margin: auto;
    width: 0;
    background-color: var(--primary);
    transition: 0.6s ease;
    z-index: -1;
}

.themeBtn:hover::before {
    width: 100%;
}

.themeBtn:hover {
    color: var(--white);
}

.footer-list li a::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--primary);
    bottom: -4px;
    transition: 0.6s ease;
}

.footer-list li a:hover::before {
    width: 100%;
}

.footer-list li a:hover {
    color: var(--primary);
}

.product-btn:hover {
    color: var(--white);
}

.main-wrapper:hover .main-content h3,
.main-wrapper:hover .main-content a {
    color: var(--white);
}

.product-wrapper:hover .product-content h5 {
    color: var(--primary);
}

.next-product .product-wrapper:hover .product-content a {
    color: var(--primary);
}

.img-shine-box {
    position: relative;
    overflow: hidden;
}

.img-shine-layer {
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    opacity: 0;
}

/* Active shine */
.img-shine-box.is-visible .img-shine-layer {
    animation: modernShine 1.2s ease-in-out;
    opacity: 1;
}

@keyframes modernShine {
    0% {
        left: -80%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

/* Hover Effect Css End */

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 49px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
    font-family: "Gloock";
}

.innerBan {
    position: relative;
    margin: 0 40px;
}

.innerBan ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.innerBan ul li a {
    color: #fff;
}

/* video  */
section.videosec {
    padding: 0;
}

section.videosec figure {
    position: relative;
}

section.videosec figure a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    color: #fff;
    font-size: 1.5rem;
    border: 1px solid #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
}

/* video  */

.about-arrow-packaging-section {
    padding: 20px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-arrow-packaging-section .about-arrow-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-arrow-packaging-section .about-arrow-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-arrow-packaging-section .about-arrow-discount-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.about-arrow-packaging-section .discount-percentage {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: "Playfair Display", serif;
}

.about-arrow-packaging-section .discount-percentage .number {
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.about-arrow-packaging-section .discount-percentage .percent {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 0.8;
    margin-left: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.about-arrow-packaging-section .discount-text {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.about-arrow-packaging-section .about-arrow-content {
    padding-left: 5rem;
}

.about-arrow-packaging-section .about-arrow-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.about-arrow-packaging-section .about-arrow-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.about-arrow-packaging-section .about-arrow-desc {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0;
    width: 76%;
}

@media (max-width: 991.98px) {
    .about-arrow-packaging-section {
        padding: 60px 0;
    }

    .about-arrow-packaging-section .about-arrow-content {
        max-width: 100%;
        margin-top: 2rem;
    }

    .about-arrow-packaging-section .about-arrow-discount-overlay {
        top: 25px;
        left: 25px;
    }

    .about-arrow-packaging-section .discount-percentage .number {
        font-size: 4rem;
    }

    .about-arrow-packaging-section .discount-percentage .percent {
        font-size: 2rem;
    }

    .about-arrow-packaging-section .discount-text {
        font-size: 1.2rem;
    }

    .about-arrow-packaging-section .about-arrow-title {
        font-size: 1.8rem;
    }
}

.catalog-display-section {
    padding: 2rem 28px;
    background-color: #ffffff;
}

/* Search Bar Styles */
.catalog-display-section .search-input-group {
    position: relative;
    background-color: #6a1a31;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 4px 16px;
}

.catalog-display-section .custom-search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    box-shadow: none;
    padding-left: 0;
    font-size: 12px;
    font-weight: 300;
}

.catalog-display-section .custom-search-input:focus {
    background: transparent;
    border: none;
    color: #ffffff;
    box-shadow: none;
}

.catalog-display-section .custom-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.catalog-display-section .search-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Sidebar Typography & Layout */
.catalog-display-section .sidebar-heading {
    font-size: 12px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.catalog-display-section .sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-display-section .menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.catalog-display-section .menu-item:last-child {
    border-bottom: none;
}

.catalog-display-section .menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 10px;
    font-weight: 400;
    color: #555555;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.catalog-display-section .menu-link:hover,
.catalog-display-section .menu-item.expanded > .menu-link {
    color: #000000;
    text-decoration: none;
}

.catalog-display-section .chevron-icon {
    color: #999999;
    transition: transform 0.3s ease;
}

/* Sub-menus */
.catalog-display-section .sub-menu-list {
    list-style: none;
    padding-left: 12px;
    margin: 0;
    display: none;
}

.catalog-display-section .menu-item.expanded > .sub-menu-list {
    display: block;
    padding-bottom: 10px;
}

.catalog-display-section .sub-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 9px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-display-section .sub-menu-link::before {
    content: ">";
    font-family: monospace;
    margin-right: 6px;
    color: #888888;
    font-size: 10px;
    font-weight: bold;
}

.catalog-display-section .sub-menu-list li.expanded > .sub-menu-link {
    color: #000000;
}

.catalog-display-section .sub-menu-link:hover {
    color: #000000;
    text-decoration: none;
}

/* Remove bullet for items with their own chevrons if desired, but image shows bullet + chevron */

.catalog-display-section .sub-sub-menu-list {
    list-style: none;
    padding-left: 18px;
    margin: 0;
    display: none;
}

.catalog-display-section .sub-menu-list li.expanded > .sub-sub-menu-list {
    display: block;
    padding-bottom: 5px;
}

.catalog-display-section .sub-sub-menu-link {
    display: block;
    padding: 4px 0;
    font-size: 8px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-display-section .sub-sub-menu-link::before {
    content: "-";
    margin-right: 6px;
    color: #888888;
}

.catalog-display-section .sub-sub-menu-link:hover {
    color: #000000;
    text-decoration: none;
}

/* Product Grid Styles */
.catalog-display-section .visual-product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    background: #fff;
    border: 1px solid #f2f2f2;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-display-section .visual-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.catalog-display-section .visual-product-card .card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.catalog-display-section .card-label-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: #6a1a31;
    color: #ffffff;
    text-align: center;
    padding: 8px 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}

.catalog-display-section .card-label-badge span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* Adjust spacing for xl screens */
@media (min-width: 1200px) {
    .catalog-display-section .col-xl-3 {
        flex: 0 0 24%;
        max-width: 24%;
        margin-right: 1.33%;
    }

    .catalog-display-section .col-xl-3:nth-child(4n) {
        margin-right: 0;
    }
}

.categories-sec {
    padding: 6rem 0 4rem;
}

.innerBan.innerbncolor {
    background: #6f1d2f;
    height: 200px;
    border-radius: 20px;
}

section.client-sec.anitclient {
    background: #fff;
}

.product-details-section {
    color: #111;
    background-color: #fff;
    overflow: hidden;
    padding: 20px;
}

.product-details-section .product-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.product-details-section .product-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-details-section .description-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

.product-details-section .description-list {
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-details-section .description-list li {
    margin-bottom: 0.3rem;
}

.product-details-section .product-form {
    max-width: 420px;
}

.product-details-section .form-group {
    margin-bottom: 0.8rem;
}

.product-details-section .form-label {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 0.2rem;
    margin-left: 0.4rem;
    font-weight: 600;
    text-transform: capitalize;
}

.product-details-section .custom-select-minimal {
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    height: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    box-shadow: none !important;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.product-details-section .btn-add-cart {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1.8rem;
    transition: background-color 0.3s;
}

.product-details-section .btn-add-cart:hover {
    background-color: #333;
    color: #fff;
}

.sc-cart-page-wrapper {
    font-family: "Manrope", sans-serif;
    color: #111;
    font-size: 13px;
    background-color: #ffffff;
}

.sc-cart-page-wrapper .border-bottom {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Table Grid Setup */
.sc-cart-page-wrapper .sc-col-product {
    width: 28%;
}

.sc-cart-page-wrapper .sc-col-item {
    width: 12%;
}

.sc-cart-page-wrapper .sc-col-desc {
    width: 12%;
}

.sc-cart-page-wrapper .sc-col-qty-case {
    width: 10%;
}

.sc-cart-page-wrapper .sc-col-price {
    width: 14%;
}

.sc-cart-page-wrapper .sc-col-qty {
    width: 12%;
}

.sc-cart-page-wrapper .sc-col-subtotal {
    width: 12%;
}

/* Header Styling */
.sc-cart-page-wrapper .sc-table-header {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

/* Item Row Styling */
.sc-cart-page-wrapper .sc-remove-btn {
    font-size: 18px;
    color: #999;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.2s ease;
}

.sc-cart-page-wrapper .sc-remove-btn:hover {
    color: #000;
}

.sc-cart-page-wrapper .sc-product-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 1px solid #eee;
}

.sc-cart-page-wrapper .sc-product-name {
    font-weight: 600;
    font-size: 12px;
}

.sc-cart-page-wrapper .sc-price-text {
    font-size: 12px;
}

/* Fake Dropdowns & Qty Selector */
.sc-cart-page-wrapper .sc-fake-dropdown,
.sc-cart-page-wrapper .sc-fake-qty-selector {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    min-width: 60px;
}

.sc-cart-page-wrapper .sc-fake-dropdown::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #666;
}

.sc-cart-page-wrapper .sc-fake-qty-selector {
    justify-content: space-between;
    min-width: 70px;
}

.sc-cart-page-wrapper .sc-qty-minus,
.sc-cart-page-wrapper .sc-qty-plus {
    color: #999;
    cursor: pointer;
    font-size: 10px;
    user-select: none;
}

/* Inputs and Buttons */
.sc-cart-page-wrapper .sc-input-pill {
    background-color: #f4f4f4;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 12px;
    width: 180px;
    box-shadow: none !important;
}

.sc-cart-page-wrapper .sc-input-pill::placeholder {
    color: #888;
}

.sc-cart-page-wrapper .sc-btn-outline-pill {
    border: 1px solid #111;
    background-color: transparent;
    color: #111;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sc-cart-page-wrapper .sc-btn-outline-pill:hover {
    background-color: #111;
    color: #fff;
}

/* Cart Totals Section */
.sc-cart-page-wrapper .sc-cart-totals-section {
    max-width: 50%;
}

@media (max-width: 768px) {
    .sc-cart-page-wrapper .sc-cart-totals-section {
        max-width: 100%;
    }
}

.sc-cart-page-wrapper .sc-totals-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sc-cart-page-wrapper .sc-totals-label {
    width: 25%;
    font-weight: 600;
    font-size: 12px;
}

.sc-cart-page-wrapper .sc-totals-value {
    font-size: 12px;
}

.sc-cart-page-wrapper .sc-shipping-details {
    line-height: 1.8;
    color: #555;
}

.sc-cart-page-wrapper .sc-change-address-link {
    color: #555;
    text-decoration: underline;
    font-size: 11px;
}

.sc-cart-page-wrapper .sc-total-price {
    font-size: 14px;
    color: #000;
}

.contact-inquiry-section {
    font-family: "Manrope", sans-serif;
    background-color: #ffffff;
    padding: 100px 0;
    color: #333333;
    overflow: hidden;
}

.contact-inquiry-section h1,
.contact-inquiry-section h2,
.contact-inquiry-section h3 {
    font-family: "Playfair Display", serif;
    color: #000000;
}

/* Top Header */
.contact-inquiry-section .cis-header-area {
    margin-bottom: 60px;
}

.contact-inquiry-section .cis-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000;
    margin-bottom: 15px;
}

.contact-inquiry-section .cis-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-inquiry-section .cis-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 650px;
}

/* Cards Area */
.contact-inquiry-section .cis-cards-row {
    margin-bottom: 90px;
}

.contact-inquiry-section .cis-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 45px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-inquiry-section .cis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-inquiry-section .cis-icon-box {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-inquiry-section .cis-icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #7b2434;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-inquiry-section .cis-card-text {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
}

/* Bottom Form Area */
.contact-inquiry-section .cis-img-wrapper {
    background-color: #f9f9f9;
    padding: 50px 65px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-inquiry-section .cis-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-inquiry-section .cis-form-area {
    padding-top: 10px;
}

.contact-inquiry-section .cis-form-area .cis-title {
    font-size: 45px;
    margin-bottom: 40px;
}

.contact-inquiry-section .cis-input-group {
    margin-bottom: 25px;
}

.contact-inquiry-section .cis-msg-group {
    margin-bottom: 40px;
}

.contact-inquiry-section .cis-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    padding: 12px 0;
    font-size: 13px;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-inquiry-section .cis-input::placeholder {
    color: #888888;
}

.contact-inquiry-section .cis-input:focus {
    border-bottom-color: #000000;
}

.contact-inquiry-section .cis-checkbox-wrapper {
    margin-bottom: 30px;
}

.contact-inquiry-section .cis-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.contact-inquiry-section .cis-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-inquiry-section .cis-checkbox-label input[type="checkbox"]:checked {
    background-color: #000000;
    border-color: #000000;
}

.contact-inquiry-section
    .cis-checkbox-label
    input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-inquiry-section .cis-cb-text {
    font-size: 12px;
    color: #666666;
}

.contact-inquiry-section .cis-submit-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.contact-inquiry-section .cis-submit-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .contact-inquiry-section {
        padding: 70px 0;
    }

    .contact-inquiry-section .cis-cards-row {
        margin-bottom: 60px;
    }

    .contact-inquiry-section .cis-img-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 767.98px) {
    .contact-inquiry-section .cis-title {
        font-size: 30px;
    }

    .contact-inquiry-section .cis-form-area .cis-title {
        font-size: 26px;
    }
}
/* Product Detail - Price */
.product-details-section .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #6f1d2f;
}
.product-details-section .price-current {
    font-size: 2rem;
    font-weight: 800;
    color: #6f1d2f;
    letter-spacing: -0.5px;
    line-height: 1;
}
.product-details-section .price-original {
    font-size: 1.1rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}
.product-details-section .form-static-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 14px;
    margin: 0;
}
.product-details-section .description-body {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.product-details-section .description-body p {
    margin-bottom: 0.5rem;
}
.product-details-section .description-body ul {
    padding-left: 1.1rem;
    list-style: disc;
}
.product-details-section .description-body li {
    margin-bottom: 0.3rem;
}
.product-short-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* ===== AUTH PAGES (Login / Register / Guest Checkout) ===== */
.auth-page-wrap {
    min-height: 80vh;
    display: flex;
    align-items: stretch;
}
.auth-left {
    background-color: #6f1d2f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.auth-left::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -80px;
    right: -80px;
}
.auth-left::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -50px;
    left: -50px;
}
.auth-left .auth-logo {
    width: 120px;
    margin-bottom: 2.5rem;
}
.auth-left h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.auth-left p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}
.auth-left .auth-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}
.auth-left .auth-features li {
    font-size: 0.88rem;
    opacity: 0.9;
    margin-bottom: 0.6rem;
}
.auth-left .auth-features li::before {
    content: "✓  ";
    font-weight: 700;
}

.auth-right {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem;
}
.auth-right .auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.4rem;
}
.auth-right .auth-sub {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 2rem;
}
.auth-right .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}
.auth-right .form-control {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    height: 48px;
    font-size: 0.9rem;
    color: #111;
    padding: 0 1rem;
    transition: border-color 0.2s;
}
.auth-right .form-control:focus {
    border-color: #6f1d2f;
    box-shadow: none;
    outline: none;
}
.auth-right .form-control.is-invalid {
    border-color: #dc3545;
}
.auth-right .auth-submit {
    background-color: #6f1d2f;
    color: #fff;
    border: none;
    border-radius: 50px;
    height: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 100%;
    transition: background 0.25s;
    margin-top: 0.5rem;
}
.auth-right .auth-submit:hover {
    background-color: #5a1625;
}
.auth-right .auth-link {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.2rem;
    text-align: center;
}
.auth-right .auth-link a {
    color: #6f1d2f;
    font-weight: 700;
    text-decoration: none;
}
.auth-right .auth-link a:hover {
    text-decoration: underline;
}
.auth-divider {
    text-align: center;
    margin: 1.2rem 0;
    font-size: 0.8rem;
    color: #bbb;
    position: relative;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #eee;
}
.auth-divider::before {
    left: 0;
}
.auth-divider::after {
    right: 0;
}

/* Checkout Auth Choice Cards */
.checkout-choice-wrap {
    padding: 4rem 0;
}
.checkout-choice-card {
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition:
        border-color 0.2s,
        transform 0.2s;
    background: #fff;
}
.checkout-choice-card:hover {
    border-color: #6f1d2f;
    transform: translateY(-4px);
}
.checkout-choice-card .choice-icon {
    font-size: 2.5rem;
    color: #6f1d2f;
    margin-bottom: 1rem;
}
.checkout-choice-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}
.checkout-choice-card p {
    font-size: 0.83rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.checkout-choice-card .btn-choice {
    background: #6f1d2f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}
.checkout-choice-card .btn-choice:hover {
    background: #5a1625;
    color: #fff;
}
.checkout-choice-card .btn-choice-outline {
    background: transparent;
    color: #6f1d2f;
    border: 2px solid #6f1d2f;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
}
.checkout-choice-card .btn-choice-outline:hover {
    background: #6f1d2f;
    color: #fff;
}
.guest-form-inline {
    text-align: left;
    margin-top: 1rem;
}
.guest-form-inline .form-control {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    height: 44px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.guest-form-inline .form-control:focus {
    border-color: #6f1d2f;
    box-shadow: none;
}

/* ── User Dashboard ─────────────────────────────────────────────────────────── */
.user-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    height: fit-content;
}
.user-avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #6f1d2f;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.user-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.user-nav-list li {
    border-radius: 10px;
    margin-bottom: 4px;
}
.user-nav-list li a,
.user-nav-list li button {
    display: block;
    padding: 0.65rem 1rem;
    color: #444;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition:
        background 0.15s,
        color 0.15s;
    width: 100%;
}
.user-nav-list li a i,
.user-nav-list li button i {
    margin-right: 8px;
    width: 16px;
}
.user-nav-list li:hover a,
.user-nav-list li:hover button,
.user-nav-list li.active a {
    background: #6f1d2f;
    color: #fff !important;
}
.user-dash-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.user-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.user-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fdf0f2;
    color: #6f1d2f;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.user-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}
.user-stat-label {
    font-size: 0.78rem;
    color: #888;
    margin-top: 3px;
}
.dash-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.dash-input {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.88rem;
    transition: border-color 0.15s;
    outline: none;
}
.dash-input:focus {
    border-color: #6f1d2f;
    box-shadow: none;
}
.dash-btn {
    background: #6f1d2f;
    color: #fff;
    border: none;
    padding: 0.65rem 2rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}
.dash-btn:hover {
    background: #5a1625;
}

.product-details-section .product-image-wrapper img {
    height: 600px;
    object-fit: contain;
}

.wishlist-btn {
    background:#6F1D2F;
    color:#fff;
    border:none;
    padding:7px 16px;
    font-size:0.8rem;
    font-weight:600;
    cursor:pointer;
    white-space:nowrap;
    letter-spacing:0.04em;
    height:32px;
}