/***************************************Index Page Style Start***************************************/

@font-face {
    font-family: 'inter';
    src: url('/static/vendor/googleFonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GingerBrand';
    src: url('/static/vendor/googleFonts/GingerBrand.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply to all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'GingerBrand', sans-serif !important;
}

body {
    font-family: 'inter';
    color: white !important;
    background-color: #000 !important;
    text-transform: capitalize;
}

.capitalize {
    text-transform: capitalize;
}

/* Navbar */
.appNavBar {
    background: black;
    padding: 16px 32px;
    position: relative;
}

/* top row */
.navTop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DESKTOP CENTER MENU */
.navCenter {
    width: 100%;
}

.navMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 180px;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.navMenu li {
    flex: 0;
    text-align: center;
}

/* LOGO (DESKTOP) */
.navLogoItem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navLogoItem img {
    display: block;
    margin: 0 auto;
    height: 120px;
}

/* LINKS */
.navMenu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 14px;
    border-radius: 999px;
    transition: 0.3s;
    font-size: 20px;
}

.navMenu a:hover {
    color: #aea076;
}

.navMenu a.active {
    color: #F0DDA3;
}

/* CART RIGHT */
.navCart {
    position: absolute;
    right: 32px;
}

.navCart i {
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.navCart i:hover {
    color: #F0DDA3;
    cursor: pointer;
}

.navUser {
    position: absolute;
    right: 90px;
}


.navUser i {
    font-size: 22px;
}

.navUser i:hover {
    color: white !important;
    cursor: pointer;
}

/* HAMBURGER */
.menuToggle {
    display: none;
    position: absolute;
    left: 20px;
    font-size: 24px;
    color: #F0DDA3;
}

/* MOBILE CENTER LOGO (hidden default) */
.mobileCenterLogo {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobileCenterLogo img {
    height: 70px;
}

/* MOBILE NAV LOGO */
.appNavLogo {
    height: 180px !important;
    padding-left: 30px;
}

@media (max-width:425px) {
    .appNavLogo {
        height: 80px !important;
        max-width: 210px !important;
    }
}

/* ===== Offcanvas ===== */
.cursorPointer {
    cursor: pointer;
}

#mobileNav,
#mobileNav a,
#mobileNav summary,
#mobileNav p {
    font-weight: 500;
}

.offcanvas {
    background-color: #000 !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLink {
    color: white;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.mobileNavLink:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.mobileNavLink.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background: #F0DDA3;
    border-radius: 10px;
    transform: translateX(-50%);
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* ================= MOBILE ================= */
@media(max-width:1024px) {
    .navMenu {
        gap: 116px !important;
    }
}

@media (max-width: 980px) {

    /* HIDE DESKTOP MENU */
    .appNavBar {
        padding: 70px !important;
    }

    .navMenu {
        display: none;
    }

    .mobileCenterLogo img {
        height: 120px;
    }

    /* SHOW HAMBURGER */
    .menuToggle {
        display: block;
    }

    /* SHOW CENTER LOGO */
    .mobileCenterLogo {
        display: block;
    }

    /* FIX LEFT RIGHT */
    .navCart {
        position: absolute;
        right: 20px;
    }

    .menuToggle {
        left: 20px;
    }

    .navTop {
        justify-content: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 458px) {

    .appNavBar {
        padding: 16px 8px;
    }


}

@media(max-width:420px) {
    .navCart {
        position: absolute !important;
        left: 98% !important;
    }

    .navUser {
        position: absolute;
        right: 28px !important;
    }
}


main {
    padding-top: 130px;
}

.indexHero {
    height: 38svw;
}

/* Hero section (indexpage) style */

.cartCanvas {
    --bs-offcanvas-width: 540px;
    background: #eaffea;
}

.cartItem {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cartImg {
    width: 130px;
    border-radius: 8px;
}

.cartDetails h6 {
    margin: 0 0 8px;
    font-size: 17px !important;
}

.qtyPriceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Quantity Box */
.qtyBox {
    display: flex;
    align-items: center;
    border: 1px solid #bbb;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.qtyBox button {
    border: none;
    background: none;
    padding: 4px 10px;
    font-size: 14px;
}

.qtyInput {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent !important;
    outline: none;
    font-weight: 600;
}

@media (max-width: 576px) {

    .qtyPriceRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .qtyBox {
        border-radius: 20px;
    }

    .qtyBox button {
        padding: 6px 12px;
        font-size: 16px;
    }

    .qtyInput {
        width: 36px;
        font-size: 14px;
    }

    .price {
        font-size: 14px;
        font-weight: 600;
    }

    .cartImg {
        width: 70px;
        border-radius: 8px;
    }

}


.price {
    font-weight: 600;
}

.cartFooter {
    border-top: 1px solid #ddd;
    padding: 12px;
}

.subtotalRow {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

/* Hero Section */
.indexHero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.heroFadeChangeImg {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    /* IMPORTANT: no white flash base */
}

/* all images stacked */
.heroFadeChangeImg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;

    /* smooth + premium */
    animation: fadeSlide 10s infinite;
    /* will-change: opacity, transform; */
}

.heroFadeChangeImg img:nth-child(1) {
    animation-delay: 0s;
}

.heroFadeChangeImg img:nth-child(2) {
    animation-delay: 5s;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    48% {
        opacity: 1;
    }

    52% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



.heroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    width: 100%;
    padding: 20px;
}

/* heading */
.heroContent h1 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
}

/* paragraph */
.heroContent p {
    margin-top: 12px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Product Swiper */

.indexProductSwiper {
    padding: 0 clamp(0.75rem, 3vw, 2rem);
}

.swiper-slide {
    height: auto;
}

/* pagination spacing */
.swiper-pagination {
    margin-top: 20px;
    position: static;
}


.vgProductCard {
    background: transparent;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vgProductCard:hover {
    transform: translateY(-6px);
}

.vgPrImg img {
    max-height: 100%;
    object-fit: contain;
}

.ogPrice {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.discPrice {
    color: #21452C;
    font-weight: 600;
}

.trustSectionBLock {
    display: flex;
    gap: clamp(12px, 3vw, 32px);
    padding: clamp(16px, 4vw, 32px);
    background-color: white !important;
    margin-top: 20px;

}

.trustSectionBLock>div {
    flex: 1;
    text-align: center;
    color: black !important;
    padding: 20px 16px;
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.trustSectionBLock img {
    max-width: 78px;
    margin-bottom: 10px;
}

.trustSectionBLock h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.trustSectionBLock p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* hover feel */
.trustSectionBLock>div:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .trustSectionBLock {
        flex-direction: column;
    }
}

.prVisionAndMissionContainer {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 64px);
    padding: clamp(24px, 6vw, 72px) clamp(16px, 4vw, 64px);
}

.imgVisionMision {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    height: 650px;
}

@media(max-width:390px) {
    .imgVisionMision {
        height: 500px;
    }
}


@media(max-width:368px) {
    .imgVisionMision {
        height: 400px;
    }
}

.imgVisionMision img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadeSequence 21s infinite;
}

/* Stagger delay for each image */
.imgVisionMision img:nth-child(1) {
    animation-delay: 0s;
}

.imgVisionMision img:nth-child(2) {
    animation-delay: 3s;
}

.imgVisionMision img:nth-child(3) {
    animation-delay: 6s;
}

.imgVisionMision img:nth-child(4) {
    animation-delay: 9s;
}

.imgVisionMision img:nth-child(5) {
    animation-delay: 12s;
}

.imgVisionMision img:nth-child(6) {
    animation-delay: 15s;
}

.imgVisionMision img:nth-child(7) {
    animation-delay: 18s;
}

@keyframes fadeSequence {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



/* content block */
.contentVisionMission {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contentVisionMission h5 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #F0DDA3;
    text-decoration: underline;
}

.contentVisionMission p {
    margin: 0;
    line-height: 1.7;
    font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
}

@media (max-width: 768px) {
    .prVisionAndMissionContainer {
        flex-direction: column;
        text-align: center;
    }

    .contentVisionMission>div {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #F0DDA3;
        padding-top: 12px;
    }
}

/* hover feel for each content block */
.contentVisionMission>div {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    padding: 12px 16px;
    border-radius: 12px;
}

/* hover effect */
.contentVisionMission>div:hover {
    transform: translateY(-6px);
    background-color: rgba(61, 89, 24, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ratingSwiperContainer {
    padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.ratingSlide {
    background: #fff;
    border-radius: 16px;
    padding: clamp(20px, 4vw, 32px);
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ratingSlide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.ratingStars {
    font-size: 28px;
    cursor: pointer;
}

.ratingStars i {
    color: #d4af37 !important;
    /* gold */
    margin: 0 4px;
    transition: transform 0.15s ease;
}

.ratingStars i:hover {
    transform: scale(1.1);
}


.ratingSlide p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.ratingUser {
    display: inline-flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-right: 14px;
}

/* image */
.ratingUser img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 1;
}

/* name */
.ratingUser span {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    background-color: #21452C;
    border-radius: 0 999px 999px 0;
    padding: 3px 14px 3px 23px;
    margin-left: -24px;
    z-index: 0;

}


.footerContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(24px, 4vw, 30px);
    padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 64px);
    color: white !important;
}

.footerContainer h5,
.footerContainer h6 {
    margin-bottom: 16px;
    font-size: clamp(1.15rem, 2.5vw, 1.65rem) !important;
    color: #F0DDA3;

}

.footerDesc {
    margin: 16px 0 24px;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    opacity: 0.9;
}

.footerContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerContainer li {
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    transition:
        transform 0.25s ease,
        padding-left 0.25s ease,
        background-color 0.25s ease;
}

/* hover the whole row */
.footerContainer li:hover {
    transform: translateX(4px);
    padding-left: 6px;
    background-color: rgba(33, 69, 44, 0.06);
    border-radius: 6px;
}


.footerContainer a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.footerContainer a:hover {
    opacity: 1;
}

.socialIcons {
    display: flex;
    gap: 12px;
}

.socialIcons a {
    width: 40px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.socialIcons a:hover {
    transform: translateY(-4px);
    background: #F0DDA3;
    color: black !important;
}

.footerContact li {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footerContact i {
    width: 36px;
    height: 36px;
    background: #F0DDA3;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
}


@media (max-width: 768px) {
    .footerBrand {
        text-align: center;
    }

    .socialIcons {
        justify-content: center;
    }

    .footerContainer .fdiv {
        padding-left: 20px;
    }

}

.footerCopyright {
    text-align: center;
    padding: clamp(14px, 3vw, 22px);
    font-size: clamp(0.15rem, 1.5vw, 1rem) !important;
}

.footerCopyright .heart {
    display: inline-block;
    margin: 0 4px;
}

.mcubeLink {
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.mcubeLink:hover {
    color: #eaffea;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}



/* =========================================== Shop Page Styles ========================================================== */

.gridWraapperOfAllProducts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 48px);
    padding: clamp(24px, 6vw, 96px);

}

/* tablet */
@media (max-width: 992px) {
    .gridWraapperOfAllProducts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 576px) {
    .gridWraapperOfAllProducts {
        grid-template-columns: 1fr;
    }
}

/* =========================================== contact us Page Styles ========================================================== */

.getInTouchSecContainer {
    display: flex;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(32px, 6vw, 80px);
    background-color: white;
    flex-wrap: wrap;
    align-items: center;
}

/* left content */
.getInTouchContent {
    flex: 1;
    max-width: 480px;
    color: black !important;
}

.getInTouchContent h2 {
    margin-bottom: 16px;
    font-weight: bold;
}

.getInTouchContent p {
    font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    line-height: 1.7;
}

/* base */
.getInTouchForm {
    flex: 1.2;
    width: 100%;
}

.getInTouchForm .formRow {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 16px;
}

/* two column row */
.getInTouchForm .formRow.twoCol>* {
    flex: 1;
}

/* inputs */
.getInTouchForm .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    border-radius: 8px;
    border: 1px solid black;
    background-color: transparent !important;
}

/* button */
.getInTouchForm button {
    padding: 12px 0;
    font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.getInTouchForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* responsive: stack content on mobile */
@media (max-width: 768px) {
    .getInTouchSecContainer {
        flex-direction: column;
    }

    .getInTouchForm .formRow {
        flex-direction: column;
    }
}


.contactUsWeAreHelpSecContainer {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(32px, 6vw, 80px);
}

/* LEFT CONTENT */
.contactContent h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
}

.contactContent .subtitle {
    margin-top: 12px;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: white;
    max-width: 420px;
}

.contactContent .divider {
    width: 100%;
    height: 1px;
    background: white;
    margin: clamp(20px, 4vw, 32px) 0;
}

/* CONTACT INFO WITH ICONS */
.contactInfo {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 4vw, 32px);
}

.infoItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: white;
}

.infoIcon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0DDA3;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* RIGHT IMAGE */
.contactImage img {
    width: 100%;
    max-width: 420px;
    display: block;
}

/* CONTACT INFO hover */
.infoItem {
    transition: transform 0.25s ease, color 0.25s ease;
}

.infoItem:hover {
    transform: translateX(4px);
    color: white;
}

/* icon premium feel */
.infoIcon {
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.infoItem:hover .infoIcon {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(31, 61, 43, 0.35);
}

/* IMAGE hover (very soft) */
.contactImage img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.contactImage:hover img {
    transform: translateY(-6px) scale(1.02);
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
}


@media (max-width: 768px) {
    .contactUsWeAreHelpSecContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contactImage img {
        margin: 0 auto;
    }

    .contactInfo {
        justify-content: start;
    }

    .infoItem {
        justify-content: center;
    }
}



/* =========================================== Product Details Page Styles ========================================================== */

.productsDetailsSecContainer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(24px, 6vw, 80px);
}

/* LEFT */
.productMedia {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mainProductImg {
    border-radius: 24px;
    padding: clamp(24px, 5vw, 48px);
}

.mainProductImg img {
    width: clamp(220px, 32vw, 480px);
    display: block;
}

/* thumbnails */
.productThumbs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb img {
    width: 80%;
}

.thumbNav {
    border: none;
    background: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* RIGHT */
.productDetails h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem) !important;
}

.productSubtitle {
    margin: 10px 0 20px !important;
    color: white !important;
    max-width: 520px;
}

/* price */
.priceRow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price {
    font-size: clamp(1.2rem, 4vw, 2rem) !important;
    font-weight: 800;
    color: #F0DDA3;
}

.mrp {
    text-decoration: line-through;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;

}

/* actions */
.actionRow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.buyNowBtn:hover {
    background-color: #000;
    color: #F0DDA3 !important;
    border: 1px solid #F0DDA3;
}

.qtyBox {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 999px;
    overflow: hidden;
}

.qtyBox button {
    border: none;
    background: none;
    padding: 8px 14px;
    font-size: 1.2rem !important;
    cursor: pointer;
}

.qtyInput {
    width: 48px;
    border: none;
    text-align: center;
    font-weight: 600;
    outline: none;
}

/* remove arrows (just in case browser tries) */
.qtyInput::-webkit-outer-spin-button,
.qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* info blocks */
.infoBlock {
    margin-top: 24px;
}

.infoBlock h4 {
    font-weight: 500;
    margin-bottom: 8px;
}

.infoBlock ul {
    padding-left: 18px;
}

.infoBlock li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem) !important;
}


/* help */
.helpBlock {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.contactMini {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px);
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.9rem, 2vw, 1.05rem) !important;
    color: white;
    margin: 0;
}

.contactItem i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F0DDA3;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* subtle hover */
.contactItem:hover i {
    background: #000;
    color: #F0DDA3;
}


/* ===========================
   TABLET (<= 992px)
=========================== */
@media (max-width: 992px) {

    .productsDetailsSecContainer {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 48px);
        padding: clamp(20px, 5vw, 40px);
    }

    .productMedia {
        order: 1;
    }

    .productDetails {
        order: 2;
    }

    .mainProductImg img {
        width: clamp(240px, 60vw, 380px);
    }

    .productThumbs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .productSubtitle {
        max-width: 100%;
    }
}


/* ===========================
   MOBILE (<= 576px)
=========================== */
@media (max-width: 576px) {

    /* container spacing */
    .productsDetailsSecContainer {
        padding: 20px 16px;
        gap: 28px;
    }

    /* image */
    .mainProductImg {
        padding: 20px;
    }

    .mainProductImg img {
        width: 100%;
        max-width: 320px;
    }

    /* thumbs */
    .thumb {
        width: 64px;
        height: 64px;
    }

    .thumb img {
        width: 75%;
    }

    .thumbNav {
        font-size: 1.4rem;
    }

    /* title */
    .productDetails h1 {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
    }

    .productSubtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 16px;
    }

    /* price row */
    .priceRow {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* actions */
    .actionRow {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .actionRow .btn {
        width: 100%;
        border-radius: 999px;
    }

    .qtyBox {
        justify-content: center;
        width: 125px;
    }

    .actionRow .btn {
        width: 100%;
        border-radius: 999px;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background-color 0.25s ease;
    }

    .actionRow .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }


    /* info blocks */
    .infoBlock {
        margin-top: 20px;
    }

    .infoBlock h4 {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }

    /* help block */
    .helpBlock {
        margin-top: 24px;
    }

    .contactItem {
        font-size: clamp(0.9rem, 4vw, 1rem) !important;
    }
}

.reviewStars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 2px;
}

.uploadBox {
    width: 120px;
    height: 90px;
    border: 1.5px dashed #aaa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    transition: 0.25s;
}

.uploadBox i {
    font-size: 1.4rem;
    color: #555;
}

.uploadBox:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
    color: #0d6efd;
}

