@import url('https://fonts.googleapis.com/css2?family=Cantarell:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'cantarellregular';
  src: local('Cantarell Regular'), local('Cantarell-Regular'), url('https://fonts.gstatic.com/s/cantarell/v22/hv-vI2mYHT4A-1m6yX9Llg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

body {
  background: #fff;
  color: #111;
  font-family: 'cantarellregular', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
}

/* =========================
       NAVBAR
    ========================== */

/* =========================
   HEADER
========================= */

.luxury-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* TOP */

.header-top {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* LEFT */

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* LOGO */

.header-logo {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 18px;
  font-weight: 300;
}

/* ICONS */

.header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.header-icons a:hover {
  opacity: 0.7;
}

/* NAVIGATION */

.header-nav {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 3px;
  font-weight: 400;
  position: relative;
}

/* HOVER EFFECT */

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.4s;
}

.header-nav a:hover::after {
  width: 100%;
}

/* MOBILE */

@media(max-width:991px) {

  .header-top {
    padding: 0 20px;
    height: 74px;
    gap: 12px;
  }

  .header-logo {
    font-size: 1.2rem;
    letter-spacing: 6px;
  }

  .header-icons {
    gap: 15px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 16px 20px 20px;
    height: auto;
    background: rgba(17, 17, 17, 0.94);
    backdrop-filter: blur(12px);
  }

  .luxury-header.nav-open .header-nav {
    display: flex;
  }

}

/* =========================
     SHOP CATEGORY SECTION
  ========================= */

.shop-category-section {
  padding: 100px 0 60px;
  background: #f5f5f5;
}

.container {
  width: 95%;
  max-width: 1280px;
  margin: auto;
}

/* HEADING */

.category-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-title {
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #111;
}

/* CATEGORY ROW */

.category-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  /* border-bottom: 4px solid #d81f1f; */
}

/* CARD */

.category-card {
  text-align: center;
  width: 100px;
}

/* CIRCLE IMAGE */

.category-image {
  width: 78px;
  height: 78px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.4s ease;
}

/* IMAGE */

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* HOVER */

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-image {
  transform: translateY(-4px);
}

/* TEXT */

.category-card span {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #111;
}

/* MOBILE */

@media(max-width:991px) {

  .category-grid {
    gap: 25px;
  }

  .category-card {
    width: 90px;
  }

  .category-image {
    width: 70px;
    height: 70px;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 5px;
  }

}

@media(max-width:600px) {

  .shop-category-section {
    padding: 70px 0 40px;
  }

  .category-grid {
    justify-content: center;
    gap: 20px;
  }

  .category-card {
    width: 85px;
  }

  .category-image {
    width: 65px;
    height: 65px;
  }

  .category-card span {
    font-size: 0.7rem;
  }

}


/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals-section {
  padding: 10px 0 0;
  background: #fff;
  overflow: hidden;
}

/* HEADER */

.arrivals-header {
  text-align: center;
  max-width: 1120px;
  margin: auto;
  margin-bottom: 40px;
  padding: 0 20px;
}

.arrivals-title {
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: #111;
  font-weight: 700;
}

.arrivals-text {
  font-size: 0.95rem;
  /* line-height: 1.4; */
  color: #000;
  max-width: 1060px;
  margin: auto;
  /* font-weight: 600; */
}

.view-more-btn {
  display: inline-block;
  margin-top: 22px;
  color: #000;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.view-more-btn::after {
  display: none;
}

/* PRODUCT CARD */

.arrival-card {
  background: #f5f5f5;
  height: 100%;
}

/* IMAGE */

.arrival-image {
  height: 292px;
  background: #e9e7e6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arrival-image img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  transition: 0.5s;
}

.arrival-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */

.arrival-content {
  min-height: 105px;
  padding: 16px 12px 22px;
  background: #f6f6f6;
}

.arrival-content h3 {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.price {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

/* COLOR DOTS */

.color-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #999;
  cursor: pointer;
}

.black {
  background: #000;
}

.gray {
  background: #7c7c89;
}

.beige {
  background: #d5c7b5;
}

.pink {
  background: #c9b4b1;
}

.active {
  outline: 1px solid #000;
  outline-offset: 2px;
}

/* ARRIVALS SLIDER */

.arrivalsSwiper {
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.arrivalsSwiper .swiper-wrapper {
  display: flex;
  gap: 3px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.arrivalsSwiper .swiper-slide {
  flex: 0 0 calc((100% - 12px) / 5);
  height: auto;
}

/* ARROWS */

.arrivalsSwiper .swiper-button-next,
.arrivalsSwiper .swiper-button-prev {
  width: 39px;
  height: 39px;
  background: #fff;
  border-radius: 50%;
  color: #111;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.12);
  top: 46%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 5;
}

.arrivalsSwiper .swiper-button-next {
  right: 12px;
}

.arrivalsSwiper .swiper-button-prev {
  left: 12px;
}

.arrivalsSwiper .swiper-button-next::after,
.arrivalsSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* MOBILE */

@media(max-width:991px) {

  .arrivals-header {
    margin-bottom: 28px;
    padding: 0 14px;
  }

  .arrivals-text {
    max-width: 720px;
    font-size: 0.88rem;
  }

  .arrival-image {
    height: 250px;
  }

  .arrivalsSwiper .swiper-slide {
    flex-basis: calc((100% - 10px) / 2);
  }

  .arrival-content {
    padding: 14px 12px 18px;
    min-height: 96px;
  }

  .arrival-content h3 {
    font-size: 0.72rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .price {
    font-size: 0.74rem;
  }

}

@media(max-width:600px) {

  .arrivals-title {
    font-size: 1.25rem;
  }

  .arrivals-text {
    font-size: 0.78rem;
    line-height: 1.6;
    padding: 0 6px;
  }

  .arrival-image {
    height: 215px;
  }

  .arrivalsSwiper .swiper-slide {
    flex-basis: 100%;
  }

  .arrival-content {
    padding: 12px 10px 16px;
    min-height: 90px;
  }

  .arrival-content h3 {
    font-size: 0.7rem;
  }

  .arrivalsSwiper .swiper-button-next,
  .arrivalsSwiper .swiper-button-prev {
    width: 34px;
    height: 34px;
  }

}

/* boy section  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'cantarellregular',
}

.collection-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  background: #f4f4f4;
}

.left-image {
  flex: 1;
}

.left-image {
  position: relative;
  width: 100%;
  height: 700px;
  /* apne design ke hisab se */
  overflow: hidden;
  border-radius: 12px;
}


.left-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.left-image img {
  width: 100%;
  max-width: 550px;
  height: 650px;
  object-fit: cover;
}

.right-content {
  flex: 1;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  align-items: center;
  gap: 0;
}

.card {
  transition: .5s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active-card {
  width: 280px;
  height: 340px;
  z-index: 2;
}

.side-card {
  width: 250px;
  height: 295px;
  opacity: .35;
}

.side-card:first-child {
  margin-right: -60px;
}

.side-card:last-child {
  margin-left: -60px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
  z-index: 5;
}

.prev {
  margin-right: 15px;
}

.next {
  margin-left: 15px;
}






.content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.content p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  color: #555;
}

.shop-btn {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}


@media(max-width:991px) {

  .collection-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .left-image img {
    height: auto;
  }

  .active-card {
    width: 220px;
    height: 280px;
  }

  .side-card {
    width: 180px;
    height: 240px;
  }

  .content h2 {
    font-size: 28px;
  }
}

/* women section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'cantarellregular',
}

.collection-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: #f5f5f5;
}

.slider-side {
  width: 60%;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards {
  display: flex;
  align-items: center;
}

.card {
  overflow: hidden;
  transition: .5s;


  .card img {
    width: 280px;
    height: 370px;
    object-fit: cover;
  }
}



.active-card {
  width: 280px;
  height: 370px;
  z-index: 2;
}

.left-card,
.right-card {
  width: 250px;
  height: 330px;
  opacity: .25;
}

.left-card {
  margin-right: -50px;
}

.right-card {
  margin-left: -50px;
}

.arrow {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.content {
  text-align: center;
  margin-top: 30px;
}

.content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.content p {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.content a {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.big-image {
  width: 100%;
  max-width: 550px;
  height: 650px;

  overflow: hidden;
  border-radius: 12px;
  /* same as .left-image */
}

.big-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.banner-content p1 {
  transform: translateY(-70px);
}


@media(max-width:991px) {

  .collection-section {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .big-image {
    max-width: 294px;
    aspect-ratio: 294 / 389;
    height: auto;
  }

  .slider-side,
  .big-image {
    width: 100%;
  }


  .big-image {
    max-width: 294px;
    aspect-ratio: 294 / 389;
  }

  .big-image {
    width: 100%;
    max-width: 550px;
    /* optional */
    height: 650px;
    overflow: hidden;
    border-radius: 12px;
    /* left-image ke jaisa curve */
  }

  .big-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .active-card {
    width: 220px;
    height: 300px;
  }

  .left-card,
  .right-card {
    width: 180px;
    height: 250px;
  }
}


/* accesecies */


.banner-desc {
  max-width: 620px;
  margin: 25px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

/* FOOTER */
.footer {
  background: #f7f7f7;
  border-top: 1px solid #d8d8d8;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1fr;
  gap: 50px;
  padding: 60px 60px 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 16px;
  font-size: 14px;
  transition: .3s;
}

.footer-col a:hover {
  opacity: .6;
}

.newsletter {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.newsletter input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 15px;
}

.newsletter button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 22px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 18px;
  color: #000;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #d8d8d8;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons img {
  height: 22px;
  width: auto;
}

/* footer mobile responsive */
.footer {
  background: #D08B5B;
  border-top: 1px solid #d8d8d8;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1fr;
  gap: 50px;
  padding: 10px 60px 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 16px;
  font-size: 14px;
  transition: .3s;
}

.footer-col a:hover {
  opacity: .6;
}

.newsletter {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.newsletter input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 15px;
}

.newsletter button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 22px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 18px;
  color: #000;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #d8d8d8;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons img {
  height: 22px;
  width: auto;
}

/* footer mobile responsive */
@media(max-width:991px) {

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 40px 25px;
  }

  .footer-top .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-top .footer-col:nth-child(2),
  .footer-top .footer-col:nth-child(4) {
    grid-column: 1;
  }

  .footer-top .footer-col:nth-child(3),
  .footer-top .footer-col:nth-child(5) {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0px;
    text-align: center;
    padding: 5px;
  }
}

/* category section k niche square box */
*/
/* =========================
   CATEGORY BANNER SECTION
========================= */

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.full-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.full-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 20px;
}

.full-banner-tag {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;

  margin-bottom: 20px;
  transform: translateY(-80px);
}

.full-banner-title {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 2rem);
  line-height: 1.3;
  font-weight: 400;

  margin-bottom: 40px;
  transform: translateY(-60px);
}

