.hero-section-product {
   background: radial-gradient(ellipse at center,
         rgba(0, 0, 0, 0.6) 0%,
         rgba(0, 0, 0, 0.3) 40%,
         rgba(0, 0, 0, 0.0) 100%);
   position: relative;
   overflow: hidden;
}

.locoshop-overlay {
   background: linear-gradient(140deg, rgba(0, 0, 0, 0.8), transparent);
}

#hero-image-product {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
}

.hero-content-product-wrapper {
   padding-top: 200px;
   padding-bottom: 200px;
}



/* Footer */
.gradient-background {
   background: rgb(235, 232, 232) !important;
}

.bg-locoshop {
   background-color: #4b722d;
}

.text-locoshop-primary {
   color: #52a513;
}


.text-locoshop-color {
   color: #4b722d !important;
}

.overlay {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: rgba(27, 27, 27, 0.5);
}

/* Hero */
.locoshop-landing-image {
   background-image: url('/images/block/locoshop/ecommerce-hero.webp');
   position: relative;
   background-position: right center;
   -webkit-background-size: contain;
   background-size: contain;
   background-repeat: no-repeat;
   padding-top: 90px;
   padding-bottom: 90px
}

/* Website customisation */
.wb-customisation-section {
   background: #f9f9f9;
}

.wb-customisation-carousel {
   overflow: hidden;
   position: relative;
   width: 100%;
}

.wb-carousel-track {
   display: flex;
   gap: 2rem;
   width: max-content;
   animation: wb-scrollLoop 25s linear infinite;
}

.wb-customisation-carousel:hover .wb-carousel-track {
   animation-play-state: paused;
}

.wb-custom-card {
   min-width: 400px;
   width: 400px;
   flex: 0 0 auto;
   /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
   background: white;
   border-radius: 16px;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
   text-align: center;
   /* padding: 20px; */
   transition: transform 0.3s ease;
}

.wb-custom-card:hover {
   transform: translateY(-15px) scale(1.05);

}

.wb-card-inner {
   padding: 10px 10px 30px 10px;
}

.wb-card-inner img {
   width: 100%;
   height: 250px;
   margin-bottom: 25px;
   object-fit: cover;
   transition: transform 0.3s ease;
   border-radius: 12px;
}