.ratingStars {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    cursor: pointer;
}

.ratingStars i {
    color: #ddd;
    transition: transform .2s ease, color .2s ease;
}

.ratingStars i.hover,
.ratingStars i.active {
    color: #ffc107;
}

.ratingStars i:hover {
    transform: scale(1.2);
}

.thumb {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
}

.thumb:hover {
    transform: scale(1.05);
}

.thumb.active {
    border-color: #1f3d2b;
    background: #eef5ef;
}

.thumbNav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0DDA3;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbNav:hover {
    background: #000;
    color: #F0DDA3;
    border: 1px solid #F0DDA3;
}

/* =========================================== my orders Page Styles ========================================================== */

.myOrdersSecContainer {
    background: #EAFFEA;
    padding: clamp(1rem, 3vw, 1.5rem) !important;
}

/* Order Card */
.orderCard {
    background: #EAFFEA;
    border-radius: clamp(0.5rem, 1vw, 0.75rem) !important;
    padding: clamp(0.75rem, 2vw, 1rem) !important;
}

/* Header */
.orderHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    flex-wrap: wrap;
    /*  responsive */
}

.orderInfo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
}

.orderInfo i {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

.orderInfo strong {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
}

.orderDate {
    font-size: clamp(0.75rem, 1.3vw, 0.85rem) !important;
    color: #555;
}

/* Status */
.orderStatus {
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 2vw, 0.75rem) !important;
    border-radius: 999px !important;
    font-size: clamp(0.75rem, 1.3vw, 0.85rem) !important;
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.4rem) !important;
    white-space: nowrap;
}

