/* FONT IMPORT */

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

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

:root {
  --white: #fff;
  --black: #000;
  --primary: #482820;
  --secondary: #febd02;
}

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

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "impact.ttf";
}

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

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
  font-family: "Archivo", sans-serif;
}

h3 {
  color: #000;
  margin: 0;
  font-family: "Smooch", cursive;
}

h1,
h2,
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 */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 2.5rem;
  line-height: normal;
  letter-spacing: -0.2px;
  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 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

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

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

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

/* !NAV HEADER CSS */
.main-banner {
  /* background: url(../images/mainBnnr.webp) center/cover no-repeat; */
  background-color: #482820;
  height: 960px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
}

.main-content {
  padding-left: 6rem;
  z-index: 99;
  position: relative;
}

.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.main-content h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  position: relative;
  width: fit-content;
}

.main-content h4::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 4px;
  background-color: var(--white);
  border-radius: 50px;
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.main-content h4::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 72px;
  background: linear-gradient(45deg, #ffffff, transparent);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -91px;
}

.main-content h1 {
  font-size: 8.5625rem;
  font-weight: 400;
  letter-spacing: -3.25px;
  line-height: 0.9;
  color: var(--white);
  position: relative;
  width: 80%;
  text-transform: uppercase;
  margin: 0.875rem 0 0.875rem 0;
}

.main-content h1 img {
  position: absolute;
  inset: 0;
  margin: auto;
}

.main-content h1 span {
  color: var(--secondary);
}

.main-content p {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "impact.ttf";
  color: var(--white);
}

.btn-box {
  display: flex;
  align-items: center;
}

.btn-box a i {
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(-46deg);
  border: unset !important;
  border-radius: 50px;
  transition: 0.6s ease;
}

.main-content .btn-group {
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.54rem;
}

.main-content .btn-group a span {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

.main-content .btn-group a i {
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: rgb(72 40 32 / 90%);
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 14%);
  backdrop-filter: blur(10px);
}

.main-content .btn-group a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-img {
  height: 234px;
  width: 234px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background-color: #f8f5f1;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.brand-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.brand-main {
  flex-shrink: 0;
  text-align: center;
}

.brand-main a {
  font-size: 27px;
  font-weight: 400;
  text-transform: uppercase;
  color: #482820;
  display: block;
  margin: 0.9625rem 0;
}

.brand-sec {
  padding: 0;
}

.mainsub {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.form-inline a,
.form-inline a i {
  color: var(--primary);
  background-color: var(--white);
  border-radius: 50px;
}

.main-content .btn-box a,
.main-content .btn-box a i {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-radius: 50px;
}

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

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

/* .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: auto;
  top: 20%;
} */


.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 20%;
  z-index: 0;
  pointer-events: none;
}

.marquee span {
  text-transform: uppercase;
  will-change: transform;
  animation: marquee 24s linear infinite;
  font-size: 362px;
  font-weight: 400;
  color: rgb(255 255 255 / 1%);
  display: block;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  letter-spacing: -3.3px;
}

/* Marquee Sec Css End */

.product-sec {
  background: var(--primary);
  padding: 4rem 0 3rem;
  z-index: 1;
}

.subHead {
  font-size: 33px;
  font-weight: 400;
  text-transform: capitalize;
  color: #febd02;
  line-height: 1.2;
}

.mainHead {
  font-size: 94px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
}

.mainHead span {
  color: var(--secondary);
}

.coffee-content .mainHead {
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0.875rem 0 0.875rem 0;
}

.coffee-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #482820;
  margin-bottom: 2rem;
  width: 95%;
}

.coffee-content {
  padding-left: 1.25rem;
}

.product-sec .mainHead {
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.product-main {
  text-align: center;
}

.product-content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #febd02;
  font-family: "impact.ttf";
}

.product-content h4 {
  font-size: 27px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
}

.product-sec .btn-box {
  justify-content: center;
  margin-top: 94px;
}

.product-sec .btn-box a,
.product-sec .btn-box a i {
  background-color: var(--white);
  border-radius: 50px;
  color: var(--primary);
  letter-spacing: -0.2px;
}

