/* product section start  */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
}

.cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap; /* ✅ allows wrapping on small screens */
}

.product-card {
  position: relative;
  flex: 1 1 calc(33.333% - 25px); /* ✅ 3 cards per row */
  max-width: calc(33.333% - 25px);
  height: 400px;
  perspective: 1200px;
  transition: all 0.5s ease;
}

.product-cover {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-style: preserve-3d;
  transition: all 1s ease;
  border-radius: 15px;
  overflow: hidden;
}

.product-cover::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  z-index: 2;
  transform: translateZ(0);
  transition: all 1s ease;
}

.product-title {
  position: absolute;
  bottom: 55px;
  left: 30px;
  font-weight: 600;
  font-size: 1.5em;
  color: #fff;
  z-index: 3;
  padding: 10px 30px;
  background: #000;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  transition: all 1s ease;
}



.product-price {
  position: absolute;
  top: 55px;
  right: 30px;
  font-weight: 200;
  font-size: 1.8em;
  color: #fff;
  z-index: 4;
  transition: all 1s ease;
}

.product-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 1s ease;
  transform: translateZ(-1px);
  gap: 15px;
}

.product-back a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 1.1em;
  padding: 10px 25px;
  border: 1px solid #fff;
  background: transparent;
  transition: 0.3s ease;
  border-radius: 25px;
}

.product-back a:hover {
  color: #000;
  background-color: #fff;
}

/* Hover Effects */
.product-card:hover .product-cover {
  transform: rotateY(-180deg);
}
.product-card:hover .product-title {
  transform: translateZ(100px);
}
.product-card:hover .product-price {
  transform: translateZ(60px);
}
.product-card:hover .product-back a {
  transform: translateZ(-60px) rotateY(-180deg);
}

/* Background images */
.cover-bonsai { background-image: url('../img/products/perfume-pdct-1.jpg'); }
.cover-tropical { background-image: url('../img/products/prdct8.png'); }
.cover-marijuana { background-image: url('../img/products/cloths-womens.jpg'); }

/* ✅ Responsive Adjustments */
@media (max-width: 1200px) {
  .product-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    height: 370px;
  }
}

@media (max-width: 991px) {
  .product-card {
    flex: 1 1 calc(50% - 20px); /* 2 per row */
    max-width: calc(50% - 20px);
    height: 350px;
  }
}

@media (max-width: 767px) {
  .product-card {
    flex: 1 1 100%; /* 1 per row */
    max-width: 100%;
    height: 320px;
  }
  .product-title {
    font-size: 2em;
    left: 20px;
  }
  .product-price {
    font-size: 1.4em;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .product-card {
    height: 280px;
  }
  .product-title {
    font-size: 1.6em;
  }
  .product-price {
    font-size: 1.2em;
  }
}






    /* ===== Brand Section ===== */
    .brand-section {
      /* padding: 100px 0; */
background: linear-gradient(135deg, #000000 30%, #fecbca 100%);


    }

    .brand-content {
      padding: 60px;
    }

    .brand-title {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: white;
    }

    .divider {
      width: 50px;
      height: 2px;
      background: #000;
      margin: 20px 0 30px 0;
    }

    .brand-text {
      color: #fff;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .brand-image {
      position: relative;
      overflow: hidden;
    }

    .brand-image img {
      width: 100%;
      /* height: 100%; */
      max-height: 470px;
      object-fit: cover;
      transition: transform 1s ease;
    }

    .brand-image:hover img {
      transform: scale(1.05);
    }

    /* ===== Parallax Background ===== */
    .parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0,0,0,0.2));
      z-index: 1;
      pointer-events: none;
    }

    /* ===== Responsive ===== */
    @media (max-width: 991px) {
      .brand-content {
        text-align: center;
        padding: 40px 20px;
      }
      .divider {
        margin: 20px auto;
      }
    }






  /* Hero Section */
  .hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #000; */
  }

  .hero-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-content {
    flex: 1;
    color: #fff;
  }

  .hero-content h1 {
    font-size: 6vmin;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 2.5vmin;
    margin-bottom: 2rem;
  }

  .hero-content button {
    padding: 0.8rem 2rem;
    font-size: 2vmin;
    cursor: pointer;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 5px;
    transition: 0.3s;
  }

  .hero-content button:hover {
    /* background: #000; */
    color: #fff;
    border: 2px solid #fff;
  }

  .hero-image {
    flex: 1;
    min-height: 500px;
    background-image: url('../img//lens/perfume-png.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-container {
      flex-direction: column-reverse;
    }

    .hero-image {
      width: 100%;
      min-height: 300px;
    }

    .hero-content h1 {
      font-size: 8vmin;
    }

    .hero-content p {
      font-size: 4vmin;
    }

    .hero-content button {
      font-size: 3vmin;
    }
  }




  
