:root {
  --white: #ffffff;
  --black: #111111;
  --mid: #555555;
  --light: #f5f5f3;
  --border: #d8d8d4;
  --bodyFont: "Spectral", serif;
  --headingFont: "Lovelo Black";
}

.relative,
body,
html {
  position: relative;
}

body,
ul {
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-weight: normal;
  line-height: 1.4 !important;
  font-size: 16px;
  font-weight: 400;
  font-weight: normal;
  font-family: var(--bodyFont);
  color: var(--primary-color);
  background: url(../images/pattern.jpg) no-repeat top left; background-size: cover; 
  position: relative;
  z-index: 0;
  /* overflow-y: hidden;
  overflow-x: hidden; */
  min-height: 100%;
}

html {
  height: 100%;
}

ul {
  list-style: none;
}

.btn,
button {
  display: inline-block;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  display: inline-block;
  outline: 0 !important;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn,
a,
a:focus,
a:hover,
button {
  text-decoration: none;
  outline-style: none;
}

.btn {
  text-align: center;
  padding: 0 38px;
  font-size: 16px;
  border-radius: 30px;
  display: inline-block;
  line-height: 50px;
  height: 50px;
  font-weight: 600;
  border-width: 1px;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;

  i {
    font-size: 14px;
    margin-left: 10px;
  }
}

.btn-outline {
  background: transparent;
  padding: 0 48px;
  border: var(--black) 1px solid;
  color: var(--black);
}

.btn.btn-outline:hover {
  color: var(--bs-white);
  background: var(--black);
}

.btn:hover {
  background: var(--mid);
  border-color: var(--secondary-color2) !important;
  color: var(--bs-white);
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  color: var(--secondary-color2);
  font-family: var(--headingFont);
}

h1 {
  font-size: 46px;
  font-family: "Lovelo Black";
}

h2 {
  font-size: 45px;
  font-family: "Lovelo Black";
}

h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--bodyFont);
}

h4 {
  font-size: 18px;
  font-weight: 800;
  color: #292929;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 20px;
}

.p-v-120 {
  padding: 120px 0;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.site-header {
  position: absolute;
  left: 0;
  top: 38px;
  width: 100%;
  z-index: 100;
}

.nav-pill {
  /* background: var(--white); */
  padding: 24px 42px;
  border-radius: 125px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  -webkit-border-radius: 125px;
  -moz-border-radius: 125px;
  -ms-border-radius: 125px;
  -o-border-radius: 125px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.07);
    border-radius: 125px;
    -webkit-border-radius: 125px;
    -moz-border-radius: 125px;
    -ms-border-radius: 125px;
    -o-border-radius: 125px;
    border: #fff 1px solid;
    backdrop-filter: blur(10px);
    z-index: -1;
  }
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* StellarNav overrides */
.stellarnav {
  width: auto;
}

.stellarnav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.stellarnav ul li a {
  font-family: var(--bodyFont);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  padding: 0px 15px;
  transition: color 0.2s;
}