.full-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;
  border: 2px solid rgba(255, 255, 255, 0.8);

  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;

  transform: translateY(120px);
}

.full-banner-btn:hover {
  background: #fff;
  color: #111;
}


.full-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  /* ya 700px */
  overflow: hidden;
}

.full-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* important */
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}


.category-banner-section {
  padding: 30px 40px;
  background: #f3f3f3;
}

/* GRID */

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* CARD */

.banner-card {
  position: relative;
  overflow: hidden;
  height: 560px;
  cursor: pointer;
}

.banner-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Right move */
  transform: translateX(0px);
}

/* IMAGE */

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 15s ease;
}

/* OVERLAY */

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

/* CONTENT */

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  text-align: center;
  color: #fff;
}

/* TITLE */

.banner-content h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 60px;
}

/* LINE */

.line {
  width: 80px;
  height: 1px;
  background: #fff;
  margin-bottom: 18px;
}

/* TEXT */

.banner-content p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 340px;
}

.banner-content p {
  transform: translateY(-70px);
}

/* BUTTON */

.banner-content a {
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 14px 34px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: 0.4s;
}

/* HOVER */

.banner-card:hover img {
  transform: scale(1.06);
}

.banner-content a:hover {
  background: #111;
  color: #fff;
}

/* MOBILE */

