@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #035700;
    --secondary-color: #ffe68f;
    --red-color: #ff0000;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Playfair Display", serif;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.red-color {
    color: var(--red-color) !important;
}

.section-padding {
    padding: 50px 0;
}

.my-font {
    font-family: var(--my-font);
}

.title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
    font-weight: 300;
    font-family: var(--my-font);
    text-align: center;

    &::before {
        content: "";

    }
}




.btn1 {
    position: relative;
    display: inline-block;
    padding: 12px 54px;
    background: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    color: #181818;
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    border-radius: 0.5rem;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.btn1:hover {
    border: 1px solid #f3b182;

    animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
    0% {
        background-position: 0% 50%;
    }

    0% {
        background-position: 50% 100%;
    }

    0% {
        background-position: 0% 50%;
    }
}

.icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.btn1:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
}

@keyframes slay-1 {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.btn1:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}

@keyframes slay-2 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.btn1:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}

@keyframes slay-3 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0);
    }
}

















header {
    padding: 0.75rem 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: #121212;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .search .form-control {
    height: 40px;
    padding: 0 3rem 0 14px;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    border: none;
    position: relative;
    box-shadow: none;
    border: 1px solid #c3c3c3;

    &:focus {
        border-color: var(--primary-color);
    }
}

.navbar .search-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    color: var(--white-color);
    font-size: 18px;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 15px;
        text-decoration: none;
        font-size: 0.875rem
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1051;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}


.banner {
    background: url(../images/banner/banner.webp) no-repeat;
    height: 87vh;
    align-content: center;
    background-size: cover;
    background-position: center;
}



.banner .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.banner h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: normal;

    i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 0.5rem;
    }
}

.banner p {
    line-height: 1.75rem;
    color: #4b4b4b;
    margin-bottom: 2rem;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 3.25rem;
    font-weight: 600;

    span {
        color: var(--primary-color);
    }
}

.why h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #004b3b;
}

.why p {
    font-size: 0.8rem;
    color: #4b4b4b;
    margin-bottom: 0;
}

.category .inner-contain {
    position: relative;
    color: var(--white-color);
    display: block;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.445) 2%, transparent);
    }

    &:hover {
        .layer {
            bottom: 40px;
        }
    }
}

.category .layer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 40px;
    font-size: 0.875rem;
    transition: all 0.3s ease-in-out;

    h3 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    p {
        color: #f1f1f1;
    }

    span {
        position: relative;
        display: inline-block;
        transition: all 0.3s ease-in-out;
        font-size: 0.875rem;

        &::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            transition: all 0.3s ease-in-out;
            background-color: var(--white-color);
        }

        &:hover {
            &::before {
                width: 0;
            }
        }
    }
}




.products {
    background-color: #F5F1EC;
}

.products .img-contain {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;

    &:hover {
        .add-btn {
            bottom: 30px;
        }
    }
}

.products .img-contain img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
}

.products h3 {
    font-size: 1.125rem;
    font-family: var(--my-font);
    font-weight: 400;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: #035700;
    font-style: italic;
}

.products p {
    font-style: italic;
    margin-bottom: 1rem;
}

.add-btn {
    display: inline-block;
    padding: 12px 24px;
    color: var(--white-color);
    background-color: #121212;
    border-radius: 5px;
    font-size: 0.875rem;
    border: 0;
    outline: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
}

.products .add-btn {
    position: absolute;
    bottom: -50px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}


.about h2 {
    font-weight: 400;
    font-family: var(--my-font);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.about p {
    font-size: 1rem;
    color: #4b4b4b;
    margin-bottom: 2.5rem;
    line-height: 1.75rem;
}

.insta {
    background-color: #f5f1ec;
}

.insta .inner-contain {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;

    .img-fluid {
        transition: all 0.3s ease-in-out;
    }

    &:hover {
        .img-fluid {
            filter: brightness(0.6);
        }

        i {
            transform: translate(-50%, -50%) scale(1);
        }
    }
}

.insta .inner-contain i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
}



/* ================================ 
Blogs Section 
=================================== */
.blogs .blog-cont {
    margin-top: 1.5rem;
    padding: 0 0.8rem;
}

.blogs .blog-cont h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.8rem;
}