.orderStatus.pending {
    background: #f8ffb6;
    color: #000;
}

/* Body */
.orderBody {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem) !important;
    margin-top: clamp(0.75rem, 2vw, 1rem) !important;
}

/* Product Image */
.productImg img {
    width: clamp(4.5rem, 18vw, 5.5rem) !important;
    border-radius: clamp(0.5rem, 1vw, 0.6rem) !important;
    background: #ffffff00;
    padding: clamp(0.4rem, 1.2vw, 0.5rem) !important;
}

/* Product Details */
.productDetails h5 {
    margin: 0 0 clamp(0.25rem, 1vw, 0.4rem) !important;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
}

.productDetails p {
    margin: 0;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem) !important;
    color: #333;
}

/* Price Tag */
.priceTag {
    display: inline-block;
    margin-top: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    background: #3d5f13;
    color: #fff;
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 2vw, 0.75rem) !important;
    border-radius: clamp(0.3rem, 1vw, 0.4rem) !important;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem) !important;
}

@media (max-width: 576px) {

    .orderBody {
        flex-direction: column;
        align-items: flex-start;
    }

    .productImg img {
        width: 100% !important;
        max-width: 140px;
    }
}

.orderStatus.confirmed {
    background: #c7f0d8;
    color: #155724;
}

