:root{--yellow:#ffc200;}

/* .navbar {box-shadow: 0 2px 10px rgba(0,0,0,0.1);}  */
body 
{
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* .container-fluid 
{
  transform: none !important;
} */
/* .card, img 
{
  transform: translateZ(0);
  backface-visibility: hidden;
} */

/* .hero 
{
  position: relative;
  width : 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
} */

.slider-img 
{
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 106px); /*subtracting navbar height*/ 
  @media (max-width: 767px) { 
    height: calc(60vh - 56px); /*subtracting navbar height*/ 
  }
}
.overlay 
{
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / .7), rgb(0 0 0 / 0%), rgb(0 0 0 / 70%));
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('images/3.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
} */
.carousel-caption
{
    top: 50%; 
    transform: translateY(-50%);
    bottom: initial;
    left: initial;
    right: initial;
    width: 100%;
    text-align: center;
    opacity: 1;
}
.card 
{
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-img-box
{
  width: 100%;
  height: 237px;
  object-fit: cover;
  background-color: #f1f1f1;
  border-radius: 15px 15px 0 0;
}

.card-img-product
{
  width: 100%;
  height: 237px;
  object-fit: cover;
  background-color: #f1f1f1;
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease;
}

.card:hover
{
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transform: scale(1.02);
}

.card:hover .card-img-product
{
  transform: scale(1.1);
}

img 
{
  max-width: 100%;
  display: block;
}

.w-16 
{
    width: 4rem;
}
.h-16 
{
    height: 4rem;
}

* 
{
  box-sizing: border-box;
}
html 
{
  scroll-behavior: smooth;
}

.navbar 
{
  position: sticky !important;
  top: 0;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000;
  /* padding: 0.75rem 0; */
}

.custom-navbar 
{
  background: transparent;
  transition: all 0.3s ease;
}

/* AFTER SCROLL */
.custom-navbar.scrolled
{
    background: #fffffff7;
    box-shadow: 0 4px 15px rgb(0 0 0 / 7%) !important;
}

.backdrop-blur
{
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}


.btn-custom 
{
    background: #ffc200;
    color: white; 
    border-radius: 11px; 
    padding: 5px 0px;
    justify-content: center;
}
.btn-custom:hover 
{
    background: #ffa700;
    color: white;
}

.btn-outline-dark
{
    border-radius: 11px;
    padding: 5px 0px;
    justify-content: center;
}

.btn-sm-custom 
{
    background: #ffc200;
    color: white;
    border-radius: 11px;
    justify-content: center;
    padding-top: .125rem;
    padding-bottom: .125rem;
    padding-left: .625rem;
    padding-right: .625rem;
}
.btn-sm-custom:hover
{
    background: #ffa700;
    color: white;
}
.btn-yellow 
{
    background: #ffc200;
    color: white; 
    border-radius: 11px;
    padding: 7px 0px;
    justify-content: center;
    width: 200px;
}
.btn-yellow:hover 
{
    background: #ffa700; 
    color: white;
}

.product-section 
{
    background-color: hsl(60 4.8% 95.9%);
}
.justify-between 
{
    justify-content: space-between;
}
.items-center 
{
    align-items: center;
}
.flex 
{
    display: flex;
}
.text-xs 
{
    font-size: .75rem;
    line-height: 1rem;
}
.pt-0 
{
    padding-top: 0;
}
.p-4 
{
    padding: 1rem;
}
.text-amber-600 
{
    --tw-text-opacity: 1;
    color: #fbbc05;
}
.font-bold 
{
    font-weight: 700;
}
.text-2xl 
{
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold 
{
    font-weight: 600;
}
.text-lg 
{
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.home-planner-section
{
  background: #fff;
}

.home-planner-card
{
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr) minmax(240px, 330px);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f2fbf8 100%);
  border: 1px solid #f1e2c4;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 45px rgb(50 43 31 / 8%);
}

.home-planner-media
{
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f1;
}

.home-planner-media img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-planner-kicker
{
  display: inline-flex;
  align-items: center;
  color: #9a6b08;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-planner-content h2
{
  max-width: 560px;
  color: #211f1b;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.home-planner-content p
{
  max-width: 560px;
  color: #655d51;
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.home-planner-actions
{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-planner-primary,
.home-planner-secondary
{
  width: auto;
  min-width: 145px;
  padding: 7px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
}

.home-planner-points
{
  display: grid;
  gap: 12px;
}

.home-planner-point
{
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  background: rgb(255 255 255 / 82%);
  border: 1px solid #eee2cc;
  border-radius: 12px;
  padding: 12px;
}

.home-planner-point i
{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff3c6;
  color: #b77d00;
  font-size: 1.12rem;
}

.home-planner-point strong
{
  display: block;
  color: #2e2a24;
  font-size: .9rem;
}

.home-planner-point span
{
  display: block;
  color: #746a5c;
  font-size: .8rem;
  line-height: 1.35;
}

.planner-float-btn
{
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  color: #1f1b13;
  text-decoration: none;
  background: #ffc200;
  box-shadow: 0 18px 40px rgb(0 0 0 / 22%);
  border: 2px solid rgb(255 255 255 / 85%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.planner-float-btn:hover
{
  color: #111;
  background: #ffd042;
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgb(0 0 0 / 28%);
}

.planner-float-btn__icon
{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #202020;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.planner-float-btn strong,
.planner-float-btn small
{
  display: block;
  line-height: 1.1;
}

.planner-float-btn strong
{
  font-size: .95rem;
  font-weight: 800;
}

.planner-float-btn small
{
  color: #4c3d10;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 3px;
}

.planner-landing-prompt
{
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 1041;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #f2dc9b;
  background: #fffdf8;
  box-shadow: 0 22px 60px rgb(0 0 0 / 20%);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.planner-landing-prompt.is-visible
{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.planner-landing-prompt__close
{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6d6253;
}

.planner-landing-prompt__close:hover
{
  background: #f8ecd3;
  color: #111;
}

.planner-landing-prompt__icon
{
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #9a6b08;
  background: #fff0bd;
  font-size: 1.55rem;
}

.planner-landing-prompt span
{
  display: block;
  color: #9a6b08;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.planner-landing-prompt strong
{
  display: block;
  color: #211f1b;
  font-size: 1.08rem;
  font-weight: 800;
  padding-right: 28px;
}

.planner-landing-prompt p
{
  color: #655d51;
  font-size: .88rem;
  line-height: 1.45;
  margin: 7px 0 12px;
}

.planner-landing-prompt__cta
{
  width: auto;
  min-width: 132px;
  padding: 8px 14px;
}

.planner-app
{
  background: #f6f4ee;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
}

.planner-hero
{
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.planner-hero__media,
.planner-hero__overlay
{
  position: absolute;
  inset: 0;
}

.planner-hero__media img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.planner-hero__overlay
{
  background: linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(20 20 20 / 28%), rgb(0 0 0 / 62%));
}

.planner-hero__content
{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: end;
  padding-top: 82px;
  padding-bottom: 34px;
}

.planner-hero__copy
{
  max-width: 720px;
  color: #fff;
}

.planner-hero__copy h1
{
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.planner-hero__copy p
{
  max-width: 610px;
  font-size: 1rem;
  color: rgb(255 255 255 / 86%);
  margin: 0;
}

.planner-breadcrumb a,
.planner-breadcrumb .active
{
  color: rgb(255 255 255 / 88%);
}

.planner-summary
{
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 20px 60px rgb(0 0 0 / 18%);
}

.planner-summary__label,
.planner-kicker
{
  display: block;
  color: #86620d;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.planner-summary strong
{
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  margin: 8px 0;
}

.planner-summary span:last-child
{
  color: #555;
  font-size: .9rem;
}

.planner-layout
{
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.planner-workspace
{
  display: grid;
  gap: 22px;
}

.planner-panel
{
  background: #fff;
  border: 1px solid #e4ded2;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 35px rgb(38 35 29 / 7%);
}

.planner-panel--details
{
  position: sticky;
  top: 92px;
}

.planner-panel__header
{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.planner-panel h2
{
  font-size: 1.2rem;
  font-weight: 800;
  margin: 2px 0 0;
}

.planner-icon-btn
{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d9ca;
  border-radius: 11px;
  background: #fff;
  color: #2f2c27;
}

.planner-icon-btn:hover
{
  background: #fff4cf;
  color: #111;
}

.planner-form
{
  display: grid;
  gap: 16px;
}

.planner-form label
{
  display: grid;
  gap: 7px;
  color: #4d463b;
  font-size: .9rem;
  font-weight: 700;
}

.planner-field-grid
{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.planner-stat-strip
{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.planner-stat-strip div
{
  background: #f8f0d7;
  border-radius: 12px;
  padding: 13px;
}

.planner-stat-strip span
{
  display: block;
  color: #6c6254;
  font-size: .78rem;
  font-weight: 700;
}

.planner-stat-strip strong
{
  font-size: 1.35rem;
}

.planner-add-btn
{
  width: auto;
  min-width: 92px;
}

.planner-budget-meter
{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.planner-budget-meter__track
{
  height: 10px;
  background: #ece6da;
  border-radius: 999px;
  overflow: hidden;
}

.planner-budget-meter__track span
{
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffc200, #338a74);
  transition: width .2s ease;
}

.planner-budget-meter__meta
{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #655d51;
}

.planner-table
{
  display: grid;
  gap: 10px;
}

.planner-service-row
{
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 160px 42px;
  gap: 10px;
  align-items: center;
}

.planner-progress-ring
{
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffc200;
  border-radius: 50%;
  font-weight: 800;
}

.planner-task-form
{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 10px;
  margin-bottom: 14px;
}

.planner-task-form .btn
{
  width: 52px;
}

.planner-task-list
{
  display: grid;
  gap: 10px;
}

.planner-task-item
{
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e8e0d3;
  border-radius: 8px;
  background: #fffdfa;
}

.planner-task-item span
{
  overflow-wrap: anywhere;
}

.planner-task-item input:checked + span
{
  color: #777;
  text-decoration: line-through;
}

@media (max-width: 991px)
{
  .home-planner-card
  {
    grid-template-columns: 1fr;
  }

  .home-planner-media
  {
    height: 300px;
  }

  .planner-hero__content,
  .planner-layout
  {
    grid-template-columns: 1fr;
  }

  .planner-panel--details
  {
    position: static;
  }
}

@media (max-width: 575px)
{
  .planner-float-btn
  {
    right: 14px;
    bottom: 92px;
    min-width: 0;
    padding: 10px 13px 10px 10px;
  }

  .planner-float-btn__icon
  {
    width: 40px;
    height: 40px;
  }

  .planner-float-btn small
  {
    display: none;
  }

  .planner-landing-prompt
  {
    right: 12px;
    bottom: 154px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 15px;
  }

  .planner-landing-prompt__icon
  {
    width: 44px;
    height: 44px;
  }

  .home-planner-card
  {
    padding: 14px;
    gap: 18px;
  }

  .home-planner-media
  {
    height: 200px;
  }

  .home-planner-actions
  {
    display: grid;
  }

  .home-planner-primary,
  .home-planner-secondary
  {
    width: 100%;
  }

  .planner-hero
  {
    min-height: 410px;
  }

  .planner-hero__content
  {
    padding-top: 86px;
    padding-bottom: 28px;
  }

  .planner-field-grid,
  .planner-stat-strip
  {
    grid-template-columns: 1fr;
  }

  .planner-service-row
  {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 10px;
    border: 1px solid #eee2cc;
    border-radius: 8px;
    background: #fffdfa;
  }

  .planner-service-name
  {
    grid-column: 1 / -1;
  }

  .planner-service-cost
  {
    grid-column: 1;
  }

  .planner-service-row .planner-icon-btn
  {
    grid-column: 2;
    width: 42px;
  }

  .planner-budget-meter__meta
  {
    display: grid;
  }
}

.line-clamp-1
{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.mb-2 
{
    margin-bottom: .5rem;
}
.mb-8 
{
    margin-bottom: 2rem;
}
h1, h2, h3, h4, h5, h6 
{
    text-wrap: balance;
}

.text-sm 
{
    font-size: .875rem;
    line-height: 1.25rem;
}

.line-clamp-2 
{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.mb-3 
{
    margin-bottom: .75rem;
}

.text-muted-foreground 
{
    color: hsl(25deg 5.26% 44.71%);
}

.duration-200 
{
    animation-duration: .2s;
}
.duration-200 
{
    transition-duration: .2s;
}
.transition-colors 
{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
/* .text-muted-foreground {
    color: hsl(0deg 0.58% 1.3%);
} */
.font-medium 
{
    font-weight: 500;
}
.bg-muted 
{
    background-color: hsl(60 4.8% 95.9%);
}
.w-4 
{
    width: 1rem;
}
.h-4 
{
    height: 1rem;
}
.pt-8 
{
    padding-top: 2rem;
}
.border-t 
{
    border-top-width: 1px;
}
.mt-8 
{
    margin-top: 2rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) 
{
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) 
{
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

a
{
    color: hsl(0deg 0.58% 1.3%);
    text-decoration: none;
}


.text-transparent 
{
    color: transparent;
}

.text-xl 
{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.bg-clip-text 
{
    -webkit-background-clip: text;
    background-clip: text;
}
.to-orange-600
{
    --tw-gradient-to: rgba(243, 134, 10, 0.979) 100%;
}
.from-amber-600 
{
    --tw-gradient-from: #ffc200;
    --tw-gradient-to: #fbbc05;
    --tw-gradient-stops: #ffc200 0%, rgb(255, 229, 31);
}
.bg-gradient-to-r 
{
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

#searchResults 
{
  max-height: 300px;
  overflow-y: auto;
  border-radius: 10px;
}

#searchResults a:hover 
{
  background: #f8f9fa;
}

.location-btn 
{
  /* background: linear-gradient(135deg, #ffc200, #ff9800); */
  color: #595959;
  /* border: none; */
  padding: 8px 16px;
  /* border-radius: 30px; */
  font-weight: 600;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}

.location-box 
{
  position: absolute;
  top: 50px;
  left: 0;
  width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  display: none;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn 
{
  from {opacity:0; transform:translateY(10px);}
  to {opacity:1; transform:translateY(0);}
}

#citySuggestions 
{
  max-height: 150px;
  overflow-y: auto;
}

#citySuggestions a 
{
  cursor: pointer;
}

hr
{
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: solid 1px #c0c0bc;
    opacity: .25;
}

/* SUMMARY */
.summary
{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* .btn-yellow{
  background:#ffc200;
  border:none;
  font-weight:600;
} */


.object-cover 
{
    -o-object-fit: cover;
    object-fit: cover;
}

.rounded-lg 
{
    border-radius: 0.75rem;
}
.w-full 
{
    width: 100%;
}
.h-32 
{
    height: 8rem;
}

.sticky
{
    position: sticky;
}

.tracking-tight
{
    letter-spacing: -.025em;
}
.leading-none
{
    line-height: 1;
}

.hover\:text-amber-600:hover
{
    --tw-text-opacity: 1;
    color: #ffa700;
}

.leading-tight
{
    line-height: 1.25;
}

.text-4xl
{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-right 
{
    text-align: right;
}
.bg-yellow
{
    background-color: #ffc200;
}



button:focus:not(:focus-visible)
{
    outline: 0;
}
.navbar-toggler:focus 
{
    text-decoration: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.navbar-toggler 
{
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid rgb(247 239 239 / 15%);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.navbar-toggler:hover 
{
    background-color: rgba(0, 0, 0, 0.057);
}

.alert_div
{
    display: flex;
    align-items: center;
    background-color: #198754;
    color: #fff;
    padding: 15px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Add padding to body so footer widget doesn't overlap content */
@media (max-width: 991.98px) 
{
    body
    { 
        padding-bottom: 60px;
    }
}

.rating-stars:hover 
{
    color: #ffc200 !important;
    cursor: pointer;
    transition: color 0.2s ease;
}

.form-control:focus 
{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ffc200;
    outline: 0;
    box-shadow: 0 0 0 0.01rem rgba(249, 210, 14, 0.961);
}
.form-select:focus 
{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ffc200;
    outline: 0;
    box-shadow: 0 0 0 0.01rem rgba(249, 210, 14, 0.961);
}

.form-range::-webkit-slider-thumb
{
    background-color: #ffc200;
}
.form-range::-moz-range-thumb
{
    background-color: #ffc200;
}
.form-range:focus::-webkit-slider-thumb
{
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(255, 194, 0, 0.25);
}
.form-range:focus::-moz-range-thumb
{
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(255, 194, 0, 0.25);
}
.form-range::-webkit-slider-runnable-track
{
    background-color: #dee2e6;
}
.form-range::-moz-range-track
{
    background-color: #dee2e6;
}

.main-img 
{ 
    width: 100%; 
    height: 500px; 
    object-fit: cover;
    border-radius: 12px; 
}
.thumb-img 
{ 
    width: 100%; 
    height: 100px; 
    object-fit: cover; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.3s; 
}
.thumb-img:hover 
{ 
    opacity: 0.7; 
}
.product-info-card 
{ 
    background: #fff; 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
}
.banner_section
{
    background: linear-gradient(135deg, #fff9f0 0%, #fff1e0 100%);
    border-bottom: 1px solid #ffe0b2;
}

.form-section-title
{
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}
.form-control, .form-select, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
    border: 1px solid #e5e7eb !important;
    /* border-radius: 8px !important; */
    padding: 0.6rem 0.75rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: #fbbf24 !important;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fffbeb !important;
    border: 1px solid #fde68a !important;
    color: #92400e !important;
    border-radius: 4px !important;
}
.vendor-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.login-container
{ 
    max-width: 420px;
    margin: 100px auto;
}
.auth-card 
{ 
    border: none; 
    border-radius: 20px; 
    background: #ffffff; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.05); 
    overflow: hidden; 
}
.auth-header 
{ 
    background: #fff; 
    padding: 40px 30px 20px; 
    text-align: center; 
}
.auth-toggle 
{ 
    background: #f1f3f5; 
    border-radius: 12px; 
    padding: 4px; 
    display: flex; 
    margin: 0 30px 30px; 
}
.auth-toggle button 
{ 
    flex: 1; 
    border: none; 
    padding: 12px; 
    border-radius: 10px; 
    background: transparent; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: #6c757d; 
    transition: all 0.3s ease; 
}
.auth-toggle button.active 
{ 
    background: #ffffff; 
    color: #d97706; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
}
.otp-input-group 
{ 
    display: none; 
}
.error-box 
{ 
    background: #fff5f5; 
    border-left: 4px solid #f87171; 
    color: #991b1b; 
    padding: 12px; 
    border-radius: 8px; 
    font-size: 0.85rem; 
    margin-bottom: 20px; 
    display: none; 
}
.success-box 
{ 
    background: #f0fdf4; 
    border-left: 4px solid #4ade80; 
    color: #166534; 
    padding: 12px; 
    border-radius: 8px; 
    font-size: 0.85rem; 
    margin-bottom: 20px; 
    display: none; 
}

body 
{
    background-color: #f8fafc !important;
}
.vendor-sidebar-card
{
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.nav-link-custom
{
    padding: 0.8rem 1.2rem;
    border-radius: 0.75rem;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.nav-link-custom:hover, .nav-link-custom.active
{
    background-color: #fffbeb;
    color: #d97706;
}
.stat-card 
{
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}
.stat-card:hover
{
    transform: translateY(-5px);
}