@media(max-width:991px) {

  .banner-grid {
    grid-template-columns: 1fr;
  }

  .banner-card {
    height: 500px;
  }

  .banner-content p {
    margin-bottom: 280px;
  }

}

@media(max-width:600px) {

  .category-banner-section {
    padding: 20px;
  }

  .banner-card {
    height: 420px;
  }

  .banner-content {
    padding-top: 50px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 0.9rem;
    margin-bottom: 220px;
  }

  .banner-content a {
    padding: 12px 25px;
    font-size: 0.72rem;
  }

}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%) scale(1.29);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-subtitle {
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 7rem);
  line-height: 1;
  max-width: 1100px;
  font-family: 'cantarellregular';
  font-weight: 500;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border: 5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: 0.4s;
  opacity: 1 !important;
  transform: translateY(0) !important;
  top: auto !important;
}

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(55px, 9vh, 110px);
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-btn:hover {
  background: #fff;
  color: #111;
}

/* =========================
       INTRO SECTION
    ========================== */

.intro {
  padding: 140px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  letter-spacing: 4px;
  text-transform: uppercase;
  /* font-size: clamp(2.5rem, 5vw, 5rem); */
  color: #111111;
  margin-bottom: 25px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  font-family: 'cantarellregular';
  margin-bottom: 30px;
  font-weight: 500;
}

