
.shop-hero {
  background: #f8f5f2;

  padding:
    110px
    20px;

  text-align: center;

  position: relative;
  overflow: hidden;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 82px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

.shop-hero p {
  font-size: 18px;
  color: #555;
}

/* GRADIENT LINE */
.gradient-line {
  width: 90px;
  height: 3px;

  margin:
    25px auto;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  font-size: 13px;
  color: #333;
  position: relative;
  cursor: pointer;
}

.menu a.active::after {
  content: "";
  height: 2px;
  width: 100%;
  background: black;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* BUTTON */



/* ================= HERO ================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 110px 0 90px;
  align-items: start; /* 🔥 FIXES JUMPING */
}

/* TEXT BLOCK */
.hero-text {
  max-width: 520px;
}

/* TAG */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 18px;
}

/* TITLE */
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* GRADIENT WORD */
.hero-text span {
  background: linear-gradient(90deg,#4facfe,#ff4e8d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 16px;
}

.primary {
  background: linear-gradient(90deg,#4facfe,#ff4e8d);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.primary:hover {
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid #333;
  padding: 14px 28px;
  border-radius: 12px;
  background: none;
  cursor: pointer;
  transition: 0.3s;
}

.secondary:hover {
  background: #eee;
}

/* HERO IMAGE (LOCKED POSITION) */
.hero-image {
  display: flex;
  align-items: flex-start; /* 🔥 aligns top */
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px;
}

/* ================= COLLECTIONS ================= */

.collections {
  padding: 80px 20px;
  text-align: center;
}

.collections h2 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* GRID */
.collection-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  width: 220px;
}

/* IMAGE WRAPPER */
.card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

/* ICON */
.icon-circle {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* LABEL */
.card p {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* =========================
   COLLECTION SECTION
========================= */
.collections {
  padding: 80px 60px;
  background: #f8f8f8;
  text-align: center;
}

.collections h2 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #333;
}

/* GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */
.collection-card {
  position: relative;
  text-align: center;
  cursor: pointer;
}

/* IMAGE */
.collection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* HOVER IMAGE ZOOM */
.collection-card:hover img {
  transform: scale(1.04);
}

/* TITLE */
.collection-card h3 {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #333;
}

/* =========================
   PREMIUM GLASS ICON
========================= */
.icon-circle {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 56px;
  height: 56px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ICON STYLE */
.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  color: #444;
  transition: all 0.3s ease;
}

/* =========================
   HOVER EFFECTS (🔥 MAGIC)
========================= */
.collection-card:hover .icon-circle {
  transform: translateX(-50%) translateY(-6px) scale(1.05);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 0 0 6px rgba(255,255,255,0.25); /* glow ring */
}

/* ICON COLOR CHANGE */
.collection-card:hover .icon-circle svg {
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  padding: 120px 0;
  background: #f7f7f7;
}

.about-container {
  display: grid;
  grid-template-columns: 420px 1fr 320px;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}

/* TEXT */
.about-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1.1;
  margin: 10px 0 20px;
}

.about-text span {
  background: linear-gradient(90deg,#4facfe,#ff4e8d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about {
  padding: 120px 0;
  background: #f7f7f7;
}

/* =====================================================
   GRID
===================================================== */

.about-container {
  display: grid;

  grid-template-columns:
    430px
    1fr
    300px;

  gap: 70px;

  align-items: center;
}

/* =====================================================
   IMAGE
===================================================== */

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: 400px;

  object-fit: cover;

  border-radius: 28px;
}

/* =====================================================
   TEXT
===================================================== */

.about-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;

  margin-bottom: 20px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 74px;
  line-height: 0.95;

  margin-bottom: 35px;

  color: #111;
}

/* GRADIENT WORD */