.stellarnav ul li a:hover {
  color: #858383;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;

  a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.nav-icons svg {
  width: 20px;
  height: 20px;
  fill: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-icons svg:hover {
  opacity: 0.5;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;

  .row {
    min-height: 809px;
    align-items: flex-end;
  }

  h1 {
    color: rgba(0, 0, 0, 0.53);
  }
}

/* diagonal clip on the image side */
.hero-image-col {
    position: absolute;
    right: 0;
    top: 0;
    width: 54.8%;
    height: 100%;
    clip-path: polygon(51% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* text side */
.hero-text-col {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 291px;
  /* min-height: calc(100vh - 100px); */
}

.hero-headline {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.25em;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.18);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-sub {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.55;
  color: var(--black);
  margin: 30px 0;
  max-width: 70%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-dark-custom {
  border: 1.5px solid var(--black);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline-dark-custom:hover {
  background: var(--black);
  color: var(--white);
}

.btn-fill-dark {
  border: 1.5px solid var(--black);
  background: var(--black);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-fill-dark:hover {
  background: transparent;
  color: var(--black);
}

.arrow-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ─── BIG WORDMARK ───────────────────────────────────────── */
.brand-wordmark {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.brand-wordmark h2 {
  font-family: "Lovelo Black";
  font-size: 175px;
  letter-spacing: 30px;
  line-height: 0.8;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  background: linear-gradient(to right, var(--black) 47%, var(--white) 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── ABOUT US SECTION ───────────────────────────────────── */
.about-section {
}

/* Left embroidery image — square, flush left */
.about-img-left {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

/* Middle text block */
.about-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  p {
    margin: 25px 0 30px 0;
  }
}

/* Right polo image — flush right, taller */
.about-img-right-wrap {
  position: relative;
  height: 616px;
}

.about-img-right {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 200px 200px 7px 7px;
  -webkit-border-radius: 200px 200px 7px 7px;
  -moz-border-radius: 200px 200px 7px 7px;
  -ms-border-radius: 200px 200px 7px 7px;
  -o-border-radius: 200px 200px 7px 7px;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 50px;
}

.stat-item {}

.stat-number {
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--black);
}

/* ─── PRE-DESIGNED COLLECTION ────────────────────────────── */
.collection-swiper {
  width: 100%;
  margin-top: 54px;
  padding-bottom: 50px;
  /* padding: 0 48px 54px !important; */
}

.collection-swiper .swiper-slide {
  width: auto;
}

.product-card {
  /* width: 260px; */
  cursor: pointer;

  h3 {
    margin-top: 12px;
  }
}

.product-card-img {
  width: 100%;
  height: 476px;
  object-fit: cover;
  border-radius: 7px;
  display: block;
  transition: transform 0.35s ease;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.product-card:hover .product-card-img {
  transform: scale(1.03);
}

/* .product-card.tall .product-card-img {
  height: 390px;
} */
.product-card-info {
  padding: 14px 0 0;
}

.collection-swiper .swiper-pagination {
  bottom: 0;
}

.collection-swiper .swiper-pagination-bullet {
  width: 46px;
  height: 7px;
  border-radius: 2px;
  background: #ccc;
  opacity: 1;
  transition:
    background 0.2s,
    width 0.2s;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.collection-swiper .swiper-pagination-bullet-active {
  background: var(--black);
  width: 89px;
}

.collection-swiper .swiper-slide:nth-child(even) .product-card-img {
  height: 362px;
}

.collection-swiper .swiper-wrapper {
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════════════════════════ */
.how-section {
  .row.justify-content-center .custom-card::before {
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }

  h2 {
    margin-bottom: 30px;
  }

  .custom-card {
    position: relative;
    background: #e9e9e9;
    margin-bottom: 0;
    padding: 37px 27px;
    overflow: hidden;
    position: relative;

    h3 {
      font-family: "Lovelo Black";
      font-size: 30px;
      font-weight: normal;
    }

    p {
      font-size: 16px;
      margin-top: 30px;
    }

    .nums {
      font-family: "Lovelo Black";
      font-size: 200px;
      color: var(--white);
      position: absolute;
      top: 0;
      right: 0;
      line-height: 0.8;
      text-align: right;
    }

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  /* Diagonal Shape */
  .custom-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background: rgba(255, 255, 255, 0.4);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }

  .content {
    position: relative;
    z-index: 1;
  }

  .icon-box {
    width: 103px;
    height: 103px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 59px;
  }

  .icon-box img {
    width: 53px;
  }

  .arrows {
    position: absolute;
    top: 50%;
    left: calc(100% + 6%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    img {
      height: 180px;
      object-fit: contain;
    }
  }

  .video-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding-left: 17px;

    &:hover .play-icon {
      background-color: var(--mid);
    }
  }

  .play-icon {
    width: 62px;
    height: 62px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
  }

  .video-text {
    font-size: 16px;
    color: #000;
  }

  .arrows {
    position: absolute;
    top: 50%;
    left: calc(100% + 0%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  & .row:last-child .custom-card+.arrows {
    top: 50%;
    left: calc(100% + 0%);

    img {
      height: 170px;
      object-fit: cover;
    }
  }
}




/* ── Section Wrapper ── */
.products-section {}

.products-header h2 {
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}

/* ── Swiper ── */
.products-swiper {
  width: 100%;
  padding-bottom: 52px !important;
  margin-top: 56px;
}

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

/* ── Product Card ── */
.prod-card {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.17);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.prod-card__img-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

.prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prod-card:hover .prod-card__img-wrap img {
  transform: scale(1.05);
}

/* Label footer */
.prod-card__footer {
  padding: 50px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-card__footer h3 {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin: 0;
}

.prod-card__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.prod-card:hover .prod-card__arrow {
  transform: translate(3px, -3px);
}

/* ── Pagination (matches collection-swiper from style.css) ── */
.products-swiper .swiper-pagination {
  bottom: 0;
}

.products-swiper .swiper-pagination-bullet {
  width: 46px;
  height: 7px;
  border-radius: 2px;
  background: #ccc;
  opacity: 1;
  transition:
    background 0.2s,
    width 0.2s;
}

.products-swiper .swiper-pagination-bullet-active {
  background: var(--black);
  width: 89px;
}

/* ══════════════════════════════════
       SHOWCASE SECTION
    ══════════════════════════════════ */
.showcase-section {
  position: relative;
  padding: 270px 0;
}

/* ── Centered overlay card ── */
.showcase-overlay {
  /* position: absolute;
  inset: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* let clicks pass through to cells */
  z-index: 10;
}

.showcase-card {
  pointer-events: auto;
  background: rgba(217, 217, 217, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 368.5px;
  padding: 123px 159px;
  text-align: center;
  -webkit-border-radius: 368.5px;
  -moz-border-radius: 368.5px;
  -ms-border-radius: 368.5px;
  -o-border-radius: 368.5px;
}

.showcase-card h2 {
  font-family: var(--headingFont);
  font-weight: 900;
  font-size: 45px;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 22px;
}

.showcase-card p {
  font-family: var(--bodyFont);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 40px;
}

/* testimonial */
.testimonial-section {
  h2 {
    letter-spacing: 10%;
    margin-bottom: 42px;
  }

  /* ══════════════════════════════════
       ORBIT WRAPPER
    ══════════════════════════════════ */
  .orbit-wrapper {
    position: relative;
    height: 340px;
    width: 100%;
  }

  /* ── Centre avatar ── */
  .center-avatar-wrap {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    z-index: 10;
    pointer-events: none;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }

  .center-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.16);
  }

  .center-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
  }

  /* ══════════════════════════════════
       THUMB AVATARS — absolutely placed
    ══════════════════════════════════ */
  .thumb-avatar {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
    z-index: 5;
  }

  .thumb-avatar img {
    width: 61px;
    height: 61px;
    object-fit: cover;
    display: block;
  }

  .thumb-avatar:hover {
    transform: scale(1.1);
  }

  .thumb-avatar.active-thumb {
    transform: scale(1.13);
  }

  /* Individual positions & sizes — mirror the Figma layout */
  .thumb-avatar[data-idx="0"] {
    top: 0%;
    left: 15%;
  }

  .thumb-avatar[data-idx="1"] {
    top: auto;
    bottom: 6%;
    left: 4%;
  }

  .thumb-avatar[data-idx="2"] {
    top: 70%;
    left: 23%;
  }

  .thumb-avatar[data-idx="3"] {
    top: 0;
    right: 5%;
  }

  .thumb-avatar[data-idx="4"] {
    top: 32%;
    right: 13%;
  }

  .thumb-avatar[data-idx="5"] {
    top: 71%;
    right: 0;
  }

  /* keep active thumb-1 transform correct */
  .thumb-avatar[data-idx="1"].active-thumb {
    transform: scale(1.13);
    -webkit-transform: scale(1.13);
    -moz-transform: scale(1.13);
    -ms-transform: scale(1.13);
    -o-transform: scale(1.13);
  }

  /* ══════════════════════════════════
       MAIN CONTENT SWIPER
    ══════════════════════════════════ */
  .main-swiper {
    width: 100%;
    margin-top: -13%;
  }

  .review-name {
    font-weight: 700;
    font-size: 20px;
    margin-top: 22px;
    margin-bottom: 3px;
    text-align: center;
  }

  .review-role {
    font-size: 16;
    text-align: center;
  }

  .stars {
    color: #ffaf69;
    font-size: 3rem;
    letter-spacing: 12px;
    text-align: center;
    margin: 40px 0;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
  }
}

.about-sections {

  /* Stats column */
  .stats-col {}

  .stat-item {
    padding: 38px 0;
    background: url(../images/about/line.png) no-repeat bottom left;
    background-size: contain;
  }

  .stat-item:last-child {
    background: none;
  }

  .stat-number {
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .stat-label {
    font-family: var(--bodyFont);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.12em;
    text-transform: capitalize;
    color: var(--black);
  }

  /* Center image */
  .about-center-img-wrap {
    position: relative;
    padding-left: 113px;
  }

  .about-center-img-wrap .rotating-badge {
    position: absolute;
    top: 31px;
    left: 8px;
    width: 161px;
    height: 161px;
    z-index: 5;
  }

  @keyframes rotateBadge {
    to {
      transform: rotate(360deg);
    }
  }

  .about-center-img {
    width: 100%;
    height: 501px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 7px 7px;
    display: block;
    -webkit-border-radius: 20px 20px 7px 7px;
    -moz-border-radius: 20px 20px 7px 7px;
    -ms-border-radius: 20px 20px 7px 7px;
    -o-border-radius: 20px 20px 7px 7px;
  }

  /* About text block */
  .about-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
  }

  .about-text-block p {
    line-height: 1.75;
    color: #333;
    font-size: 16px;
    margin: 30px 0 0;
  }

  /* ═══════════════════════════════
       ABOUT SECTION – BOTTOM PART
       Image | Mission/Vision/Story
    ═══════════════════════════════ */

  .about-img-right-wrap {
  }

  .about-img-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  /* Accordion-style info cards */
  .info-card {
    background: rgba(217, 217, 217, 0.36);
    border-radius: 20px;
    padding: 43px 33px;
    margin-bottom: 30px;
    transition: background 0.3s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  .info-card:last-child {
    margin-bottom: 0;
  }

  .info-card.dark {
    background: var(--black);
  }

  .info-card h4 {
    font-size: 30px;
    letter-spacing: 10%;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 14px;
  }

  .info-card.dark h4 {
    color: var(--white);
  }

  .info-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #333333;
  }

  .info-card.dark p {
    color: rgba(255, 255, 255, 0.75);
  }
}


/* dipraj */
.footer-section {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Spectral', serif;
}

/* Layout */
.footer-row {
  min-height: 500px;
  align-items: center;
  z-index: 1;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  gap: 20px;
  /* 🔥 20px spacing */
}

.footer-col {
  position: relative;
  padding: 0 50px;
}

/* Divider line */
.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 1px;
  background: url("images/Line .png") repeat-y;
  /* your divider image */
  opacity: 0.6;
}

/* Logo */
.footer-logo img {
  max-width: 220px;
  margin-bottom: 15px;
}

/* Description */
.footer-desc {
  font-size: 15px;
  margin-bottom: 20px;
}

/* Social icons */
.social-icons span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
}

/* Middle column */


.footer-content ul {
  gap: 20px;
}

.footer-content.middle li {
  margin-bottom: 12px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-item i {
  margin-right: 10px;
}

/* Subscribe */
.subscribe-title {
  margin-top: 25px;
  font-size: 13px;
  letter-spacing: 2px;
}

.subscribe-box {
  display: flex;
  align-items: center; 
  margin-top: 10px;
  background: #fffefe;
  border-radius: 30px;
  overflow: hidden;
}

.subscribe-box input {
  flex: 1;
  border: none;
  background: transparent;

  color: #000; 
  padding: 10px 15px;
  font-size: 14px;
}

.subscribe-box input::placeholder {
  color: #666;
}

.subscribe-box input:focus {
  outline: none;
}

/* Hover effect */
.subscribe-box button:hover {
  background: #f50101;
}

.subscribe-box button {
  width: 70px;
  border: 1px solid white;
  background: #000;
  color: #fff;
  border-radius: 30px;
  height: 40px;
}

/* Bottom */

/* Heading */
.footer-content h5 {
  font-size: 25px;
  font-weight: 200;

}

.footer-contentcontact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}


/* List items */
.footer-col ul li a {
  font-size: 16px;
  letter-spacing: 1.5;
}


/* Contact text */
.contact-item span {
  font-size: 16px;
}

/* Optional: keep consistency for all text */


/* Column positioning */
.footer-col {
  position: relative;
  padding: 0 15px;
}

/* Vertical divider image */
.divider.vertical1 {
    position: absolute;
    top: -10%;
    right: 8px;
    height: 140%;
    width: auto;
    opacity: 0.7;
}

.divider.vertical2 {
  position: absolute;
  top: -2%;
  right:8px;
  height: 110%;
  width: auto;
  opacity: 0.7;
}

/* Hide last column divider */

/* Bottom divider */
.footer-line {
  margin-top: 50px;
}

.footer-line img {
  width: 100%;
  height: auto;
  opacity: 0.7;
}

/* Divider image */
.footer-divider img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  margin-bottom: 20px;
}

/* Bottom content */
.footer-bottom {
  font-size: 13px;
  margin-bottom: 50px;
}

/* COMMON ICON STYLE (applies to both social + contact) */
.social-icons span,
.contact-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  background: #fff;
  color: #000;

  border-radius: 50%;
  font-size: 14px;
}

/* Social spacing */
.social-icons span {
  margin-right: 12px;
  cursor: pointer;
}

/* Contact alignment */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-bottom span {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  margin-top: 50px;
}

.contact-item1 {
  margin-top: 20px;
}

.footer-contentcontact h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Spectral', serif;
}

.footer-content h6 {
  font-family: 'Spectral', serif;
}
/* Anchor default */
.footer-section a {
  text-decoration: none;
  color: inherit;
  
}

/* Hover effect for links */
.footer-section a:hover {
  color: #ff0000;
}

/* Social icons (updated from span to a) */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border: 1px solid #fff;
  border-radius: 50%;

  margin-right: 12px;
  color: #000;
  background: #fff;

 
}

/* Social hover */
.social-icons a:hover {
  background: #e60303;
  color: #fff;
  
}

/* Contact links */
.contact-item a,
.contact-item1 a {
  color: #fff;
  font-size: 16px;
}

/* Contact hover effect */
.contact-item:hover i,
.contact-item1:hover i {
  background: #e70505;
  color: #fff;
}

/* Bottom links */
.footer-bottom a {
  color: #fff;
  margin: 0 5px;
  margin-bottom: 30px;
}

.footer-bottom a:hover {
  color: #e00808;
}

.error-banner {
  text-align: center;
  padding: 70px 0 110px;
  position: relative;
}

/* Wrapper for layering */
.error-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background image (relative) */
.error-bg {
  max-width: 503px;
  opacity: 1.2;
  margin-top: 70px;
  margin-bottom: 50px;
}

/* 404 image (absolute over bg) */
.error-404 {
  position: absolute;
  width: 420px;
  opacity: 0.7;
}

/* Title */
.error-title {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Text */
.error-text {
  font-size: 20px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
}

.error-banner .container {
  margin-top: -300px;
  /* 🔥 move up */
  position: relative;
  z-index: 3;
}

.error-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -300px;
  /* 🔥 shift left */
  width: calc(100% + 600px);
  /* 🔥 extra width both sides */
  height: 100%;
  z-index: 2;

  background: repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.05) 0px,
      rgba(0, 0, 0, 0.05) 200px,
      transparent 300px,
      transparent 600px);

  filter: blur(8px);
  opacity: 0.4;
}

.thankyou-banner {
  min-height: calc(100vh - 120px);
  background: #ffffff;
  padding: 140px 0px 100px 0px;
  z-index: 3;
  position: relative;
}

.thankyou-img img {
  max-width: 450px;
  display: block;
  margin: 0 auto;
}


.thankyou-title {
  font-family: 'Spectral', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 30px;
  color: #000;
  position: relative;
  z-index: 3;
}

.thankyou-text {
  font-size: 20px;
  color: #000000;
  line-height: 1;
  margin-bottom: 52px;
  position: relative;
  z-index: 3;
}

.thankyou-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -300px;
  /* 🔥 shift left */
  width: calc(100% + 600px);
  /* 🔥 extra width both sides */
  height: 100%;
  z-index: 2;

  background: repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.05) 0px,
      rgba(0, 0, 0, 0.05) 200px,
      transparent 300px,
      transparent 600px);

  filter: blur(8px);
  opacity: 0.6;
}

.thankyou-banner .btn {
  position: relative;
  z-index: 9;
  cursor: pointer;
}

/* SECTION */
.delivery-section {
  padding: 200px 0;
  font-family: 'Spectral', serif;
}

/* TITLE */
.section-title {
  font-size: 28px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 14px;
  margin-bottom: 30px;
}

/* FORM CARD */
.form-card {
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.card-title {
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.form-card label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

/* INPUT */
.input-group-custom {
  position: relative;
}

.input-group-custom .form-control {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border-radius: 25px;
  border: 1px solid #999;
  background: transparent;
  box-shadow: none;
}

.input-group-custom .form-control:focus {
  border-color: #000;
  box-shadow: none;
}

/* ICON FIX */
.input-group-custom i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* 🔥 important */
}

/* PAYMENT BOX */
.payment-box {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 12px;
}

.payment-box h6 {
  margin-bottom: 15px;
}

/* RADIO */
.custom-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
}

.custom-radio span {
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  border-radius: 50%;
  position: relative;
}

.custom-radio span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

.custom-radio input:checked+span::after {
  transform: translate(-50%, -50%) scale(1);
}

/* SUMMARY CARD */
.summary-card {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-inner {
  padding: 25px;
  border-radius: 15px;
  background: rgba(235, 232, 232, 0.6);
}

.summary-inner h5 {
  margin-bottom: 30px;
  font-family: 'Spectral', serif;
}

.summary-inner ul {
  list-style: none;
  padding: 0;
}

.summary-inner li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.divider-img img {
  width: 100%;
  margin: 15px 0;
}

.total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BUTTON */
.order-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
}

/* Input wrapper */
.input-group-custom {
  position: relative;
}

/* Bootstrap override */
.input-group-custom .form-control {
  border-radius: 30px;
  padding: 12px 45px 12px 15px;
  border: 1px solid #999;
  font-size: 14px;
  box-shadow: none;
}

/* Remove bootstrap focus glow */
.input-group-custom .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

/* Icon */
.input-group-custom i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Label */
.form-label {
  font-size: 13px;
  margin-bottom: 6px;
}

/* Input */
.custom-input {
  border-radius: 30px;
  padding: 12px 45px 12px 15px;
  border: 1px solid #999;
  box-shadow: none;
}

.custom-input:focus {
  border-color: #000;
  box-shadow: none;
}

/* Icon */
.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Radio */
.custom-check {
  margin-bottom: 10px;
}

.custom-check .form-check-input {
  border-radius: 50%;
  border: 1px solid #000;
}

.custom-check .form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.custom-check .form-check-label {
  margin-left: 8px;
}

.bring_your_idea {
  height: 300px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding: 0;
  color: #fff;
}
  .hero-title {
    font-size: 45px;
    letter-spacing: 5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .hero-text {
    font-family: 'Spectral', serif;
    font-size: 16px;
    line-height: 1.2;
    color: #e2e1e1;
    margin-bottom: 25px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  }
  .hero-content{
    max-width: 926px;
    margin: 0 auto;
  }

  .hero-content .btn-outline-modify{
    background-color: white;
  }
.hero-content .btn-outline-modify:hover{
   background-color: #020202;
   color: white;
    
}



.cart-section {
  padding: 200px 0;
  background: #f5f5f5;
}

/* Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.cart-header h2 {
  letter-spacing: 2px;
  padding-bottom: 30px;
}

.cart-header p {
  font-size: 14px;
  color: #0a0909;
  font-family: 'Spectral', serif;
}

/* Layout */
.cart-left {
  flex: 2;
}

.cart-right {
  flex: 1;
}

/* Card */
.cart-card {
  display: flex;
  align-items: stretch; 
  background: #fff;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  overflow: hidden; 
  min-height: 204px;
}

/* Image FULL HEIGHT */
.cart-img {
  width: 195px;
  height: 100%;
}

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

/* Info */
.cart-info {
  flex: 1;
  padding: 23px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-info .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-info h5 {
  font-family: 'Spectral', serif;
  font-size: 20px;
}

.cart-info p {
  font-size: 14px;
  color: #777;
  margin: 6px 0 12px;
}

/* Remove */
.remove {
  font-size: 16px;
  color: #1B3042;
  text-decoration: none;
  i{
    color: #000000;
  }
}

.remove:hover {
  color: red;
}

/* Quantity */
.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 6px 15px;
  gap: 15px;
  width: fit-content;
  margin-top: 15px;
}

.qty-box button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
}

/* Price BELOW quantity */
.price {
  margin-top: 10px;
  font-size: 14px;
}


/* SECTION */
/* SECTION */
.account-section {
padding-top: 200px;
padding-bottom: 100px;

}

/* MAIN WRAPPER */
.account-box {
display: flex;
border-radius: 12px;
overflow: hidden;
}

/* SIDEBAR */
.account-sidebar {
width: 260px;
background: #000;
color: #fff;
padding: 25px 20px;
height: 500px;
}

/* Divider image */
.menu-divider {
  width: 100%;
  margin-top: 10px;
  opacity: 0.6;
  display: block;
}

/* spacing fix */
.account-sidebar ul li {
  margin-bottom: 10px;
}
.account-sidebar h5 {
margin-bottom: 25px;
letter-spacing: 2px;
font-size: 28px;
}

.account-sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}

.account-sidebar ul li {
margin-bottom: 10px;
}

.account-sidebar ul li a {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 14px;
color: #fff;
text-decoration: none;
border-radius: 8px;
font-size: 14px;
transition: 0.3s;
}

.account-sidebar ul li a:hover{
background: #1a1a1a;
}

/* RIGHT CONTENT */
.account-content {
flex: 1;
background: #fff;
position: relative;
border: 1px solid rgb(189, 188, 188);
border-radius: 10px;
}

/* BLACK HEADER */
.profile-header {
height: 80px;
background: #000;
}

/* PROFILE BOX */
.profile-box {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 25px 20px;
margin-top: -40px;
}

/* LEFT PROFILE (VERTICAL) */
.profile-left {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.profile-left img {
width: 70px;
height: 70px;
border-radius: 50%;
border: 4px solid #fff;
object-fit: cover;
margin-bottom: 10px;
}

.profile-left h4 {
margin: 0;
font-size: 30px;
font-weight: 400;
font-family: 'Spectral', serif;
}

.profile-left p {
font-size: 13px;
color: #363535;
margin-top: 5px;
font-family: 'Spectral', serif;
}

/* RIGHT BUTTONS */
.profile-actions {
display: flex;
flex-direction: column;
align-items: flex-end;

margin-top: 40px;
}

.btn-outline {
border: 1px solid #ccc;
padding: 10px 25px;
border-radius: 20px;
font-size: 13px;
text-decoration: none;
color: #000;
transition: 0.3s;
min-width: 130px;
text-align: center;
margin-top: 20px;
font-family: 'Spectral', serif;
}

.btn-outline:hover {
background: #000;
color: #fff;
}

/* FILTER TABS */
.filter-tabs {
display: flex;
gap: 10px;
padding: 0 25px;
margin-bottom: 40px;
}

.filter-tabs a {
border: 1px solid #33333399;
padding: 10px 25px;
border-radius: 40px;
font-size: 16px;
text-decoration: none;
color: #333333;
transition: 0.3s;
font-family: 'Spectral', serif;
height: 50px;
line-height: 30px;

}

.filter-tabs a.active,
.filter-tabs a:hover {
background: #000;
color: #fff;
}
.nav-pills .nav-link.active{
  border: 1px solid #ccc;
padding: 12px 32px;
border-radius: 30px;
font-size: 13px;
text-decoration: none;
background-color: #000;
transition: 0.3s;
font-family: 'Spectral', serif;

}
.nav-pills .nav-link{

   border: 1px solid #ccc;
padding: 12px 32px;
border-radius: 30px;
font-size: 13px;
text-decoration: none;
background-color: #fffcfc;
color: #000;
transition: 0.3s;
font-family: 'Spectral', serif;

}

/* REQUEST LIST */
.request-list {
padding-bottom: 30px;
display: flex;
flex-direction: column;
gap: 15px;

}

/* REQUEST CARD */
.request-card {
display: flex;
align-items: stretch;
border-radius: 10px;
overflow: hidden;
border: 1px solid #eee;
background: #fafafa;
transition: 0.3s;
}

.request-card:hover {
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* IMAGE FULL HEIGHT */
.request-img {
width: 260px;
}

.request-img img {
width: 260px;
height: 100%;
object-fit: cover;
border-radius: 10px;
}

/* INFO */
.request-info {
flex: 1;
padding: 15px;
font-family: 'Spectral', serif;
}

.request-info span {
font-size: 16px;
color: #161515;
font-family: 'Spectral', serif;
}

.request-info h6 {
margin: 15px 0;
font-size: 16px;
font-family: 'Spectral', serif;
}

.request-info p {
font-size: 16px;
margin: 15px 0;
color: #111010;
font-family: 'Spectral', serif;
}

/* VIEW BUTTON */
.btn-view {
align-self: center;
margin-right: 15px;
border: 1px solid #ccc;
padding: 10px 25px;
border-radius: 20px;
font-size: 12px;
text-decoration: none;
color: #000;
transition: 0.3s;
font-family: 'Spectral', serif;
}

.btn-view:hover {
background: #000;
color: #fff;
}

.account-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}

.account-sidebar {
  width: 260px;
  background: #000;
  color: #fff;
  padding: 25px 20px;
  position: relative;
}

/* 🔥 Vertical divider */
.account-sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;

  background: url("images/Line 27.png") repeat-y;

}

/* 🔥 ICON CIRCLE */
.account-sidebar ul li a i {
  width: 32px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
}

/* Hover + Active */
.account-sidebar ul li a:hover i,
.account-sidebar ul li.active a i {
  background: #444;
}

/* =========================
   TABLET (991px)
========================= */
@media (max-width: 991px) {

  .account-box {
    flex-direction: column;
  }

  /* Sidebar on top */
  .account-sidebar {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
  }

  /* Remove vertical divider */
  .account-sidebar::after {
    display: none;
  }

  /* Sidebar menu horizontal scroll */
  .account-sidebar ul {
    display: flex;
    overflow-x: auto;
    gap: 10px;
  }

  .account-sidebar ul li {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .account-sidebar ul li a {
    white-space: nowrap;
    padding: 10px 15px;
  }

  .menu-divider {
    display: none; /* hide divider in mobile */
  }

  /* Content */
  .account-content {
    width: 100%;
  }

  /* Profile layout */
  
}

/* =========================
   MOBILE (768px)
========================= */
@media (max-width: 768px) {

  .account-section {
    padding: 100px 15px 40px;
  }

  /* Profile */
  .profile-left img {
    width: 60px;
    height: 60px;
  }

  .profile-left h4 {
    font-size: 16px;
  }

  .profile-left p {
    font-size: 12px;
  }

  /* Buttons */
  .btn-outline {
    font-size: 12px;
    padding: 5px 10px;
    min-width: auto;
  }

  /* Tabs */
  .filter-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-tabs a {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* Request Card */
  .request-card {
    flex-direction: column;
  }

  .request-img {
    width: 100%;
    height: 180px;
  }

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

  .btn-view {
    margin: 10px;
    align-self: flex-start;
  }
}

/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {

  .account-sidebar h5 {
    font-size: 12px;
  }

  .account-sidebar ul li a {
    font-size: 12px;
    gap: 8px;
  }

  .account-sidebar ul li a i {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .profile-header {
    height: 60px;
  }

  .profile-box {
    margin-top: -30px;
  }

  .request-info h6 {
    font-size: 14px;
  }

  .request-info p {
    font-size: 11px;
  }
}

/* * DESIGN CARDS */ */
.design-card {
background: #fff;
padding: 12px;
border-radius: 12px;
text-align: center;
border: 1px solid #eee;
transition: 0.3s;
height: 100%;
}

.design-card {
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
background-color: #D9D9D9;
margin: 0 auto;
 padding: 0px 0px 20px;
 border-radius: 15px;

}

/* IMAGE */
.design-card img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 10px;
}

/* TITLE */
.design-card h6 {
font-size: 16px;
margin-bottom: 10px;
font-weight: 500;
text-transform: uppercase;
text-align: center;
font-weight: bold;
margin-bottom: 30px;
margin-top: 20px;
font-family: 'Spectral', serif;

}

/* DESIGN CARD BUTTON */
.design-card .btn {
height: 46px;
line-height: 44px;
font-family: 'Spectral', serif;
}

/* BUTTON */
.btn-theme {
  display:block;
  width: fit-content;     
  margin: 0 auto;          
  font-family: 'Spectral', serif;
  background: #000;
  color: #fff;
  letter-spacing: 1.6;
  padding: 12px 40px;      
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.btn-theme:hover {
  background: #333;
}

/* LOAD MORE */
.text-center .btn-theme {
padding: 8px 20px;
}

.signup-section {
  padding: 200px 0;
  

}

/* OUTER BOX */
.signup-outer {
  position: relative;
  height: 940px;
  border-radius: 20px;
  overflow: hidden;
}

/* LEFT SIDE */
.signup-left {
  height: 100%;
  border: 1px solid rgba(51, 51, 51, 0.38); /* #333333 at 38% */
  border-radius: 30px 0 0 30px;
}


/* RIGHT SIDE */
.signup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING FORM (MAIN PART) */
.signup-card {
  position: absolute;
  top: 50%;
  left: 113px;
  transform: translateY(-50%);
  border: 1px solid rgba(51, 51, 51, 0.38);
  width: 600px;
  height: 900px;
  border-radius: 30px;
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  z-index: 2;
}

/* TEXT */
.signup-card h2 {
  letter-spacing: 2px;
  text-align: center;
  font-size: 45px;

}

.signup-card p {
  font-size: 17px;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

/* SOCIAL */
.social-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #000;
}

/* INPUT */
.input-box {
  position: relative;
  margin-bottom: 12px;
}

.input-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  
  
  border: 1px solid #ccc;
}

.input-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* BUTTON */
.btn-theme {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 18px 25;
  border: none;
}

.login-text {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

.login-text a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.login-text a:hover {
  text-decoration: underline;
}

/* MODAL BOX */
/* MODAL SIZE */
.custom-modal-dialog {
  max-width: 900px;
}

.custom-modal {
  width: 900px;
  height: 700px;
  border-radius: 6px;
  overflow: hidden;
}

/* LAYOUT */
.modal-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* LEFT IMAGE */
.modal-left {
  width: 325px;
  height: 700px;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.modal-right {
  width: 575px;
  height: 700px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.modal-header-custom {
  background: #3b3b3b;
  color: #fff;
  padding: 12px 20px;
  margin: 40px 15px 0px 15px;
  display: flex;

  justify-content: space-between;
  align-items: center;
  border-radius: 10px;

}

.modal-header-custom h5 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 2px;
}

/* CLOSE BUTTON */
.custom-close {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* BODY */
.modal-body-custom {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.modal-body-custom p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #333;
}

/* DIVIDER */
.divider {
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* BUTTONS */
.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-confirm {
  background: #000;
  color: #fff;
  padding: 14px 47px;
  border-radius: 25px;
  text-decoration: none;
}

.btn-outline2 {
  border: 1px solid #000;
  padding: 14px 47px;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
}

.btn-outline2:hover {
  background: #000;
  color: #fff;
}

.signup-card1{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    border: 1px solid rgba(51, 51, 51, 0.38);
    width: 662px;
    border-radius: 30px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    z-index: 2;
    min-height: 615px;
}

.signup-card1 h2{
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: 'Spectral', serif;
}

/* FORGOT PASSWORD PAGE */
.signup-outer1 {
  position: relative;
  /* height: 660px; */
  border-radius: 20px;
  /* border: 1px solid rgba(51, 51, 51, 0.2); */
}
.signup-outer1.forgot_new{
  border: none;
  height: auto;
  padding-bottom: 30px;
    padding-right: 30px;
}
.signup-outer1.forgot_new::after {
    /* height: 100%; */
    min-height: 620px;
    width: 100%;
    max-width: calc(100% - 100px);
    margin-left: auto;
    margin-right: 0;
    border: 1px solid #33333361;
    border-radius: 30px;
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    z-index: -1;
}
.forgot-left {
  height: 100%;
  background: #ffffff;
}

.forgot-right {
  height: 100%;
  max-width: 613px;
}

.signup-card1.forgot_new {
  width: 460px;
  padding: 45px 50px;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
}

.forgot_new .para1 {
  font-size: 14px;
  color: #555555;
  margin-top: 10px;
  margin-bottom: 28px;
}

.forgot_new .lev {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  display: block;
  margin-bottom: 6px;
}

.forgot_new .input-box input {
  height: 46px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  padding: 10px 45px 10px 15px;
  margin-bottom: 18px;
  font-size: 14px;
}

.forgot_new .input-box i {
  top: 38%;
}

.forgot_new .btn-dark {
  height: 46px;
  padding: 0 40px;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 107px auto 0;
}

.forgot_new .login-text {
  font-size: 13px;
  margin-top: 16px;
}

.login-card{
    position: absolute;
    top: 50%;
    left: 113px;
    transform: translateY(-50%);
    border: 1px solid rgba(51, 51, 51, 0.38);
    width: 600px;
    height: 715px;
    border-radius: 30px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    z-index: 2;
}
.signup-left1{
  border: 1px solid rgba(51, 51, 51, 0.38);
    border-radius: 30px 0 0 30px;
}
.para{
  margin-bottom: 40px;
  margin-top: 30px;
}
.lev{
  margin-bottom: 10px;
}
.para1{
   margin-bottom: 20px;
  margin-top: 20px;
}



.consultation-section {
  padding: 80px 0;
}

.consultation-container {
  background: #efefef;
  min-height: 720px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */
.consultation-left {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 70px 40px;
  background: #efefef;
}

.consultation-left-content {
  max-width: 340px;
  width: 100%;
}

.consultation-left-content h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.consultation-left-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 28px;
  max-width: 320px;
}

.consultation-info {
  max-width: 310px;
}

.consultation-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #d5d5d5;
}

.consultation-info .info-item:last-child {
  border-bottom: 1px solid #d5d5d5;
}

.consultation-info .icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid #9d9d9d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 12px;
}

.consultation-info span {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.consultation-social {
  margin-top: 75px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.consultation-social span {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-right: 4px;
}

.consultation-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.consultation-social a:hover {
  transform: translateY(-2px);
}

/* RIGHT SIDE IMAGE */
.consultation-right {
  min-height: 720px;
}

.consultation-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GLASS FORM */
.consultation-form {
  position: absolute;
  top: 100px;
  left: 43%;
  width: 490px;
  padding: 20px 16px 22px;
  border-radius: 6px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  color: #fff;
  z-index: 2;
}

.consultation-form h3 {
  font-size: 20px;
  font-family: "Lovelo Black";
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 20px;
}

.consultation-form .form-group {
  margin-bottom: 12px;
}

.consultation-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #d5ccc4;
  margin-bottom: 6px;
}

.consultation-form .input-box {
  position: relative;
}

.consultation-form .input-box i {
  position: absolute;
  right: 14px;
  top: 34%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #fff;
  pointer-events: none;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  outline: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  transition: 0.3s ease;
  box-shadow: none;
}

.consultation-form input,
.consultation-form select {
  height: 40px;
  padding: 0 40px 0 14px;
}

.consultation-form textarea {
  height: 68px;
  padding: 12px 14px;
  resize: none;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.consultation-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: rgba(255, 255, 255, 0.34);
  padding-right: 40px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
}

.consultation-form textarea:focus,
.consultation-form input:focus,
.consultation-form select:focus {
  outline: none;
}

/* BUTTON */
.consultation-btn {
  margin-top: 15px;
  margin-bottom: 40px;
  border: none;
  background: #fff;
  color: #1a1a1a;
  border-radius: 30px;
  height: 36px;
  padding: 0 14px 0 16px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.consultation-btn:hover {
  transform: translateY(-2px);
  background-color: #000;
  color: white;
}

.consultation-btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .consultation-form {
    left: 40%;
    width: 450px;
  }

  .consultation-left-content h2 {
    font-size: 36px;
  }

  .consultation-form h3 {
    font-size: 27px;
  }
}

@media (max-width: 991px) {
  .consultation-container {
    min-height: auto;
  }

  .consultation-left,
  .consultation-right {
    min-height: auto;
  }

  .consultation-left {
    padding: 50px 25px;
  }

  .consultation-right img {
    height: 400px;
  }

  .consultation-form {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    border-radius: 8px;
  }

  .consultation-left-content {
    max-width: 100%;
  }

  .consultation-info {
    max-width: 100%;
  }

  .consultation-social {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .consultation-section {
    padding: 50px 0;
  }

  .consultation-left-content h2 {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .consultation-form h3 {
    font-size: 23px;
    letter-spacing: 2px;
  }

  .consultation-left {
    padding: 35px 20px;
  }

  .consultation-form {
    padding: 18px 14px 20px;
  }

  .consultation-social {
    gap: 8px;
  }

  .consultation-social a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

/* ── SEARCH MODAL ──────────────────────────────────── */
.search-modal-dialog {
    max-width: 1140px;
}

.search-modal-content {
  border: none;
  border-radius: 0;
  padding: 30px 40px 35px;
  background: var(--white);
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 18px;
}

/* .search-modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #d8d8d4, #d8d8d4 70%, transparent);
} */

.search-modal-title {
  font-family: var(--headingFont);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--black);
  margin: 0;
}

.search-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.search-modal-close:hover svg circle {
  fill: var(--black);
}

.search-modal-close:hover svg path {
  stroke: var(--white);
}

/* Search Input */
.search-modal-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.search-modal-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--bodyFont);
  font-size: 15px;
  color: var(--mid);
  background: transparent;
}

.search-modal-input::placeholder {
  color: #999;
}

.search-modal-input-btn {
  border: none;
  /* width: 20px;
  height: 20px; */
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  flex-shrink: 0;
  color: #000;
    position: absolute;
    right: 30px;
    z-index: 9;
}

.search-modal-input-btn:hover {
  background: var(--black);
}

/* Sections */
.search-modal-body {
  padding-top: 0;
  margin-bottom: 0;
}

.search-modal-body .search-col {
  padding-top: 22px;
  padding-bottom: 22px;
}

.search-modal-body .search-col-border {
  position: relative;
}

.search-modal-body .search-col-border::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, #d8d8d4 20%, #d8d8d4 70%, transparent);
}

.search-section-title {
  font-family: var(--headingFont);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 900;
}

.search-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-section-list li {
  margin-bottom: 10px;
}

.search-section-list li a {
  font-family: var(--bodyFont);
  font-size: 20px;
  color: var(--mid);
  text-decoration: none;
  transition: 0.3s;
  color: #333333;
    margin-bottom: 20px;
    line-height: 1;
}

.search-section-list li a:hover {
  color: var(--black);
}

/* Quick Result Cards */
.quick-result-grid {
  display: flex;
  gap: 15px;
}

.quick-result-card {
  flex: 1;
  text-align: center;
}

.quick-result-img {
  background: #f5f5f3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 1 / 1;
}

.quick-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-result-name {
  font-family: var(--bodyFont);
  font-size: 16px;
  /* letter-spacing: 1.5px; */
  color: var(--black);
  margin: 0;
      font-weight: 700;
    padding-top: 20px;
    font-variant: small-caps;
    letter-spacing: 0em !important;
}

/* Footer Buttons */
.search-modal-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* border-top: 1px solid #d8d8d4; */
  padding-top: 40px;
  margin-top: 5px;
}

.search-modal-footer .btn {
  font-size: 14px;
  padding: 0 35px;
  height: 48px;
  line-height: 48px;
  border-radius: 30px;
}

.search-modal-footer .btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.search-modal-footer .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.quick-result-img {
  height: 220px;
  width: 100%;
}
@media (max-width: 1024.99px) {
  .search-modal-dialog {
    max-width: 850px;
}
.search-section-title {
    font-size: 13px !important;
}
.search-section-list li a {
    font-size: 14px !important;
}
.quick-result-img {
    height: 150px;
    width: 100%;
}
.quick-result-name{
  font-size: 13px;
}
.quick-result-card {
    min-height: 240px;
}
}
@media (max-width: 820.99px) {
    .search-modal-dialog {
        max-width: 750px;
    }
    .search-modal-content {
    padding: 25px !important;
}
.search-modal-body .search-col-border::after {
    right: 10px;
}
.search-modal-body .search-col-border{
  border-bottom: none !important;
}
.search-modal-footer{
  flex-direction: row !important;
}
}
@media (max-width: 767px) {
    .search-modal-dialog {
        max-width: 95%;
    }
    .search-modal-body .search-col-border:nth-child(2)::after{
      content: normal;
    }
    .search-modal-footer {
    flex-direction: column !important;
}
}
@media (max-width: 390.99px){
.search-modal-body .search-col-border {
    width: 100%;
    padding-bottom: 0;
}
.search-modal-body .search-col-border::after{
      content: normal;
    }
    .quick-result-grid{
      flex-direction: column;
    }
    .quick-result-card{
      width: 100%;
      max-width: unset;
    }
    .search-modal-footer{
      padding-top: 15px;
    }
    .search-modal-input-btn{
      right: 5px;
    }
    .search-modal-title{
      font-size: 16px;
    }
}

.testimonial-section .swiper-pagination {
  bottom: 0;
}

.testimonial-section .swiper-pagination-bullet {
  width: 46px;
  height: 7px;
  border-radius: 2px;
  background: #ccc;
  opacity: 1;
  transition:
    background 0.2s,
    width 0.2s;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: var(--black);
  width: 89px;
}
.testimonial-section .main-swiper .swiper-wrapper {
  padding-bottom: 40px;
}
.cart-header .btn{
  padding: 0 40px;
}


.info-popup-modal .modal-dialog {
  max-width:700px;
  max-height: 850px;
  margin: 1.75rem auto;
}

.info-popup-modal .modal-content {
  
  border: none;
  box-shadow: none;
}

.info-popup-modal .modal-backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.info-modal-shell {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 12px 12px 26px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.info-modal-top {
  background: #000;
  border-radius: 6px;
  min-height: 78px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.info-modal-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-user-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.info-user-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-modal-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.info-close-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.info-close-btn span {
  font-size: 18px;
  line-height: 1;
  margin-top: -2px;
}

.info-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.info-modal-body {
  padding: 0 10px;
}

.info-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 12px;
}

.info-field-item label {
  display: block;
  margin-bottom: 6px;
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.info-input-wrap {
  position: relative;
}

.info-input-wrap input {
  width: 100%;
  height: 45px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  background: #f8f8f8;
  padding: 0 34px 0 12px;
  font-size: 12px;
  color: #020202;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  margin-bottom: 20px;
}

.info-input-wrap input::placeholder {
  color: #a0a0a0;
}

.info-input-wrap input:focus {
  border-color: #8e8e8e;
  background: #fff;
  box-shadow: none;
}

.info-input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #000;
  pointer-events: none;
}

.info-input-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.info-full-width {
  grid-column: 1 / -1;
}

.info-btn-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.info-btn-dark,
.info-btn-light {
  height: 28px;
  min-width: 110px;
  padding: 0 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.info-btn-light {
  background: transparent;
  color: #4a4a4a;
  border: 1px solid #8e8e8e;
}

.info-btn-dark span,
.info-btn-light span {
  font-size: 14px;
  line-height: 1;
}

.info-btn-dark:hover,
.info-btn-light:hover {
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .info-popup-modal .modal-dialog {
    max-width: 92%;
  }
}

@media (max-width: 767px) {
  .info-modal-shell {
    padding: 10px 10px 20px;
  }

  .info-modal-top {
    padding: 14px 14px;
    min-height: 70px;
  }

  .info-modal-heading h2 {
    font-size: 13px;
    letter-spacing: 1.2px;
  }

  .info-user-pic {
    width: 38px;
    height: 38px;
  }

  .info-modal-body {
    padding: 0 4px;
  }

  .info-form-grid {
    grid-template-columns: 1fr;
  }

  .info-full-width {
    grid-column: auto;
  }

  .info-btn-row {
    flex-direction: column;
    align-items: center;
  }

  .info-btn-dark,
  .info-btn-light {
    width: 100%;
    max-width: 220px;
  }
}

.info-input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #000;
  cursor: pointer;            /* ADD */
  pointer-events: auto;       /* FIX */
}

.info-input-icon.active {
  opacity: 0.6; /* optional visual change */
}



.info-input-icon {
    position: absolute;
    right: 10px;
    top: 33%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: #000;
    cursor: pointer;
    pointer-events: auto;
} 



.status-tile {
  background: #ececec;
  border-radius: 4px;
  min-height: 95px;
  padding: 24px 10px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.status-tile-active {
  background: #f8ebeb;
}

.status-icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}
.status-icon .fa-box:before{
  font-size: 13;
}

.status-tile h4 {
  margin: 0 0 3px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #393939;
  font-family: 'Spectral', serif;
}

.status-tile span {
  display: block;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  color: #4b4b4b;
}

.section-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #343434;
  letter-spacing: 1px;
  
}

.section-link-btn {
  min-width: 112px;
  height: 40px;
  padding: 0 23px;
  border: 1px solid #bfbfbf;
  border-radius: 30px;
  background: #f8f8f8;
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.3s ease;
  font-family: 'Spectral', serif;
}

.section-link-btn:hover {
  color: #000;
  border-color: #8d8d8d;
}

.section-link-btn i {
  font-size: 10px;
}

.list-box {
  background: #efefef;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px 25px;
}



.list-row:last-child {
  border-bottom: none;
}

.list-id {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #4a4a4a;
   font-family: 'Spectral', serif;
}

.list-row h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #5c5c5c;
   font-family: 'Spectral', serif;
  
}

.list-status {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #4a4a4a;
   font-family: 'Spectral', serif;
}

.design-card {
  background: #e9e9e9;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}

.design-img {
  height: 156px;
  overflow: hidden;
}

.design-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.design-body {
  padding: 10px 10px 12px;
}

.design-body h4 {
  margin: 20px 0 15px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #303030;
   font-family: 'Spectral', serif;
}

.design-btn {
  min-width: 95px;
  height: 24px;
  padding: 0 12px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  transition: 0.3s ease;
}

.design-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.design-btn i {
  font-size: 10px;
}

@media (max-width: 767px) {
  .dashboard-shell {
    padding: 14px 12px 18px;
  }

  .list-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }

  .section-link-btn {
    font-size: 10px;
    padding: 0px 15px;
  }
}

.checkout-page .summary button:hover{
  background: #1d1b1b;
}
.line{

  margin-left: -8px;
  width:260px
}

.status-icon i {
  font-size: 13px;
  line-height: 1;
}

.list-divider {
  margin: 25px 0; 
  padding: 0 12px;
}

.list-divider img {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-shell {
  padding-left: 20px;
  padding-bottom: 30px;
}
@media (max-width: 999px){
  .line {
    margin-left: -8px;
    width: 160px;
}

.status-tile h4 {
    margin: 0 0 3px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #393939;
    font-family: 'Spectral', serif;
}

.section-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #343434;
    letter-spacing: 1px;
}
.list-id {
  font-size: 16px;
}
.list-row h5 {
  font-size: 16px;
}
 .list-status {
  font-size: 16px;
}
}


/* ===========================
   FORGOT PASSWORD NEW SECTION
   =========================== */
.forgot_password {
  padding: 200px 0 100px;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  
}

.fp-outer {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.22);
  background: #ffffff;
}

/* LEFT FORM CARD */
.fp-card {
  background: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  padding: 38px 42px;
  width: 390px;
  margin: 20px;
}

.fp-heading {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2.5px;
  font-family: 'Spectral', serif;
  text-align: center;
  color: #111111;
  margin-bottom: 6px;
}

.fp-sub {
  font-size: 13px;
  color: #555555;
  text-align: center;
  margin-bottom: 24px;
}

.fp-label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 5px;
}

.fp-field {
  position: relative;
  margin-bottom: 16px;
}

.fp-input {
  width: 100%;
  height: 44px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 0 44px 0 14px;
  font-size: 13px;
  color: #333333;
  outline: none;
  background: #fff;
}

.fp-input:focus {
  border-color: #999999;
}

.fp-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777777;
  font-size: 14px;
}

.fp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  height: 44px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 18px auto 0;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Spectral', serif;
}

.fp-btn:hover {
  background: #333333;
}

.fp-back {
  font-size: 13px;
  text-align: center;
  margin-top: 14px;
  color: #333333;
  margin-bottom: 0;
}

/* RIGHT IMAGE */
.fp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img1{
  margin-bottom:25px;
}

.checkbox {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.checkbox input {
  display: none;
}

.checkbox label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.checkbox input[type="radio"]:checked + label {
}

.checkbox input[type="radio"]:checked + label {
  outline: 1px solid #666;
  outline-offset: 3px;
}
.brandLogo {
  position: absolute; text-align: center; opacity: 0.05; z-index: -1; left: 0;height:500px; object-fit: contain; right: 0; margin: 0 auto; top:15%;    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.how-section .brandLogo {
    opacity: 0.05;
    z-index: -1;
    left: 0; right: auto;
    height: 500px;
    top: 44%;
}
footer .brandLogo {
    top: 60%; opacity: 0.1;
}
.products-section .brandLogo , .innerbanner .brandLogo {
    height: 400px; right: auto;
}