* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    background: linear-gradient(135deg, #fff 0%, #fff8fb 100%);
    overflow-x: hidden;
    transition: background 0.5s;
  }

  body:hover {
    background: linear-gradient(135deg, #fff 0%, #ffeef5 100%);
  }

  header {
    background: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(214, 51, 108, 0.1);
    border-bottom: 3px solid #ffe5f0;
    transition: 0.3s;
  }

  header:hover { 
    box-shadow: 0 8px 25px rgba(214, 51, 108, 0.2);
     background: #fff6fa; } 

  .logo { font-size: 28px; font-weight: bold; color: gold; text-decoration: none; letter-spacing: 2px; position: relative; } 
  .logo::after { content: "✨"; position: absolute; top: -10px; right: -15px; font-size: 18px; opacity: 0; transition: 0.4s; } 
  .logo:hover::after { opacity: 1; transform: rotate(20deg); } 
  .search-box { display: flex; align-items: center; background: #fff0f6; border-radius: 50px; padding: 8px 15px; width: 220px; border: 2px solid #d6336c; transition: all 0.4s ease; box-shadow: 0 0 0 rgba(214, 51, 108, 0.3); } 
  .search-box:hover { width: 280px; background: #ffe5ee; box-shadow: 0 0 15px rgba(214, 51, 108, 0.3); } 
  .search-box input { border: none; outline: none; background: transparent; margin-left: 10px; width: 100%; font-size: 14px; } 
  .nav-icons a { margin-left: 15px; font-size: 22px; color: #555; text-decoration: none; transition: transform 0.3s ease, color 0.3s ease; position: relative; } 
  .nav-icons a:hover { color: #d6336c; transform: scale(1.3) rotate(10deg); }

 

  nav {
    background: #006A4E;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 12px 0;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    position: relative;
  }

  nav::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,0.15) 10%, transparent 60%); opacity: 0; transition: opacity 0.4s; } 
  nav:hover::before { opacity: 1; } 
  nav a { color: gold; text-decoration: none; font-size: 17px; font-weight: 500; position: relative; padding: 5px 12px; transition: 0.3s; border-radius: 6px; } 
  nav a::after { content: ''; position: absolute; width: 0; height: 3px; background: gold; left: 50%; bottom: -6px; transition: all 0.4s ease; border-radius: 2px; }
   nav a:hover::after { width: 100%; left: 0; } 
   nav a:hover { color: #ede50cff; transform: translateY(-2px); }
  .hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }

  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  footer {
    background: #fff;
    color: #333;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    border-top: 1px solid #ddd;
  }

  .footer-logo {
    flex: 1;
  }

  .footer-logo img {
    max-width: 160px;
    margin-bottom: 15px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .social-icons a {
    color: #222;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #d6336c;
  }

  .footer-links {
    flex: 1;
    display: flex;
    gap: 60px;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin: 8px 0;
  }

  .footer-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #d6336c;
  }

  .newsletter {
    flex: 1;
  }

  .newsletter p {
    font-weight: 500;
    margin-bottom: 12px;
  }

  .newsletter input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    outline: none;
  }

  .newsletter button {
    background: #a2003f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
  }

  .newsletter button:hover {
    background: #d6336c;
  }

  .footer-bottom {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    margin-top: 20px;
  }
  .filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .filters select,
  .filters input[type="range"] {
    padding: 8px;
    border: 2px solid brown;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
  }

  .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-left:10%;
    margin-right:10%;
    margin-bottom:5%;
  }

  .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2bcbc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 15px;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e2bcbc;
  }

  .product-card h2 {
    font-size: 18px;
    color: brown;
    margin: 10px 0 5px;
  }

  .product-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 8px;
  }

  .product-card button {
    background: brown;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }


  .shop-container h1 {
    text-align: center;
    color: brown;
    margin-bottom: 30px;
    font-size: 32px;
    margin-top:10%;
  }
  .shop-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
  }

  .shop-container h1 {
    text-align: center;
    color: brown;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .filters select,
  .filters input[type="range"] {
    padding: 8px;
    border: 2px solid brown;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
  }

  .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
  }

  .product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2bcbc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
  }

  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e2bcbc;
    transition: transform 0.5s ease;
  }

  .product-card:hover img {
    transform: scale(1.1);
  }

  /* HOVER ICONS */
  .hover-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .hover-icons span {
    background: white;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .hover-icons span:hover {
    transform: scale(1.2);
  }

  .product-card:hover .hover-icons {
    opacity: 1;
  }

  /* SELECT OPTION BUTTON */
  .select-btn {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #d6336c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .product-card:hover .select-btn {
    bottom: 10px;
    opacity: 1;
  }
  a{
    text-decoration:none;
  }
  .category-btn {
  font-size: 28px;
  cursor: pointer;
  color: #d6336c;
  margin-right: 15px;
  transition: transform 0.3s;
}
.category-btn:hover {
  transform: scale(1.2);
}

/* SIDE CATEGORY PANEL */
.category-panel {
  position: fixed;
  top: 0;
  left: -250px; /* hidden by default */
  width: 250px;
  height: 100%;
  background: #fff0f6;
  box-shadow: 4px 0 12px rgba(0,0,0,0.2);
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.category-panel.active {
  left: 0;
}

.category-panel h3 {
  font-size: 20px;
  color: #d6336c;
  margin-bottom: 20px;
}

.category-panel ul {
  list-style: none;
  padding: 0;
}

.category-panel li {
  margin: 10px 0;
}

.category-panel a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  display: block;
  cursor: pointer;
  transition: color 0.3s;
}

.category-panel a:hover {
  color: brown;
}

.subcategory {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
}

.subcategory a {
  font-size: 15px;
  color: #555;
}

.subcategory a:hover {
  color: #d6336c;
}

.close-btn {
  font-size: 24px;
  color: #d6336c;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}