.orderStatus.shipped {
    background: #dbeafe;
    color: #1e40af;
}

.orderStatus.delivered {
    background: #dcfce7;
    color: #166534;
}

.orderStatus.cancelled {
    background: #fee2e2;
    color: #991b1b;
}


/* ============================ Header ============================ */
/* MAIN DROPDOWN PANEL */
.userDropdown {
    position: absolute;
    top: 96px;
    right: 5px;
    /* width: 260px; */
    background: #E6FFEE;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
}

.userDropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.userDropdown .userLogin {
    background-color: #133b0c !important;
    width: 100px !important;
    color: white !important;
    padding: 10px;
    border: none;
}

.userDropdown .userLogin i {
    color: white !important;
}

.userDropdown .userLogin:hover {
    background-color: white !important;
    color: #133b0c !important;
    padding: 10px;
}

.userDropdown .userLogin i:hover {
    color: #133b0c !important;
}

/* HEADER SECTION */
.userHeader {
    background: #21452C;
    padding: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.userPic {
    width: auto;
    height: auto;
    padding: 10px;
    background: #377652;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.userNameInfo {
    margin: 0;
    font-size: 17px !important;
    font-weight: 700;
    color: #fff;
}

.userEmail {
    margin: 2px 0 0;
    font-size: 11px !important;
    color: #ccf0dc;
}

/* MENU GRID SECTION */
.menuItems {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
    gap: 3px;
}

.menuItem {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #21452C;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .2s ease;
}

.menuItem:hover {
    background: #d5f5e3;
}

/* MENU LIST */
.menuItems {
    background: #E6FFEE;
    padding: 10px 0;
}

.menuItem {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px !important;
    color: #21452C;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease;
}

.menuItem i {
    font-size: 15px !important;
}

.menuItem:hover {
    background: #21452C;
    color: #fff;
}

/* Order Placed Page */
#globalSpinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.weightBadge:hover {
    background-color: #21452C !important;
    color: white !important;
}

