* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f6f8;
}
.main-body {
    max-width: 946px;
    margin: auto;
    border: 2px solid rgba(215, 215, 215, 0.3);
    padding: 5px;
    background: #fff;
}
.container {
  width: 100%;
  margin: auto;
}

.top-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

/* Top Section */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
}
.top-header-rgt-btm-1 ul {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: end;
}
.top-header-rgt-btm {
    display: flex;
    margin: 0 0 20px;
}

/* Logo */
.logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: #333;
}

.logo h1 span {
  font-weight: 700;
}

.logo p {
  font-size: 13px;
  color: #777;
}

/* Search */
.search-box {
    display: flex;
    align-items: center;
    width: 285px;
}

.search-box input {
    padding: 5px 10px;
    width: 250px;
    border: 1px solid #ccc;
    outline: none;
}

.search-box button{
    padding: 0px 0px;
    border: none;
    background: #1ca6c9;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.search-box button:hover {
  background: #1689a4;
}

/* Header Actions */
.header-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-left: 7px;
}

.btn {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px;
  transition: 0.3s;
}

.btn-primary {
    background: #1ebce3 !important;
    color: #fff;
    width: 125px;
    height: 30px;
    padding: 0;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
}

.btn-outline:hover {
  background: #1ca6c9;
  color: #fff;
}

.btn-primary {
  background: #1ca6c9;
  color: #fff;
}

.btn-primary:hover {
  background: #1689a4;
}

.btn-basket {
  background: #2cbcd3;
  color: #fff;
}

.btn-basket:hover {
  background: #1da2b8;
}

/* Info Row */
.info-row {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #555;
}

.green-badge {
  background: #dff6e3;
  border: 1px solid #4caf50;
  padding: 4px 8px;
  font-size: 11px;
  color: #2e7d32;
}

.regulation {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Navigation */
.main-nav {
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0px;
    padding: 12px 0;
    justify-content: space-evenly;
    font-size: 16px;
}
.main-nav ul li:first-child{
    border-left:0;
}
.main-nav ul li {
    border-left: 3px solid #2c3033;
    padding: 0 15px;
    position: relative;
}
.main-nav-dropdown {
    position: absolute;
    left: 0;
    width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
    pointer-events: none;
    z-index: 999;
    flex-direction: column;
    gap: 15px !important;
}
ul.main-nav-dropdown li {
    border: none !important;
}
.main-nav ul li:hover .main-nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.main-nav a {
  text-decoration: none;
  color: #2c3033;
  font-size: 16px;
  transition: 0.3s;
  font-weight:600;
}

.main-nav a:hover {
  color: #1ca6c9;
}
.main-footer {
    background: #f4f6f8;
    padding-top: 10px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.footer-container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0px 15px 15px;
}

.footer-col h3 {
    font-size: 12px;
    margin-bottom: 10px;
    color: #1ebce3;
    position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #2c3033;
    font-size: 11px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0084c6;
  padding-left: 5px;
}

.social-icons {
    margin-top: 0px;
    margin: auto;
    max-width: 80%;
}
.social-icons a {
  display: inline-block;
  margin-right: 8px;
  text-align: center;

}

.social-icons a:hover {
  background: #005f8f;
  transform: translateY(-3px);
}

.cqc-box {
  margin-top: 25px;
}

.cqc-box p {
  font-size: 13px;
  margin-bottom: 5px;
}

.cqc-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
}


.footer-bottom {
    background: #ffffff;
    padding: 14px 10px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    border-top: 0px solid #ddd;
}
.product-description p {
    font-size: 14px;
    line-height: 150%;
    margin: 0 0 20px;
}
.product-description ul li {
    font-size: 14px;
    line-height: 150%;
    margin: 10px 0;
}
.product-description ul {
    padding-left: 20px;
}
.product-description h2 {
    font-size: 20px;
    line-height: 150%;
    color: #2c3033;
}
.product-description h3 {
    font-size: 16px;
    line-height: 150%;
    color: #2c3033;
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
    padding: 0px 10px;
    border-radius: 20px;
    margin: 40px auto;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   TAB BUTTONS
========================= */

.tab-buttons {
    display: flex;
    justify-content: flex-start;
    margin: 15px 0;
}

.pricing-tab-btn {
  background: #fff;
  border: 2px solid #e4e9f2;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}
div#results {
    display: grid;
    grid-template-columns: 1fr 140px;
}
div#results select {
    height: 45px;
    padding-left: 14px;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    border-right: 0;
    border: 1px solid #ccc;
    border-radius: 10px 0 0 10px;
}
div#results button {
    background: #1ebce3;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.pricing-tab-btn.active {
  background: #1ebce3;
  color: #fff;
  border: none;
}

