/* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --pink: #D4A0A0;
      --pink-dark: #b88080;
      --pink-light: #f0d5d5;
      --pink-bg: #fdf6f6;
      --white: #ffffff;
      --text: #3a3a3a;
      --text-light: #777777;
      --shadow: 0 4px 20px rgba(212, 160, 160, 0.18);
      --radius: 12px;
      --transition: 0.3s ease;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; }
    a { text-decoration: none; color: inherit; transition: color var(--transition); }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-title { text-align: center; margin-bottom: 50px; }
    .section-title h2 { font-size: 2.2rem; color: var(--text); margin-bottom: 10px; }
    .section-title p { color: var(--text-light); font-size: 1rem; max-width: 550px; margin: 0 auto; }
    .section-title .accent-line {
      width: 60px; height: 3px; background: var(--pink);
      margin: 14px auto 0; border-radius: 2px;
    }
    .btn {
      display: inline-block; padding: 13px 32px; border-radius: 30px;
      font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem;
      cursor: pointer; transition: all var(--transition); border: none;
    }
    .btn-primary { background: var(--pink); color: var(--white); }
    .btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
    .btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--pink);
      color: var(--white);
      font-size: 0.82rem;
      padding: 8px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    }
    .topbar a { color: var(--white); }
    .topbar a:hover { text-decoration: underline; }
    .topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
    .topbar i { margin-right: 5px; }

    /* ===== NAVBAR ===== */
    .navbar {
      background: var(--white);
      position: sticky; top: 0; z-index: 1000;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .navbar .container {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 14px; padding-bottom: 14px;
    }
    .logo {
      font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
      color: var(--pink-dark);
    }
    .logo span { color: var(--text); }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a {
      font-size: 0.92rem; font-weight: 500; color: var(--text);
      position: relative; padding-bottom: 3px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
      background: var(--pink); transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--pink-dark); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cart { position: relative; font-size: 1.15rem; cursor: pointer; }
    .nav-cart .badge {
      position: absolute; top: -8px; right: -10px;
      background: var(--pink); color: var(--white);
      font-size: 0.65rem; width: 18px; height: 18px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .hamburger span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }

    /* ===== HERO ===== */
    .hero {
      background: var(--pink-bg);
      padding: 70px 0 50px;
      overflow: hidden;
    }
    .hero .container {
      display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
    }
    .hero-text h1 {
      font-size: 3rem; line-height: 1.2; margin-bottom: 18px; color: var(--text);
    }
    .hero-text h1 em { color: var(--pink-dark); font-style: normal; }
    .hero-text p {
      font-size: 1.05rem; color: var(--text-light); margin-bottom: 30px; max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-image { position: relative; }
    .hero-image img {
      border-radius: 20px; width: 100%; height: 440px; object-fit: cover;
      box-shadow: var(--shadow);
    }
    .hero-image .floating-badge {
      position: absolute; bottom: 24px; left: -20px;
      background: var(--white); padding: 14px 22px; border-radius: 14px;
      box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
    }
    .floating-badge i { color: var(--pink); font-size: 1.3rem; }
    .floating-badge span { font-weight: 500; font-size: 0.88rem; }

    /* ===== COLLECTIONS ===== */
    .collections { padding: 80px 0; }
    .collections-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .collection-card {
      position: relative; border-radius: var(--radius); overflow: hidden;
      height: 360px; cursor: pointer; box-shadow: var(--shadow);
    }
    .collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .collection-card:hover img { transform: scale(1.08); }
    .collection-card .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
      color: var(--white);
    }
    .collection-card .overlay h3 { font-size: 1.4rem; margin-bottom: 6px; }
    .collection-card .overlay span { font-size: 0.85rem; opacity: 0.9; }

    /* ===== WHY CHOOSE ===== */
    .why-choose {
      padding: 80px 0; background: var(--pink-bg);
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .feature-card {
      background: var(--white); border-radius: var(--radius); padding: 38px 28px;
      text-align: center; box-shadow: var(--shadow); transition: transform var(--transition);
    }
    .feature-card:hover { transform: translateY(-6px); }
    .feature-card .icon {
      width: 70px; height: 70px; border-radius: 50%;
      background: var(--pink-light); display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 1.6rem; color: var(--pink-dark);
    }
    .feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .feature-card p { color: var(--text-light); font-size: 0.9rem; }

    /* ===== ABOUT ===== */
    .about { padding: 80px 0; }
    .about .container {
      display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px;
    }
    .about-image img {
      border-radius: 20px; width: 100%; height: 420px; object-fit: cover;
      box-shadow: var(--shadow);
    }
    .about-text h2 { font-size: 2rem; margin-bottom: 16px; }
    .about-text p { color: var(--text-light); margin-bottom: 14px; font-size: 0.95rem; }
    .about-text .btn { margin-top: 12px; }

    /* ===== TESTIMONIALS ===== */
    .testimonials { padding: 80px 0; background: var(--pink-bg); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .testimonial-card {
      background: var(--white); border-radius: var(--radius); padding: 32px 26px;
      box-shadow: var(--shadow); position: relative;
    }
    .testimonial-card .quote-icon {
      font-size: 2rem; color: var(--pink-light); margin-bottom: 12px;
    }
    .testimonial-card p {
      color: var(--text-light); font-size: 0.92rem; font-style: italic; margin-bottom: 20px;
      line-height: 1.7;
    }
    .testimonial-card .client { display: flex; align-items: center; gap: 12px; }
    .testimonial-card .client img {
      width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
    }
    .testimonial-card .client-info h4 { font-size: 0.95rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
    .testimonial-card .client-info span { font-size: 0.78rem; color: var(--text-light); }
    .testimonial-card .stars { color: #f5c518; font-size: 0.82rem; margin-bottom: 10px; }

    /* ===== FEATURED PRODUCTS ===== */
    .products { padding: 80px 0; }
    .products-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .product-card {
      background: var(--white); border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); transition: transform var(--transition);
    }
    .product-card:hover { transform: translateY(-6px); }
    .product-card .product-img {
      height: 240px; overflow: hidden; position: relative;
    }
    .product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .product-card:hover .product-img img { transform: scale(1.08); }
    .product-card .product-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--pink); color: var(--white);
      font-size: 0.72rem; padding: 4px 12px; border-radius: 20px; font-weight: 500;
    }
    .product-card .product-info { padding: 18px; }
    .product-card .product-info h3 {
      font-size: 1.05rem; margin-bottom: 6px; font-family: 'Poppins', sans-serif; font-weight: 600;
    }
    .product-card .product-info .price {
      color: var(--pink-dark); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px;
    }
    .product-card .product-info .price .old-price {
      color: var(--text-light); text-decoration: line-through; font-size: 0.85rem; font-weight: 400; margin-left: 6px;
    }
    .product-card .add-to-cart {
      width: 100%; padding: 10px; border: 2px solid var(--pink); background: transparent;
      color: var(--pink); border-radius: 8px; font-family: 'Poppins', sans-serif;
      font-weight: 500; cursor: pointer; transition: all var(--transition); font-size: 0.88rem;
    }
    .product-card .add-to-cart:hover { background: var(--pink); color: var(--white); }

    /* ===== NEWSLETTER BANNER ===== */
    .newsletter-banner {
      padding: 60px 0; background: var(--pink); color: var(--white); text-align: center;
    }
    .newsletter-banner h2 { font-size: 1.9rem; margin-bottom: 10px; color: var(--white); }
    .newsletter-banner p { opacity: 0.92; margin-bottom: 26px; font-size: 0.95rem; }
    .newsletter-form {
      display: flex; max-width: 480px; margin: 0 auto; gap: 0;
    }
    .newsletter-form input {
      flex: 1; padding: 13px 20px; border: none; border-radius: 30px 0 0 30px;
      font-family: 'Poppins', sans-serif; font-size: 0.9rem; outline: none;
    }
    .newsletter-form button {
      padding: 13px 28px; background: var(--text); color: var(--white);
      border: none; border-radius: 0 30px 30px 0; cursor: pointer;
      font-family: 'Poppins', sans-serif; font-weight: 500; transition: background var(--transition);
    }
    .newsletter-form button:hover { background: #222; }

    /* ===== FOOTER ===== */
    .footer {
      background: #2b2b2b; color: #ccc; padding: 60px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
    }
    .footer h4 {
      color: var(--white); font-size: 1.1rem; margin-bottom: 18px;
      font-family: 'Poppins', sans-serif; font-weight: 600;
    }
    .footer p { font-size: 0.88rem; line-height: 1.7; }
    .footer .logo-footer {
      font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
      color: var(--pink); margin-bottom: 14px; display: block;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 0.88rem; color: #ccc; transition: color var(--transition); }
    .footer-links a:hover { color: var(--pink); }
    .footer-social { display: flex; gap: 12px; margin-top: 16px; }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%; border: 1px solid #555;
      display: flex; align-items: center; justify-content: center;
      color: #ccc; font-size: 0.9rem; transition: all var(--transition);
    }
    .footer-social a:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
    .footer-newsletter input {
      width: 100%; padding: 11px 16px; border: 1px solid #555; background: transparent;
      border-radius: 8px; color: var(--white); font-family: 'Poppins', sans-serif;
      font-size: 0.88rem; margin-bottom: 10px; outline: none;
    }
    .footer-newsletter input::placeholder { color: #888; }
    .footer-newsletter button {
      width: 100%; padding: 11px; background: var(--pink); color: var(--white);
      border: none; border-radius: 8px; cursor: pointer; font-family: 'Poppins', sans-serif;
      font-weight: 500; transition: background var(--transition);
    }
    .footer-newsletter button:hover { background: var(--pink-dark); }
    .footer-bottom {
      border-top: 1px solid #444; margin-top: 40px; padding: 18px 0;
      text-align: center; font-size: 0.82rem; color: #888;
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
      background: var(--pink); color: var(--white); border: none; border-radius: 50%;
      font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow);
      opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 999;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; }
    .back-to-top:hover { background: var(--pink-dark); transform: translateY(-3px); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero-text p { margin: 0 auto 30px; }
      .hero-buttons { justify-content: center; }
      .hero-image { order: -1; }
      .hero-image img { height: 320px; }
      .collections-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .about .container { grid-template-columns: 1fr; text-align: center; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .topbar .container { justify-content: center; text-align: center; }
      .topbar-right { display: none; }
      .nav-links { 
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08); gap: 16px;
      }
      .nav-links.active { display: flex; }
      .hamburger { display: flex; }
      .hero-text h1 { font-size: 2.2rem; }
      .collections-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .section-title h2 { font-size: 1.8rem; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr; }
      .hero-text h1 { font-size: 1.8rem; }
      .newsletter-form { flex-direction: column; gap: 10px; }
      .newsletter-form input, .newsletter-form button { border-radius: 30px; }
    }