/* Top ticker (GSAP-driven, gapless) */
.top-ticker {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-secondary, var(--font-base));
  font-size: var(--fs-sm);
}

.top-ticker .ticker {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  /* fade edges to improve readability */
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.top-ticker .ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  /* important: no gap between A and B to avoid seam */
  width: max-content;
  padding-block: 0.4rem;
  will-change: transform;
}

.top-ticker .ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* no gap between items for continuous flow */
  white-space: nowrap;
}

.top-ticker .ticker__group span {
  display: inline-block;
  padding-inline: 150px;
  /* padding inside each span, not gap between */
  opacity: 0.95;
  line-height: 1.8;
  /* taller line for readability */
  letter-spacing: 0.1px;
  font-size: 15px;
  font-weight: 500;
}


.top-ticker strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* Pause on hover */
.top-ticker:hover {
  cursor: default;
}

/* =============================
   Header (navbar + offcanvas)
============================= */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header .navbar {
  padding: var(--space-2) 0;
}

.site-header .navbar-brand {
  padding: 0;
}

.site-header .navbar-brand img {
  display: block;
  width: auto;
}

/* Desktop Navigation - Right */
.site-header .navbar-nav-right {
  margin-left: auto;
}

.site-header .navbar-nav-right .nav-link {
  color: var(--color-body);
  font-weight: 500;
  font-size: var(--fs-base);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.site-header .navbar-nav-right .nav-link:hover {
  color: var(--color-primary);
}

.site-header .navbar-nav-right .nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

/* Login Button */
.btn-login {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 0.7rem 2rem;
  font-weight: 600;
  background: var(--color-white);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 16px;
}

.btn-login:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Mobile Toggle Button */
.site-header .navbar-toggler {
  padding: 0.25rem 0.5rem;
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas (Mobile) */
.site-header .offcanvas {
  background: var(--color-white);
}

.site-header .offcanvas-header {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-3);
}

.site-header .offcanvas-title {
  font-weight: 600;
  color: var(--color-body);
}

.site-header .offcanvas-body {
  padding: var(--space-3);
}

.site-header .offcanvas .nav-link {
  color: var(--color-body);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.site-header .offcanvas .nav-link:last-child {
  border-bottom: none;
}

.site-header .offcanvas .nav-link:hover {
  color: var(--color-primary);
}

.site-header .offcanvas .nav-link.active {
  color: var(--color-primary);
}

.site-header .offcanvas .btn-login {
  width: 100%;
  text-align: center;
}
@media(max-width:1366px){
  .site-header .navbar-brand img{
    width: 140px;
  }
}

@media (max-width:991px) {
  .btn-login {
  padding: 0.3rem 1rem;
}
}
/* =============================
   Hero Section
============================= */
.hero--bg {
  background-image: url('/assets/images/hero-section/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.hero--bg:before {
  content: "";
  background: #2B653E;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 92%;
}

.hero-title {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 49px;
  color: white;
}

.hero-cta {
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  text-transform: uppercase;
  margin-bottom: 69px;
}

.hero-cta svg {
  width: 24px;
  margin-left: 10px;
}

.hero-cta:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: column;
  text-align: center;
}

.hero-feature__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature__text {
  font-weight: 600;
  opacity: 0.95;
}

.hero-quote {
  background: #d0b000;
  /* gold card */
  color: #163a27;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-quote__title {
  font-weight: 800;
  font-size: clamp(1.75rem, 1.5rem + 2.5vw, 2.75rem);
  text-align: center;
  color: var(--color-white);
}

.hero-quote__lead {
  text-align: center;
  color: var(--color-white);
  font-size: var(--fs-lg);
  margin-bottom: 47px;
}

.hero-metal {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.hero-metal .btn {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 0.4rem 0.9rem;
  display: inline-grid;
  border-radius: 10px;
  font-weight: 600;
}

.hero-metal .btn.active,
.hero-metal .btn:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.hero-karats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-karats .pill {
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-weight: 700;
  width: 55px;
  height: 55px;
}
.card-body.hero-quote button:focus{
  box-shadow: none;
}
.hero-karats .pill.active,
.hero-karats .pill:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.hero-price {
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.hero-amount {
  font-weight: 900;
  font-size:36px;
  color: var(--color-primary);
}

.hero-grams {
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-body);
}

.gram-text {
  font-size: 29px;
  font-weight: 700;
}

/* responsive css */
@media(max-width:576px) {
  .hero-quote {
    padding: 1rem;
  }

  .hero-metal {
    gap: 10px;
    margin-bottom: 15px;
  }

  .hero-quote__lead {
    margin-bottom: 30px;
  }

  .gram-text {
    font-size: 22px;
  }

  .hero-amount {
    font-size: 22px;
  }

  .hero-title {
    margin-bottom: 30px;
  }

  .hero-cta {
    margin-bottom: 30px;
  }
 
}

/* =============================
   What Can You Sell Section
============================= */
.sell-section {
  background: var(--color-white);
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: var(--fs-2xl);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-3);
}

/* Decorative underline with dot */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 2px;
  background-color: var(--color-body);
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--color-body);
  border-radius: 50%;
  z-index: 1;
  border: 14px solid var(--color-white);
}

