/* Css for home page prettywoman.com */
    /* body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      background-color: #fcefee;
      color: #3b2c35;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #fcefee;
      border-bottom: 1px solid #e3d0db;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: #3b2c35;
      font-weight: 500;
    }

    .cart {
      font-size: 1.5rem;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4rem 2rem;
    }

    .hero h1 {
      font-size: 2rem;
      font-weight: 700;
      max-width: 250px;
    }

    .hero p {
      max-width: 400px;
      font-size: 1.1rem;
    }

    .hero button {
      background-color: #3b2c35;
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
      }
    }
    .marquee {
        background-color: #fff4f5;
        overflow: hidden;
        white-space: nowrap;
        box-sizing: border-box;
      }
      
      .marquee h2 {
        display: inline-block;
        font-size: 3rem;
        font-weight: 800;
        padding: 20px 0;
        animation: marquee 40s linear infinite; 
      }
      
      @keyframes marquee {
        0% { transform: translateX(-100%); } 
        100% { transform: translateX(100%); } 
      }


    .image-row {
      display: flex;
      justify-content: space-between;
      padding: 40px;
      background-color: #fff4f5;
      gap: 20px;
    }

    .image-row img {
      width: 100%;
      max-width: 32%;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .image-row {
        flex-direction: column;
        padding: 20px;
      }
      .image-row img {
        max-width: 100%;
      }
    } */

    body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      background-color: #fcefee;
      color: #3b2c35;
      overflow-x: hidden;
    }
    
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #fcefee;
      border-bottom: 1px solid #e3d0db;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    
    nav {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    
    nav a {
      text-decoration: none;
      color: #3b2c35;
      font-weight: 500;
    }
    
    .cart {
      font-size: 1.5rem;
    }
    
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 4rem 2rem;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      max-width: 600px;
      margin-bottom: 1rem;
    }
    
    .hero p {
      max-width: 600px;
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }
    
    .hero button {
      background-color: #3b2c35;
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
    }
    
    .marquee {
      background-color: #fff4f5;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
    }
    
    .marquee h2 {
      display: inline-block;
      font-size: 2rem;
      font-weight: 800;
      padding: 20px 0;
      animation: marquee 40s linear infinite;
    }
    
    @keyframes marquee {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
    
    .image-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      background-color: #fff4f5;
      gap: 20px;
    }
    
    .image-row img {
      width: calc(100% / 2 - 20px);
      max-width: 400px;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }
    
    @media (min-width: 768px) {
      .image-row img {
        width: calc(100% / 3 - 20px);
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }
      .marquee h2 {
        font-size: 1.5rem;
      }
      .hero button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
      }
    }
    


    /* Footer css */
    footer {
        background-color: #fcefee;
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        border-top: 1px solid #e3d0db;
      }
  
      .footer-left, .footer-right {
        flex: 1;
        min-width: 250px;
        margin-bottom: 1rem;
      }
  
      .footer-left p,
      .footer-right p {
        margin: 0.2rem 0;
      }
  
      .social-icons {
        margin-top: 1rem;
      }
  
      .social-icons span {
        margin-right: 10px;
        font-size: 1.2rem;
        cursor: pointer;
      }
  
      .footer-right a {
        display: block;
        margin-bottom: 0.3rem;
        text-decoration: none;
        color: #3b2c35;
      }
  
      .footer-bottom {
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid #d8b9c4;
        font-size: 0.85rem;
        color: #6a5464;
      }

    /* Promo section */
      .container {
        max-width: 1200px;
        margin: auto;
        padding: 60px 40px;
      }
      
      .promo-section {
        background-color: #fff4f5;
      }
      
      .promo-subheading {
        font-size: 14px;
        color: rgb(144 133 145);
        margin-bottom: 10px;
      }
      
      .promo-heading {
        font-size: 40px;
        font-weight: 800;
        margin: 10px 0;
        color: #3c2c35;
      }
      
      .promo-divider {
        border: 1px solid #ba68c8;
        margin: 30px 0;
      }
      
      .promo-right-text {
        display: flex;
        justify-content: flex-end;
        align-items: center;
      }
      
      .promo-text-box {
        max-width: 400px;
        text-align: right;
      }
      
      .promo-text-box p {
        font-size: 14px;
        color: #5e4557;
        line-height: 1.6;
      }
      
      .shop-btn {
        display: inline-block;
        margin-top: 15px;
        background-color: #3c2c35;
        color: #fff4f5;
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
      }
      
      .shop-btn:hover {
        background-color: #5e4557;
      }
      
      .wavy-divider {
        background: #fff4f5;
      }
      
      .wavy-divider svg {
        display: block;
        width: 100%;
        height: 80px;
      }
      
      /* .collections-section {
        background-color: #fdecef;
      }
      
      .collections-heading {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
        color: #3c2c35;
      }
      
      .collections-divider {
        border: 1px solid #ba68c8;
        margin: 20px 0 40px;
      }
      
      .collections-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
      
      .collections-grid img {
        width: calc(33.33% - 13.33px);
        border-radius: 16px;
        object-fit: cover;
      } */

      .collections-section {
        background-color: #fdecef;
    }
    
    .collections-heading {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
        color: #3c2c35;
    }
    
    .collections-divider {
        border: 1px solid #ba68c8;
        margin: 20px 0 40px;
    }
    
    .collections-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .collection-item {
        position: relative;
        overflow: hidden;
        width: calc(33.33% - 13.33px);
        border-radius: 16px;
    }
    
    .collection-item img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        transition: transform 0.4s ease;
        object-fit: cover;
    }
    
    .collection-item:hover img {
        transform: scale(1.08);
    }
    
    .caption {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .collection-item:hover .caption {
        opacity: 1;
    }


/* Our Story Unfolds Section */
      .learn-more {
        display: inline-block;
        margin-top: 15px;
        background-color: #3c2c35;
        color: #fff4f5;
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
      }
      
      .learn-more:hover {
        background-color: #5e4557;
      }
      

      /* Privacy policy and shipping policy page and accessibility page */

      main {
        padding: 20px;
      }
      
      section {
        margin-bottom: 20px;
      }
      

      /* Testimonial section */
      .testimonials-section {
        background-color: #faeff0;
        padding: 4rem 2rem;
        color: #3b2c35;
        border-top: 1px solid #e3d0db;
      }
      
      .testimonials-section .container {
        max-width: 1000px;
        margin: 0 auto;
      }
      
      .section-heading {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }
      
      .section-subtitle {
        font-size: 0.9rem;
        color: #a08b94;
        margin-bottom: 1.5rem;
      }
      
      .main-quote {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        border-bottom: 1px solid #bfa6b2;
        padding-bottom: 1rem;
      }
      
      .testimonial-entry {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #bfa6b2;
        padding: 1rem 0;
      }
      
      .testimonial-name {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c4e57;
      }
      
      .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
      }
      
      /* Responsive media query */
      @media (max-width: 768px) {
        .section-heading {
          font-size: 1.6rem;
        }
        .main-quote, .testimonial-text {
          font-size: 1rem;
        }
      }
      

      /* Cart css */
      .cart-panel {
        position: fixed;
        right: 0;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #fdecef;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      
      .cart-panel.visible {
        transform: translateX(0);
      }
      
      .cart-panel.hidden {
        transform: translateX(100%);
      }
      
      #closeCart {
        background: none;
        border: none;
        font-size: 18px;
        float: right;
      }
      
      #cartToggleBtn{
        border: none;
        background-color: #fcefee;
    }