  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: #faf7f4;
      overflow-x: hidden;
    }

    /* HEADER */

.cadlous{
    font-size:70px;
    font-weight:800;
    color:#a31657;

    animation:floating 4s ease-in-out infinite;

    text-shadow:
    0 0 10px rgba(163,22,87,.25),
    0 0 20px rgba(163,22,87,.15);

    transition:0.4s;
}

.cadlous:hover{
    transform:scale(1.05);
}


.brand-logo{
    position:relative;
}

.brand-logo::after{
    content:'';
    position:absolute;
    top:0;
    left:-150%;

    width:60px;
    height:100%;

    background:rgba(255,255,255,.5);

    transform:skewX(-25deg);

    animation:shine 5s infinite;
}

@keyframes shine{
    100%{
        left:150%;
    }
}
    
header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.75);

    border-bottom:1px solid rgba(255,255,255,.2);
}
    header {
      width: 100%;
      padding: 18px 7%;
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

header{
    backdrop-filter:blur(15px);
    background:rgba(255,255,255,.92);
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.logo-box{
    animation:float 4s ease-in-out infinite;
}



@keyframes float{
    50%{
        transform:translateY(-5px);
    }
}

    .logo {
      font-size: 40px;
      font-weight: 800;
      color: #9b174c;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 35px;
    }

    nav a {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      transition: 0.3s;
      position: relative;
    }

    nav a::after {
      content: '';
      width: 0%;
      height: 3px;
      background: #9b174c;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.4s;
      border-radius: 20px;
    }

    nav a:hover::after {
      width: 100%;
    }




  
    button{
    background:linear-gradient(
        45deg,
        #a31657,
        #d63384,
        #a31657
    );

    background-size:300% 300%;

    animation:gradientMove 4s infinite;
}


.contact-info{
    background:black;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-info:hover{
    transform:translateY(-8px);
}

.contact-info h3{
    color:#a31657;
    margin-bottom:15px;
}


@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}
    .btn {
      padding: 12px 28px;
      border: none;
      background: #9b174c;
      color: white;
      border-radius: 40px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.4s;
    }

    .btn:hover {
      background: #770f3b;
      transform: translateY(-3px);
    }

    /* HERO */

    .hero {
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 130px 7% 60px;
      background: linear-gradient(to right, #fff5f8, #f8efe8);
      overflow: hidden;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 320px;
    }

    .hero-text h1 {
      font-size: 78px;
      line-height: 1.1;
      margin-bottom: 25px;
      font-weight: 800;
      color: #111;
    }

    .hero-text span {
      color: #9b174c;
    }

    .hero-text p {
      font-size: 20px;
      color: #666;
      max-width: 650px;
      margin-bottom: 35px;
      line-height: 1.8;
    }

    /* HERO SLIDER */

    .hero-slider {
      flex: 1;
      min-width: 350px;
      height: 700px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-slider img {
      position: absolute;
      width: 430px;
      max-width: 100%;
      border-radius: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
      opacity: 0;
      transform: scale(0.9);
      animation: slideShow 16s infinite;
    }

    .hero-slider img:nth-child(1) {
      animation-delay: 0s;
    }

    .hero-slider img:nth-child(2) {
      animation-delay: 4s;
    }

    .hero-slider img:nth-child(3) {
      animation-delay: 8s;
    }

    .hero-slider img:nth-child(4) {
      animation-delay: 12s;
    }

    @keyframes slideShow {

      0% {
        opacity: 0;
        transform: translateX(100px) scale(0.92);
      }

      8% {
        opacity: 1;
        transform: translateX(0px) scale(1);
      }

      25% {
        opacity: 1;
        transform: translateX(0px) scale(1);
      }

      33% {
        opacity: 0;
        transform: translateX(-100px) scale(0.92);
      }

      100% {
        opacity: 0;
      }
    }

    /* SECTION TITLE */

    .section-title {
      text-align: center;
      margin: 90px 0 25px;
    }

    .section-title h2 {
      font-size: 52px;
      color: #111;
    }

    .section-title p {
      color: #777;
      margin-top: 12px;
      font-size: 18px;
    }

    /* PRODUCTS */

    .products {
      width: 100%;
      padding: 20px 7% 80px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      transition: 0.4s;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .card:hover {
      transform:scale(1.08);
    /* transform:translateY(-15px); */
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    }

    .card img {
      width: 100%;
      height: 390px;
      object-fit: cover;
    }

    .card img{
    transition:.5s;
}



    .card{
    transition:.4s;
}

    .tag {
      position: absolute;
      top: 18px;
      left: 18px;
      background: #9b174c;
      color: white;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
    }

    .card-content {
      padding: 22px;
    }

    .card-content h3 {
      font-size: 22px;
      margin-bottom: 12px;
      color: #222;
    }

    .price {
      font-size: 26px;
      color: #9b174c;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .old {
      color: #999;
      text-decoration: line-through;
      font-size: 15px;
      margin-left: 8px;
    }

    .rating {
      color: gold;
      margin-bottom: 18px;
      font-size: 18px;
    }

    .card button {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 12px;
      background: #111;
      color: white;
      font-size: 15px;
      cursor: pointer;
      transition: 0.4s;
      font-weight: 600;
    }

    .card button:hover {
      background: #9b174c;
    }

    /* OFFER */

    .offer {
      margin: 50px 7%;
      padding: 70px;
      border-radius: 35px;
      background: linear-gradient(to right, #9b174c, #d83f82);
      text-align: center;
      color: white;
    }

    .offer h2 {
      font-size: 55px;
      margin-bottom: 15px;
    }

    .offer p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .offer button {
      padding: 14px 35px;
      border: none;
      border-radius: 40px;
      background: white;
      color: #9b174c;
      font-weight: 700;
      cursor: pointer;
      transition: 0.4s;
    }

    .offer button:hover {
      transform: scale(1.05);
    }

    /* FOOTER */

    footer {
      background: #111;
      color: white;
      padding: 70px 7%;
      margin-top: 90px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-box {
      max-width: 320px;
    }

    .footer-box h3 {
      color: #ffb5d0;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .footer-box p {
      color: #ccc;
      line-height: 1.9;
    }

    .copyright {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid #333;
      color: #999;
    }

    /* MOBILE */

    @media(max-width:900px) {

      nav {
        display: none;
      }

      .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
      }

      .hero-text h1 {
        font-size: 48px;
      }

      .hero-text p {
        font-size: 17px;
        margin: auto;
        margin-bottom: 30px;
      }

      .hero-slider {
        height: 500px;
        margin-top: 40px;
      }

      .hero-slider img {
        width: 320px;
      }

      .offer {
        padding: 40px 20px;
      }

      .offer h2 {
        font-size: 35px;
      }

      .section-title h2 {
        font-size: 38px;
      }
    }
  