@keyframes wb-scrollLoop {
   0% {
      transform: translateX(0);
   }

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

.learn-more-link {
   color: #4b722d;
   text-decoration: none;
   font-weight: 500;
   line-height: 38px;
}

.learn-more-link:hover {
   text-decoration: underline;
   color: #305e0e;
}


/* Order Lfe Cycle */
.wb-step-cta {
   font-weight: 500;
   text-decoration: none;
   color: #4b722d;
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
   transition: transform 0.2s;
}

.wb-step-cta:hover {
   transform: translateX(3px);
   color: #32640b;
}

.wb-step-circle {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   /* background-color: #f0f0f0; */
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 4rem;
   color: #4b722d;
   z-index: 1;
   position: relative;
}

.wb-step-circle i {
   transition: transform 0.6s ease-in-out;
}

.wb-step-circle:hover i {
   transform: rotate(360deg);
}

.wb-step-item p {
   margin-top: 0.5rem;
   font-weight: 500;
}


/* Customer verification */
.wb-verify-card {
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.wb-verify-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.verify-icon {
   width: 100px;
   height: 100px;
   object-fit: contain;
}


/* Marketing Tools */
.wb-marketing-accordion,
.wb-marketing-image {
   height: 100%;
}

.wb-marketing-accordion {
   border: 3px solid #dddfdc;
   padding: 30px;
   border-radius: 10px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.wb-accordion-item {
   border-bottom: 1px solid #ddd;
   cursor: pointer;
   padding: 15px 0;
}

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

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

.wb-accordion-header h5 {
   margin: 0;
   flex-grow: 1;
   font-weight: 600;
}

.marketing-tools-header h5 {
   margin: 0;
   flex-grow: 1;
   font-weight: 600;
}

.wb-accordion-toggle {
   font-size: 1.5rem;
   margin-right: 10px;
   transition: transform 0.3s;
}

.wb-accordion-body {
   display: none;
   padding-top: 10px;
   color: #555;
}

.wb-accordion-item.active .wb-accordion-body {
   display: block;
}

.wb-accordion-item.active .wb-accordion-toggle {
   transform: rotate(45deg);
}

.wb-marketing-image {
   background: #4b722d;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 5px;
   min-height: 500px;
}

.wb-marketing-image img {
   max-width: 95%;
   max-height: 90%;
   object-fit: contain;
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   /* border: 1px solid #aebda4; */
}

@media (max-width: 767px) {
   .wb-marketing-accordion {
      margin-bottom: 20px;
   }

   .wb-marketing-image {
      min-height: 300px;
   }

   .wb-step-circle {
      font-size: 3rem;
   }
}

/* payment Integration */
.dots-wrapper {
   bottom: 0%;
   left: 50%;
   transform: translateX(-50%);
}

@media screen and (max-width: 576px) {
   .dots-wrapper {
      bottom: 0%;
      left: 5%;
      transform: translateX(0%);
   }
}

/* Sign up Free */

.freeTrail {
   background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
   background-image: url('/images/block/locoshop/free-trail.webp');
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   padding: 0 30px;
}


.freeTrailBox {
   max-width: 700px;
   background: rgba(0, 0, 0, 0.6);
   border-radius: 10px;
   padding: 0 30px;
   color: white;
}

.review-card {
  background: white;
  color: black;
  padding: .5rem 2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px; 
}


.review-display-box {
  height: 300px; 
  
  display: flex;
  justify-content: center; 
  align-items: center;    
}

.center-content {
  display: flex;
  flex-direction: column;
}

.review-list {
  display: flex;
  flex-direction: column;
}

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

.review-cards {
  display: flex;
  flex-direction: column;
}

@keyframes infiniteScroll {
   0% {
      transform: translateY(0);
   }

   100% {
      transform: translateY(-50%);
   }
}

.platform-icon {
   width: 30px;
   height: 30px;
   object-fit: contain;
   margin-bottom: 4px;
}

.custom-stars {
   color: #4b722d;
   font-size: 18px;
   font-family: Arial, sans-serif;
}

/* Sync Retailgo */
.overlay-content {
   position: absolute;
   bottom: 0;
   left: 15px;
   right: 15px;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.img-overlay {
   border-radius: 0 0 12px 12px;
}


/* FAQ */
.faq-answer {
   display: none;
   transition: all 0.3s ease;
   max-width: 100%;
   font-size: 1rem;
}

.faq-answer.show {
   display: block;
}

.faq-question {
   cursor: pointer;
   padding: 0.5rem 0;
   font-size: 1.05rem;
}

.faq-question span {
   transition: transform 0.3s ease;
}

.faq-question.open span {
   transform: rotate(180deg);
}

.faq-item {
   border-bottom: 1px dashed #ccc;
   padding: 0.5rem 0;
}

.bg-custom-primary {
   background-color: #4b722d !important;
   color: #fff !important;
}



/* Marketing Section */
/* hero section */
.ms-hero-title {
   font-family: 'Space Grotesk', sans-serif;
   font-size: 3rem;
   font-weight: 700;
   line-height: 1.1;
   margin-bottom: 1.5rem;
}

.ms-hero-subtitle {
   font-size: 1.25rem;
   color: rgb(121, 119, 119);
   line-height: 1.6;
   margin-bottom: 2rem;
}

.fade-in-left {
   opacity: 0;
   transform: translateX(-30px);
   animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
   opacity: 0;
   transform: translateX(30px);
   animation: fadeInRight 1s ease forwards 0.3s;
}

.ms-hero-section img {
   transition: all 0.4s ease-in-out;
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ms-hero-section img:hover {
   transform: translateY(-10px);
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInLeft {
   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes fadeInRight {
   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@media (max-width: 767px) {
   .hero-title {
      font-size: 2.5rem;
   }
}


/*sms and email campaign */
.custom-card {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 600px;
   padding: 20px;
   border-radius: 8px;
}

.custom-card-cycle {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 750px;
   padding: 20px;
   border-radius: 8px;
}

@media (max-width: 991px) {
   .custom-card {
      height: 450px;
      padding: 18px;
   }

   .custom-card-cycle {
      height: 500px;
      padding: 18px;
   }

   .custom-card img {
      height: 280px !important;
      object-fit: contain;
   }
}

@media (max-width: 767px) {
   .custom-card {
      height: auto;
      min-height: 400px;
      padding: 15px;
   }

   .custom-card-cycle {
      height: auto;
      min-height: 450px;
      padding: 18px;
   }

   .custom-card img {
      height: 250px !important;
   }
}

@media (max-width: 575px) {
   .faq-answer {
      max-width: 100%;
   }

   .custom-card {
      height: auto;
      min-height: 350px;
      padding: 12px;
   }

   .custom-card-cycle {
      height: auto;
      min-height: 400px;
      padding: 12px;
   }

   .custom-card img {
      height: 200px !important;
   }

   .hero-content-product-wrapper {
      padding-top: 50px;
      padding-bottom: 50px;
   }
}

@media (min-width: 768px) {
   .faq-answer {
      max-width: 700px;
      font-size: 1rem;
   }
}

@media (min-width: 1200px) {
   .faq-answer {
      max-width: 800px;
      font-size: 1.05rem;
   }
}


.social-icon i {
   transition: transform 1s ease;
}

.social-icon i:hover {
   transform: rotate(360deg);
}



.text-gradient {
   background: linear-gradient(135deg, #007bff, #6f42c1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.card-hover {
   transition: all 0.5s ease;
   border: 2px solid transparent;
}

.card-hover:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card {
   transition: all 0.3s ease;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.6));
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.85));
   border-color: rgba(0, 123, 255, 0.3);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   transform: translateY(-3px);
}

.icon-circle {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.4s ease;
}

.icon-circle:hover {
   transform: scale(1.15) rotate(5deg);
}

.btn-hover {
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.btn-hover:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.btn-hover::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   transition: left 0.5s;
}

.btn-hover:hover::before {
   left: 100%;
}

.image-overlay {
   position: relative;
   overflow: hidden;
   border-radius: 20px;
}

.image-overlay::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(108, 66, 193, 0.1));
   opacity: 0;
   transition: opacity 0.4s ease;
}

.image-overlay:hover::after {
   opacity: 1;
}

.image-overlay img {
   transition: transform 0.6s ease;
}

.image-overlay:hover img {
   transform: scale(1.1) rotate(1deg);
}

.demo-badge {
   opacity: 0;
   transition: all 0.4s ease;
   transform: translateY(10px);
}

.image-overlay:hover .demo-badge {
   opacity: 1 !important;
   transform: translateY(0);
}

.tool-emerald {
   background: linear-gradient(135deg, #d1fae5, #a7f3d0, #6ee7b7);
   box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.tool-blue {
   background: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
   box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.tool-purple {
   background: linear-gradient(135deg, #f3e8ff, #e9d5ff, #d8b4fe);
   box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.tool-orange {
   background: linear-gradient(135deg, #fed7aa, #fdba74, #fb923c);
   box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.tool-teal {
   background: linear-gradient(135deg, #ccfbf1, #99f6e4, #5eead4);
   box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
}

.border-emerald {
   border-color: #10b981 !important;
}

.border-blue {
   border-color: #3b82f6 !important;
}

.border-purple {
   border-color: #8b5cf6 !important;
}

.border-orange {
   border-color: #f97316 !important;
}

.border-teal {
   border-color: #14b8a6 !important;
}

.text-emerald {
   color: #059669 !important;
}

.text-blue {
   color: #2563eb !important;
}

.text-purple {
   color: #7c3aed !important;
}

.text-orange {
   color: #ea580c !important;
}

.text-teal {
   color: #0d9488 !important;
}

.badge-emerald {
   background-color: #d1fae5;
   color: #065f46;
   border: 1px solid #10b981;
}

.badge-blue {
   background-color: #dbeafe;
   color: #1e40af;
   border: 1px solid #3b82f6;
}

.badge-purple {
   background-color: #f3e8ff;
   color: #6b21a8;
   border: 1px solid #8b5cf6;
}

.badge-orange {
   background-color: #fed7aa;
   color: #9a3412;
   border: 1px solid #f97316;
}

.badge-teal {
   background-color: #ccfbf1;
   color: #134e4a;
   border: 1px solid #14b8a6;
}

@keyframes pulse {
   0% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
   }

   70% {
      box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
   }

   100% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
   }
}

.pulse-animation {
   animation: pulse 2s infinite;
}


.benefit-item {
   transition: all 0.3s ease;
}

.benefit-item:hover {
   transform: translateY(-5px);
}

.benefit-item:hover .icon-circle {
   background: linear-gradient(135deg, #818b78, #245002) !important;
}



.feature-section {
   padding: 60px 15px;
   background-color: #ffffff;
}

.feature-section h2 {
   font-weight: 700;
   margin-bottom: 20px;
}

.feature-card {
   border: none;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s;
   margin-bottom: 30px;
   background-color: #c2bebe;
}

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

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

.feature-card-body {
   padding: 20px;
}

.feature-card-title {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 10px;
}

.feature-card-text {
   font-size: 0.95rem;
   color: #555;
}

.learn-more {
   display: inline-block;
   margin-top: 10px;
   font-weight: 500;
   color: #007bff;
   text-decoration: none;
}

.learn-more:hover {
   text-decoration: underline;
}


/* payment */
.payment-hero-section {
   min-height: 100vh;
   position: relative;
   overflow: hidden;
}

.payment-hero-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('/images/block/locoshop/online-payments-software-banner.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   z-index: 1;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   z-index: 2;
}

.container-fluid {
   position: relative;
   z-index: 10;
   padding: 80px 20px;
}


.hero-content {
   color: white;
   padding: 20px;
}

.content-wrapper {
   max-width: 600px;
}

.hero-title {
   font-size: 3.5rem;
   font-weight: bold;
   line-height: 1.2;
   margin-bottom: 2rem;
}

.hero-title .text-primary {
   color: #007bff !important;
}

.hero-description {
   font-size: 1.25rem;
   color: #e5e5e5;
   line-height: 1.6;
   margin-bottom: 2.5rem;
   max-width: 500px;
}

.hero-buttons {
   margin-top: 2rem;
}

.btn-primary {
   background-color: #007bff;
   border-color: #007bff;
   padding: 12px 32px;
   font-size: 1.1rem;
}

.btn-primary:hover {
   background-color: #0056b3;
   border-color: #0056b3;
}

.btn-outline-light {
   border-color: white;
   color: white;
   background-color: transparent;
   padding: 12px 32px;
   font-size: 1.1rem;
}

.btn-outline-light:hover {
   background-color: white;
   color: black;
}


.image-stack {
   cursor: pointer;
   position: relative;
}

.image-container {
   position: relative;
   width: 500px;
   height: 600px;
   overflow: hidden;
}

.image-slide {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   transform: translateY(100%);
   transition: all 1s ease-in-out;
}

.image-slide.active {
   opacity: 1;
   transform: translateY(0);
}

.image-slide.slide-up {
   opacity: 0;
   transform: translateY(-100%);
}

.hero-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
   .hero-title {
      font-size: 2.5rem;
      text-align: center;
   }

   .hero-description {
      font-size: 1.1rem;
      text-align: center;
      margin: 0 auto 2rem auto;
   }

   .hero-buttons {
      text-align: center;
   }

   .image-container {
      width: 280px;
      height: 350px;
      margin: 2rem auto 0;
   }
}

@media (max-width: 767.98px) {
   .hero-title {
      font-size: 2rem;
   }

   .hero-description {
      font-size: 1rem;
   }

   .image-container {
      width: 250px;
      height: 300px;
   }

   .btn-lg {
      padding: 10px 24px;
      font-size: 1rem;
   }

   .container-fluid {
      padding: 40px 15px;
   }
}

@media (max-width: 575.98px) {
   .hero-title {
      font-size: 1.75rem;
   }

   .image-container {
      width: 220px;
      height: 280px;
   }

   .hero-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 10px;
   }
}

/* Payment others section */
.badge-custom {
   background-color: #f8fafc;
   color: #6b7280;
   padding: 8px 16px;
   border-radius: 20px;
   font-size: 0.875rem;
   font-weight: 500;
}

.card-hover {
   transition: all 0.3s ease;
   border: 2px solid #e2e8f0;
}

.card-hover:hover {
   border-color: rgba(14, 165, 233, 0.3);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box-dl {
   width: 48px;
   height: 48px;
   background-color: rgba(14, 165, 233, 0.1);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #4b722d;
   font-size: 20px;
   flex-shrink: 0;
}


.section-bg {
   background-color: rgba(248, 250, 252, 0.5);
}


.img-feature {
   border-radius: 8px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bg-cover {
   background-size: cover;
   background-position: center;
   border-radius: 16px;
   min-height: 480px;
   position: relative;
   overflow: hidden;
}

.card-overlay {
   border-radius: 16px;
   color: #fff;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}

.card-overlay h3 {
   font-size: 1.4rem;
   font-weight: 600;
   margin-bottom: 0.75rem;
}

.card-overlay p {
   font-size: 1rem;
   color: #f1f1f1;
   max-width: 85%;
}

.pos-section {
   background-image: url('/images/block/locoshop/sell-in-person.webp');
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 60px 0;
   color: #fff;
   /* aspect-ratio: 16/5; */
   /* min-height: 700px; */
}
.pos-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0,0,0,0.35); 
   z-index: 1;
   pointer-events: none;
}

.pos-section > * {
   position: relative;
   z-index: 2;
}

.pos-section .content-wrapper {
   max-width: 600px;
}


.pos-heading {
   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.pos-tagline {
   font-size: 2.25rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.pos-subheading {
   font-size: 1.5rem;
   line-height: 1.8;
   font-weight: 700;
   margin-bottom: 2rem;
   color: white;
}


@media (min-width: 992px) {
   .pos-heading {
      font-size: 2.8rem;
   }

   .pos-tagline {
      font-size: 1.8rem;
   }

   .pos-subheading {
      font-size: 1.1rem;
   }
}

@media (min-width: 1400px) {
   .pos-heading {
      font-size: 3.2rem;
   }

   .pos-tagline {
      font-size: 2rem;
   }

   .pos-subheading {
      font-size: 1.2rem;
   }
}




/* Delivery Partner-integration */
.steadfast-logistics-section {
   background-color: #f8f9fa;
}

.steadfast-main-title {
   color: #2c3e50;
   font-size: 2.5rem;
}

.steadfast-subtitle {
   color: #6c757d;
   font-size: 1.125rem;
   line-height: 1.6;
}

.steadfast-card {
   background: #ffffff;
   border-radius: 12px;
   transition: all 0.3s ease;
}

.steadfast-hover-card:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.steadfast-card-image {
   height: 150px;
   object-fit: cover;
}

.steadfast-small-image {
   width: 200px;
   height: 200px;
   object-fit: cover;
}

.steadfast-icon-wrapper {
   width: 64px;
   height: 64px;
   background-color: rgba(0, 123, 255, 0.1);
   border-radius: 12px;
}

.steadfast-primary-icon {
   color: #007bff;
   font-size: 2rem;
}

.steadfast-overlay-icon {
   bottom: -8px;
   right: -8px;
   width: 40px;
   height: 40px;
   background-color: rgba(108, 117, 125, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.steadfast-card-title {
   color: #2c3e50;
   font-weight: 600;
}

.steadfast-card-text {
   color: #6c757d;
   line-height: 1.6;
}

.steadfast-feature-icon {
   color: #007bff;
   font-size: 1rem;
}

.steadfast-badge {
   font-size: 0.875rem;
   padding: 0.5rem 0.75rem;
   border-radius: 6px;
}

.steadfast-btn {
   background-color: #007bff;
   border-color: #007bff;
   padding: 0.75rem 1.5rem;
   font-weight: 500;
   border-radius: 8px;
   transition: all 0.3s ease;
}

.steadfast-btn:hover {
   background-color: #0056b3;
   border-color: #0056b3;
   transform: translateY(-1px);
}

@media (max-width: 991.98px) {
   .steadfast-main-title {
      font-size: 2rem;
   }

   .steadfast-card-image {
      height: 150px;
   }

   .steadfast-small-image {
      width: 80px;
      height: 80px;
   }
}

/* Website Customization Page Start */

.website-customisation .hero {}

.website-customisation .hero-ui-card {
   border-radius: 8px !important;
}

.website-customisation .hero-ui-card i {
   color: var(--loco-shop);

}

.website-customisation .hero-ui-card .color-btn {
   padding: 10px;
}

.website-customisation .hero-ui-card .color-btn.active {
   outline: 2px solid black !important;
}

.website-customisation .hero-ui-card .btn-outline-secondary.active {
   background-color: var(--loco-shop);
}

.mockup {
   border-radius: 10px 10px 0px 0px;
   border-bottom: 0;
}

.dot-wrapper {
   gap: 5px;
}

.dot {
   width: 15px;
   height: 15px;
   border-radius: 50px;
}

.mockup-logo {
   height: 42px;
   width: auto;
   /* opacity: 0.4; */
   border-radius: 8px;
   /* padding: 5px 10px; */
}

.category-card {
   background-color: white;
   border-radius: 10px;
   transition: all 0.2s ease;
   min-width: 60px;
   min-height: 80px;
}

.mockup-banner {
   height: 300px;
   border-radius: 10px 10px 0px 0px !important;
   overflow: hidden;
   position: relative;
}

.mockup-banner img {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   height: 100%;
   width: 100%;
   object-fit: cover;
}

.search-bar-custom .form-control,
.search-bar-custom .btn {
   border-radius: 0;
   border: none;
}

.search-bar-custom {
   min-width: 200px;
}

.search-icon-custom {
   background-color: white;
   color: black;
}

.mockup-navbar-search-select {
   /* min-width: 600px; */
   height: 40px;
}

.navbar-brand {
   color: white;
}

.cart-badge {
   top: -5px;
   right: -5px;
   font-size: 0.7rem;
}

.carousel-mockup-section {
   background-color: #F1FDF5;
}

.mockup-banner-2 {
   /* height: 500px; */
   width: 100%;
   aspect-ratio: 16/5;
   border-radius: 10px !important;
}

.products-section .nav-link {
   transition: all 0.2s ease;
   border-radius: 1rem !important;
   padding: 16px !important;
}

.products-section .nav-link .product-content-wrapper {
   align-items: center;
   justify-content: start;
}

.products-section .nav-link.active {
   border-color: #4b722d !important;
   background-color: rgba(75, 114, 45, 0.05) !important;
}

.products-section .nav-link.active .product-content-wrapper {
   align-items: start;
}

.products-section .nav-pills .nav-link.active,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:focus {
   padding: 16px !important;
}

.products-section .nav-link .icon-wrapper {
   width: 40px;
   height: 40px;
   border-radius: 8px;
   background: #f8f9fa;
   color: #6c757d;
}

.products-section .nav-link.active .icon-wrapper {
   flex-shrink: 0;
   background: #4b722d;
   color: #fff;
}

.product-title {
   color: black;
   font-weight: 600 !important;
}

.product-description {
   display: none !important;
}

.products-section .nav-link.active .product-description {
   display: block !important;
}

.product-tab-image-card {
   border-radius: 1rem !important;
   display: none !important;
}

.product-image-card {
   /* height: 500px; */
   /* width: 100%; */
   border-radius: 1rem !important;
}

.product-image-card img {
   /* aspect-ratio: 1/1; */
}

@media screen and (max-width: 992px) {
   .products-section .nav-link.active .product-tab-image-card {
      display: block !important;
   }

   .product-tab-image-card {
      /* height: 400px; */
      width: 100%;
      aspect-ratio: 16/9;
   }
}

.brand-story-section .card {
   border-radius: 1rem !important;
}

.brand-story-section .icon-box {
   width: 40px;
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(75, 114, 45, 0.1);
   padding: 10px;
   border-radius: 10px;
   color: #4b722d;
   font-size: 18px;
}

.brand-story-section .btn-link {
   color: transparent !important;
}

.brand-story-title {
   color: #000;
   font-weight: 600 !important;
}

.brand-story-section .color-box {
   width: 32px;
   height: 32px;
   border-radius: 6px;
   margin-right: 8px;
   border: 2px solid #fff;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-story-section .border-dashed {
   border-style: dashed !important;
   border-radius: 1rem !important;
}

.choose-fonts div {
   border-radius: 1rem !important;
}

.seo-section .rounded-lg {
   border-radius: 10px !important;
}

.seo-section i {
   color: var(--loco-shop);
}

.trusted-partners-section {
   border-radius: 1rem !important;
}

.trusted-partners-section img {
   height: 40px;
}

.pathao {
   border-radius: 1rem !important;
   background-color: #fff5f5;
}

.steadfast {
   border-radius: 1rem !important;
   background-color: #F5FEFE !important;
}

.flow-chart {
   border-radius: 1rem !important;
}

.trusted-partners-section .bg-success {
   background-color: var(--loco-shop) !important;
}

.features i {
   color: var(--loco-shop) !important;
}

.features .font-semistandard {
   font-weight: 600 !important;
}

.features .delivery-feature-card {
   border-radius: 1rem !important;
}


.overlay-text {
   top: 0;
   left: 0;
   width: 100%;
   height: 60%;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1), transparent);
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}

.overlay-text h3,
.overlay-text p {
   margin: 0;
   color: white !important;
}

@media (max-width: 767.98px) {
   .overlay-text {
      padding: 1rem;
      height: 70%;
   }

   .overlay-text h3 {
      font-size: 1.2rem;
   }

   .overlay-text p {
      font-size: 0.9rem;
   }
}

/* Website Customization Page End */

/* Cart to customer arrow styles */
.wb-step-item:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 55px;

   width: 100%;
   height: 1px;
   background: #9e9e9e;
   z-index: 1;
   transform: translateX(50%) translateY(-50%);
}

.wb-step-item:not(:last-child)::before {
   content: '';
   position: absolute;
   right: 0;
   top: 55px;
   z-index: 2;

   width: 0;
   height: 0;
   border-top: 5px solid transparent;
   border-bottom: 5px solid transparent;
   border-left: 8px solid #9e9e9e;
   transform: translateX(calc(50% + 4px)) translateY(-50%);
}

@media (max-width: 767px) {

   .wb-step-item::after,
   .wb-step-item::before {
      display: block;
   }
}

@media (min-width: 768px) {
   .wb-step-item:not(:last-child)::after {
      width: 40%;
      right: -20%;
      transform: translateY(-50%);
   }

   .wb-step-item:not(:last-child)::before {
      right: -20%;
      transform: translateY(-50%) translateX(calc(100% - 4px));
   }
}

@media (max-width: 767px) {

   .wb-step-item::after,
   .wb-step-item::before {
      display: block;
   }

   .wb-step-item:not(:last-child)::after {
      top: auto;
      bottom: -15px;
      left: 65px;
      right: auto;

      width: 1px;
      height: 35px;
      background: #9e9e9e;

      transform: none;
   }

   .wb-step-item:not(:last-child)::before {
      top: auto;
      bottom: -15px;
      left: 65px;
      right: auto;

      border-top: 8px solid #9e9e9e;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent;
      border-bottom: none;

      transform: translate(-5px, 0);
   }
}


.tax-card {
   background: #fff;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
}

/* Unique styling only for this section */
.pay-doorstep-section .pay-doorstep-content {
   text-align: left;
}

@media (max-width: 767px) {

   .pay-doorstep-section .pay-doorstep-content,
   .pay-doorstep-section .pay-doorstep-image {
      text-align: center !important;
   }

   .pay-doorstep-section .pay-doorstep-content {
      margin-bottom: 2rem;
   }

   .pay-doorstep-content img {
      min-height: 300px !important;
   }

   .vertical-hero img {
      object-fit: cover;
      object-position: 90% center !important;
      /* shows the right side as center */
   }
}


.multi-currency-section .overlay-multicurrency {
   color: #fff;
   position: absolute;
   top: 0;
   left: 0;
   padding: 2rem;
   max-width: 95%;
}

.multi-currency-section .overlay-multicurrency h2,
.multi-currency-section .overlay-multicurrency p {
   text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* .multi-currency-img {
   min-height: 800px;
} */
@media screen and (max-width: 768px) {
   .multi-currency-section .overlay-multicurrency {
      padding: 1rem;
   }

   .multi-currency-img {
      min-height: 600px;
   }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
   .multi-currency-img {
      min-height: 500px;
   }
}

/* Feature Section 2 */
.feature-card-2 {
   position: relative;
   height: 650px;
   border-radius: 16px;
   overflow: hidden;
   cursor: pointer;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card-2 h4,
.feature-card-2 P {
   color: white !important;
   font-weight: 500;
}

.feature-card-2 .card-image {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.9s ease;
}

.feature-card-2:hover .card-image {
   transform: scale(1.1);
}

.feature-card-2 .card-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
   padding: 30px 20px;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
   z-index: 2;
}




.slick-track {
    display: flex !important;
    align-items: stretch; 
}

.slick-slide {
    height: inherit !important; 
}


.bento-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
}

.bento-large {
   grid-column: span 2;
   grid-row: span 2;
}

.bento-wide {
   grid-column: span 2;
}

@media (max-width: 1199px) {
   .bento-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .bento-large {
      grid-column: span 2;
      grid-row: span 1;
   }
}

@media (max-width: 575px) {
   .bento-grid {
      grid-template-columns: 1fr;
   }

   .bento-large,
   .bento-wide {
      grid-column: span 1;
   }
}

.icon-circle2 {
   width: 4rem;
   height: 4rem;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
}

.icon-circle-locoshop {
   background-color: rgba(75, 114, 45, 0.1);
   color: var(--loco-shop);
}

.btn-locoshop-rlf-outline {
   color: var(--loco-shop) !important;
   background-color: #fff;
   border-color: var(--loco-shop);
}

.btn-locoshop-rlf-outline:hover {
   color: #ffffff !important;
   background-color: var(--retail-life);
   border-color: var(--retail-life);
}
.locoshop-rlf-anchor {
   color: var(--loco-shop)!important;
}
.locoshop-rlf-anchor:hover {
   color: var(--retail-life)!important;
}