.sell-card {
  background: var(--color-white);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 235px;
}

.sell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.sell-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-white) 40%, transparent);
}

.sell-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sell-card__label {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-22);
  color: var(--color-body);
  background: color-mix(in srgb, var(--color-white) 80%, transparent);
  border-radius: 0 0 0.75rem 0.75rem;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.sell-card:hover .sell-card__label {
  color: var(--color-white);
  background: color-mix(in srgb, var(--color-secondary) 80%, transparent);
}

/* =============================
   Why Choose Us Section
============================= */
.why-choose-section {
  background: var(--color-bg);
}

.why-choose-section .section-title::before {
  border: 14px solid #F9F9F9;
}

.why-card {
  background: var(--color-white);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #DFDFDF;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: var(--color-primary);
  color: var(--color-white);
}

.why-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.why-card--primary .why-card__icon {
  color: var(--color-white);
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-body);
  font-family: var(--font-base);
}

.why-card:hover .why-card__title {
  color: var(--color-white);
}

.why-card--primary .why-card__title {
  color: var(--color-white);
}

.why-card__text {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-body);
  margin: 0;
  font-weight: 500;
}

.why-card:hover .why-card__text {
  color: var(--color-white);
}

.why-card:hover .why-card__icon {
  filter: brightness(0) invert(1);
}

/* =============================
   How To Sell Section
============================= */
.how-sell-section {
  background: var(--color-white);
}

.sell-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.sell-steps::before {
  content: '';
  position: absolute;
  left: 65px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-right: 2px dotted var(--color-primary);
}

.sell-step {
  position: relative;
  display: grid;
  grid-template-columns: 134px 1fr;
  gap: 1.3rem;
  padding: 0 0 2.05rem 0;
  align-items: center;
}

.sell-step:last-child {
  padding-bottom: 0;
}

.sell-step__icon {
  width: 134px;
  height: 134px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-primary);
  border: 18px solid #efeedd;
  z-index: 1;
}

.sell-step__title {
  font-weight: 700;
  font-size: var(--fs-lg);
  margin: 0 0 0.25rem;
}

.sell-step__text {
  margin: 0;
  color: var(--color-body);
  font-size: var(--fs-lg);
  font-weight: 500;
}

/* Envelope card */
.envelope-card {
  background: var(--color-white);
  border-radius: 1rem;
  border: 1px solid var(--color-primary);
  padding: 1.2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.envelope-card__title {
  font-weight: 700;
  font-size: var(--fs-2xl);
  color: var(--color-body);
  font-family: var(--font-base);
  letter-spacing: -1px;
  text-align: center;
}

.envelope-card__lead {
  margin-bottom: 1.4rem;
  text-align: center;
  color: #333333;
}

.envelope-card .form-label {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.envelope-card .form-control {
  border-radius: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
}

.envelope-card .form-check-label {
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.envelope-card__foot a {
  color: var(--color-primary);
}

/* hide default checkbox */
.custom-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  height: 0;
  width: 0;
}

/* layout */
.custom-checkbox {
  font-size: 14px;
  padding-left: 0 !important;
}

/* the custom box */
.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-primary, var(--color-body));
  border-radius: 4px;
  /* make it round = 50% */
  display: inline-block;
  position: relative;
  transition: 0.2s;
}

/* when checked */
.custom-checkbox input:checked+.checkmark {
  background: var(--color-primary, var(--color-body));
  border-color: var(--color-primary, var(--color-body));
}

/* check icon */
.custom-checkbox input:checked+.checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.envelope-form .u-btn-primary {
  width: fit-content !important;
  margin: 0 auto;
  display: inherit;
}

