* {
  margin: 0;
  padding: o;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* .navbar-line {
  border: none;
  background: rgb(174, 174, 174);
  height: 0.5px;
  width: 100%;
  position: absolute;
  left: 0;
} */
/* .navbar img {
  cursor: pointer;
} */

/* nav {
  flex: 1;
  text-align: right;
} */

/* nav ul {
  display: inline-block;
  list-style-type: none;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #1f2a44;
  font-weight: 500;
} */

/* .search-box input:focus {
  border: none;
  outline: none;
  box-shadow: none;
} */

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Login button */
.login-btn {
  background: #6c63ff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #555;
}

p {
  color: #555;
}

.logo {
  cursor: pointer;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
  /* margin-top: 10px; */
}
.row-front {
  /* background: radial-gradient(#fff, #ffd6d6); */
  background: #f2edc8;
}

.row,
.row-front {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  /* margin-top: 15px; */
}

.col-2 {
  flex-basis: 50%;
  min-width: 300px;
}

.col-2 img {
  max-width: 100%;
  padding: 50px 0;
  margin-top: 35px;

  /* Initial Entrance State */
  opacity: 0;
  transform: scale(0.9) translateY(20px);

  /* Entrance Animation: Delayed to 0.5s to coincide with the Headline */
  animation: imgReveal 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s forwards,
    floating 4s ease-in-out 1.7s infinite; /* Continuous float after entrance */
}

/* 1. The Entrance Animation */
@keyframes imgReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* 2. The Subtle "Studio Float" (keeps the page dynamic) */
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  /* 50% {
    transform: translateY(-10px);
  } */
}

.col-2 h1 {
  font-size: 55px;
  line-height: 60px;
  margin: 25px 0;

  /* Animation Properties */
  opacity: 0; /* Starts invisible */
  transform: translateY(20px); /* Starts 20px lower */
  animation: heroFadeIn 1s ease-out 0.3s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.col-2 .unleash {
  /* Refined Professional Color */
  color: rgb(74, 74, 74);
  /* Animation Settings */
  opacity: 0;
  animation: fadeInText 1s ease-out 0.8s forwards;
  font-size: 16px;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px); /* Starts 20px lower */
    filter: blur(5px); /* Adds a "soft focus" entry effect */
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.btn {
  display: inline-block;
  background: #ff523b;
  color: #fff;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 30px;
  text-decoration: none; /* Removes underline if it's an <a> tag */
  transition: all 0.3s ease; /* Smooth transition for hover effects */

  /* Entrance Animation */
  opacity: 0;
  transform: scale(0.8); /* Starts a bit smaller */
  animation: btnPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}

@keyframes btnPopIn {
  to {
    opacity: 1;
    transform: scale(1); /* Pops into full size */
  }
}

.btn:hover {
  background: #563434;
  transition: 0.5s;
}

/*  */

/* Featured Categories */
/* Featured Categories */
.categores {
  margin: 70px 0;
}

.col-3 {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
  transition: transform 0.5s;
}

.col-3 img {
  width: 100%;
  border-radius: 15px;
}

.col-3:hover {
  transform: translateY(-5px);
}

/* Latest Products */
/* Latest Products */
.small-container {
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
  cursor: pointer;
  margin-bottom: 110px;
}

.col-4 {
  /* flex-basis: 20%;
  padding: 10px;
  min-width: 200px;
  margin-bottom: 50px;
  transition: transform 0.5s; */
  background: #fff;
  /* border-radius: 14px; */
  /* border: 1px solid transparent; */
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  min-width: 200px;
  padding: 10px;
  flex-basis: 20%;
  margin-bottom: 50px;
}

.col-4:hover {
  transform: scale(1.08); /* increase size */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.12);
}

.col-4 img {
  width: 100%;
}

.rating img {
  width: 35%;
}

.title,
.title-tutor {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  line-height: 60px;
  color: #555;
  margin-top: 80px;
  margin-bottom: 30px;
}

