/* ================= ROOT ================= */
:root {
  --primary: white;
  --dark: #0e0e0e;
  --light: #f9f9f9;
  --gray: #777;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ================= BODY ================= */
body {
  font-family: var(--font-body);
  background: radial-gradient(
    circle at top center,
    #FFFFFF 0%,
    #FFF5F7 30%,
    #FDF2F4 55%,
    #F2DEE4 100%
  );
  color: var(--dark);
  line-height: 1.2;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ================= NAVBAR ================= */
.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}



.nav-links {
  display: flex;
  align-items: center;
  border-radius: 0;
}

/* .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  perspective: 1000px;
  transform-origin: center;
  backface-visibility: hidden;
  color: #a80355;
  background-color: transparent;
}


/* Desktop Nav */
.nav-links a {
  margin-left: 26px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}


.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  background: linear-gradient(135deg, #ff7582, #725a7a );
  color: #FFFFFF;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  outline: 2px solid #975aab;
  outline-offset: 0px;
  transition: transform 0.25s ease, outline-color 0.25s ease, background 0.35s ease;
}


.nav-btn:hover {
   background: linear-gradient(135deg,#f54ea2, #ff7676);
  color: #FFFFFF;
  transform: translateY(-2px);
  outline-color: #975aab;
}

/* ================= HAMBURGER ================= */
/* .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all 0.4s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
} */

/* ================= HERO ================= */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 25px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  color: #B58B9A;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: color 0.2s ease;
}

.hero-tag:hover {
  color: #9A6F7D;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 49px;
  margin: 20px 0;
  color: var(--dark);
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero h1:hover {
  color: #B58B9A;
  transform: translateY(-2px);
}

.hero p {
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 18px;
}

/* BUTTONS */
.btn-primary,
.btn-shop {
  background: linear-gradient(135deg, #ff7582, #725a7a);
  color: #FFFFFF;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  outline: 2px solid #975aab;
  outline-offset: 0px;
  transition: transform 0.25s ease, outline-color 0.25s ease, background 0.35s ease;
}

.btn-primary:hover,
.btn-shop:hover {
  background: linear-gradient(135deg,  #f54ea2, #ff7676);
  color: #FFFFFF;
  transform: translateY(-2px);
  outline-color: #975aab;
}

.btn-secondary {
  width: 155px;
  background: linear-gradient(135deg, #D1913C, #FFD194);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  outline: 2px solid orange;
  outline-offset: 0px;
  transition: background 0.25s ease, color 0.25s ease, outline-color 0.25s ease, transform 0.25s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg,#FF512F,#F09819);
  color: #FFFFFF;
  outline-color: orange;
  transform: translateY(-2px);
}

/* HERO IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image img:hover {
  transform: translateY(-6px) scale(1.015);
}

/* CARD STYLES */
.card,
.feature-card {
  background-color: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(106, 130, 251, 0.35);
}

/* ================= TRUST ================= */
.trust {
  background: radial-gradient(
    ellipse at top,
    #FFFFFF 0%,
    #FFF6F8 35%,
    #f7f4f5 70%,
    #EED9E0 100%
  );
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.trust-item {
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.trust-item:hover h3 {
  color: #B58B9A;
}

.trust-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.trust-item:hover p {
  color: #6F6F6F;
}

/* ================= COLLECTIONS ================= */
.collections {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

.collection-card {
  position: relative;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15), rgba(0,0,0,0.05));
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  color: #fff;

  /* ✅ CENTER ALIGN */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collection-overlay h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}


.shop-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  color: #000;
  background: linear-gradient(135deg, var(--primary), #f5d77a);
  transition: all 0.4s ease;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(to right, #FFAFBD, #ffc3a0);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 40px;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(to right, #282825, #332219);
  color: #aaa;
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .trust { flex-direction: column; gap: 30px; }
}

@media (max-width: 640px) {
  .collections { padding: 50px 16px; }
  .section-header h2 { font-size: 34px; }
  .collection-grid { grid-template-columns: 1fr; gap: 22px; }
  .collection-card { height: 320px; border-radius: 22px; }
  .collection-overlay h3 { font-size: 24px; }
}

/* ================= DAILY SPECIAL SALE ================= */
.daily-special {
  background: linear-gradient(45deg, #ffc3a0, #974A58);
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  margin: 25px 0;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  animation: pulseGlow 2s infinite alternate;
}

.daily-special-content {
  max-width: 600px;
  margin: 0 auto;
}

.daily-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  background: rgba(255,255,255,0.15);
  padding: 6px 15px;
  border-radius: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.daily-special h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.daily-timer {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  gap: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.daily-timer span {
  min-width: 50px;
  background: rgba(0,0,0,0.2);
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 10px 25px rgba(255, 78, 80, 0.4); transform: scale(1); }
  50% { box-shadow: 0 15px 35px rgba(255, 78, 80, 0.6); transform: scale(1.02); }
  100% { box-shadow: 0 10px 25px rgba(255, 78, 80, 0.4); transform: scale(1); }
}

@media(max-width:768px){
  .daily-special h2 { font-size: 1.5rem; }
  .daily-timer { font-size: 1.5rem; gap:10px; }
}