.whatsappFloat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsappFloat:hover {
    transform: translateY(-3px);
}

/*  Mobile Screen */
@media (max-width: 576px) {

    .whatsappFloat {
        padding: 14px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }

    .whatsappFloat span {
        display: none;
    }
}


.brandStorySecContainer {
    background-color: #3D5918;
    color: #fff;
    padding: clamp(40px, 8vw, 100px) clamp(15px, 4vw, 40px);
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.brandStoryInner {
    max-width: 900px;
    margin: 0 auto;
}

.brandStoryBlock {
    margin-bottom: 60px;
    position: relative;
}

.brandStoryTitle {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.brandStoryText {
    font-size: clamp(1rem, 1.5vw + 0.2rem, 1.2rem);
    line-height: 1.7;
    margin-bottom: 16px;
    color: #fff;
    text-align: justify;
    position: relative;
}

.brandStoryText.quote {
    font-style: italic;
    border-left: 4px solid #5eec11;
    padding-left: 15px;
    margin-left: 5px;
}

.brandStoryHighlight {
    font-weight: 700;
    color: #5eec11;
    display: block;
    margin-top: 15px;
    text-align: center;
    font-size: clamp(1.05rem, 1.6vw + 0.2rem, 1.3rem);
}

.storyDivider {
    border: 0;
    height: 2px;
    background: #fff3;
    margin: 50px 0;
    border-radius: 5px;
}

/* Optional icon spacing */
.brandStoryTitle i,
.brandStoryHighlight i,
.brandStoryText i {
    color: #5eec11;
}

.brandStoryBlock {
    border: 2px solid #5eec11;
    padding: 30px;
    border-radius: 50px;
}

.logoWrapper {
    background-color: #fff;
    /* white background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    /* space around the logo */
    border-radius: 20px;
    /* soft rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* subtle shadow for "lifted" effect */
    max-width: 300px;
    /* optional, keeps logo contained */
    margin: 20px auto;
    /* center on page */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logoWrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    /* subtle hover lift */
}

.vgLogo1 {
    max-width: 100%;
    height: auto;
    display: block;
}














/* =========================
   CART OFFCANVAS THEME
========================= */

.cartCanvas {
    background-color: #000 !important;
    color: #fff;
    width: 380px !important;
    border-left: 1px solid #222;
}

/* HEADER */
.cartCanvas .offcanvas-header {
    border-bottom: 1px solid #F0DDA3;
}

.cartCanvas .offcanvas-title {
    color: #F0DDA3;
    font-weight: 600;
}

/* CLOSE BUTTON */
.cartCanvas .btn-close {
    filter: invert(1);
}

/* BODY */
.cartBody {
    padding: 15px;
    overflow-y: auto;
}

/* SCROLLBAR */
.cartBody::-webkit-scrollbar {
    width: 4px;
}

.cartBody::-webkit-scrollbar-thumb {
    background: #F0DDA3;
}

/* =========================
   CART ITEM CARD
========================= */

.cart-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #111;
    align-items: center;
}

/* IMAGE */
.cart-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #F0DDA3;
}