.title::after,
.title-tutor::after {
  content: "";
  background: #ff523b;
  width: 80px;
  height: 5px;
  position: absolute;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

h4 {
  color: #555;
  font-weight: normal;
}

.col-4 p {
  font-size: 14px;
}

/* ChatGBT Cheat code */
.add-to-cart {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #33b27b;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

/* Hover effect */
.add-to-cart:hover {
  background: #ff523b; /* or your theme color */
  transform: translateY(-2px);
  color: white;
}

/* Offer */
/* Offer */
.offer {
  background: radial-gradient(#fff, #ffd6d6);
  margin-top: 80px;
  padding: 30px 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.col-2 .offer-img {
  padding: 50px;
}

small {
  color: #555;
}

/* Testimonial  */
/* Testimonial  */

.testimonial {
  padding-top: 100px;
}

.testimonial .col-3 {
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s;
}

.testimonial .col-3 img {
  width: 50px;
  margin-top: 20px;
  border-radius: 50px;
}

.testimonial .col-3:hover {
  transform: translateY(-10px);
}

.col-3 p {
  font-size: 12px;
  margin: 12px 0;
  color: #777;
}

.testimonial .col-3 h3 {
  font-weight: 600;
  color: #555;
  font-size: 16px;
}

/* footer */
/* footer */

.footer {
  background: #1d1d1d;
  /* background: rgb(255, 16, 64); */
  color: white;
  font-size: 14px;
  padding: 60px 0 20px;
  /* margin-top: 50px; */
}
.footer p {
  columns: #8a8a8a;
}

.footer h3 {
  columns: #fff;
  margin-bottom: 20px;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col-1 {
  flex-basis: 30%;
}

.footer-col-2 {
  flex: 1;
  text-align: center;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-col-2 .logo-icon {
  width: 60px;
}
.footer-col-2 p {
  margin: 0;
  padding: 30px;
}

.footer-col-2 img {
  width: 180px;
  margin-bottom: 20px;
}
.footer-col-2 p {
  color: white;
}
.footer p {
  color: white;
}

.footer h3 {
  color: white;
}
.footer-col-3,
.footer-col-4 {
  flex-basis: 12%;
  text-align: center;
}

.footer-col-3 ul {
}
ul {
  list-style-type: none;
}

.app-logo {
  margin-top: 20px;
}

.app-logo img {
  width: 140px;
}

/* Second HR */
.section-line {
  border: none;
  background: white;
  height: 0.5px;
  margin: 20px 0;
}

.copyright {
  text-align: center;
}

.menu-icon {
  width: 18px;
  margin-left: 20px;
  display: none;
  color: white;
}

/* ChatGBT Cheat */
.footer-col-3 {
  text-align: center; /* center the heading and list */
}

.footer-col-3 h3 {
  margin-bottom: 10px;
}

.footer-col-3 ul {
  list-style: none; /* remove bullets */
  padding: 0;
  margin: 0;
}

.footer-col-3 ul li {
  margin: 5px 0; /* space between each link */
  cursor: pointer;
  transition: color 0.3s;
}

/* Optional: add hover effect */
.footer-col-3 ul li:hover {
  color: #ff523b; /* or any color you like */
}

/* ChatGBT Cheat */
.footer-col-4 {
  text-align: center;
}

.footer-col-4 h3 {
  margin-bottom: 10px;
}

.footer-col-4 ul {
  list-style: none;
  display: flex;
  justify-content: center; /* centers the icons */
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-col-4 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col-4 ul li ion-icon {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s; /* smooth hover effect */
}

/* Hover effects */
.footer-col-4 ul li ion-icon:hover {
  color: #ff523b; /* change to any color you like */
  transform: scale(1.2); /* slightly enlarge the icon */
}

.footer-col-1 {
  text-align: center; /* center all content */
}

.footer-col-1 h3 {
  margin-bottom: 10px;
}

.footer-col-1 p {
  margin-bottom: 15px;
  font-size: 14px;
  color: white; /* optional text color */
}

.footer-col-1 .app-logo {
  display: flex;
  justify-content: center; /* center the images horizontally */
  gap: 10px; /* space between logos */
}

.footer-col-1 .app-logo img {
  width: 120px; /* adjust size as needed */
  cursor: pointer;
  transition: transform 0.3s; /* smooth hover effect */
}

/* Optional: hover effect for app logos */
.footer-col-1 .app-logo img:hover {
  transform: scale(1.05);
}

/* pagination */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  border-radius: 50px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Active page */
.pagination a.active {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.pagination a:hover {
  background: #000;
  color: #fff;
}

/* Next button wider */
.pagination a.next {
  padding: 0 25px;
}

/* Dots */
.pagination .dots {
  border: none;
  cursor: default;
}

/* scrollTopBtn */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  background: #fff;
  border: 3px solid orange;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

#scrollTopBtn ion-icon {
  font-size: 26px;
  color: #000;
}

/* Hover effect */
#scrollTopBtn:hover {
  transform: translateY(-3px);
}

html {
  scroll-behavior: smooth;
}

/* login details */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  font-family: Inter, sans-serif;
  animation: scaleIn 0.25s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 22px;
  cursor: pointer;
}

h2 {
  text-align: center;
  margin-bottom: 6px;
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.google-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
}

.google-btn img {
  width: 18px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 14px;
}

label {
  font-size: 14px;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;

  margin-bottom: 16px;
}

.continue-btn {
  width: 100%;
  padding: 14px;
  background: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

.signup-text {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}

.signup-text a {
  font-weight: 600;
}

.secured {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 22px;
}

.secured .dev {
  color: orange;
  font-weight: 600;
}

/* Add CSS for flying image */
.fly-img {
  position: fixed;
  width: 80px;
  height: auto;
  z-index: 1000;
  pointer-events: none;
  border-radius: 6px;
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.8s;
}

.toast {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background: #33b27b;
  color: #fff;
  padding: 12px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  font-weight: bold;
}
.toast.show {
  opacity: 1;
}

.video1,
.video2 {
  transition: 1s;
}

.video1:hover,
.video2:hover {
  transform: scale(1.05);
}

.row-content {
  display: flex;
  gap: 20px;
  text-align: center;
  margin-bottom: 10rem;

  /* Animation Settings */
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0; /* Starts invisible */
}

.responsive-video-cover {
  width: 100%; /* Full width on small screens */
  max-width: 600px; /* Maximum size on large screens */
  height: auto; /* Maintains aspect ratio */
  border-radius: 10px;
}

/* Optional: If you want it even smaller on very small phones */
@media (max-width: 480px) {
  .responsive-video-cover {
    max-width: 90%; /* Shrinks slightly so it doesn't touch the edges */
    margin: 0 auto;
    display: block;
  }
}
/* The Animation Logic */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Starts 30px lower */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Ends at its natural position */
  }
}
/* media query for search bar */

/* media query for menu */

@media only screen and (max-width: 800px) {
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    background: #333;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.5s;
  }
  nav ul li {
    display: block;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  nav ul li a {
    color: white;
  }
  /* .menu-icon {
    display: block;
    cursor: pointer;
  } */

  .cart {
    /* display: none; */
  }

  .royalty-free {
    margin-top: 100px;
  }
}

/* media query for less than 600 screen size*/

@media only screen and (max-width: 600px) {
  .row {
    text-align: center;
  }
  .row-content {
    flex-direction: column;
  }

  .col-2,
  .col-3,
  .col-4 {
    flex-basis: 100%;
  }
  .cost {
    justify-content: center;
    padding-top: 5px;
  }
  .rating {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 431px) {
  .col-2 h1 {
    font-size: 55px;
    margin-bottom: 3rem;
  }

  .col-2 .btn {
    margin-bottom: 0;
  }

  .col-2 img {
    margin-top: -50px;
  }
}

/* styling the search bar dropdown when typing */
#searchSuggestions.suggestions-dropdown {
  /* 1. Positioning and Spacing */
  position: absolute;
  top: 100%;
  left: 0;
  width: 71%;
  margin-left: 110px;
  cursor: pointer;

  /* 2. Alignment */
  display: none; /* Controlled by JS */
  flex-direction: column;
  align-items: flex-start; /* Forces content to the left */
  text-align: left; /* Ensures text starts at the left */

  /* 3. Visuals (Matching your screenshot) */
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow: hidden; /* Keeps corners rounded */
}

/* Ensure the items inside also align left */
.suggestion-item {
  width: 100%; /* Makes the hover effect span the full width */
  display: flex;
  justify-content: flex-start; /* Content to the left */
  align-items: center;
  padding: 12px 15px;
}

/* Container for the image and text */
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background-color: #f9f9f9;
}

/* Fix the big image problem */
.suggestion-item img {
  width: 50px; /* Fixed width */
  height: 50px; /* Fixed height */
  object-fit: contain; /* Prevents stretching */
  margin-right: 15px; /* Space between image and text */
  border-radius: 4px;
  background: #fdfdfd; /* Light background for transparent PNGs */
  flex-shrink: 0; /* Prevents the image from getting squashed */
}

/* Style the text next to the image */
.suggestion-text {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Adds ... if the name is too long */
}

.royalty-free {
  color: #ff523b;
  font-weight: 600;
  /* Animation Settings */
  display: inline-block; /* Ensures transform properties work correctly */
  animation: emphasizeIn 0.8s ease-out forwards;
  font-size: 16px;
}

@keyframes emphasizeIn {
  0% {
    opacity: 0;
    transform: translateY(60px); /* Starts slightly lower */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Settles into position */
  }
}

/* footer */
.footer {
  color: white;
  padding: 60px 20px 20px 20px;
  font-family: sans-serif;
  background: #1d1d1d;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* Spreads columns evenly */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-col {
}

.footer-col-quick {
  margin-top: 50px;
}

.footer-col-quick h4 {
  /* padding-bottom: 30px; */
}

.footer-col-quick ul {
  list-style: none;
  padding: 0;
  background-color: red;
}

.footer-col-quick a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  padding-bottom: 20px;
}

.footer-col-logo-col {
}

.footer-col-logo-col .footer-logo {
  padding-bottom: 50px;
}

.footer-col .contact-item {
  display: flex;
  gap: 20px;
  padding: 10px;
  align-items: center;
}

.footer-col .contact-item ion-icon {
  font-size: 25px;
}
.footer-col p {
  font-size: 14px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #cbd5e0;
}

/* Links and Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

/* Social Icons (Circles) */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  align-items: left;
}

.stay {
  text-align: left;
}
.social-icons ion-icon {
  font-size: 25px;
  color: white;
}

/* Bottom elements */
.copyright,
.legal-links {
  font-size: 11px;
  margin-top: 50px;
}
.legal-links {
  display: flex;
  gap: 20px;
}

.right-align {
  text-align: right;
}

.copy-term {
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
}

.copy-term p {
  font-size: 13px;
  text-align: left;
}
.copy-term .legal-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding-bottom: 10px;
  /* list-style: none; */
}

