/* =========================================================
GOOGLE FONTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================================
GLOBAL
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary: #f97316;
  --dark: #111827;
  --light: #ffffff;
  --gray: #6b7280;
}

/* =========================================================
SECTION GAP
========================================================= */
.lux-section {
  margin-top: 80px;
}

.nova-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* =========================================================
HERO SECTION
========================================================= */
.nova-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.nova-banner__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.nova-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.nova-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.72) 38%,
      rgba(0, 0, 0, 0.18) 100%);
}

.nova-banner__info {
  position: relative;
  z-index: 5;
  max-width: 650px;
  color: #fff;
}

.nova-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--primary);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.nova-mini-title::before {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--primary);
}

.nova-main-heading {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 700;

  margin-bottom: 18px;

  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nova-main-heading span {
  color: var(--primary);
}

.nova-description {
  max-width: 520px;

  font-size: 16px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 35px;

  font-family: 'Inter', sans-serif;
}

.nova-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.nova-btn {
  height: 50px;
  padding: 0 34px;

  border-radius: 14px;

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

  font-size: 14px;
  font-weight: 600;

  transition: 0.4s ease;
}

.nova-btn--primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;

  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.25);
}

.nova-btn--primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 45px rgba(249, 115, 22, 0.35);
}

.nova-btn--glass {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: #fff;
}

.nova-btn--glass:hover {
  background: #fff;
  color: #111827;
}

/* =========================================================
FEATURED COLLECTION
========================================================= */
.featured-collection {
  padding: 20px 0;
}

.featured__head {
  text-align: center;
  margin-bottom: 50px;
}

.featured__head h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 15px;
}

.featured__desc {
  max-width: 650px;
  margin: auto;

  color: var(--gray);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
6 ITEMS IN ONE ROW
========================================================= */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-left: -40px;
}

/* =========================================================
CARD
========================================================= */
.featured-card {
  background: #fff;
  width: 200px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
}

.featured-card__img {
  height: 150px;
  overflow: hidden;
}

.featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.featured-card:hover .featured-card__img img {
  transform: scale(1.08);
}

.featured-card__content {
  padding: 12px;
}

.featured-card__content h3 {
  font-size: 14px;
  color: var(--dark);

  line-height: 1.4;

  margin-bottom: 8px;
}

.featured-card__content p {
  font-size: 11px;
  color: var(--gray);

  line-height: 1.6;

  margin-bottom: 14px;
}

.featured-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.featured-card__bottom .price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.featured-card__bottom button {
  height: 36px;
  padding: 0 14px;

  border-radius: 10px;

  background: var(--primary);
  color: #fff;

  font-size: 11px;
  font-weight: 600;

  transition: 0.3s ease;
}

.featured-card__bottom button:hover {
  background: #ea580c;
}

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

  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-left: -10px !important;
  }

  .featured-card__img {
    height: 170px;
  }
}

/* =========================================================
MOBILE
3 ITEMS IN ONE ROW
========================================================= */
@media(max-width:480px) {

  .nova-banner {
    min-height: 560px;
    align-items: flex-end;
  }

  .nova-banner__image img {
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .nova-banner__shade {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.85) 100%);
  }

  .nova-banner__info {
    padding-bottom: 50px;
  }

  .nova-mini-title {
    font-size: 10px;
    gap: 8px;
    margin-bottom: 15px;
  }

  .nova-mini-title::before {
    width: 28px;
  }

  .nova-main-heading {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .nova-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .nova-actions {
    gap: 10px;
  }

  .nova-btn {
    height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }

  /* =====================================
    MOBILE GRID
    ===================================== */
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .featured__head {
    margin-bottom: 35px;
  }

  .featured__head h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .featured__desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .featured-card {
    border-radius: 14px;
  }

  .featured-card__img {
    height: 110px;
  }

  .featured-card__content {
    padding: 8px;
  }

  .featured-card__content h3 {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .featured-card__content p {
    font-size: 9px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .featured-card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .featured-card__bottom .price {
    font-size: 12px;
  }

  .featured-card__bottom button {
    width: 100%;
    height: 32px;
    padding: 0;

    font-size: 9px;
    border-radius: 8px;
  }
}

.heade{
  font-size: clamp(10px, 5vw, 30px);
  line-height: 1.1;
  font-weight: 700;
  margin: auto;
  margin-bottom: 50px;
  text-align: center;
  /* margin-left: -35px; */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}