.envelope-form .u-btn-primary:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-primary);
}

/* =============================
   Process Section
============================= */
.process-section {
  background: var(--color-white);
}

.process-section.u-section {
  padding-top: 50px;
  /* margin-bottom: 100px; */
}

div#process-list-content {
  margin-top: -141px;
}

.process-list {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.process-item {
  position: relative;
  height: 44vh;
  padding-top: 15vh;
}

.process-content-wrapper {
  position: sticky;
  top: var(--stick-top);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: center;
  overflow: hidden;
  will-change: transform, opacity;
  background: var(--color-white);
  /* keep your image backgrounds below as-is */
}

.process-content-wrapper.item-1 {
  background: url('/assets/images/process-section/process-1.png') no-repeat center center;
  background-size: cover;
}

.process-content-wrapper.item-2 {
  background: url('/assets/images/process-section/process-2.png') no-repeat center center;
  background-size: cover;
}

.process-content-wrapper.item-3 {
  background: url('/assets/images/process-section/process-3.png') no-repeat center center;
  background-size: cover;
}

.process-content-wrapper.item-4 {
  background: url('/assets/images/process-section/process-4.png') no-repeat center center;
  background-size: cover;
}

.process-content {
  position: relative;
  z-index: 1;
  padding-left: 93px;
}

.process-title {
  font-weight: 700;
  font-size: var(--fs-3xl);
  margin-bottom: 0.5rem;
  font-family: var(--font-base);
}

.process-text {
  margin: 0;
  max-width: 520px;
  font-size: var(--fs-md);
  color: var(--color-body);
}

.process-figure {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.process-figure img {
  max-width: 350px;
  height: auto;
  margin-right: 56px;
}

@media (max-width: 991.98px) {
  .process-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .process-figure {
    margin-bottom: 0.75rem;
  }

  .process-content {
    padding-left: 40px;
  }

  .process-figure img {
    margin-right: 0px;
  }

  .process-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .process-content-wrapper {
    grid-template-columns: 1fr;
  }

  .process-figure {
    display: none;
  }

  .process-content {
    padding-left: 0;
  }

  .process-item {
    position: relative;
    height: 25vh;
    padding-top: 16vh;
  }

  div#process-list-content {
    margin-top: -100px;
  }

  .sell-steps::before {
    height: 80%;
    top: 40px;
  }
}

/* =============================
   Testimonials Section
============================= */
.testimonials-section {
  background: var(--color-bg);
}

.testimonials-section .section-title::before {
  border: 14px solid var(--color-bg);
}

.testimonials-slider {
  position: relative;
  margin-top: var(--space-4);
}

.process-item:last-of-type {
  margin-bottom: 100px;
}

/* .testimonialSwiper {
  padding-bottom: 60px;
} */

.modal-backdrop.fade.show {
    background-color: transparent;
}

.offcanvas-backdrop.show{
    background: transparent;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote {
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  /* position: absolute;
  top: 1rem;
  left: 1.5rem; */
}

.testimonial-stars-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  align-items: center;
}

.testimonial-stars .star {
  color: var(--color-secondary);
  font-size: 1.25rem;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-body);
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  font-weight: 500;
  position: relative;

}

.testimonial-text:after {
  content: "";
  width: 70%;
  height: 1px;
  background: transparent;
  display: block;
  padding: 0 0 1.5rem 0;
  border-bottom: 1px solid #E9EFF5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-body);
  margin: 0 0 0.25rem 0;
  font-family: var(--font-base);
}

.testimonial-location {
  font-size: var(--fs-md);
  color: var(--color-muted);
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 500;
  color: #717276;
}

.testimonial-nav-buttons {
  position: relative !important;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
}

.testimonial-nav-btn {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  border: 1px solid var(--color-border) !important;
  background: var(--color-white) !important;
  margin: 0 !important;
  position: static !important;
  transition: all 0.3s ease;
  color: var(--color-body) !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.swiper-button-next.testimonial-nav-btn {}

.testimonial-nav-btn::after {
  display: none;
}

.testimonial-nav-btn::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-button-prev.testimonial-nav-btn::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-nav-btn:hover:not(.swiper-button-disabled) {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 4rem;
    top: 0.5rem;
    left: 1rem;
  }
}

/* =============================
   FAQ Section
============================= */
.faq-section {
  background: var(--color-white);
}