.section-text {
  color: #666;
  line-height: 1.9;
  font-size: 1rem;
}

.intro-image {
  overflow: hidden;
}

.intro-image img {
  height: 750px;
  object-fit: cover;
  transition: 1.2s;
}

.intro-image:hover img {
  transform: scale(1.08);
}

/* =========================
       COLLECTION
    ========================== */

.collection {
  padding-bottom: 120px;
}

.collection-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-card {
  overflow: hidden;
  background: #f7f7f7;
}

.product-image {
  overflow: hidden;
}

.product-image img {
  height: 500px;
  object-fit: cover;
  transition: 1s;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-content {
  padding: 25px;
}

.product-name {
  font-size: 2rem;
  font-family: 'cantarellregular';
  margin-bottom: 10px;
}

.product-price {
  color: #777;
  letter-spacing: 2px;
}


.cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.card {
  transition: all 0.5s ease;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.side-card {
  opacity: 0.35;
  transform: scale(0.9);
}

.active-card {
  transform: scale(1.05);
  z-index: 5;
}

/* =========================
       FULL IMAGE SECTION
    ========================== */

.full-banner {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin: 120px 0;
}

.full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.banner-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: 'cantarellregular';
  max-width: 900px;
  margin-bottom: 30px;
}

.section-tag1 {
  letter-spacing: 4px;
  text-transform: uppercase;
  /* font-size: clamp(2.5rem, 5vw, 5rem); */
  color: #ffffff;
  margin-bottom: 25px;
}

/* =========================
       GALLERY
    ========================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-bottom: 120px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  height: 550px;
  object-fit: cover;
  transition: 1s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================
       FOOTER
    ========================== */

footer {
  border-top: 1px solid #eee;
  /* padding: 60px 0; */
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 2rem;
  font-family: 'cantarellregular';
  letter-spacing: 4px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #666;
}

/* =========================
       MOBILE
    ========================== */

@media(max-width:991px) {

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .intro-image img {
    height: 500px;
  }

}

/* craftsmanship image  */
.craftsmanship {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 70px 6% 90px;
  background: #ffffff;
  overflow: hidden;
}

.craft-content {
  width: 28%;
  max-width: 360px;
  flex: 0 0 360px;
}

.craft-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.craft-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 30px;
  max-width: 420px;
}

