/* =========================================================
   HOMEPAGE — HERO
   ========================================================= */
.hero {
  background: radial-gradient(120% 140% at 15% 10%, var(--tabs-maroon-deep) 0%, var(--tabs-black) 60%);
  /* border-bottom: 1px solid var(--tabs-border); */
  padding: 72px 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 .gold {
  background: linear-gradient(180deg,
      #f7e6b0 0%,
      #e5c777 35%,
      #c79b45 70%,
      #8d6423 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  /* or Playfair Display */
  font-size: 72px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 20px;
}

.hero-copy h1 .spark {
  color: #d6b16a;
  /* gold */
  font-size: 34px;
  vertical-align: super;
  margin-left: 8px;
}


.hero-copy p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.hero-placeholder {
  border: 1px dashed var(--tabs-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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


.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 18px 18px;
  background: linear-gradient(180deg, #1b1b1b 0%, #171717 100%);
  border: 1px solid rgba(212, 164, 74, .15);
  border-radius: 12px;
  transition: .3s;
  min-height: 90px;
}

.why-item:hover {
  border-color: #c79a49;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.why-item svg {
  width: 42px;
  height: 42px;
  min-width: 42px;
  color: #c79a49;
  stroke-width: 1.6;
  margin: 0;
}

.why-item h4 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 600;
  color: #d7b06a;
  line-height: 1.2;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: #b6b6b6;
  line-height: 1.5;
}

/* Tablet */


/* Mobile */
@media (max-width:576px) {


  .why-item {
    padding: 16px;
    min-height: auto;
  }

  .why-item svg {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .why-item h4 {
    font-size: 16px;
  }

  .why-item p {
    font-size: 13px;
  }
}

/* =========================================================
   JOURNEY STEPS
   ========================================================= */
.journey-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
}

.journey-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #1b1b1b 0%, #171717 100%);
  border: 1px solid rgba(212, 164, 74, .15);
  border-radius: 16px;
  min-height: 92px;
  transition: .3s;
}

.journey-step:hover {
  border-color: #c79a49;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .35);
}

.js-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #24201d;
  border: 1px solid rgba(212, 164, 74, .15);
  color: #d7b06a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  font-family: Georgia, serif;
}

.journey-step h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #d7b06a;
  line-height: 1.2;
}

.journey-step p {
  margin: 0;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.5;
}

.js-arrow {
  color: #d7b06a;
  font-size: 42px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

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

  .journey-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .journey-step {
    width: 100%;
  }

  .js-arrow {
    transform: rotate(90deg);
    font-size: 34px;
    align-self: center;
  }
}

/* Mobile */
@media (max-width:576px) {

  .journey-step {
    padding: 18px;
    gap: 14px;
  }

  .js-num {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 26px;
  }

  .journey-step h4 {
    font-size: 17px;
  }

  .journey-step p {
    font-size: 14px;
  }

  .js-arrow {
    font-size: 30px;
  }
}

/* =========================================================
   LEARN GRID
   ========================================================= */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.learn-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1d1718, #2b1716);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  padding: 18px;
  transition: .35s;
}

.learn-card:hover {
  border-color: #c59642;
  transform: translateY(-4px);
}

.learn-content {
  flex: 1;
  padding-right: 15px;
}

.learn-content h4 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
}

.learn-content p {
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.learn-content span {
  color: #d7a14a;
  font-weight: 600;
  font-size: 15px;
}

.learn-image {
  width: 100%;
  /* height: 120px; */
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 70px;
}

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

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

  .learn-grid {
    grid-template-columns: 1fr;
  }

}

/* Mobile */
@media(max-width:576px) {

  .learn-card {
    flex-direction: column;
    text-align: center;
  }

  .learn-content {
    padding-right: 0;
    margin-bottom: 15px;
  }

  .learn-image {
    width: 100%;
    height: 220px;
  }

  .learn-content h4 {
    font-size: 20px;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.testimonial-card {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 24px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}

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

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

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  margin: 0 0 12px;
  color: #d9d4ce;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.ta-verified {
  color: #8da7bb;
  font-size: 12px;
}

@media(max-width:576px) {
  .testimonial-card {
    align-items: flex-start;
    padding: 18px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .ta-avatar {
    width: 50px;
    height: 50px;
  }
}

/* =========================================================
   SWIPER CAROUSELS — testimonials, gallery, collection, related
   ========================================================= */
.tabs-testimonial-swiper {
  padding-bottom: 44px;
}

.tabs-testimonial-swiper .swiper-slide {
  height: auto;
}

.tabs-testimonial-swiper .swiper-slide .testimonial-card {
  height: 100%;
}

.swiper-pagination-bullet {
  background: var(--tabs-border);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: var(--tabs-gold);
}

.footer-social-gallery {
  margin-bottom: 40px;
}

.tabs-gallery-swiper {
  position: relative;
}

.gallery-tile {
  display: block;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--tabs-surface-2);
  border: 1px solid var(--tabs-border);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile-empty {
  background: linear-gradient(135deg, var(--tabs-surface), var(--tabs-surface-2));
}

.gallery-swiper-prev,
.gallery-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tabs-cream);
  transition: .2s ease;
}