.faq-container {
  border-radius: 1rem;
  border: 1px solid #FFEA81;
  padding: 2rem;
  margin-top: var(--space-4);
  box-shadow: 24px 3px 53px 0px rgba(161, 155, 155, 0.10),
    97px 11px 97px 0px rgba(161, 155, 155, 0.09),
    217px 24px 131px 0px rgba(161, 155, 155, 0.05);
}

.faq-container .accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
}

.faq-container .accordion-item {
  background: transparent;
  border: none;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.faq-container .accordion-item:last-child {
  border-bottom: none;
}

.faq-container .accordion-button {
  background: transparent;
  border: none;
  /* padding: 1.25rem 0; */
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.accordion-header {
  font-family: var(--font-base);
}

.faq-container .accordion-button::after {
  display: none;
}

.faq-container .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-primary);
}

.faq-container .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-number {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-body);
  min-width: 40px;
  flex-shrink: 0;
}

.faq-container .accordion-button:not(.collapsed) .faq-number {
  color: var(--color-primary);
}

.faq-question {
  flex: 1;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-body);
  text-align: left;
}

.faq-container .accordion-button:not(.collapsed) .faq-question {
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--fs-22);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1;
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
  display: inline-block;
}

.faq-container .accordion-button:not(.collapsed) .faq-icon {
  font-size: 2rem;
  font-weight: 300;
}

.faq-container .accordion-body {
  padding: 0 1rem 1.25rem 60px;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-body);
  font-family: var(--font-secondary);
}

.faq-container .accordion-item {
  padding: 20px 20px;
}

.faq-container .accordion-item.active {
  background: #F4F5FE;
  border-radius: 1.4rem;
  padding: 20px 20px;
}

@media (max-width: 767.98px) {
  .faq-container {
    padding: 1.5rem;
  }

  .faq-container .accordion-button {
    padding: 1rem 0;
    font-size: var(--fs-base);
  }

  .faq-container .accordion-body {
    padding: 0 0 1rem 40px;
  }
}

/* =============================
   Footer Section
============================= */
.site-footer {
  background: #386042;
  color: #E0E0E0;
  padding: var(--space-5) 0 var(--space-5);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin-bottom: var(--space-4);
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: var(--space-3);
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-description {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-white);
  max-width: 400px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #D4D480;
  margin-top: auto;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-contact-title {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 var(--space-2);
  font-family: var(--font-base);
}

.footer-contact-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: var(--space-5);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: #E0E0E0;
}

.contact-item a {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--fs-base);
  transition: opacity 0.3s ease;
  font-size: var(--fs-sm);
}

.contact-item a:hover {
  opacity: 0.8;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-label {
  font-size: var(--fs-lg);
  color: var(--color-white);
}

.swish-logo {
  height: 24px;
  width: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-links .separator {
  color: #E0E0E0;
  font-size: var(--fs-sm);
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-divider {
    margin-top: var(--space-3);
  }

  .footer-bottom {
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    padding: var(--space-4) 0 var(--space-4);
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-contact-title {
    font-size: var(--fs-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}



/* Dashboard-Layout */

.hero--bg.dashboard-bg {
  background-image: url('/assets/images/dashboard-page/dashboard-bg.png');
  padding: 80px 0;
}

.hero--bg.dashboard-bg:before {
  opacity: 80%;
}

.dashboard-bg ol li.breadcrumb-item {
  font-size: var(--fs-md);
}

.dashboard-bg ol li.breadcrumb-item a {
  color: var(--color-gray);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-gray);
}

/* SIDEBAR */
.dashboard-section {
  padding: 100px 0px;
}

.dashboard-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.sidebar {
  flex: 0 1 285px;
}
.dashboard-btn:hover {
    background: var(--color-primary);
}
#front-logout-form svg path{
  stroke:#dc3545!important;
} 
/* dashboard sidebar toggle */
/* sidebar toggle */
.sidebar-toggle {
  display: none;
  position: absolute;
  top: -50px;
}

.sidebar-toggle {
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: var(--color-primary);
}

.content-area {
  flex: 0 1 calc(100% - 346px);
  overflow: hidden;
}

.dash-sidebar {
  border: 1px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 285px;
  width: 100%;
}

aside.dash-sidebar a {
  font-size: var(--fs-md);
  font-weight: 600;
}

aside.dash-sidebar a i {
  font-size: var(--fs-2xl);
  font-weight: 600;
}

.dash-sidebar .nav-link {
  color: var(--color-body);
  border-radius: 1rem;
  padding:15px 25px;
  height: 64px;
  text-decoration: none;

}

.dash-sidebar .nav-link svg {
    height: 45px;
}

/* Hover should look same as active */
    .dash-sidebar .nav-link:hover {
        background: var(--color-primary);
        color: #fff !important;
    }
     
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.dash-sidebar .nav-link span svg {
    margin-right: 15px;
}
.dash-sidebar .nav-link.active span svg path {
    fill: #fff;
}
.dash-sidebar .nav-link:hover span svg path {
    fill: #fff;
}

.dash-sidebar .nav-link.active {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  padding: 2px 25px;
}

.dashboard-profile-top span {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: var(--color-white);
  text-align: center;
  line-height: 35px;
}

.profile-detail p {
  font-size: var(--fs-sm);
  color: var(--color-body);
  font-weight: 500;
}

.profile-detail h5 {
  font-size: var(--fs-md);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-base);
}

/* KPI CARDS */
.card-wrapper {
  margin-top: 16px;
  margin-bottom: 70px;
}

.kpi-card {
  border-radius: 16px;
}

.bg-soft-green {
  background-color: rgba(43, 101, 62, 0.15);
}

.bg-soft-yellow {
  background-color: rgba(208, 176, 0, 0.15);
}

.kpi-card .icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2rem;
}

.kpi-card .icon-wrap.soft-yellow {
  background-color: var(--color-secondary);
}

.kpi-card-des h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-primary);
}