.pricing-tab-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   PRICING TABLE
========================= */

.pricing-table {
  background: #fff;
  border-radius: 15px;
}

.pricing-table-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: #f1f4fa;
  padding: 15px 20px;
  font-weight: 600;
  color: #555;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.pricing-table-bottom {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-table-bottom li {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
}

.pricing-table-bottom li:hover {
  background: #f8fbff;
  transform: scale(1.01);
}

/* =========================
   TEXT STYLING
========================= */

.pricing-table-bottom li span {
  font-size: 15px;
  color: #333;
}

.pricing-table-bottom li span:nth-child(1) {
  font-weight: 600;
}

.pricing-table-bottom li span:nth-child(3) {
    font-weight: 700;
    color: #1ebce3;
    font-size: 16px;
}

/* =========================
   ADD TO CART BUTTON
========================= */

.btn-cart {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #1ebce3;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 140, 255, 0.3);
}

/* =========================
   RESPONSIVE
========================= */


/* =========================
   PRODUCT WRAPPER
========================= */
.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 29px 10px 0;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
   PRODUCT IMAGE
========================= */
.product-gallery {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #ccc; */
    background: #f1f4fa;
    border-radius: 30px;
    padding: 20px;
}

.product-gallery img {
  max-width: 100%;
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* =========================
   PRODUCT SUMMARY
========================= */
.product-summary {
  flex: 1.2;

  position: relative;
}

/* Accent line */


/* =========================
   TITLE
========================= */
.product-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: #002b5c;
  margin-bottom: 20px;
  position: relative;
}

.product-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #1ebce3;
    margin-top: 12px;
    border-radius: 5px;
}

/* =========================
   DESCRIPTION
========================= */
.product-summary {
    font-size: 14px;
    line-height: 150%;
    /* color: #444; */
}
nav.breadcrumb {
    background: #f1f4fa;
    padding: 9px 14px;
}
nav.breadcrumb a, span {
    font-size: 14px;
    text-decoration: none;
}
nav.breadcrumb a {
    color: #1ebce3;
    font-weight: 500;
}

/* =========================
   MAIN CART LAYOUT
========================= */

.main-cart {
    display: flex;
    gap: 29px;
    max-width: 100%;
    margin: 0px auto 40px;
    font-family: 'Segoe UI', sans-serif;
}
h1.cart-page-head {
    margin: 40px 0 15px;
    font-size: 24px;
}
.main-cart-70-per {
  width: 70%;
}

.main-cart-30-per {
  width: 30%;
}

/* =========================
   HEADINGS
========================= */

.main-cart h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

/* =========================
   PRODUCT BOX
========================= */

.main-cart-70-details-box {
  display: flex;
  gap: 20px;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.main-cart-70-details-box > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 15px;
}

.main-cart-70-details-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-select-image img {
    width: 80px;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 7px;
}

/* =========================
   LEFT SIDE
========================= */

.left_side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start !important;
}

.top_title h4 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.top_title p {
  font-size: 14px;
  color: #777;
}

.remove_area a {
  font-size: 13px;
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
}

.remove_area a:hover {
  text-decoration: underline;
}

/* =========================
   RIGHT SIDE
========================= */

.right_side {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 100px;
    text-align: center;
}
.price_top {
    text-align: center;
    justify-content: center !important;
}

.price_top h4 {
    font-size: 22px;
    color: #111;
    font-weight: 600;
}

/* =========================
   QUANTITY CONTROL
========================= */

.quality-adjust {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f6fa;
  padding: 5px 10px;
  border-radius: 30px;
}

