@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --white-color: #fff;
  --black-color: #000;
  --main-color: #005f00;
  --lighter-green: #00c503;
  --in-todays-market-container-color: #4d4d4d;
  --speed: 4s; /* longer = slower */
  --bg: #0f172a;
  --fg: #e6eef8;
  --gap: 2rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
button {
  background: transparent;
  border: none;
}
body {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  display: grid;
  grid-template-areas:
    "header header header"
    "main main main"
    "Slider slider slider"
    "footer footer footer";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
header {
  grid-area: header;
}
main {
  grid-area: main;
}
aside {
  grid-area: slider;
  width: 100vw;
}
footer {
  grid-area: footer;
  width: 100%;
}
.nav-btn a {
  text-decoration: none;
  color: var(--lighter-green);
  font-size: 18px;
  margin: 0.5rem;
}
.nav-btn {
  background: transparent;
  border: none;
}
.nav-btn a:hover {
  background: var(--main-color);
  color: var(--white-color);
  padding: 0.7rem;
  border-radius: 13px;
}
.header {
  width: 95%;
  margin: 0 auto;
  background: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-icon {
  width: 40px;
  height: 32px;
}
.logo-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.logo-parent a {
  font-size: 24px;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-weight: 700;
  color: #1a1a1a !important;
}
nav {
  display: flex;
  align-items: center;
}
nav a,
.nav-btn {
  color: var(--lighter-green);
  text-decoration: none;
  font-size: 18px;
  margin: 0.5rem;
}
.nav-btn:hover,
nav a:hover {
  background: var(--main-color);
  color: var(--white-color);
  padding: 0.7rem;
  border-radius: 5px;
}
.service-content a,
.more-content a {
  display: block;
}
.service-content,
.more-content {
  position: absolute;
  display: none;
  min-width: 200px;
  background: var(--white-color);
  z-index: 9999;
}
.service-dropdown:hover .service-content,
.more-dropdown:hover .more-content {
  display: block;
}
.service-content a:hover,
.more-content a:hover {
  background: #00ab00;
  color: var(--white-color);
  padding: 5px;
  border-radius: 0px;
}
.nav2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown img:nth-of-type(2) {
  position: absolute;
  top: 9px;
  left: 21px;
}
.dropdown img:nth-of-type(1) {
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  padding: 3px;
}
.dropdown img {
  cursor: pointer;
}
/* Dropdown Box */
.notification {
  background: var(--white-color);
  width: 300px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50px;
  left: -140px;
  margin-top: 10px;
  /* Initially hidden */
  display: none;
  z-index: 100;
}
/*=======Backend ====*/
/* Scrollable row containers stay the same */
#recentPro,
#approvedPro,
#fakePro {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}
#recentPro::-webkit-scrollbar,
#approvedPro::-webkit-scrollbar,
#fakePro::-webkit-scrollbar {
  height: 8px;
}
#recentPro::-webkit-scrollbar-thumb,
#approvedPro::-webkit-scrollbar-thumb,
#fakePro::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
/* ---------- HORIZONTAL CARD ---------- */
.product-card {
  flex: 0 0 450px; /* card width */
  display: flex; /* horizontal layout */
  width: 200px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
}
/* image fixed on the left */
.product-card .product-image {
  width: 150px; /* fixed image width */
  height: 150px; /* fixed height for uniformity */
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #f5f5f5;
}
/* info block on the right */
.product-info {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0; /* let text wrap */
}
.product-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.product-badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  align-self: flex-start;
}
.badge-approved {
  background: #e0f7e9;
  color: #188c3a;
}
.badge-fake {
  background: #fdecea;
  color: #c62828;
}
.product-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}
/*=======Backend profilePic, Bell, logout========*/
/* Invisible hover bridge below the icon */
.dropdown::before {
  content: "";
  position: absolute;
  top: 100%; /* place directly under the dropdown trigger */
  left: 0;
  width: 100%;
  height: 100px; /* adjust this to match your gap size (e.g., 15–25px) */
  background: transparent;
}
/* Ensure the dropdown box appears above the hover bridge */
.dropdown:hover::before {
  z-index: 99;
}
#profilePic {
  width: 60px; /* fixed width */
  height: 60px; /* fixed height */
  object-fit: cover; /* crop instead of stretching */
  border-radius: 50%; /* makes it a circle */
  border: none; /* optional: add border */
}
/* hide by default */
.hidden {
  display: none;
}
/* last dropdown*/
/*Show dropdown on hover */
.dropdown-2:hover .dropdown-content-1 {
  display: block;
}
/* Hover bridge trick — invisible area keeps dropdown open */
.dropdown-2::after {
  content: "";
  position: absolute;
  top: 100%; /* directly below the dropdown button */
  left: 0;
  width: 100%;
  height: 100px; /* height of the invisible hover area */
  background: transparent;
}
/* Ensure hovering over the bridge area also keeps menu open */
.dropdown-2:hover::after {
  pointer-events: auto;
}
/* Notification items */
.notification .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid #00ab00;
  border-radius: 0px 10px 10px 10px;
}
.item:hover {
  background: #e5feeb;
}
.notification .item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.notification .item .info {
  flex: 1;
  margin-left: 10px;
}
.notification .item .info h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.notification .item .info p {
  margin: 3px 0;
  font-size: 12px;
  color: #4d4d4d;
}
.notification .item .info span {
  font-size: 11px;
  color: #999;
}
.notification .item a {
  text-decoration: none;
  font-size: 12px;
  color: #999;
  font-weight: 500;
  float: right;
}
.dropdown:hover .notification {
  display: block;
}
.dropdown-2 {
  position: relative;
}
.group-inner {
  cursor: pointer;
}
.dropdown-content a {
  display: block;
  text-decoration: none;
  color: #00c503;
  font-size: 18px;
  background-color: var(--white-color);
  flex: 1;
  letter-spacing: -0.03em;
  line-height: 28px;
  font-weight: 500;
}