.product-sub1 {
  position: absolute;
  left: 0;
  bottom: 16%;
  z-index: -1;
}

.product-sub2 {
  position: absolute;
  right: 0;
  top: 0;
}

.product-top {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -6rem;
}

.coffee-sec {
  padding: 6rem 0 16rem;
}

.customer-sec .mainHead {
  width: 60%;
  margin: 0 auto 3rem;
  text-align: center;
}

.customer-main {
  background-color: #f8f5f1;
  padding: 35px 54px 32px 54px;
  border: 1px solid #d3cbc9;
  border-radius: 48px;
  text-align: center;
  transition: 0.6s ease;
}

.customer-main p {
  line-height: 1.3;
  color: #482820;
  font-size: 29px;
  margin: 29px 0 3rem;
}

.customer-imag {
  border-top: 1px solid rgb(136 112 106 / 10%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  padding: 1.25rem 0 0;
}

.customer-imag h5 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #482820;
}

.customer-sub {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -5rem;
}

.customer-sec {
  padding: 6rem 0 14rem 0;
}

.cup-sec {
  background: url(../images/cupbg.webp) center/cover no-repeat;
  z-index: 1;
  height: 615px;
  display: flex;
  align-items: center;
}

.cup-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.cup-1 {
  position: absolute;
  left: 0;
  bottom: -8rem;
  z-index: 1;
}

.cup-content .mainHead {
  font-size: 87px;
}

.cup-content .btn-box {
  justify-content: center;
  margin-top: 1.875rem;
}

/* --- Section fiuef --- */
.coffee-features-section {
  background-color: #f3f2d0;
  color: #432e26;
  overflow-x: hidden;
  padding: 10rem 0 19rem;
}

.coffee-features-section .paragraph {
  line-height: 1.5;
  color: #482820;
  text-align: center;
  margin: 2rem 0;
}

.coffee-features-section .paragraph .line {
  text-align: center;
}

.feature-title {
  font-size: 1.875rem;
  color: #482820;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.feature-text {
  line-height: 1.5;
  color: #482820;
}

.feature-icon {
  transition: 0.6s ease;
}

.feature-box {
  transition: transform 0.3s ease;
  margin-bottom: 5rem !important;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.center-image-wrapper img.main-img {
  transition: 0.6s ease;
}

.center-image-wrapper:hover img.main-img {
  transform: scale(1.02);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25) !important;
}

/* Right column specifically centered as per design */
.col-lg-3:last-child .feature-box {
  text-align: end !important;
}

/* --- Section 2ot5g7 --- */
.coffee-gallery-section {
  background-color: #482820;
  /* Deep coffee brown background */
  position: relative;
  z-index: 1;
  padding: 4rem 0 8rem;
}

.gallery-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  transform: translateZ(0);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* The Yellow Overlay matching the middle image in design */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 212, 73, 0.65);
  /* Golden yellow transparent tint */
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effects */
.gallery-card:hover .hover-overlay {
  opacity: 1;
}

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

/* Responsive spacing adjustments */
@media (max-width: 768px) {
  .coffee-gallery-section {
    padding: 50px 0;
  }
}

/* --- Section 08t7ne --- */
/* General Footer Setup */
.footer-section {
  background-color: #3b241c;
  padding-top: 80px;
}

.z-index-1 {
  z-index: 10;
}

/* Background Watermark */
.footer-watermark {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
  z-index: 0;
}

/* Typography & Colors */
.footer-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 400px;
}

/* Form Styling */
.custom-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #7a625a;
  border-radius: 0;
  color: #fff;
  padding: 10px 0;
  font-weight: 400;
  font-size: 0.875rem;
}

.custom-input:focus {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
  border-color: #f0c419;
  /* Yellow focus */
}

.custom-input::placeholder {
  color: #fff;
  font-weight: 400;
}

.custom-submit {
  background: transparent;
  border: none;
  color: #fff;
  border-bottom: 1px solid #7a625a;
  border-radius: 0;
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-submit:hover {
  color: #f0c419;
  border-color: #f0c419;
}

/* Navigation Links */
.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  font-weight: 400;
  font-size: 1.125rem;
  text-transform: capitalize;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f0c419;
  /* Yellow Hover Effect */
}

