
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #fff0f5 0%, #ffd9e8 100%);
      background-attachment: fixed;
      color: #1e1e2a;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .logo-text { font-family: 'Playfair Display', serif; }

    /* Navbar */
    .navbar-glass {
      background: rgba(255, 240, 245, 0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }
    .navbar-brand img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border: 2px solid #ff6a9e;
      border-radius: 50%;
      transition: transform 0.4s;
    }
    .navbar-brand:hover img { transform: scale(1.05); }
    .logo-text {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #b63b6b, #f15f8e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link, .dropdown-item {
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .nav-link:hover, .dropdown-item:hover {
      color: #e6397c !important;
      transform: translateY(-2px);
    }
    .icon-btn {
      background: transparent;
      border: none;
      font-size: 1.3rem;
      position: relative;
      transition: 0.3s;
      color: #4a2e38;
    }
    .icon-btn:hover { color: #d43f81; transform: scale(1.1); }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      background: #e6397c;
      color: white;
      font-size: 0.7rem;
      border-radius: 50%;
      padding: 2px 6px;
      font-weight: bold;
    }

    /* Blog Hero */
    .blog-hero {
      background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
                  url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600&h=600&fit=crop');
      background-size: cover;
      background-position: center;
      border-radius: 2rem;
      padding: 5rem 3rem;
      text-align: center;
      color: white;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }
    .blog-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(230,57,124,0.3), rgba(255,140,176,0.1));
      border-radius: 2rem;
    }
    .blog-hero h1 {
      font-size: 4rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .blog-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 1rem auto;
      opacity: 0.9;
      position: relative;
      z-index: 1;
    }
    .blog-hero .btn-hero {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.4s;
      position: relative;
      z-index: 1;
    }
    .blog-hero .btn-hero:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 30px rgba(230,57,124,0.4);
    }

    /* Featured Article */
    .featured-card {
      background: white;
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      transition: all 0.5s;
    }
    .featured-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }
    .featured-card .featured-img {
      height: 350px;
      object-fit: cover;
      width: 100%;
      transition: transform 0.6s;
    }
    .featured-card:hover .featured-img {
      transform: scale(1.03);
    }
    .featured-card .featured-content {
      padding: 2rem;
    }
    .featured-card .featured-badge {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      color: white;
      padding: 4px 18px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 1rem;
    }

    /* Category Filters */
    .category-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .category-filter .filter-btn {
      background: white;
      border: 2px solid #f0d0dd;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s;
      cursor: pointer;
      color: #4a2e38;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .category-filter .filter-btn:hover,
    .category-filter .filter-btn.active {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      color: white;
      border-color: #e6397c;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(230,57,124,0.3);
    }
    .category-filter .filter-btn i {
      font-size: 1.1rem;
    }

    /* Blog Cards */
    .blog-card {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      transition: all 0.5s;
      height: 100%;
    }
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .blog-card .blog-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
      transition: transform 0.6s;
    }
    .blog-card:hover .blog-img {
      transform: scale(1.05);
    }
    .blog-card .blog-body {
      padding: 1.5rem;
    }
    .blog-card .blog-category {
      display: inline-block;
      padding: 3px 14px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .blog-card .blog-category.trends { background: #fce4ec; color: #e6397c; }
    .blog-card .blog-category.men { background: #e3f2fd; color: #1a73e8; }
    .blog-card .blog-category.women { background: #fce4ec; color: #e6397c; }
    .blog-card .blog-category.baby { background: #e8f5e9; color: #2e7d32; }
    .blog-card .blog-category.sports { background: #e3f2fd; color: #1a73e8; }
    .blog-card .blog-category.shoes { background: #fff3e0; color: #e65100; }
    .blog-card .blog-category.accessories { background: #f3e5f5; color: #7b1fa2; }
    .blog-card .blog-date {
      font-size: 0.8rem;
      color: #6c757d;
    }
    .blog-card .blog-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0.5rem 0;
    }
    .blog-card .blog-desc {
      color: #6c757d;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    /* Trending Products */
    .trending-card {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      transition: all 0.5s;
      height: 100%;
      text-align: center;
      padding: 1.5rem;
    }
    .trending-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .trending-card .trending-img {
      height: 180px;
      object-fit: cover;
      border-radius: 1rem;
      width: 100%;
      margin-bottom: 1rem;
    }
    .trending-card .trending-price {
      color: #e6397c;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .trending-card .trending-rating {
      color: #f59e0b;
    }
    .trending-card .btn-shop {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      padding: 6px 20px;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s;
      font-size: 0.9rem;
    }
    .trending-card .btn-shop:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(230,57,124,0.3);
    }

    /* Fashion Tips */
    .tips-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      transition: all 0.5s;
      height: 100%;
    }
    .tips-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .tips-card .tips-icon {
      font-size: 2.5rem;
      color: #e6397c;
      margin-bottom: 1rem;
    }
    .tips-card .tips-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .tips-card .tips-desc {
      color: #6c757d;
      font-size: 0.9rem;
    }

    /* Newsletter */
    .newsletter-section {
      background: linear-gradient(135deg, #e6397c, #ff8cb0);
      border-radius: 2rem;
      padding: 4rem 2rem;
      text-align: center;
      color: white;
    }
    .newsletter-section h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
    }
    .newsletter-section .newsletter-input {
      border-radius: 50px;
      padding: 12px 25px;
      border: none;
      font-size: 1rem;
      max-width: 450px;
      width: 100%;
    }
    .newsletter-section .newsletter-input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    }
    .newsletter-section .btn-subscribe {
      background: white;
      color: #e6397c;
      border: none;
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 700;
      transition: 0.3s;
    }
    .newsletter-section .btn-subscribe:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .btn-pink {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 40px;
      padding: 8px 25px;
      transition: 0.4s;
    }
    .btn-pink:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 18px #e6397c60;
      color: white;
    }

    footer a {
      text-decoration: none;
      transition: 0.2s;
    }
    footer a:hover { color: #ff80a6 !important; }
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      margin: 0 6px;
      color: white;
      font-size: 1.2rem;
      transition: none;
    }
    .social-icon:hover {
      background: #e6397c;
      color: white;
      transform: none;
      box-shadow: none;
    }

    /* Loader */
    .loader-wrapper {
      position: fixed;
      inset: 0;
      background: #ffc0db;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s;
    }
    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid white;
      border-top: 5px solid #e6397c;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #e6397c;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      opacity: 0;
      transition: 0.4s;
      z-index: 99;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .blog-hero h1 { font-size: 2.5rem; }
      .blog-hero { padding: 3rem 1.5rem; }
      .blog-hero p { font-size: 1rem; }
      .featured-card .featured-img { height: 220px; }
      .newsletter-section { padding: 2.5rem 1.5rem; }
      .newsletter-section h2 { font-size: 2rem; }
    }