.dropdown-2:hover .dropdown-content-1 {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.dropdown-content ul {
  display: none;
  width: 100%;
  position: absolute;
  right: -25px;
  top: 2rem;
  background-color: var(--white-color);
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 48px;
  right: -5px;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 193px;
  height: 124px;
  text-align: right;
}
.link {
  padding: 5px 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 10px;
}
.dropdown-content a:hover {
  background-color: #3e8e41;
  color: var(--white-color);
}
.dropdown-2:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.menu-container {
  display: none;
  margin: 1rem auto;
  z-index: 1000;
}
.list-item-container {
  display: none;
}
.list-item-container.active {
  display: block;
}
.menu-container .list-item-container a {
  text-decoration: none;
  display: block;
  margin: 0.2rem 0;
  padding: 5px;
  min-width: 160px;
  text-align: left;
  color: #00c503;
  font-size: 1rem;
  max-width: 100%;
  transition: 0.3s;
}
.menu-container .list-item-container a:hover {
  background: #00c503;
  color: var(--white-color);
}
/* Main */
.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-flow: dense;
  grid-template-rows: auto;
  width: 100%;
  min-width: 0px;
}
.awareness-page-child {
  width: 58vw;
  margin: 10px;
  margin-block: 2rem;
}
.slide {
  display: flex;
  overflow-x: scroll;
  max-width: 100%;
}
.slide::-webkit-scrollbar {
  display: none;
}
.welcome {
  font-size: 30px;
  padding-block: 20px;
  color: var(--black-color) !important;
  width: 100%;
}
.in-todays-market-container {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 28px;
  font-weight: 500;
  color: var(--in-todays-market-container-color);
  text-align: left;
  display: inline-block;
}
.frame-child {
  width: 22%;
  border-radius: 30px;
  height: 222px;
  object-fit: cover;
}
.lamer,
.original {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}
.that-cream-that {
  align-self: stretch;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 36px;
  font-weight: 500;
}
.verify {
  align-self: stretch;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 32px;
}
.awareness-parent {
  width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.awareness-parent-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 22px;
  margin: 10px;
}
.one {
  background-color: #e5feeb;
}
.two {
  background: #fef2d5;
}
.three {
  background: #99fcaf;
}
.awareness {
  font-size: 36px;
  font-size: 900;
}
.frame-child {
  width: 150px;
  position: relative;
  border-radius: 15px;
  max-height: 100%;
  object-fit: cover;
}
.in-todays-market-the-circula-parent {
  margin: 10px;
  padding-block: 2rem;
}
.harmful-fake,
.recently-added-products {
  font-weight: 600;
  font-size: 24px;
  padding-block: 2rem;
  margin: 10px;
}
.luminosa-beauty {
  align-self: stretch;
  position: relative;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 28px;
}
.flagged {
  position: relative;
  letter-spacing: -0.03em;
  line-height: 20px;
  font-size: 14px;
}
.badge-products {
  border-radius: 10px;
  background-color: #da2a1d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 10px;
  color: #fff;
}
.cosmetic {
  align-self: stretch;
  position: relative;
  letter-spacing: -0.03em;
  line-height: 24px;
}
.luminosa-beauty-parent {
  width: 251px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.rectangle-parent {
  box-shadow: 0px 4px 5.3px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 15px;
  width: 100vw;
}
.frame-parent7,
.frame-parent9,
.frame-parent10 {
  overflow-x: scroll;
}
.frame-parent7::-webkit-scrollbar,
.frame-parent10::-webkit-scrollbar {
  display: none;
}
.rectangle-container {
  display: flex;
  background: var(--white-color);
  box-shadow: 0px 4px 5.3px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 10px;
  gap: 15px;
  text-align: left;
  font-size: 16px;
  width: 100%;
  color: #1a1a1a;
}
.badge-products1 {
  border-radius: 10px;
  background-color: #fcc7c3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 14px;
}
.view-all-product a {
  text-decoration: none;
  color: #00c503;
  font-weight: 500;
  font-size: 18px;
}
.view-all-product {
  text-align: right;
  margin-block: 15px;
}
article {
  margin-block: 3rem;
}
article h3 {
  font-size: 30px;
}
article h2 {
  font-size: 30px;
  margin-top: 6rem;
}
article .latest {
  margin-top: 60px;
  box-shadow: 10px 10px 5px rgb(204, 205, 205) inset;
  border-radius: 30px;
  padding-top: 30px;
  padding-left: 1rem;
}
article .latest .products {
  margin: 0px 0px 1rem 0px;
  position: relative;
}
article input {
  display: none;
}
.informed {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article .products .informed {
  font-size: 24px;
  position: relative;
  margin: 20px;
}
article .products:hover {
  background-color: #e5feeb;
}
#toggle:checked ~ .faq-dropdown {
  display: block;
}
#toggle:checked + label .fa-chevron-down {
  transform: rotate(180deg);
}
#toggle-i:checked ~ .faq-dropdown {
  display: block;
}
#toggle-i:checked + label .fa-chevron-down {
  transform: rotate(180deg);
}
#toggle-ii:checked ~ .faq-dropdown {
  display: block;
}
#toggle-ii:checked + label .fa-chevron-down {
  transform: rotate(180deg);
}
#toggle-iii:checked ~ .faq-dropdown {
  display: block;
}
#toggle-iii:checked + label .fa-chevron-down {
  transform: rotate(180deg);
}
article .latest .products .faq-dropdown {
  display: none;
  margin-top: 15px;
  padding-bottom: 10px;
}
article .latest .faq-dropdown p {
  margin-bottom: 20px;
  font-size: 22px;
}
.verified-store-and-location-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  gap: 10px;
  text-align: left;
  font-size: 24px;
  color: #1a1a1a;
}
.verified-store-and {
  width: 299px;
  letter-spacing: -0.03em;
  line-height: 32px;
  display: inline-block;
  height: 32px;
  flex-shrink: 0;
}
.table {
  height: 754px;
}
.pharmacy-name-parent {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  padding-block: 1rem;
}
.pharmacy-name {
  width: 305px;
  letter-spacing: -0.03em;
  line-height: 28px;
  flex-shrink: 0;
}
.location {
  letter-spacing: -0.03em;
  line-height: 28px;
}
.group-parent-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 18px;
}
.alpha-pharmacy-stores-limite-parent {
  height: 28px;
}
.alpha-pharmacy {
  letter-spacing: -0.03em;
  line-height: 28px;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 305px;
}
.ikeja-lagos {
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cmargs-pharmacy-wellmart-parent {
  height: 28px;
}
.cmargs-pharmacy-wellmart-parent,
.medplus-pharmacy-the-palms-parent,
.medplus-pharmacy-chain-parent,
.help-pharmacy-lagos-parent,
.naza-pharmacy-life-link-ot-parent,
.cmargs-pharmacy-wellmart-parent,
.skylark-pharmacy-parent,
.alpha-pharmacy-stores-limite-parent {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 28px;
}
.medplus-pharmacy-the-palms-parent {
  height: 28px;
}
.skylark-pharmacy-parent {
  height: 28px;
  display: flex;
}
/* comminity gist */
.post-1-parent {
  width: 100%;
}
.community-gist {
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 36px;
  color: #001600;
  padding-top: 3rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}
.group-child {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  object-fit: cover;
}
.mr-abiodun {
  letter-spacing: -0.03em;
  line-height: 24px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lagos-nigeria {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #b3b3b3;
}
.mr-abiodun-parent {
  position: absolute;
  top: 0px;
  left: 48px;
  width: 229px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
}
.ellipse-parent {
  width: 277px;
  position: relative;
  height: 47px;
}
.frame-child {
  width: 24px;
  height: 24px;
}
.group-parent {
  height: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 10px;
  box-sizing: border-box;
  gap: 17px;
  background: linear-gradient(#e5feeb, #e5feeb), #fff;
}
.h {
  align-self: stretch;
  position: relative;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #ccc;
}
.mr-abiodun-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
}
.frame-wrapper {
  width: 217px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.ellipse-group {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 335px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.post-1-inner {
  align-self: self-start;
  position: relative;
  height: 44px;
}
.police-adopt-early-container {
  width: 335px;
  letter-spacing: -0.31px;
  line-height: 21px;
  display: inline-block;
  flex-shrink: 0;
}
.title {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.picvidoe-icon {
  align-self: stretch;
  position: relative;
  max-width: 100%;
  height: 182px;
  flex-shrink: 0;
  object-fit: cover;
}
.comments {
  letter-spacing: 0.06px;
  line-height: 13px;
}
.comments-parent {
  width: 246px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 5px;
  box-sizing: border-box;
  gap: 20px;
}
.k {
  position: absolute;
  top: 1px;
  left: 24px;
  letter-spacing: 0.06px;
  line-height: 13px;
}
.clip-path-group {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  left: 0%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}
.component-3 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  overflow: hidden;
}
.k-parent {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 44px;
  height: 15px;
}
.views-bar {
  width: 336px;
  position: relative;
  height: 15px;
  flex-shrink: 0;
  font-size: 11px;
}
.comment-cards-child {
  width: 40px;
  position: relative;
  border-radius: 50%;
  height: 40px;
  object-fit: cover;
}
.miss-jennifer {
  position: relative;
  letter-spacing: -0.31px;
  line-height: 21px;
}
.miss-jennifer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
}
.i-have-same {
  width: 268px;
  position: relative;
  line-height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.i-have-same-experience-too-it-wrapper {
  align-self: stretch;
  border-radius: 10px;
  background-color: #ccfed7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 12px;
}
.frame-group {
  width: 286px;
  border-radius: 0px 5px 5px 5px;
  background-color: #ccfed7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.comment-cards {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.i-experienced-something {
  width: 268px;
  position: relative;
  line-height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.i-experienced-something-simila-wrapper {
  align-self: stretch;
  border-radius: 10px;
  background-color: #fef2d5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 12px;
}
.frame-container {
  width: 286px;
  border-radius: 0px 5px 5px 5px;
  background-color: #fef2d5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.my-experience-is-similar-its-wrapper {
  align-self: stretch;
  border-radius: 10px;
  background-color: #ffeacc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 12px;
}
.frame-div {
  width: 286px;
  border-radius: 0px 5px 5px 5px;
  background-color: #ffeacc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.comments1 {
  align-self: stretch;
  height: 177px;
  overflow-x: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.all-comment {
  align-self: stretch;
  height: 574px;

  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.write-comments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
}
.write-comments input {
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  resize: none;
  width: 266px;
  background: #e6e6e6;
  color: #1a1a1a;
}
.write-comments input::placeholder {
  color: #b3b3b3;
}
.l1-parent {
  width: 336px;
  border-radius: 5px;
  background-color: #e6e6e6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  box-sizing: border-box;
  gap: 3px;
  color: #b3b3b3;
  height: 50px;
}
.post-1 {
  align-self: stretch;
  background-color: #fafafa;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}
.post-2 {
  align-self: stretch;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}
.miss-jennier {
  align-self: stretch;
  letter-spacing: -0.31px;
  line-height: 21px;
  font-weight: 600;
}
/*  slider*/
/* Brands Partner */
.partners {
  height: 100%;
  padding-block: 5em;
}
.partners h2 {
  text-align: center;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 40px;
  color: #424242;
}
.carousel {
  display: flex;
  width: 100%;
  overflow-x: auto;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-block: 3rem;
  padding-right: 1em;
  animation: spin 6s infinite linear;
}
.brand-card {
  display: flex;
  gap: 3rem;
}
.nb {
  width: 100px;
  object-fit: cover;
}
@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}
/*=======Backend ====*/
/* Scrollable row containers stay the same */
#recentPro,
#approvedPro,
#fakePro {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}
#recentPro::-webkit-scrollbar,
#approvedPro::-webkit-scrollbar,
#fakePro::-webkit-scrollbar {
  height: 8px;
  display: none;
}
#recentPro::-webkit-scrollbar-thumb,
#approvedPro::-webkit-scrollbar-thumb,
#fakePro::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ---------- HORIZONTAL CARD ---------- */
.product-card {
  flex: 0 0 450px; /* card width */
  display: flex; /* horizontal layout */
  width: 200px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
}

/* image fixed on the left */
.product-card .product-image {
  width: 150px; /* fixed image width */
  height: 150px; /* fixed height for uniformity */
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #f5f5f5;
}

/* info block on the right */
.product-info {
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0; /* let text wrap */
}

.product-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.product-badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  align-self: flex-start;
}
.badge-approved {
  background: #e0f7e9;
  color: #188c3a;
}
.badge-fake {
  background: #fdecea;
  color: #c62828;
}

.product-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}
/* ===== Footer Styling ===== */
.footer {
  max-width: 100%;
  background: var(--main-color);
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
}
.chevron-right {
  background: #99fcaf;
}
.logo a {
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--white-color);
}
.divider {
  width: 90%;
  background-color: #fff;
  height: 1px;
  opacity: 0.1;
  mix-blend-mode: normal;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0;
  padding-block: 3rem;
}
.newsletter {
  flex-grow: 0.5;
  flex-shrink: 1;
  margin: 1rem;
}
.newsletter p {
  font-size: 20px;
  color: var(--white-color);
}
.input-container {
  background: var(--main-color);
  width: 320px;
  max-width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #4caf50;
  margin-top: 3.4rem;
}
.input-container input {
  width: 100%;
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px;
  color: black;
  font-size: 16px;
}
input::placeholder {
  color: white;
  opacity: 0.9;
}
.btn {
  background: #90ee90;
  border: none;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: #76d976;
}
.btn svg {
  width: 16px;
  height: 16px;
  stroke: #025902;
  stroke-width: 2;
  fill: none;
}
.links h4 {
  color: #99fcaf;
  font-size: 18px;
}
.links ul li {
  list-style-type: none;
  margin-top: 1.5rem;
  width: 100%;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 24px;
  color: #fff;
  text-align: left;
  display: inline-block;
  cursor: pointer;
}
.links li a {
  text-decoration: none;
  color: var(--white-color) !important;
  font-size: 16px;
  white-space: nowrap;
  margin-inline-end: 10px;
}
.footer-more {
  order: 1;
}
.footer-more {
  order: 2;
}
.footer-services {
  order: 3;
}
.newsletter {
  order: 4;
}
.footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-block: 5rem;
}
.footer-bottom a {
  color: var(--white-color);
  text-decoration: none;
}
.legal a {
  margin: 20px;
}
.socials a {
  margin: 10px;
}
.copyright {
  text-align: center;
  color: var(--white-color);
  font-size: 20px;
}
@media (max-width: 2500px) {
  body {
    width: 100vw;
  }
}
@media (max-width: 992px) {
  body {
    height: 100%;
  }
  .awareness-page-child {
    width: 100vw;
  }
  .post-1-parent {
    display: none;
  }
  .table {
    display: block;
  }
  .sr-only {
    font-size: 28px;
  }
  .nav-btn,
  .group-inner,
  .group-item {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav2 {
    gap: 0.8rem;
  }
  .latest-news-container {
    height: 40vh;
  }
  .welcome {
    width: 335px;
  }
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .cmargs-pharmacy-wellmart-parent,
  .medplus-pharmacy-the-palms-parent,
  .medplus-pharmacy-chain-parent,
  .help-pharmacy-lagos-parent,
  .naza-pharmacy-life-link-ot-parent,
  .skylark-pharmacy-parent,
  .alpha-pharmacy-stores-limite-parent,
  .pharmacy-name-parent {
    display: block;
    align-items: center;
    gap: 25px;
    height: 28px;
    margin: 10px;
  }
  .pharmacy-name-parent {
    padding-block: 2rem;
  }
  .view-all-product {
    text-align: left;
    margin-left: 10rem;
  }
  footer {
    padding: 2rem;
  }
  .logo {
    padding: 0rem;
  }
  .divider {
    display: none;
  }
  .footer-links {
    display: block;
  }
  .links ul li {
    list-style-type: none;
    margin-top: 0.5rem;
  }
  .newsletter {
    margin: 0rem;
    padding-block: 2rem;
  }
  .newsletter p {
    width: 139.6px;
    line-height: 28px;
  }
  .input-container {
    margin-top: 2rem;
  }
  .links h4 {
    padding-top: 1rem;
  }
  .footer-bottom {
    display: block;
    padding-block: 1rem;
  }
  .socials {
    display: block;
  }
  .legal {
    display: flex;
    white-space: nowrap;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  body {
    width: 100%;
  }
  .header {
    width: 90%;
  }
  .logo-parent a {
    font-size: 20px;
  }
  .container {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    box-sizing: border-box;
  }
  .welcome {
    font-weight: 700;
    color: #005f00 !important;
  }
  .police {
    font-size: 18px;
  }
  .partners,
  .slide {
    display: none;
  }
  .dropdown-btn {
    width: 324px;
    max-width: 100%;
  }
  .faq-dropdown {
    z-index: 9999;
  }
  .table {
    margin-top: 1rem;
  }
  .in-todays-market-container {
    text-align: center;
    height: 224px;
  }
  .view-all-product {
    margin-left: 0px;
  }
  .legal {
    padding-top: 10px;
  }
  .legal a {
    margin: 0px;
  }
}
