.polymed-footer {
  background-image: url(../images/footer-bg.png);
  color: #ffffff;
  padding: 70px 0 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-title {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  color: white;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffffff;
  color: #0f9a9e;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom .developer a {
  color: #ffffff;
  text-decoration: none;
}


/* Enable hover dropdown on desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Smooth dropdown animation */
.dropdown-menu {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    top: 100%;
    left: 0;
    transform: none !important;
  }
}

.banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: contrast(1.15) brightness(1.05);
}


.product-grid4 {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

.product-grid4:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(240,89,114,0.2);
}

.product-image4 {
  height: 260px;
  background: #f8f8f8;
  overflow: hidden;
}

.product-image4 a {
  display: block;
  height: 100%;
}

.product-image4 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-grid4:hover .product-image4 img {
  transform: scale(1.03);
}

.product-content {
  padding: 24px 20px 28px;
  text-align: center;
}

.product-content .title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 50px;
}

.product-content .title a {
  color: #222;
  text-decoration: none;
}

.product-content .title a:hover {
  color: #ff617c;
}

.add-to-cart {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 30px;
  background: #ff617c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.add-to-cart:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 767px) {
  .about-area h2 {
    font-size: 28px;
  }

  .product-image4 {
    height: 220px;
  }

  .product-content .title {
    min-height: auto;
  }
}



/* =========================
   HEADER SECTION
========================= */

.contact-header {
  background: linear-gradient(135deg, #ff617c, #ff617c);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.contact-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-header p {
  margin: 0;
  font-size: 15px;
}

.contact-header p a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-header p a:hover {
  opacity: 0.8;
}

/* =========================
   PRODUCT DETAIL CARD
========================= */

.product-detail {
  background: #fff;
  border-radius: 24px;
  padding: 45px;

  margin-bottom: 40px;
}

.product-detail h5 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  position: relative;
}

.product-detail h5::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff617c;
  display: block;
  margin-top: 10px;
  border-radius: 10px;
}

/* =========================
   FEATURES LIST
========================= */

.features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 35px;
}

.features li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff617c;
  font-weight: bold;
  font-size: 18px;
}

/* =========================
   TABLE DESIGN
========================= */

.table {
  overflow: hidden;
  border-radius: 16px;
  margin-top: 25px;
}

.table thead {
  background: #ff617c;
  color: #fff;
}

.table thead th {
  border: none;
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
}

.table tbody td {
  padding: 16px;
  vertical-align: middle;
  border-color: #eee;
  font-size: 15px;
  color: #555;
}

.table tbody tr:hover {
  background: #fff5f7;
}

/* =========================
   NOTE + ORDER LIST
========================= */

.product-detail p {
  color: #555;
  line-height: 1.8;
  margin-top: 25px;
}

.product-detail ol {
  padding-left: 18px;
  margin-bottom: 35px;
}

.product-detail ol li {
  margin-bottom: 10px;
  color: #555;
}

/* =========================
   BRAND IMAGE
========================= */

.avaible-brand img {
  max-width: 100%;
  margin: 35px 0;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   PRODUCT IMAGE
========================= */

.main-img {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.main-img img {
  width: 100%;
  transition: 0.4s ease;
}

.main-img img:hover {
  transform: scale(1.04);
}

/* =========================
   QUOTE SECTION
========================= */

.sceptre-products {
  background: linear-gradient(135deg, #fff1f4, #fff7f8);
  padding: 35px;
  border-radius: 18px;
  margin-top: 35px;
  border-left: 5px solid #ff617c;
}

.sceptre-products p {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.7;
}

/* =========================
   CONTACT BUTTON
========================= */

.btn-primary {
  background: linear-gradient(135deg, #ff617c, #ff617c);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(240,89,114,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #222;
}

.btn-primary a {
  color: #fff;
  text-decoration: none;
}

.product-contact-cta {
  order: 99;
  flex: 0 0 calc(100% - 30px);
  width: calc(100% - 30px);
  margin: 28px 15px 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 97, 124, 0.22);
  text-align: center;
}

.product-contact-cta .btn,
.product-contact-cta a.btn,
.product-contact-cta button {
  margin-bottom: 0 !important;
}

.product-page-cta {
  width: 100%;
  margin: 28px 0 8px;
  text-align: center;
}

.product-page-cta hr {
  margin: 0 0 22px;
}

.product-page-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  color: #fff;
  text-decoration: none;
}

/* =========================
   COMING SOON
========================= */

.coming-soon-title {
  margin: 0;
  padding: 36px 0;
  text-align: center;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(90deg, #321f34 0%, #63324a 42%, #ff617c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 34px rgba(255, 97, 124, 0.12);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .contact-header {
    padding: 60px 0;
  }

  .contact-header h2 {
    font-size: 30px;
    line-height: 1.4;
  }

  .product-detail {
    padding: 25px;
  }

  .product-detail h5 {
    font-size: 24px;
  }

  .table thead th,
  .table tbody td {
    font-size: 13px;
    padding: 12px;
  }

  .sceptre-products p {
    font-size: 17px;
  }
}

.pt-100{
  padding-top: 20px;
}
.pb-70{
  padding-bottom: 20px;
}