.craft-content a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
}

.craft-image {
  width: 72%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.craft-image img {
  width: 100%;
  max-width: 1260px;
  height: auto;
  max-height: 880px;
  object-fit: contain;
  display: block;
}

/* mobile responsive */
@media(max-width:991px) {

  .craftsmanship {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    min-height: auto;
    padding: 22px 12px 30px;
  }

  .craft-content,
  .craft-image {
    width: 100%;
  }

  .craft-content {
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0 auto;
    width: 100%;
  }

  .craft-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
  }

  .craft-content p {
    margin: 0 auto 22px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 32ch;
  }

  .craft-content a {
    display: inline-block;
  }

  .craft-image {
    order: 2;
    margin-top: -8px;
    width: 100%;
    display: grid;
    place-items: center;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .craft-image img {
    width: min(78vw, 280px);
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none;
    display: block;
    position: relative;
    left: 0;
    translate: -65px 0;
  }
}

@media(min-width: 992px) {
  .craftsmanship {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .craft-content {
    width: 51%;
  }

  .craft-content h2 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: 1px;
  }

  .craft-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
  }

  .craft-image img {
    transform: translateX(0px) scale(2.28);
  }
}


/* footer image section */
.gallery-item {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s ease;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.gallery-item img {
  width: 100%;
  height: auto;
  /* important */
  display: block;

  object-fit: contain;
  /* important */
  border-radius: 16px;

  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: #c9a96e;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.10),
    0 8px 18px rgba(201, 169, 110, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-nav {
  display: none;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-viewport {
    overflow: hidden;
  }

  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    transition: transform 0.4s ease;
    will-change: transform;
  }

  .gallery-item {
    width: 100%;
    flex: 0 0 100%;
  }

  .gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 22px;
    z-index: 3;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .luxury-gallery {
    position: relative;
  }
}

@media(max-width:600px) {
  .header-top {
    padding: 0 14px;
    height: 68px;
  }

  .header-logo {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons a {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: 2px;
    line-height: 1.05;
  }

  .section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
    letter-spacing: 2px;
  }

  .category-header {
    margin-bottom: 30px;
  }

  .shop-category-section {
    padding: 60px 0 36px;
  }

  .banner-grid,
  .footer-grid,
  .craftsmanship,
  .collection-section {
    grid-template-columns: 1fr !important;
    display: grid;
  }

  .banner-grid {
    gap: 14px;
  }

  .banner-card {
    min-height: 280px;
  }

  .collection-section {
    display: flex;
    flex-direction: column;
    padding: 22px 14px;
    gap: 22px;
    min-height: auto;
  }

  .left-image,
  .big-image {
    width: 100%;
    height: 280px;
  }

  .right-content,
  .slider-side {
    width: 100%;
  }

  .slider-wrapper,
  .slider {
    position: relative;
    gap: 8px;
  }

  .active-card {
    width: 180px;
    height: 220px;
  }

  .side-card,
  .left-card,
  .right-card {
    width: 130px;
    height: 180px;
  }

  .nav-btn,
  .arrow {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .nav-btn,
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .nav-btn.prev,
  .arrow.prev {
    left: 10px;
  }

  .nav-btn.next,
  .arrow.next {
    right: 10px;
  }

  .slider-wrapper {
    padding: 0 48px;
  }

  .slider {
    padding: 0 48px;
  }

  .content h2 {
    font-size: 1.6rem;
  }

  .content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .full-banner {
    height: 70vh;
  }

  .full-banner-title {
    font-size: 1.7rem;
    line-height: 1.15;
  }
}

@media(min-width: 992px) {
  .banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .craftsmanship {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .banner-grid,
  .craftsmanship,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .craftsmanship {
    gap: 22px;
  }

  .footer-grid {
    gap: 22px;
  }
}
