@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ================= ROOT ================= */
:root {
  --brand-primary: #00b4ff;
  --brand-secondary: #0e6b76;
  --dark: #052930;
  --muted: #6c8f98;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* TOP BAR */
.topbar {
  max-width: 1400px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 42px
}

.top-actions {
  display: flex;
  gap: 12px;
}

.cta-btn {
  border: 2px solid var(--brand-secondary);
  /* color:var(--brand-primary); */
  color: #000;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  text-decoration: none;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  color: #fff;
}

.ask-btn {
  padding: 12px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-secondary));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 180, 255, .35);
  text-decoration: none;
}

/* ================= CATEGORY NAV ================= */
.main-nav {
  background: #f7f7f7;
  border-top: 1px solid #e6eef2;
}

.nav-items {
  max-width: 1400px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  gap: 36px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-items::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}

.nav-svg {
  width: 22px;
  height: 22px;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link.active {
  color: var(--brand-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: var(--brand-secondary);
  border-radius: 10px;
}

/* ================= HERO ================= */
.hero-search {
  position: relative;
  background: url('https://assets.lybrate.com/q_auto,f_auto/imgs/product/Homepage/Web_Home-Page_Banner_03.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 28px;
}

.hero-search-box {
  display: flex;
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.hero-search-box input {
  flex: 1;
  padding: 16px;
  border: none;
  outline: none;
}

.hero-search-box button {
  padding: 0 40px;
  background: #d32f2f;
  color: #fff;
  border: none;
  font-weight: 700;
}

.hero-trending {
  margin-top: 16px;
  font-size: 14px;
}

.hero-activity {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-activity .time {
  border: 1px dashed #fff;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ================= Q&A ================= */
.qa-section {
  background: #f8fcfd;
  padding: 80px 20px;
}

.qa-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

.qa-left h2 {
  color: var(--brand-secondary);
  font-size: 30px;
  margin-bottom: 6px;
}

.qa-sub {
  color: var(--muted);
  margin-bottom: 32px;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

/* View more */
.qa-view {
  margin-top: 40px;
  font-weight: 800;
  font-size: 15px;
  color: #0e6b76;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.qa-view:hover {
  border-color: #00b4ff;
}

.qa-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e5f2f6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.qa-card h4 {
  font-size: 16px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.qa-doctor {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.qa-doctor img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
}

.qa-doctor b {
  color: var(--brand-secondary);
}

.qa-doctor span {
  font-size: 13px;
  color: #7c9aa2;
}

.qa-card p {
  font-size: 14px;
  color: #425e66;
}

.qa-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--brand-secondary);
}

/* RIGHT PANEL */
.qa-right {
  background: linear-gradient(180deg, #f0fbff, #fff);
  border: 2px solid var(--brand-secondary);
  border-radius: 18px;
  padding: 28px;
  height: fit-content;
}

.qa-right textarea {
  width: 100%;
  height: 120px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #cfe9f2;
}

.qa-right button {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
}

/* ================= MOBILE ================= */
@media(max-width:900px) {
  .qa-container {
    grid-template-columns: 1fr;
  }

  .qa-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .topbar {
    flex-direction: column;
    gap: 14px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-search-box {
    flex-direction: column;
  }
}

.health-tips-section {
  background: #fff;
  padding: 70px 20px;
}

.tips-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT */
.tips-left {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.tips-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tips-left-content {
  background: #0e6b76;
  color: #fff;
  padding: 24px;
}

.tips-left-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.tips-left-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.tips-btn {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid #fff;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* RIGHT */
.tips-right {
  /* background:#3b3b3b; */
  background: #0e6b76;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tips-right-list {
  overflow-y: auto;
  max-height: 520px;
}

.tips-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  color: #fff;
  transition: .2s;
}

.tips-item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.tips-item b {
  font-size: 14px;
}

.tips-item span {
  display: block;
  font-size: 12px;
  color: #ccc;
}

.tips-item:hover,
.tips-item.active {
  /* background:#00b4ff; */
}

/* .view-more{
  text-align:center;
  padding:16px;
  background:#222;
  color:#fff;
  text-decoration:none;
  font-weight:700;
} */

.view-more {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid #fff;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  width: 347px;
  margin-left: 30px;
  margin-right: 50px;

  text-align: center;

}

/* Mobile */
@media(max-width:900px) {
  .tips-container {
    grid-template-columns: 1fr;
  }
}

.video-section {
  padding: 80px 20px;
  background: #f8fcfd;
  text-align: center;
}

.video-header h2 {
  font-size: 32px;
  color: #0e6b76;
}

.video-header p {
  color: #6b8c94;
  margin-bottom: 40px;
}

/* Slider frame */
.video-frame {
  max-width: 1300px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Track */
.video-track {
  display: flex;
  gap: 25px;
  transition: .6s ease;
  will-change: transform;
}

/* Cards */
.video-card {
  width: 280px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
  text-decoration: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.video-overlay h4 {
  font-size: 16px;
}

.video-overlay p {
  font-size: 13px;
  opacity: .85;
}

/* Play button */
.play {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
}

/* Arrows */
.video-prev,
.video-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #0e6b76;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.video-prev {
  left: 10px;
}

.video-next {
  right: 10px;
}

@media(max-width:768px) {
  .video-card {
    width: 220px;
    height: 340px;
  }
}


.doctor-cta {
  width: 100%;
  background: #fff;
  padding: 90px 20px;
  text-align: center;
}

.doctor-cta-inner {
  max-width: 900px;
  margin: auto;
}

.doctor-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0e6b76;
  margin-bottom: 20px;
}

.doctor-cta p {
  font-size: 18px;
  color: #5f7f87;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Button */
.doctor-btn {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, #00b4ff, #0e6b76);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 180, 255, .4);
  transition: .3s;
}

.doctor-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(14, 107, 118, .5);
}

/* Mobile */
@media(max-width:768px) {
  .doctor-cta {
    padding: 60px 20px;
  }

  .doctor-cta h2 {
    font-size: 28px;
  }

  .doctor-cta p {
    font-size: 16px;
  }

  .doctor-btn {
    padding: 14px 34px;
  }
}

.category-section {
  background: #f9fdff;
  padding: 60px 0;
}

.category-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.cat-title {
  font-size: 26px;
  font-weight: 800;
  color: #0e6b76;
  margin-bottom: 28px;
}

/* 🔥 THIS IS IMPORTANT */
.cat-slider-wrapper {
  position: relative;
  /* ← Buttons will stay inside this */
}

/* Slider viewport */
.cat-slider {
  overflow: hidden;
}

/* Track */
.cat-track {
  display: flex;
  gap: 22px;
  transition: .5s ease;
}

/* Card */
.cat-card {
  min-width: 260px;
  height: 150px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7));
  border-radius: 18px;
}

.cat-card span {
  position: relative;
  z-index: 2;
}

/* Navigation Buttons */
.cat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #00b4ff, #0e6b76);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 180, 255, .4);
}

.cat-nav.prev {
  left: -20px;
}

.cat-nav.next {
  right: -20px;
}

.cat-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Mobile */
@media(max-width:768px) {
  .cat-card {
    min-width: 220px;
    height: 130px;
  }

  .cat-nav.prev {
    left: -10px;
  }

  .cat-nav.next {
    right: -10px;
  }
}


.faq-section {
  background: #f8fcfd;
  padding: 80px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.faq-left h2 {
  font-size: 34px;
  color: #0e6b76;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e1f2f7;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: .3s;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0e6b76;
  background: #f0fbff;
}

.faq-question i {
  font-size: 22px;
  color: #00b4ff;
}

.faq-answer {
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #5f7f89;
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
}

.faq-item.active {
  border-color: #00b4ff;
  box-shadow: 0 8px 30px rgba(0, 180, 255, .15);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

/* RIGHT */
.faq-right {
  text-align: center;
}

.faq-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

/* Mobile */
@media(max-width:900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}


/* Modal Form  Css */
.consult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 41, 48, .75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.consult-modal {
  width: 95%;
  max-width: 720px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: zoom .4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.consult-header {
  background: linear-gradient(90deg, var(--dark), var(--brand-primary));
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.consult-header h3 {
  font-size: 18px;
  margin: 0;
}

.close-modal {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.consult-form {
  padding: 28px;
}

.consult-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d9eaf0;
  margin-bottom: 18px;
  font-size: 14px;
  background: #f9fdff;
}

.consult-form input:focus,
.consult-form textarea:focus,
.consult-form select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px rgba(0, 180, 255, .15);
}

/* Submit Button */
.consult-btn {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.consult-btn:hover {
  background: #0099dd;
}

.consult-features {
  margin-top: 18px;
  font-size: 14px;
  color: var(--dark);
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.consult-features p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Animation */
@keyframes zoom {
  from {
    transform: scale(.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media(max-width:600px) {
  .consult-modal {
    max-width: 95%;
  }
}


.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 70px 20px 20px;
}

.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

/* Brand */
.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-col p {
  color: #b8d4db;
  font-size: 14px;
  line-height: 1.7;
}

/* Headings */
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--brand-primary);
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

/* Links */
.footer-col a {
  display: block;
  color: #b8d4db;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: .3s;
}

.footer-col a:hover {
  color: var(--brand-primary);
  transform: translateX(6px);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: #b8d4db;
}

/* Mobile */
@media(max-width:900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Testimonial Section  */
.testi-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testi-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.testi-title span {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testi-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.testi-frame {
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: .6s ease;
}

.testi-card {
  min-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 180, 255, .15);
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.avatar.orange {
  background: #ff7a18;
}

.avatar.purple {
  background: #7b2cbf;
}

.stars {
  color: #f7b500;
}

.testi-card p {
  font-size: 14px;
  color: var(--dark);
  margin: 15px 0;
}

.testi-card a {
  color: var(--brand-primary);
  font-weight: 700;
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 180, 255, .4);
}

.testi-nav.prev {
  left: -20px;
}

.testi-nav.next {
  right: -20px;
}


/* ============ BLOG SECTION ============ */
.blog-section {
  padding: 80px 0;
  text-align: center;
  background: #f8fcfd;
}

.blog-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.blog-title span {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-sub {
  color: #6b8c94;
  font-size: 16px;
  margin-bottom: 50px;
}

.blog-slider {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
}

.blog-viewport {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  display: flex;
  gap: 30px;
  transition: .5s ease;
  padding-bottom: 50px;
}

.blog-card {
  min-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .4s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.blog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-btn {
  margin-top: auto;
  align-self: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 180, 255, .35);
  transition: .3s;
}

.blog-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 180, 255, .55);
}

.blog-nav {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  transition: .3s;
}

.blog-nav:hover {
  background: var(--brand-primary);
  transform: scale(1.1);
}

.blog-nav.prev {
  margin-right: 15px;
}

.blog-nav.next {
  margin-left: 15px;
}

/* Mobile */
@media(max-width:768px) {
  .blog-card {
    min-width: 260px;
  }

  .blog-title {
    font-size: 32px;
  }
}


.blog-details-page {
  background: #f8fcfd;
  padding: 60px 20px;
}

.blog-details-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 40px;
}

/* LEFT */
.blog-main-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.blog-main-image {
  height: 420px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
}

.blog-image-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.blog-main-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* SIDEBAR */
.blog-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

.sidebar-title {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.sidebar-item {
  display: flex;
  gap: 14px;
  align-items: center;
  cursor: pointer;
}

.sidebar-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.sidebar-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.sidebar-item span {
  font-size: 12px;
  color: #6b8c94;
}

/* Categories */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tags span {
  background: #eef9fb;
  color: var(--brand-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: .3s;
}

.category-tags span:hover {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
}

/* Mobile */
@media(max-width:900px) {
  .blog-details-wrap {
    grid-template-columns: 1fr;
  }
}



/* ================= SHOP Section  ================= */
.shop-section {
  padding: 30px 15px;
  background: #f8fbfc;
}

.shop-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.shop-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.filter-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.filter-box h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.category-list {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 5px;
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.cat-item input {
  width: 14px;
  height: 14px;
}

.cat-name {
  flex: 1;
}

.cat-count {
  color: #888;
  font-size: 13px;
}

.shop-products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.product-card-new {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.product-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-img {
  height: 160px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.product-content h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.desc {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.price .old {
  text-decoration: line-through;
  color: red;
  font-size: 12px;
}

.price .new {
  color: #00b4ff;
  font-weight: bold;
  font-size: 16px;
}

.stock {
  color: #0e6b76;
  font-size: 14px;
  font-weight: 600;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0e6b76;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn i {
  color: #fff;
  font-size: 15px;
}

.cart-btn:hover {
  background: #084c52;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.filter-box button {
  width: 100%;
  padding: 10px;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .shop-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-container {
    flex-direction: column;
  }

  .shop-sidebar {
    width: 100%;
  }

  .shop-products {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ================= PRODUCT DETAILS ================= */
.pd-section {
  padding: 60px 20px;
  background: #f8fbfc;
}

.pd-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.pd-left {
  flex: 1;
}

.pd-main-image {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.pd-main-image:hover img {
  transform: scale(1.4);
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pd-thumbs img {
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 6px;
}

.pd-right {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pd-meta {
  line-height: 1.8;
  font-size: 14px;
}

.pd-price .old {
  color: red;
  text-decoration: line-through;
}

.pd-price .new {
  font-size: 24px;
  color: #0e6b76;
  margin-left: 10px;
}

.pd-qty {
  display: flex;
  margin: 20px 0;
}

.pd-qty button {
  width: 45px;
  height: 45px;
  border: none;
  background: #eee;
}

.pd-qty input {
  width: 60px;
  text-align: center;
}

.pd-cart {
  background: #0e6b76;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  margin-top: 10px;
  border-radius: 6px;
}

.pd-buy {
  background: #2f55d4;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  margin-top: 10px;
  border-radius: 6px;
}

.pd-desc {
  margin-top: 20px;
}

.pd-desc h4 {
  font-size: 16px;
}

@media(max-width:768px) {
  .pd-wrapper {
    flex-direction: column;
  }
}

.pd-tabs {
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tab-buttons {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ddd;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 15px;
  cursor: pointer;
  color: #666;
  position: relative;
}

.tab-btn.active {
  color: #0e6b76;
  font-weight: 600;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #0e6b76;
}

.tab-content {
  display: none;
  padding: 25px 0;
}

.tab-content.active {
  display: block;
}

.review-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-form h4 {
  margin-bottom: 15px;
}

.review-form label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.review-form textarea {
  height: 120px;
}

.submit-review {
  margin-top: 15px;
  background: #0e6b76;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.star-rating {
  margin-top: 5px;
}

.star-rating span {
  font-size: 22px;
  cursor: pointer;
  color: #ccc;
  transition: 0.2s;
}

.star-rating span.active {
  color: #facc15;
}

.review-box {
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.review-box strong {
  display: block;
}

.review-box span {
  color: #facc15;
  font-size: 14px;
}

@media(max-width:576px) {
  .tab-buttons {
    gap: 15px;
    overflow-x: auto;
  }
}

.pro-desc-head {
  max-width: 1100px;
  margin: 40px auto 15px;
  padding: 18px;
  text-align: center;
  background: #f3f4f6;
  border-radius: 10px;
  font-size: 17px;
  letter-spacing: 2px;
  color: #0e6b76;
  font-weight: 600;
}

.pro-desc-card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 30px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}

.pro-content {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
}

.pro-content p {
  margin: 12px 0;
}

.pro-content b {
  font-weight: 600;
  color: #111827;
}

.pro-content hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 14px 0;
}

.pro-content ul {
  padding-left: 18px;
}

.pro-content ul li {
  margin-bottom: 8px;
  color: #4b5563;
}

@media(max-width:768px) {
  .pro-desc-head {
    margin: 20px 10px;
  }

  .pro-desc-card {
    margin: 0 10px;
    padding: 20px;
  }
}

/* SECTION */
.related-section {
  padding: 50px 20px;
  background: #f9fafb;
}

.related-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1f2937;
}

.related-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.related-card h4 {
  font-size: 15px;
  margin: 10px 0;
  color: #374151;
}

.r-price {
  margin-bottom: 12px;
}

.r-price .old {
  color: red;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 14px;
}

.r-price .new {
  color: #0e6b76;
  font-weight: 600;
  font-size: 16px;
}

.r-btn {
  width: 100%;
  padding: 10px;
  background: #e5e7eb;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.r-btn i {
  margin-right: 5px;
}

.r-btn:hover {
  background: #0e6b76;
  color: #fff;
}

@media(max-width:992px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* FLOATING LEFT BUTTON */
.cancer-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  color: #fff;
  padding: 12px 12px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 9999;
  transition: 0.3s;
}

.cancer-btn span {
  transform: rotate(180deg);
  display: inline-block;
}

.cancer-btn:hover {
  background: #094e55;
  padding-left: 25px;
}

@media(max-width:768px) {
  .cancer-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
}