.social-links .arrow {
  font-size: 1rem;
  margin-left: 10px;
}

/* Bottom Bar */
.footer-brand {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bottom-links {
  display: flex;
  gap: 20px;
  z-index: 2;
}

.bottom-links a {
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
  text-transform: capitalize;
  color: #fff;
}

.bottom-links a:hover {
  color: #f0c419;
}

.copyright-text {
  font-size: 0.8rem;
  color: #ccc;
  font-weight: 600;
}

/* Coffee Cup Styling */
.coffee-cup-wrapper {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: transform 0.4s ease;
}

.coffee-cup-wrapper:hover {
  transform: translateX(-50%) scale(1.05) rotate(2deg);
}

.coffee-cup {
  margin-bottom: -3rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .footer-watermark {
    top: 50%;
    font-size: 20vw;
  }

  .coffee-cup-wrapper {
    position: static;
    transform: none;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .coffee-cup-wrapper:hover {
    transform: scale(1.05);
  }

  .bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
  }

  .copyright-text {
    text-align: center;
    margin-top: 20px;
  }
}

.coffee-gallery-section .mainHead {
  text-align: center;
  margin-bottom: 2.8rem;
  color: var(--white);
}

.gallerysub2 {
  position: absolute;
  right: 0;
  top: 0;
}

.gallerysub1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.gallerybottom {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -53px;
}

.gallerytop {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -6rem;
}

.feature-box+.feature-box {
  margin: 0 !important;
}

.misfitslider {
  padding: 12rem 0 5rem;
  margin-bottom: -17rem;
}

.misfitslider .swiper-button-next:after,
.misfitslider .swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.25rem;
}

.misfitslider .swiper-button-next:after {
  content: "\f324";
}

.misfitslider .swiper-button-prev:after {
  content: "\f323";
}

.misfitslider .swiper-button-next,
.misfitslider .swiper-button-prev {
  border-radius: 50px;
  bottom: 31%;
  top: unset;
  height: 46px;
  width: 46px;
  background-color: var(--white);
  color: #3b0017;
  transition: 0.6s ease;
}

.misfitslider .swiper-pagination {
  background-color: #fcfbe4;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 7px 21px;
  border-radius: 50px;
}

.misfittop {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -60px;
}

.coffee-features-section .mainHead {
  text-align: center;
}

.footertop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
}

footer {
  background-color: #3b211a;
  padding: 7rem 0 2rem;
}

.footer-flex {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 4rem;
}

footer p {
  color: var(--white);
  line-height: 1.5;
  width: 84%;
  margin-bottom: 3rem;
}

.flex-grow-1.mr-4 {
  margin: 0 !important;
}

.footer-bottom {
  display: flex;
  align-items: end;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  justify-content: space-between;
  position: relative;
  gap: 20rem;
  padding-bottom: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-family: "impact.ttf";
}

.footer-bottom figure {
  flex-shrink: 0;
  position: absolute;
  left: -4rem;
  right: 0;
  margin: auto;
  width: fit-content;
}

.footer-box {
  padding-top: 11rem;
  position: relative;
  z-index: 1;
}

/* New Imag Shine Css Start */

.img-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Shine Styles --- */

/* 1. Horizontal */
.style-horizontal::after {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-100%);
  animation: shine-horizontal 3s linear infinite;
}

@keyframes shine-horizontal {
  to {
    transform: translateX(100%);
  }
}

/* 2. Reverse */
.style-reverse::after {
  background: linear-gradient(-90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(100%);
  animation: shine-reverse 3s linear infinite;
}

@keyframes shine-reverse {
  to {
    transform: translateX(-100%);
  }
}

/* 3. Dual */
.style-dual::after {
  background: repeating-linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 10%,
      rgba(255, 255, 255, 0) 20%);
  transform: translateX(-100%);
  animation: shine-dual 4s linear infinite;
}

@keyframes shine-dual {
  to {
    transform: translateX(100%);
  }
}