/* Section with fixed background */
.fixed-section {
  position: relative;
  background: url("../img/banner/cloths-banner.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Overlay */
.fixed-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.47),
    rgba(0, 0, 0, 0.64)
  );
  z-index: 1;
}

/* Content container */
.fixed-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
}

/* Text Content */
.fixed-content {
  flex: 1 1 500px;
}

.fixed-content .subtitle {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
}

.fixed-content .title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  font-size: 18px;
  margin-bottom: 12px;
}

.features li i {
  color: #FFD43B;
  margin-right: 10px;
}

.fixed-content .btn {
  display: inline-block;
  background: #FFD43B;
  color: #333;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fixed-content .btn:hover {
  background: #f1c40f;
}

/* Right Image */
.fixed-image {
  flex: 1 1 450px;
  text-align: center;
}

.fixed-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

/* Optional hover effect */
.fixed-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Medium screens (tablets & small laptops) */
@media (max-width: 992px) {
  .fixed-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .fixed-content {
    flex: 1 1 100%;
  }

  .fixed-content .title {
    font-size: 36px;
  }

  .fixed-content .subtitle {
    font-size: 18px;
  }

  .features li {
    font-size: 16px;
  }

  .fixed-image img {
    max-width: 420px;
  }
}

/* Small devices (mobiles) */
@media (max-width: 768px) {
  .fixed-section {
    padding: 60px 15px;
    background-attachment: scroll; /* better performance on mobile */
  }

  .fixed-content .title {
    font-size: 30px;
  }

  .fixed-content .subtitle {
    font-size: 16px;
  }

  .features li {
    font-size: 15px;
  }

  .fixed-content .btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  .fixed-image img {
    max-width: 350px;
  }
}

/* Extra small (below 480px) */
@media (max-width: 480px) {
  .fixed-section {
    padding: 50px 10px;
  }

  .fixed-content .title {
    font-size: 24px;
  }

  .fixed-content .subtitle {
    font-size: 14px;
  }

  .features li {
    font-size: 14px;
  }

  .fixed-content .btn {
    font-size: 14px;
    padding: 10px 22px;
  }

  .fixed-image img {
    max-width: 100%;
    border-width: 2px;
  }
}




.about-section {
  background: url('../img/products/pdct4.webp') center center / cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: black;
}




.about-content {
  background-color: rgba(255, 253, 228, 0.95);
  max-width: 850px;
  text-align: center;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .about-content {
    max-width: 90%;
    padding: 40px 25px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-content {
    padding: 30px 20px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}







.about-banner {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0d0d0f, #1a1b2e, #2a2040);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  overflow: hidden;
  color: #fff;
}

.banner-content {
  flex: 1;
  z-index: 2;
}

.banner-content h4 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.banner-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 600;
}

.shop-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #0052d4, #4364f7, #6fb1fc);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 500;
}

.shop-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(111, 177, 252, 0.5);
}

.banner-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle {
  position: absolute;
  max-width: 230px;
  transition: transform 0.8s ease-in-out;
}

.bottle1 {
  left: 50px;
  bottom: 60px;
  transform: rotate(-8deg);
}

.bottle2 {
  right: 80px;
  top: 70px;
  transform: rotate(12deg);
}