.gallery-swiper-prev:hover,
.gallery-swiper-next:hover {
  background: var(--tabs-gold);
  color: var(--tabs-black);
  border-color: var(--tabs-gold);
}

.gallery-swiper-prev {
  left: -14px;
}

.gallery-swiper-next {
  right: -14px;
}

.tabs-swiper-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.tabs-swiper-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  color: var(--tabs-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.tabs-swiper-nav button:hover {
  background: var(--tabs-gold);
  color: var(--tabs-black);
  border-color: var(--tabs-gold);
}

.tabs-collection-swiper .swiper-slide,
.tabs-related-swiper .swiper-slide {
  height: auto;
}

.tabs-collection-swiper .swiper-slide ul.products,
.tabs-related-swiper .swiper-slide ul.products {
  height: 100%;
}

.tabs-collection-swiper .swiper-slide .product-card,
.tabs-related-swiper .swiper-slide .product-card {
  height: 100%;
}

@media (max-width: 640px) {

  .gallery-swiper-prev,
  .gallery-swiper-next {
    display: none;
  }
}

/* =========================================================
   AUTH (Login/Signup)
   ========================================================= */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px 0 64px;
  max-width: 880px;
  margin: 0 auto;
}

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

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }
}

.about-hero-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--tabs-maroon-deep), var(--tabs-surface-2));
  border: 1px solid var(--tabs-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-media .logo-main {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--tabs-gold);
}

.about-badges {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.about-badge {
  text-align: center;
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--tabs-gold);
  display: block;
}

.about-badge .lbl {
  font-size: 11px;
  color: var(--tabs-text-faint);
}

/* =========================================================
   CONTACT / FAQ
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  padding: 40px 0 64px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item svg {
  color: var(--tabs-gold);
  flex-shrink: 0;
}

.contact-info-item .ci-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tabs-cream);
}

.contact-info-item .ci-sub {
  font-size: 12.5px;
}

.faq-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 64px;
}

.faq-search {
  margin-bottom: 28px;
}

.faq-item {
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--tabs-cream);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--tabs-text-dim);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.faq-cta {
  text-align: center;
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}

/* =========================================================
   BLOG / LEARN
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 32px 0 64px;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.blog-card {
  border: 1px solid var(--tabs-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--tabs-surface);
}

.blog-card-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--tabs-maroon-deep), var(--tabs-surface-2));
}

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

.blog-card-body {
  padding: 16px 18px;
}

.blog-card .bc-cat {
  font-size: 11px;
  color: var(--tabs-gold);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
  display: block;
}

.blog-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 12.5px;
  margin-bottom: 0;
}

.blog-single .post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-single article {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 0 64px;
}

.blog-single .entry-content {
  font-size: 15px;
  color: var(--tabs-text-dim);
}

.blog-single .entry-content h2 {
  font-size: 22px;
  margin-top: 1.6em;
}

/* =========================================================
   ORDER TRACKING
   ========================================================= */
.tracking-layout {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 0 64px;
}

.tracking-timeline {
  margin-top: 28px;
}

.tt-step {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}

.tt-step::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: var(--tabs-border);
}

.tt-step:last-child::before {
  display: none;
}

.tt-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tabs-surface-2);
  border: 2px solid var(--tabs-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-step.done .tt-dot {
  background: var(--tabs-success);
  border-color: var(--tabs-success);
}

.tt-step.done .tt-dot::after {
  content: '\2713';
  color: #fff;
  font-size: 12px;
}

.tt-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tabs-cream);
}

.tt-sub {
  font-size: 12px;
  color: var(--tabs-text-faint);
}

/* =========================================================
   ORDER CONFIRMATION
   ========================================================= */
.order-confirm {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.order-confirm .oc-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tabs-success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.order-confirm h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.order-confirm .form-card {
  text-align: left;
  margin-top: 24px;
}


/* css ny dhrumil */

.collection-slider {
  margin: 0 -8px;
}

.slide-item {
  padding: 0 8px;
}





.cc-body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  z-index: 2;
}


.cc-body span {
  color: #f7c56a;
  font-weight: 600;
}

/* Arrow Button */

.slick-prev,
.slick-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: .3s;
}

.slick-prev {
  left: -22px;
}

.slick-next {
  right: -22px;
}

.slick-prev:hover,
.slick-next:hover {
  background: #222;
}

/* Remove Slick Default Icon */

.slick-prev:before,
.slick-next:before {
  font-size: 0;
  opacity: 1;
  color: transparent;
}

/* Custom Left Arrow */

.slick-prev:after {
  content: "‹";
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

/* Custom Right Arrow */

.slick-next:after {
  content: "›";
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.slick-prev:before {
  content: '' !important;
}

.slick-next:before {
  content: '' !important;
}

/* SAME ROUND ARROWS */

.collection-slider .slick-prev,
.collection-slider .slick-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.collection-slider .slick-prev {
  left: -45px;
}

.collection-slider .slick-next {
  right: -45px;
}

.collection-slider .slick-prev:before,
.collection-slider .slick-next:before {
  color: #fff;
  font-size: 18px;
  opacity: 1;
}

.collection-slider .slick-prev:hover,
.collection-slider .slick-next:hover {
  background: #1c1c1c;
}

.testimonials .section-head {
  display: block;
}

.testimonials .section-head h2 {
  text-align: center;
}