.bg-soft-yellow .kpi-card-des h4 {
  color: var(--color-secondary);
}

.kpi-card-des p {
  font-size: var(--fs-sm);
  color: var(--color-body);
  font-weight: 500;
  margin: 0;
}

.recent-order-tab h5 {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: var(--fs-lg);
}

/* HEADING LINE */
.border-success {
  border-color: var(--color-primary) !important;
}

/* SEARCH INPUT */
.recent-order-tab .form-control {
  border-radius: 7px;
  border: 1px solid #E9E7E7;
  background: #FFF;
  height: 40px;
  padding-left: 40px !important;
}

.recent-order-tab .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.recent-order-tab ::placeholder {
  font-size: var(--font-sm);
  font-family: var(--font-secondary);
  color: #959BA4;
}

.recent-order-tab i.bi.bi-search {
  color: #959BA4;

}

.recent-order-tab .btn {
  border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: bold;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-order-tab .btn:hover {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

/* TABLE */

/* Wrapper: gold border + rounded + mobile scroll */
.table-responsive.dashboard-table-custom {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;

  background: var(--color-white);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  /* clip header to radius */
}

/* nice thin horizontal scrollbar */
.table-responsive.dashboard-table-custom::-webkit-scrollbar {
  height: 6px;
}

.table-responsive.dashboard-table-custom::-webkit-scrollbar-thumb {
  background: var(--color-gray);
  border-radius: 10px;
}

/* Table reset so wrapper border shows cleanly */
.table-responsive.dashboard-table-custom .table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  white-space: nowrap;
  /* helps mobile scroll */
  background: transparent;
}

/* Header */
.table-responsive.dashboard-table-custom .table thead {
  background: var(--color-secondary);
}

.table-responsive.dashboard-table-custom .table thead th {
  color: var(--color-white);
  font-weight: 700;
  padding: 14px 16px;
  border: 0;
  vertical-align: middle;
  font-size: var(--fs-sm);
}

.table-responsive.dashboard-table-custom .table tr {
  text-align: center;
}

/* Column borders (thead + tbody) */
.table-responsive.dashboard-table-custom .table th,
.table-responsive.dashboard-table-custom .table td {
  border-right: 1px solid var(--color-border);
}

.table-responsive.dashboard-table-custom .table th:last-child,
.table-responsive.dashboard-table-custom .table td:last-child {
  border-right: none;
}

/* Body rows */
.table-responsive.dashboard-table-custom .table tbody td {
  padding: 16px;
  border-top: 1px solid #EAEAEA;
  color: #2D2F30;
  vertical-align: middle;
  font-size: var(--fs-sm);
  font-weight: 500;
}


.table-responsive.dashboard-table-custom .badge.text-danger {
  color: #EF2131 !important;
  border: 1px solid #EF2131 !important;
  width: 75px;
  height: 20px;
  vertical-align: middle;
  border-radius: 4px;
  background: rgba(239, 33, 49, 0.10);
  line-height: normal;
}

.table-responsive.dashboard-table-custom .badge.text-success {
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  width: 75px;
  height: 20px;
  vertical-align: middle;
  border-radius: 4px;
  background: rgba(43, 101, 62, 0.10);
}

/* View button (works for <a> or <button>) */
.table-responsive.dashboard-table-custom .view-link {
  display: inline-block;
  background: var(--color-body);
  color: var(--color-white) !important;
  border: none;
  border-radius: 4px;
  padding: 4px 14px;
  font-size: 11px;
  text-decoration: none;
  text-align: center;
}

/* Ensure center alignment on Action column */
.table-responsive.dashboard-table-custom td.text-center,
.table-responsive.dashboard-table-custom th.text-center {
  text-align: center !important;
}

@media (max-width: 1024px) {
  .sidebar-toggle {
    display: block;
  }

  .content-area {
    flex: 0 1 calc(100% - 0px);
    margin-top: 20px;
  }

  .sidebar {
    flex: 0 1 285px;
    position: absolute;
    margin-left: -100%;
    z-index: 1000;
    transition: margin-left 0.3s ease-in-out;
  }

  .sidebar.is-open {
    margin-left: 0;

  }

}


/* ----------------------- */
/* order-page-css */
/* ----------------------- */


.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination-info span {
  font-weight: 600;
}

.pagination {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.pagination li {
  display: inline-block;
}

.page-number,
.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 600;
}

.page-number:hover,
.page-btn:hover {
  border-color: var(--color-primary);
  text-decoration: none;
  color: var(--color-primary);
}

.page-number.active {
  background-color: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-primary);
}