/* DETAILS */
.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.cart-item-price {
    font-size: 13px;
    color: #F0DDA3;
}

/* REMOVE BUTTON */
.cart-item-remove {
    cursor: pointer;
    font-size: 14px;
    color: #ff4d4d;
}

.deleteItem {
    transition: transform 0.3s ease, color 0.3s ease;
}

.deleteItem:hover {
    cursor: pointer;
    color: #F0DDA3 !important;
    transform: scale(1.2);
}


/* =========================
   FOOTER
========================= */

.cartFooter {
    position: sticky;
    bottom: 0;
    background-color: #000;
    padding: 15px;
    border-top: 1px solid #F0DDA3;
}

/* SUBTOTAL */
.subtotalRow {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}

.subtotalAmount {
    color: #F0DDA3;
    font-weight: 600;
}

/* CHECKOUT BUTTON */
.checkoutBtn {
    background-color: #F0DDA3;
    color: #000;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.checkoutBtn:hover {
    background-color: #e6cf85;
}

/* EMPTY CART TEXT */
.cart-empty {
    text-align: center;
    color: #aaa;
    margin-top: 50px;
    font-size: 14px;
}

.exploreBtn:hover {
    background-color: #000;
    color: #F0DDA3 !important;
    border: 1px solid #F0DDA3;
}