.about-text span {
  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PARAGRAPHS */

.about-text p {
  max-width: 540px;

  font-size: 18px;
  line-height: 1.8;

  color: #666;

  margin-bottom: 22px;
}

/* =====================================================
   BUTTON
===================================================== */

.btn-outline {
  margin-top: 16px;

  height: 56px;

  padding: 0 32px;

  border-radius: 14px;

  border: 1px solid #d9d9d9;

  background: white;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  transition: 0.25s ease;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #111;

  width: fit-content;
}

.btn-outline:hover {
  background: #f3f3f3;
}

/* =====================================================
   FEATURES
===================================================== */

.about-features {
  display: flex;
  flex-direction: column;

  gap: 34px;
}

/* FEATURE */

.feature {
  display: flex;
  align-items: flex-start;

  gap: 20px;
}

/* ICON CONTAINER */

.feature-icon {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: rgba(255,255,255,0.85);

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.06);
}

/* LUCIDE ICONS */

.feature-icon svg {
  width: 28px;
  height: 28px;

  stroke-width: 1.8;

  stroke: url(#iconGradient);

  fill: none;
}

/* FEATURE TITLE */

.feature h4 {
  font-size: 18px;
  font-weight: 600;

  margin-bottom: 8px;

  color: #111;
}

/* FEATURE TEXT */

.feature p {
  font-size: 15px;
  line-height: 1.7;

  color: #666;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

  .about-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

}

/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter {
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #000000, #0a0a0a);
}

.newsletter {
  position: relative;
  overflow: hidden;
}

/* ENVELOPE BACKGROUND */

.newsletter::after {

  content: "";

  position: absolute;

  right: -60px;
  bottom: -60px;

  width: 340px;
  height: 340px;

  background:
    url("images/envelope.png")
    no-repeat
    center;

  background-size: contain;

  opacity: 0.06;

  pointer-events: none;
}

/* BACKGROUND ICON */
.newsletter-bg-icon {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  opacity: 0.06;
  pointer-events: none;
}

.newsletter-bg-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* BACKGROUND ICON */
.newsletter::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;

  width: 350px;
  height: 350px;

  background: url("../images/envelope.png") no-repeat center;
  background-size: contain;

  opacity: 0.08;   /* 🔥 subtle like reference */
  pointer-events: none;
}

.newsletter-content {
  max-width: 1400px;

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 80px;
}

/* LEFT TEXT */
.newsletter-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1.2;
  max-width: 700px;
}

/* LEFT TEXT */

.newsletter-left h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 72px;

  line-height: 1.05;

  max-width: 720px;

  font-weight: 500;
}

/* GRADIENT WORD */

.newsletter-left span {

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FORM */
/* FORM WRAPPER */

.newsletter-form-wrapper {
  width: 100%;
  max-width: 540px;
}

/* FORM */

.newsletter-form {
  display: flex;

  width: 100%;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 18px;

  overflow: hidden;
}

/* INPUT */

.newsletter-form input {
  flex: 1;

  height: 76px;

  padding: 0 28px;

  border: none;
  outline: none;

  background: transparent;

  color: white;

  font-size: 16px;
}

/* PLACEHOLDER */

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

/* BUTTON */

.newsletter-form button {
  width: 210px;

  border: none;

  font-size: 16px;
  font-weight: 600;

  color: white;

  cursor: pointer;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}

/* NOTE */

.newsletter-note {
  margin-top: 18px;

  font-size: 15px;

  color: rgba(255,255,255,0.75);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #f7f7f7;
  padding-top: 80px;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* BRAND */
.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
}

.footer-brand span {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.footer-socials img {
  width: 22px;
  height: 22px;

  object-fit: contain;

  opacity: 0.9;
  transition: 0.3s;
}

.footer-socials img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* CLEAN HOVER (matches your reference style) */
.footer-socials img:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  stroke-width: 1.8;
  fill: none;
  cursor: pointer;
  transition: 0.2s ease;
}

/* HOVER EFFECT (clean + premium) */
.footer-socials svg:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: black;
}

/* CONTACT */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #444;
  transition: 0.2s;
}

.footer-contact p:hover {
  color: black;
  transform: translateX(3px);
}

/* GRADIENT ICONS */
.contact-icon {
  width: 18px;
  height: 18px;
  stroke: url(#iconGradient);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

/* BOTTOM */
.footer-bottom {
  background: black;
  color: white;
  padding: 15px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}