hr {
  border: 0; /* Remove default 3D border */
  height: 1px; /* Set a specific thickness */
  background-color: rgba(255, 255, 255, 0.1); /* White with low opacity */
  margin: 40px 0 20px 0; /* Spacing: 40px top, 20px bottom */
}

@media screen and (max-width: 768px) {
  .copy-term {
    display: flex;
    flex-direction: column;
  }

  .copyright {
    padding: 0;
    margin: 0;
  }

  .legal-links {
    padding: 0;
    margin: 0;
    padding-top: 5px;
  }

  .stay {
    margin-top: 40px;
  }
}

/* Add this to your CSS */
.req-item.valid {
  color: #58bc82;
  font-weight: 600;
}
.req-item.valid::before {
  content: "✅"; /* Changes the icon when valid */
}

/*  */
.social-icons {
  display: flex;
  gap: 20px;
}

.icon {
  font-size: 24px;
  color: #6d6a5e; /* Muted base color */
  transition: all 0.3s ease;
  display: inline-block;
}

.icon:hover {
  color: #1a1b1a; /* Darkens to Obsidian */
  transform: translateY(-3px); /* Gentle lift */
}

.cost {
  display: flex;
  gap: 10px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-icon p {
  color: #58bc82;
  font-size: 16px;
  font-weight: 400;
}

/* video preview */
.product-showcase {
  max-width: 1300px; /* Widened slightly to accommodate 3 items */
  margin: 50px auto;
  padding: 0 20px;
}

.product-showcase .title {
  /* Adjust this value to shrink the gap (1.1 to 1.2 is usually tight and clean) */
  line-height: 1.2;

  /* Ensure there isn't extra padding at the top/bottom adding to the illusion of a gap */
  margin-bottom: 10px;
  padding: 0;
  padding-bottom: 15px;
}
.beat-layout {
  display: flex;
  justify-content: flex-start; /* Aligns items to the left */
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  gap: 20px; /* Space between the 3 cards */
  /* Establish the base state */
  flex-direction: column;
  padding-bottom: 40px;
  align-items: center;
}

.unique-product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px; /* Reduced gap between image and video */
  background: #fff;
  padding: 100px; /* Reduced internal padding to save space */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  /* The Magic Number: roughly 1/3 of the row minus gaps */
  flex: 0 0 calc(33.33% - 14px);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* cursor: pointer; */
  margin-top: 40px;
}