/* Layout grid */
/* User Details Modal */
.custom-dark-modal {
    background: #000;
    color: #fff;
    border: 1px solid #222;
}

.custom-dark-modal .form-grid {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr));  */
    gap: 1rem 1.1rem;
}

.custom-dark-modal .form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom-dark-modal .form-field.full {
    grid-column: 1 / -1;
}

/* Section dividers */
.custom-dark-modal .form-section-divider {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.25rem 0 0;
}

.custom-dark-modal .form-section-divider span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 221, 163, 0.3);
    white-space: nowrap;
}

.custom-dark-modal .form-section-divider::before,
.custom-dark-modal .form-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(240, 221, 163, 0.1);
}

/* Labels */
.custom-dark-modal .field-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240, 221, 163, 0.55);
}

/* Notice bar */
.custom-dark-modal .text-warning.small {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(240, 221, 163, 0.06);
    border: 1px solid rgba(240, 221, 163, 0.14);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    margin-bottom: 1.4rem;
    color: rgba(240, 221, 163, 0.55) !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

/* Fields — keep your existing selectors, just add sizing tweaks */
.custom-dark-modal input,
.custom-dark-modal textarea,
.custom-dark-modal select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 221, 163, 0.2);
    border-radius: 8px;
    color: #e8e8e8;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.custom-dark-modal input:focus,