.dots {
  padding: 0 6px;
  color: #888;
}

a.page-btn.arrow-icon {
  font-size: 20px;
}



/* ----------------------- */
/* order-Detail-page-css */
/* ----------------------- */


/* Billing Address card */
.address-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 35px 30px;
  margin: 60px 0px;
  background-color: #F9F9F9;
  box-shadow: var(--shadow);
}

.card-header-custom {
  margin-bottom: 20px;
}

.order-detail-heading {
  margin-bottom: 30px;
}

.address-card .card-header-custom h6 {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 10px;
  font-size: var(--fs-md);
  font-family: var(--font-base);
}

.address-card .field-label {
  font-weight: 500;
  color: var(--color-body);
  margin-bottom: .25rem;
}

.address-card .field-value {
  color: var(--color-muted);
  font-size: var(--fs-sm);
}

.margintop10 {
  margin-top: 30px;
}

/* Offer banner */
.offer-card {
  background-image: url('/assets/images/order-details/offer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}


.offer-card .card-body {
  position: relative;
  z-index: 1;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.text-offer {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-2xl);
  font-family: var(--font-base);
}

.btn-redeem {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 5px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: var(--fs-base);
  width: 200px;
}

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

/* Trigger button (optional – matches your style) */


.modal-dialog.modal-custom {
  max-width: 655px;
  margin: 1.75rem auto;
  height: 400px;
}

.offer-modal .modal-content {
  background: var(--color-primary);
  color: var(--color-white);
  border: 0;
  border-radius: 20px;
  position: relative;
}

.offer-modal .modal-body {
  position: relative;
}

/* Confetti (simple repeating svg top & bottom) */
.offer-modal .modal-content::before {
  position: absolute;
  left: -95px;
  top: -120px;
  height: 310px;
  width: 310px;
  background-image: url('/assets/images/order-details/left-paper.png');
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  z-index: 3;
}

.offer-modal .modal-content::after {
  position: absolute;
  right: -85px;
  top: -110px;
  height: 310px;
  width: 310px;
  background-image: url('/assets/images/order-details/left-paper.png');
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  z-index: 3;
}

/* Big amount */
.offer-amount {
  font-size: 118px;
  letter-spacing: .5px;
  font-family: var(--font-heading);
}

/* Buttons inside modal */
.offer-modal .btn-decline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 5px;
  padding: 13px 38px;
  font-size: var(--fs-base);
  font-family: var(--font-base);
}

.offer-modal .btn-decline:hover {
  background: rgba(255, 255, 255, .08);
}

.offer-modal .btn-accept {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 0;
  border-radius: 5px;
  padding: 13px 38px;
  font-size: var(--fs-base);
  font-family: var(--font-base);
}

.offer-modal .btn-accept:hover {
  filter: brightness(.95);
}

/* Backdrop stronger + soft blur for the page behind */
.modal-backdrop.show {
  opacity: .6;
}
/* ===== Baseline tweaks (keep your look) ===== */
.offer-modal .modal-content {
  overflow: visible;                /* allow ::before/::after to sit outside */
  will-change: transform, opacity;  /* smoother pop-in */
}
.offer-modal .modal-dialog {
  transform-origin: center;
}

/* ===== OPENING ANIMATIONS ===== */

/* Modal pop-in */
.offer-modal.show .modal-dialog {
  animation: modalPopIn 520ms cubic-bezier(.2,.8,.2,1) both;
}

/* Side papers (your ::before / ::after): enter + gentle float */
.offer-modal.show .modal-content::before {
  animation:
    confettiInLeft 600ms ease-out both,
    confettiFloat 7s 600ms ease-in-out infinite alternate;
}
.offer-modal.show .modal-content::after {
  animation:
    confettiInRight 600ms ease-out both,
    confettiFloat 7s 600ms ease-in-out infinite alternate-reverse;
}

/* Party-popper image: pop in then a soft wiggle */
.offer-modal.show .modal-body > .mb-3 img {
  animation: popperIn 520ms 80ms ease-out both, popperWiggle 4.6s 620ms ease-in-out infinite;
  transform-origin: 60% 40%;
  will-change: transform;
}

/* Big amount: pop + glow */
.offer-modal.show .offer-amount {
  animation: amountPulse 680ms 140ms ease-out both, amountGlow 2.4s 720ms ease-in-out infinite;
  will-change: transform, text-shadow;
}

/* Buttons: staggered fade-up */
.offer-modal.show .btn-decline {
  animation: fadeUp 420ms 260ms ease-out both;
}
.offer-modal.show .btn-accept {
  animation: fadeUp 420ms 320ms ease-out both;
}

.offer-modal .modal-dialog {
  overflow: visible !important;
}

.offer-modal .modal-content {
  position: relative;
  overflow: visible !important;
  border-radius: 20px;
}
.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none; /* Don't block clicks */
  z-index: 10;
}