.quality-adjust input {
  width: 35px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
}

.quality-adjust button {
  background: #2c3e50;
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.quality-adjust button:hover {
  background: #000;
}

/* =========================
   COUPON SECTION
========================= */

.coupons {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.coupons--box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    overflow: hidden;
    width: 100%;
}
.coupons input.form-control {
    width: 100%;
    padding: 10px 12px;
    height: 100%;
    border: none;
}
.coupons .form-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

#apply_coupon_btn {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    background: #22bae0;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    max-width: 170px;
    border-radius: 50px;
}

#apply_coupon_btn:hover {
  opacity: 0.9;
}

/* =========================
   OFFER BOX
========================= */

.offer-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(45deg, #22bae0, #007693);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-box h4 {
  margin: 0;
  font-size: 14px;
}

.offer-box span {
  font-size: 20px;
  font-weight: bold;
}

.apply-code-main {
    text-align: center;
    flex: 0 0 175px;
}
.offer-box-1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.apply-code {
  font-size: 12px;
  opacity: 0.9;
}

.code {
    background: #101010;
    color: #fff;
    padding: 8px 10px;
    border-radius: 27px;
    font-weight: 600;
    margin-top: 5px;
    border: 0px dashed #FFF;
}
.coupons h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 20px;
}

/* =========================
   CHECKOUT BOX
========================= */

.main-cart-30-checkout {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 20px;
}

.main-cart-30-checkout ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-cart-30-checkout li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
}

.main-cart-30-checkout li:last-child {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
    align-items: center;
}
.main-cart-30-checkout .left {
    display: flex;
    gap: 20px;
}

.btn_checkout {
  background: #22bae0;
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn_checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* =========================
   RESPONSIVE
========================= */


/* =========================
   PRODUCT COMPARISON TABLE
========================= */

.product-description table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;

    margin: 25px 0;
}

/* Header Row */
.product-description table tr:first-child {
  background: #f1f4fa;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-description table tr:first-child td {
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 700;
}

/* Body Cells */
.product-description table td {
    padding: 10px;
    font-size: 14px;
    color: #333;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

/* Zebra Striping */
.product-description table tr:nth-child(even):not(:first-child) {
  background-color: #f8faff;
}

/* Hover Effect */
.product-description table tr:not(:first-child):hover {
  background-color: #eef4ff;
  transform: scale(1.01);
}

/* First Column (Product Name) Highlight */
.product-description table tr td:first-child {
    font-weight: 600;
    color: #1ebce3;
}
.doctor-matt-faq {
    border: 1px solid #ccc;
    padding: 15px 15px 5px;
}
.doctor-matt-Sources {
    border: 0px solid #ccc;
    padding: 14px 15px 5px;
    margin: 0px 0 30px;
    background: #f4f6f8;
}

.doctor-matt-Sources h3 {
    margin: 0 0 10px;
}
.doctor-matt-Sources p {
    margin: 0 0 10px;
}

a.menu-toggle {
    display: none;
}
span.dropdown-arrow {
    display: none;
}
.succes-page {
    padding: 40px 0;
}
.succes-page p {
    margin-bottom: 15px;
}

/* Container Styling */
.table-responsive {
    margin: 15px auto;
    border: 1px solid #f0f0f0;
}

/* Table Styling */
.table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border:1px solid #ccc;
  font-family: Arial, sans-serif;
}

/* Remove default border if Bootstrap exists */
.table-bordered td {
  border: none;
}

/* Row Styling */
.table tr {
  border-bottom: 1px solid #f0f0f0;
  transition: 0.3s ease;
}

.table tr:last-child {
  border-bottom: none;
}

.table tr:hover {
  background: #f7faff;
}

/* Cell Styling */
.table td {
  padding: 16px 18px;
  font-size: 15px;
  color: #333;
}

/* Left Column Design */
.table td:first-child {
  background: #f8f9fa;
  font-weight: 600;
  width: 40%;
  color: #555;
}

/* Price Highlight (Last Row Right Side) */
.table tr:last-child td:last-child strong {
    font-size: 18px;
    color: #000000;
}