/* 4. Pulse */
.style-pulse::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 65%);
  transform: translateX(-100%);
  animation: shine-pulse 3s ease-in-out infinite;
}

@keyframes shine-pulse {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

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

/* 5. Wave */
.style-wave::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  animation: shine-wave 1.8s ease-in-out infinite;
}

@keyframes shine-wave {
  0% {
    transform: translateX(-100%);
  }

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

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

/* New Imag Shine Css End  */

.img-shine-box {
  position: relative;
  overflow: hidden;
  border-radius: 49px;
}

.img-shine-layer {
  position: absolute;
  top: 0;
  left: -82%;
  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;
  }
}

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

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

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

.btn-box:hover a i {
  background-color: var(--secondary);
  color: var(--white);
  transform: rotate(-177deg);
}

.main-content .btn-box:hover a i {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
}

.customer-main:hover {
  transform: scale(0.95);
}

.product-sec .themeBtn:hover {
  color: #fff;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0%;
  background-color: var(--secondary);
  bottom: -3px;
  transition: 0.6s ease;
}

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

.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}

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

figure.footer-logo img {
  filter: brightness(0) invert(1);
}

a.navbar-brand img {
  filter: brightness(0) invert(1);
}

/* 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: 137px;
  color: #febd02;
  text-transform: uppercase;
  font-weight: 400;
}

.innerBan span {
  color: #fff;
}

.innerBan {
  position: relative;
}

.misfittop.mistop11 {
  top: inherit;
  bottom: -45px;
}

.shoppage1 {
  background: transparent;
}

section.product-sec.shoppage1 .product-content h4 {
  color: #482820;
}

section.product-sec.shoppage1 .product-main {
  margin-bottom: 50px;
}

.coffee-menu-section {
  background-color: #fff;
}

.section-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #3e2723;
  letter-spacing: -0.5px;
}

.subsection-title {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3e2723;
}

.coffee-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coffee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-name {
  font-size: 21px;
  font-weight: 400;
  color: #222;
  margin: 0;
  font-family: "Archivo";
}

.item-price {
  font-weight: 400;
  font-size: 1rem;
  color: #3e2723;
}

.item-desc {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #555;
  max-width: 75%;
}

.theme-btn {
  background-color: #3e2723;
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.theme-btn:hover {
  background-color: #5d4037;
  color: #fff;
  text-decoration: none;
}

.section-title-contact {
  color: #4a2c1d;
  font-weight: 400;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.contact-card {
  background-color: #eaefc6;
  border-radius: 40px;
  padding: 100px 109px;
}

.contact-card label {
  color: #4a2c1d;
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-card .form-control {
  border: none;
  border-radius: 12px;
  padding: 25px 20px;
  font-size: 0.9rem;
  color: #555;
  background-color: #fff;
}

.contact-card textarea.form-control {
  padding-top: 20px;
  min-height: 160px;
  resize: none;
}

.contact-card .form-group {
  margin-bottom: 1.5rem;
}

/* Button Styling */
.btn-custom-submit {
  background-color: #4a2c1d;
  color: #fff;
  border-radius: 30px;
  padding: 10px 35px;
  font-weight: 400;
  font-size: 0.9rem;
  border: none;
  transition: opacity 0.3s ease;
}

.btn-custom-submit:hover {
  background-color: #382115;
  color: #fff;
}

.btn-custom-icon {
  background-color: #4a2c1d;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-custom-icon:hover {
  background-color: #382115;
  color: #fff;
  transform: translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .section-title {
    font-size: 2rem;
  }
}

.hdr-right {
  gap: 18px;
}

.hdr-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.hdr-cart:hover {
  color: #dc3545;
  text-decoration: none;
}

.hdr-cart-icon {
  position: relative;
  display: inline-flex;
}

.hdr-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: #dc3545;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}

.hdr-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
  letter-spacing: .3px;
}

.hdr-account-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.footer-email-link {
  color: inherit !important;
  text-decoration: none !important;
}

.footer-email-link:hover {
  color: inherit !important;
  text-decoration: none !important;
}