.unique-product-card:hover {
  /* Scale up by 5% */
  transform: scale(1.05);
  /* Optional: adds depth */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.product-info-side {
  flex: 1;
  min-width: 0; /* Prevents flex items from overflowing */
}
.product-info-side h4 {
  margin-bottom: 6px;
  font-size: 40px;
  font-weight: 600;
}
.product-info-side img {
  width: 95%;
  border-radius: 8px;
  display: block;
  margin-bottom: 15px;
}

.product-info-side p {
  padding-bottom: 5px;
}
/* Vertical Centering for the video */
.video-preview-side {
  flex: 1.2; /* Gives the video slightly more room than the text */
  min-width: 0;
  display: flex;
  align-items: center;
}

.centering-wrapper {
  width: 100%;
}

.centering-wrapper p {
  padding-top: 10px;
  color: rgb(160, 160, 160);
}
.photo-caption {
  text-align: left;
  margin-bottom: 8px;
}
.centering-wrapper .photo-caption {
  color: #474747;
  padding-bottom: 10px;
  font-weight: 600;
}

.video-frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.video-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cost-beat {
  display: flex;
  gap: 15px;
}
.rating1 img {
  width: 80px; /* Adjust this number to make it smaller or larger */
  height: auto; /* Maintains the aspect ratio so they don't look squashed */
  display: block;
  margin-bottom: 5px; /* Adds a little space before the price */
}
/* Responsive Adjustments */
@media only screen and (max-width: 1100px) {
  .unique-product-card {
    flex: 0 0 calc(50% - 20px); /* 2 items per row on tablets */
  }
  .cost-beat {
    justify-content: left;
  }
}

@media only screen and (max-width: 700px) {
  .unique-product-card {
    flex: 0 0 100%; /* 1 item per row on mobile */
    flex-direction: column; /* Stack image/video vertically on mobile only */
  }
  .unique-product-card {
    padding: 30px;
  }
}

/* Hide the scroll top button on screens smaller than 768px */
@media (max-width: 768px) {
  #scrollTopBtn {
    display: none !important;
  }
}