.blogs .img-fluid {
    height: 280px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.8rem;
}



/* Footer Panel */
/* ==================================== */
.callus {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 999;
}

.callus img {
    width: 50px;
}
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
}

footer h3 {
    font-size: 30px;
    font-weight: 700;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

footer ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

footer ul li a {
    color: #D1E5EC;
    transition: all 0.25s ease-in-out;
    font-size: 14px;
    display: inline-block;
    margin: 5px 0;
    transition: all 0.25s ease-in-out;
}

footer ul li a:hover {
    color: var(--other-color);
}

footer p {
    font-size: 14px;
    color: #D1E5EC;
}

footer .copy {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.inner-banner {
    width: 100%;
    background: url(../images/banner/inner-banner.webp) no-repeat center;
    background-size: cover;
    align-content: center;
    height: 200px;
}

.inner-banner h1,
.inner-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}


/* ================================ 
Product Details section 
=================================== */
.pro-details .product-main {
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 99;
}

.pro-details .product-main .pro-dets-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.pro-details .product-main .gallery__hero {
    overflow: hidden;
    position: relative;
    background: #fff;
    cursor: zoom-in;
}

.pro-details .product-main .is-zoomed .gallery__hero img {
    max-width: none;
    position: absolute;
    z-index: 0;
    top: -50%;
    left: -50%;
    cursor: move;
}

.pro-details .product-main .is-zoomed .gallery__hero-enlarge {
    background-image: url(data:image/svg+xml;base64,...);
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    z-index: 1;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease-in-out;
}

.pro-details .product-main .is-zoomed .gallery__hero-enlarge:hover {
    opacity: 1;
}

.pro-details .product-main .pro-thumbs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    background: #fff;
    gap: 0.6rem;
}

.pro-details .product-main .pro-thumbs a {
    display: inline-block;
    aspect-ratio: 2 / 3;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.pro-details .product-main .pro-thumbs a:hover {
    opacity: 0.8;
}

.pro-details .product-main .pro-thumbs a img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.pro-details .product-main .pro-thumbs a.is-active {
    opacity: 1;
}

.pro-details .product-main .zoomImg {
    width: 140% !important;
    height: 140% !important;
    object-fit: cover;
}

.pro-details .full-dets h1 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.pro-details .full-dets h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.pro-details .full-dets h5 {
    font-size: 18px;
    text-decoration: underline;
    margin-bottom: 14px;
    font-weight: 600;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #c3c3c3;
}

.pro-details .full-dets h6 {
    font-size: 18px;
    text-decoration: underline;
    margin-bottom: 14px;
    font-weight: 600;
    padding-top: 10px;
}

.pro-details .full-dets ul {
    list-style: disc;
    margin-bottom: 20px;
    padding-left: 1.25rem;
}

.pro-details .full-dets ul li {
    margin-bottom: 8px;
}

.blog-details h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 40px;
    font-weight: 500;
}

.getquoteModal .my-btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ================================ 
            Toast Section 
=================================== */
.fixed-toast {
    position: fixed;
    bottom: 5%;
    right: 1%;
    z-index: 200;
    display: inline-block;
}

#toast {
    visibility: hidden;
    max-width: 60px;
    height: 60px;
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    white-space: nowrap;
    transition: visibility 0.5s, opacity 0.5s;

    display: flex;
    align-items: center;
    /* Center vertically */
    padding: 16px;
    padding-left: 0;
}

#toast #img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0da70d;
    color: #fff;
    font-size: 28px;
    overflow: hidden;
    flex-shrink: 0;
    /* Prevent shrinking */
}

#toast #desc {
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-align: start;
    flex-grow: 1;
    /* Allow description to take up remaining space */
    margin-left: 20px;
    /* Space between img and description */
    font-size: 15px !important;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes expand {
    from {
        min-width: 50px;
    }

    to {
        min-width: 280px;
    }
}

@keyframes stay {
    from {
        min-width: 280px;
    }

    to {
        min-width: 280px;
    }
}

@keyframes shrink {
    from {
        min-width: 280px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .inner-banner h1, .inner-banner h2 {
  font-size: 1.5rem;
}

/* MODAL BACKDROP BLUR */
.searchModal .modal-content {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  min-height: 300px;
  z-index: 1051;
}

/* SEARCH BOX */
.search-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 12px;
  gap: 10px;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.search-box:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px #000;
}

/* INPUT */
.search-box input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 16px;
}