/* Responsive */
@media (max-width: 900px) {
  .about-banner {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .banner-images {
    margin-top: 30px;
  }

  .bottle {
    max-width: 180px;
    position: static;
    transform: none;
  }
}




    /* ===== Reveal Section ===== */
    .reveal-section {
      --card-x: -50px;
      --card-y: 14px;
      --card-angle: 7deg;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      overflow: hidden;
      padding: 50px 20px;

       /* 👇 Add these lines for background image */
  position: relative;
  background: url('../img/products/banner-4.webp') center center / cover no-repeat fixed;
    }



    .reveal-title {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
      font-weight: 600;
      color: #fff;
    }

    .reveal-deck {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      position: relative;
    }

    .reveal-card {
      width: 220px;
      height: 300px;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.4s ease, rotate 0.4s ease;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .reveal-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .reveal-card:not(:first-child) {
      margin-left: var(--card-x);
    }

    .reveal-card:nth-child(1) {
      z-index: 0;
      rotate: calc(var(--card-angle) * -2);
      translate: 0 calc(var(--card-y) * 3);
    }

    .reveal-card:nth-child(2) {
      z-index: 1;
      rotate: calc(var(--card-angle) * -1);
      translate: 0 var(--card-y);
    }

    .reveal-card:nth-child(3) {
      z-index: 2;
    }

    .reveal-card:nth-child(4) {
      z-index: 3;
      rotate: var(--card-angle);
      translate: 0 var(--card-y);
    }

    .reveal-card:nth-child(5) {
      z-index: 4;
      rotate: calc(var(--card-angle) * 2);
      translate: 0 calc(var(--card-y) * 3);
    }

    .reveal-card:hover {
      transform: translateY(-10px);
    }

    .reveal-card:hover ~ .reveal-card {
      transform: translateX(calc(var(--card-x) * -1));
    }

    /* Responsive styles */
    @media (max-width: 992px) {
      .reveal-card {
        width: 180px;
        height: 250px;
      }
      .reveal-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .reveal-deck {
        flex-direction: row;
        flex-wrap: nowrap;
      }

      .reveal-card {
        width: 150px;
        height: 220px;
      }

      .reveal-card:not(:first-child) {
        margin-left: calc(var(--card-x) / 2);
      }

      .reveal-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
      .reveal-card {
        width: 120px;
        height: 180px;
      }

      .reveal-title {
        font-size: 1.5rem;
      }
    }




/* contact section start */


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  background: #fff2d6;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
  flex: 1;
  padding: 40px 50px;
}

.form-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group.full {
  width: 100%;
}

label {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

input, textarea {
  border: none;
  border-bottom: 1.5px solid #333;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #a98260;
}

textarea {
  resize: none;
}

.submit-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #000;
  border-radius: 30px;
  padding: 10px 40px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #000;
  color: #fff;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .image-section {
    order: -1;
  }

  .form-section {
    padding: 30px 25px;
  }

  .form-section h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .input-row {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn {
    width: 100%;
  }
}




/* contact section end */




.card-body {
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-body:hover {
  transform: translateY(-5px);
}

.prize {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.product-name {
  display: block;
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: capitalize;
}

.quick-view-btn {
  display: inline-block;
  background: linear-gradient(135deg, #011735, #113261);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: linear-gradient(135deg, #011735, #0c3268);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.4);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .card-body {
    padding: 12px;
  }
  .prize {
    font-size: 16px;
  }
  .product-name {
    font-size: 14px;
  }
  .quick-view-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .card-body {
    border-radius: 8px;
  }
  .quick-view-btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}



/* ===== About Banner Styles ===== */
.about-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 80px 10%;
  background: radial-gradient(circle at 20% 20%, #151531, #000);
  overflow: hidden;
  color: #fff;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.8) 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.8) 100%);
  }
  100% {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 40%, rgba(0,0,0,0.9) 100%);
  }
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.about-content .tagline {
  font-size: 1.2rem;
  color: #bfbfbf;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.about-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff, #b0c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.about-content .description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 35px;
}

.learn-btn {
  background: linear-gradient(90deg, #0045ff, #00aaff);
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.learn-btn:hover {
  background: linear-gradient(90deg, #00aaff, #0045ff);
  transform: translateY(-3px);
}

.about-bottles {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.bottle {
  width: 240px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.bottle:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .about-banner {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .about-content {
    max-width: 90%;
  }

  .about-content h1 {
    font-size: 2.8rem;
  }

  .about-bottles {
    margin-top: 50px;
    gap: 40px;
  }

  .bottle {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .about-banner {
    padding: 40px 5%;
  }

  .about-content h1 {
    font-size: 2.2rem;
  }

  .about-content .description {
    font-size: 0.95rem;
  }

  .bottle {
    width: 130px;
  }
}







.banner_1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner_1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay background */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* transparent black overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Overlay text */
.banner-text {
  color: #fff;
  max-width: 700px;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-text h1 span {
  color: #e5b85c; /* accent color (gold tone) */
}

.banner-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
  }
  .banner-text p {
    font-size: 1rem;
  }
}


.product-name {
  font-size: 23px;           /* text size */
  font-weight: 600;          /* bold */
  color: #333;               /* text color */
  margin-top: 10px;          /* space above */
  text-align: center;        /* center text */
  letter-spacing: 0.5px;     /* subtle spacing */
  transition: color 0.3s ease;
}



.product-header-shape {
background: linear-gradient(135deg, #000000 30%, #fecbca 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
  font-family: inherit; /* inherits your site font */
}

.product-header-shape .inner-container h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-header-shape .inner-container p {
  font-size: 18px;
  opacity: 0.9;
}

/* Bottom shape (independent, white curve) */
.product-header-shape .shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .product-header-shape {
    padding: 80px 15px 60px;
  }

  .product-header-shape .inner-container h1 {
    font-size: 30px;
  }

  .product-header-shape .inner-container p {
    font-size: 16px;
  }
}