/* responsive css */
@media(max-width:576px) {
  .offer-modal .modal-content::before {
    left: 0;
    top: -90px;
    height: 200px;
    width: 200px;
  }

  .offer-modal .modal-content::after {
    right: 0;
    top: -90px;
    height: 200px;
    width: 200px;
  }

  .offer-amount {
    font-size: 58px;
  }
  .margintop10 {
    margin-top: 20px;
}
.modal-dialog.modal-custom {
    max-width: 335px;
}
}




/* ----------------------- */
/* profile-page-css */
/* ----------------------- */

.profile-wrapper {
  border-radius: 24px;
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
  box-shadow: var(--shadow);
}

.profile-wrapper-custom {
  padding: 0px 50px 30px 50px;
}

.profile-wrapper h5 {
  color: var(--color-primary);
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 30px;
  margin-bottom: 25px;
}

.profile-image-wrapper .edit-icon {
  font-size: 14px;
  line-height: 14px;
}

.profile-img-btn button.btn {
  color: #FFF;
  text-align: center;
  font-family: var(--font-base);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: var(--color-primary);
  padding: 10px 10px;
}

.remove-image-link {
  color: var(--color-body);
  border-bottom: 1px solid var(--color-body);
  padding-bottom: 2px;
  font-family: var(--font-base);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.remove-image-link:hover {
  color: var(--color-body);
}

.profileinfo {
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
  box-shadow: var(--shadow);
  padding: 30px 45px;
  margin-left: 5px;
}

.profile-page-wrapper {
  margin-top: 30px;
}

.profileinfo h5 {
  color: var(--color-primary);
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.profileinfo .form-label {
  color: #333;
  font-family: var(--font-base);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

button.btn.profilebtn {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: auto;
  display: block;
  background-color: var(--color-primary);
  padding: 13px 49px;
  margin-top: 40px;
}

.profileinfo input {
  border-radius: 8px;
  border: 1px solid #DDD;
  background: #FFF;
  height: 42px;
}

.profileinfo input::placeholder {
  color: #BBB;
  font-family: var(--font-base);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.site-header .offcanvas {
    display: none;
}
@media(max-width:992px){
  .site-header .offcanvas {
    display: block;
}

}

button#frontSsnSubmit {
    background-color: var(--color-primary);
        border: none;
}

.btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