/* ICON */
.search-box i {
  font-size: 18px;
  color: #666;
}

/* TAGS */
.search-tag {
  padding: 6px 12px;
  background: #f1f1f1;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.search-tag:hover {
  background: #000;
  color: #fff;
}

/* CLOSE BUTTON */
.searchModal .btn-close {
  filter: none;
}

/* MOBILE */
@media (max-width: 576px) {
  .search-box {
    padding: 10px 12px;
  }

  .search-box input {
    font-size: 14px;
  }
}

/* OFFCANVAS BACKGROUND */
#mobileMenu {
  width: 300px;
  background: #ffffff;
  border-left: 1px solid #eee;
}

/* HEADER */
#mobileMenu .offcanvas-header {
padding: 12px 16px;
  border-bottom: 1px solid #f1f1f1;
}
.w-m-100 {
    width: 100%;
}

/* NAV ITEMS */
#mobileMenu .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 12px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
#mobileMenu .nav-link:hover {
  background: #f5f5f5;
  color: #000;
  transform: translateX(5px);
}

/* ACTIVE STATE */
#mobileMenu .nav-link.active {
  background: #000;
  color: #fff;
}

/* DROPDOWN (PRODUCTS) */
#mobileProducts {
  margin-top: 5px;
}

#mobileProducts .nav-link {
  font-size: 14px;
  padding: 8px 10px;
  color: #666;
}

/* ICON STYLE */
#mobileMenu i {
  font-size: 18px;
}

/* DIVIDER */
#mobileMenu hr {
  margin: 15px 0;
}

/* LOGIN / CART SECTION */
#mobileMenu .nav-link.d-flex {
  font-weight: 600;
  background: #fafafa;
  padding: 12px;
  border-radius: 10px;
}

/* CART HIGHLIGHT */
#mobileMenu .nav-link[data-bs-target="#cartCanvas"] {
  background: #000;
  color: #fff;
}

/* SCROLL SMOOTH */
#mobileMenu .offcanvas-body {
  overflow-y: auto;
  scrollbar-width: none;
}

#mobileMenu .offcanvas-body::-webkit-scrollbar {
  display: none;
}

/* CLOSE BUTTON */
#mobileMenu .ri-close-line {
  color: #333;
  transition: 0.3s;
}

#mobileMenu .ri-close-line:hover {
  color: red;
}

/* ANIMATION */
.offcanvas-end {
  transition: transform 0.4s ease-in-out;
}
.search-box {
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  padding: 8px 15px;
}
#mobileSuggestionBox li {
  border: none;
}
#mobileSuggestionBox {
  position: absolute;
  top: calc(100% + 14px);
  width: 100%;
  background: none;
  border-radius: 12px;
  box-shadow: none;
  left: 0;
}
.list-group-item {
  border: none;
}
#cartCanvas {
    z-index: 1600;
}
.navbar-brand img {
  height: 60px;
}
.banner {
  background: #F0F0F0;
  height: auto;
  padding: 5rem 0;
}

.inner-banner {
  width: 100%;
  background: #FCEBD3;
  min-height: 150px;
  height: 100%;
}
.breadcrumb {
    margin-bottom : 0;
    font-size:14px;
}
}

@media (max-width: 575px) {
    .navbar-brand img {
  height: 50px;
}
.inner-banner h1, .inner-banner h2 {
  font-size: 1.125rem;
}
.inner-banner {
  width: 100%;
  background: #FCEBD3;
  min-height: 120px;
  height: 100%;
}
.breadcrumb {
    font-size:12px;
}
.banner h1 {
  font-size: 1.75rem;
  line-height: 1.35;
}

.banner p {
  line-height: 1.9;
  color: #4b4b4b;
  font-size: 14px;
}
.title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.category .layer {
  & h3 {
    font-size: 1.25rem;
  }
}
.category .layer {
  left: 20px;
}
.about h2 {
  font-size: 1.75rem;
}
.filter-btnn {
    font-size: 12px;
}
#result {
    display: none !important;
}
#lens {
    display: none !important;
}
}

















