* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b 60%);
  color: #e6e6e6;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --gold: linear-gradient(135deg, #f5d27a, #d4af37);
  --silver: #cfcfcf;
  --dark-card: #141414;
  --border-soft: rgba(255, 215, 160, 0.15);
}

/* ---------- FLEX ---------- */
.flex {
  display: flex;
  align-items: center;
}

/* ---------- HEADER ---------- */
header {
  background: black;
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-soft);
}

/* TOP ROW */
header .flex:first-child {
  width: 100%;
  margin: 0;
  padding: 0 10px;
}

/* LOGO */
header img {
  width: 140px;
}

/* ICONS */
.cart-icon,
.profile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  cursor: pointer;
  transition: 0.3s;
}

.cart-icon:hover,
.profile-icon:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* ---------- NAV ---------- */
nav.flex {
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}

nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--silver);
  opacity: 0.85;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
  color: #fff;
}

/* ---------- PROFILE DROPDOWN ---------- */
.profile-menu {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  background: #0f0f0f;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  min-width: 160px;
  display: none;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  z-index: 2000;
}

.profile-dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--silver);
}

.profile-dropdown a:hover {
  background: rgba(212,175,55,0.15);
}

.profile-dropdown hr {
  border: none;
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0;
}

/* ---------- HERO ---------- */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("../images/hero.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 52px;
  margin-bottom: 15px;
  background: var(--gold);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: #d0d0d0;
}

/* ---------- PRODUCTS ---------- */
.featured {
  padding: 90px 60px;
  text-align: center;
}

.featured h2 {
  font-size: 34px;
  margin-bottom: 25px;
  background: var(--gold);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.product-card {
  background: linear-gradient(180deg, #181818, #101010);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212,175,55,0.15);
}


.product-image {
  height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 Blurred background layer */
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;   /* same image */
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.2);       /* avoid blur edges */
  z-index: 1;
}

/* 🔥 Main image (full visible, no crop) */
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  position: relative;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

/* optional dark overlay */
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}


.product-content {
  padding: 24px;
}

.price {
  margin: 15px 0;
  font-weight: 600;
  background: var(--gold);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTON */
.btn {
  padding: 10px 22px;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: #000;
}

.store-btn {
  padding: 12px 30px;
  border-radius: 25px;
  background: var(--gold);
  color: #000;
  cursor: pointer;
  font-size: 14px;
}

/* Hide mobile by default */
.mob {
  display: none;
}

/* Show mobile, hide desktop on small screens */
@media (max-width: 768px) {
  .lap {
    display: none;
  }

  .mob {
    display: block;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: auto;
}

.slider .arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.slider .arr:hover {
  background: rgba(0,0,0,0.85);
}
.slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 100%;
}
/* ---------- CONTACT ---------- */
/* ---------- CONTACT ---------- */
.contact {
  padding: 90px 60px;
  background: #0f0f0f;
  border-top: 1px solid var(--border-soft);
}

/* MAIN GRID */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 2px;
}

.map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
}

.social {
  display: flex;
  gap: 20px;
}

.social a {
  font-size: 14px;
  color: var(--silver);
  transition: 0.3s;
}

.social a:hover {
  color: #fff;
}

/* RIGHT SIDE */
.contact-right {
  width: 100%;
}

/* FORM */
.contact-full {
  width: 100%;
}

.contact-full h3 {
  margin-bottom: 20px;
  font-size: 22px;
  background: var(--gold);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* INPUT ROW (NAME + EMAIL SIDE BY SIDE) */
.contact-full .field:nth-child(2),
.contact-full .field:nth-child(3) {
  width: 48%;
  display: inline-block;
}

.contact-full .field:nth-child(3) {
  float: right;
}

/* TEXTAREA FULL WIDTH */
.contact-full .field:nth-child(4) {
  clear: both;
  width: 100%;
}

/* INPUT STYLE */
.field {
  margin-bottom: 18px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #141414;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: 0.3s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

/* BUTTON */
.contact-full .btn {
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 25px;
  background: var(--gold);
  color: #000;
  border: none;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-full .field:nth-child(2),
  .contact-full .field:nth-child(3) {
    width: 100%;
    display: block;
  }

  .contact-full .field:nth-child(3) {
    float: none;
  }

  .map iframe {
    height: 200px;
  }
}

/* ---------- FOOTER ---------- */
footer {
  padding: 28px;
  text-align: center;
  background: #080808;
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid var(--border-soft);
}

/* ---------- MOBILE FIX ---------- */
@media (max-width: 768px) {

  header {
    padding: 12px 10px;
  }

  header img {
    width: 110px;
  }

  .cart-icon,
  .profile-icon {
    width: 32px;
    height: 32px;
  }

  nav.flex {
    gap: 12px;
    margin-top: 10px;
  }

  nav a {
    font-size: 11px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .featured {
    padding: 60px 20px;
  }

  .contact {
    padding: 60px 20px;
  }
}
.collections {
  padding: 90px 60px;
  text-align: center;
}

.collections h2 {
  font-size: 34px;
  margin-bottom: 25px;
  background: var(--gold);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SLIDER */
.collection-slider {
  position: relative;
  overflow: hidden;
}

/* TRACK */
.collection-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
  padding: 0 40px;
  scroll-behavior: smooth;
}

/* CARD */
.collection-card {
  flex: 0 0 auto;   
  width: 320px; 
  aspect-ratio: 16/10;  
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #181818, #101010);
  border: 1px solid var(--border-soft);
  transition: 0.3s;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212,175,55,0.15);
}

/* IMAGE */
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* OVERLAY TEXT */
.collection-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;

  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: var(--silver);
  font-size: 18px;
  font-weight: 600;
}

/* BUTTONS */
.c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-soft);
  color: var(--silver);
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.c-btn:hover {
  background: var(--gold);
  color: #000;
}

/* POSITION */
.prev { left: 10px; }
.next { right: 10px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .collection-card {
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .collection-card {
    min-width: 80%;
  }
}

.collection-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

@media (max-width: 1024px) {
  .collection-card {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .collection-card {
    width: 80vw;   /* 🔥 THIS is key */
  }
}