.custom-dark-modal textarea:focus,
.custom-dark-modal select:focus {
    outline: none;
    background: rgba(240, 221, 163, 0.04);
    border-color: rgba(240, 221, 163, 0.65);
    box-shadow: 0 0 0 3px rgba(240, 221, 163, 0.08), 0 0 14px rgba(240, 221, 163, 0.09);
    color: #fff;
}

.custom-dark-modal input::placeholder,
.custom-dark-modal textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.custom-dark-modal textarea {
    resize: none;
    min-height: 76px;
}

.custom-dark-modal select {
    cursor: pointer;
}

.custom-dark-modal select option {
    background: #111;
    color: #e8e8e8;
}

/* Limit modal body height & enable scroll */
.custom-dark-modal .modal-body {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #F0DDA3 transparent;
    /* ✅ correct */
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #F0DDA3;
    font-size: 16px;

    cursor: pointer;
    white-space: nowrap;
    /* 🔥 prevents wrap */
}

.payment-row input {
    transform: scale(1.3);
    accent-color: #F0DDA3;
}

/* each row */
.payment-row {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #F0DDA3;
    font-size: 16px;

    width: 100%;
    max-width: 260px;
}

/* bigger radio button */
.payment-row input {
    transform: scale(1.3);
    accent-color: #F0DDA3;
}

/* prevent text wrapping */
.payment-row span {
    white-space: nowrap;
}

.custom-dark-modal .form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;

    min-width: 0; 
}

/* spinner */

/* Order Placed Page */
#globalSpinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.continueCheckout {
    background-color: #000;
    color: #F0DDA3;
    border: 1px solid #F0DDA3 !important;
    border-radius: 20px;
}

.continueCheckout:hover {
    background-color: #F0DDA3 !important;
    color: black !important;
}

.checkoutBtn {
    background-color: #000;
    color: #F0DDA3;
    border: 1px solid #F0DDA3 !important;
}

.checkoutBtn:hover {
    background-color: #F0DDA3 !important;
    color: black !important;
}



/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #000; /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(247, 247, 176, 0.563);
    border-top-color: #F0DDA3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}

/* width of the scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #F0DDA3;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #9a8a5b;
}


/* Tour Tooltip Background */
.introjs-tooltip {
    background: black !important;
    color: #F0DDA3 !important;
    border-radius: 12px;
}

.introjs-tooltip-title {
    font-size: 18px;
    width: 90%;
    min-height: 0.1em !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700;
    line-height: 1.5;
}

/* Tooltip text */
.introjs-tooltiptext {
    font-weight: 500;
    font-family: "Inter", sans-serif !important;
}

/* Close Button */
.introjs-tooltipbuttons .introjs-skipbutton {
    color: #F0DDA3 !important;
    font-weight: 600;
}

/* Next / Done Button */
.introjs-nextbutton,
.introjs-donebutton {
    background: black !important;
    border: 1px solid #F0DDA3 !important;
    color: #F0DDA3 !important;
    border-radius: 6px;
    padding: 6px 14px;
}

/* Hover */
.introjs-nextbutton:hover,
.introjs-donebutton:hover {
    background: #F0DDA3 !important;
    color: #000 !important;
}

/* Highlight border */
.introjs-helperLayer {
    border: 3px solid #F0DDA3 !important;
    border-radius: 10px;
}

.invoiceBtn{
    background-color: #000 !important;
    border-color: #F0DDA3 !important;
    color: #F0DDA3 !important;
}
.invoiceBtn:hover{
    background-color: #F0DDA3 !important;
    color: #000 !important;
}