/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: solid 1px red; */
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
}

h1,
h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6em;
}

h3,
h4 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

p,
li {
  font-weight: 400;
}

small,
.meta,
.caption {
  font-weight: 300;
  font-size: 0.9em;
  color: #777;
}

.nav a,
.menu a {
  font-weight: 500;
}

.btn,
.button,
.form-label {
  font-weight: 600;
}

strong,
.highlight {
  font-weight: 700;
}

.container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 15px;
  z-index: 100;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 200;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 0;  */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  color: #13487d;
  font-weight: 700;
}

/* Navigation Styles 2c3e50 */
nav {
  background-color: #13487d;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  position: relative;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  /* color: white; */
  color: #13487d;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.nav-item > a:hover {
  /* background-color: #10101010;  */
  text-decoration: none !important;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 250px;
  list-style: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 10;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  overflow: scroll !important;
}

/* keep mega panel visible while either the link OR the panel is hovered */
.nav-item:hover > .mega-menu,
.mega-menu:hover {
  display: block;
}

.submenu-item a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.submenu-item a:hover {
  background-color: #f5f5f5;
  color: #1c8b7f;
}

.btn {
  display: inline-block;
  background-color: #1c8b7f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1c8b7f;
}

/* Categories Section  */
.categories {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  /* font-size: 3rem; */
  opacity: 0.8;
}

.feature-strip-h2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 1em 0em;
}

.section-title h2,
.auth-page h1, .feature-strip-h2 {
  font-size: 2rem;
  color: #13487d;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after,
.auth-page h1::after, .feature-strip-h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1c8b7f;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.category-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-img {
  height: 200px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-info {
  padding: 20px;
  text-align: center;
}

.category-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #13487d;
}

.category-description {
  /* border: solid 1px red;  */
  margin-bottom: 1em;
  text-align: center;
}

.category-info .price {
  font-weight: 700;
  color: #1c8b7f;
  margin-bottom: 15px;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.view-all a {
  color: #13487d;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.view-all a:hover {
  color: #1c8b7f;
}

.view-all a::after {
  content: "→";
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.view-all a:hover::after {
  margin-left: 10px;
}

/* Footer */
footer {
  background-color: #203041;
  color: white;
  padding-top: 50px;
  margin-top: 2em;
  /* border: solid 1px yellow; */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1c8b7f;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding: 20px;
  /* border-top: 1px solid #34495e;  */
  background: #00152b;
  color: #bdc3c7;
  font-size: 0.9rem;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .top-bar {
    flex-direction: column;
    padding: 15px 0;
  }

  .logo {
    margin-bottom: 15px;
  }

  .search-bar {
    width: 100%;
    max-width: 100%;
    margin: 5px 0;
  }

  .nav-menu {
    flex-wrap: wrap;
  }

  .nav-item {
    flex: 1 0 auto;
    text-align: center;
  }

  .submenu {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nav-menu {
    flex-direction: column;
  }

  .nav-item {
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .nav-item:hover .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Add these styles to your existing CSS */

/* Product Page Styles */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.product-gallery {
  position: relative;
}

.prod-details {
  box-sizing: border-box;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  min-width: 40vw;
  /* border: solid 1px green;  */
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border: 1px solid #eee;
  margin-bottom: 15px;
  cursor: zoom-in;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #1c8b7f;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.product-price {
  font-size: 1.2rem;
  color: #555;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-to-cart {
  width: 100%;
  padding: 15px;
  background-color: #1c8b7f;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.main-to-cart:hover {
  background-color: #1c8b7f;
}

.price-summary {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total-row {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

/* Modal for image zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .product-page {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 350px;
  }
}

/* Featured Categories */
.featured-categories {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #1c8b7f;
  margin: 15px auto 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.category-img {
  height: 200px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-info {
  padding: 20px;
  text-align: center;
}

.category-info h3 {
  margin: 0 0 15px;
  color: #13487d;
}

/* Featured Products */
.featured-products {
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  max-width: 250px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #1c8b7f;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-card h3 {
  padding: 5px;
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.product-card .price {
  padding: 0 5px 5px;
  color: #666;
  font-weight: bold;
  margin: 0;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 60px 20px;
  /* background-color: #13487d; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
    url("../images/slimag1.jpg");
  color: white;
  background-position: center;
  background-size: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  background-color: #1c8b7f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn:hover {
  background-color: #1c8b7f;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: #13487d;
  border: 2px solid white;
  color: white;
  margin: 2em 0em;
}

.btn-outline:hover {
  background-color: white;
  color: #1c8b7f;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-img,
  .product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

/* File: css/navigation.css */
.site-header {
  /* background-color: #fff; */
  /* background-color: #222;  */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* position: sticky; */
  /* top: 0;  */
  /* z-index: 1000;  */
}

.h-container {
  width: 100%;
  margin: 0 auto;
}

.container {
  width: 100%;
  /* max-width: 1200px;  */
  margin: 0 auto;
  /* padding: 0 15px;  */
}

.header-content {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  width: 100%;
  /* border: solid 1px #fff;  */
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #13487d;
}

.logo-link img {
  height: 15px;
}

.logo-image {
  height: 80px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.toggle-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #13487d;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.main-navigation {
  /* background-color: #379ea9;  */
  background-color: #fafbfc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0;
}

/* .nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 500;
  transition: background-color 0.3s;
} */

.nav-item > a:hover {
  border-bottom: solid 2px #1c8b7faa;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 250px;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 10;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu-item a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.submenu-item a:hover {
  background-color: #f5f5f5;
  color: #1c8b7f;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .search-container {
    order: 3;
    width: 100%;
    max-width: 100%;
    /* margin: 15px 0 0;  */
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
    width: 100%;
  }

  .main-navigation.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-item > a {
    padding: 0px 15px;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .nav-item:hover .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .logo-image {
    height: 70px;
  }
}

.breadcrumbs a {
  text-decoration: none;
  font-size: 0.8em;
  color: #34495e;
}

/* Cart Page Styles */
/* .cart-page {
  padding: 40px 0;
}

.empty-cart {
  text-align: center;
  padding: 50px 0;
}

.empty-cart p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cart-items {
  margin-bottom: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  background-color: #f5f5f5;
  padding: 15px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
  padding: 15px;
  align-items: center;
  border-bottom: 1px solid #eee;
} */

.item-product {
  display: flex;
  align-items: center;
}

.product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  border: 1px solid #eee;
}

.product-info h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.product-options {
  font-size: 0.8rem;
  color: #666;
}

.product-options span {
  display: inline-block;
  margin-right: 5px;
}

.quantity-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #1c8b7f;
  cursor: pointer;
  font-size: 0.9rem;
}

.remove-btn:hover {
  text-decoration: underline;
}

/* .cart-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cart-actions {
  display: flex;
  gap: 15px;
}

.cart-summary {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  min-width: 300px;
} */

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: none;
}

.btn-checkout {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.btn-danger {
  background-color: #1c8b7f;
}

.btn-danger:hover {
  background-color: #1c8b7f;
}

@media (max-width: 768px) {
  /* .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
    position: relative;
  } */

  .item-actions {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  /* .cart-footer {
    flex-direction: column;
  }

  .cart-actions {
    order: 2;
  }

  .cart-summary {
    order: 1;
    margin-bottom: 20px;
  } */
}

/* Checkout Page Styles */
.checkout-page {
  padding: 40px 0;
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.checkout-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #eee;
  z-index: -1;
}

.step {
  background-color: white;
  padding: 10px 20px;
  border: 1px solid #eee;
  border-radius: 30px;
  font-weight: 600;
  position: relative;
}

.step.active {
  background-color: #13487d;
  color: white;
  border-color: #13487d;
}

.checkout-columns {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

.checkout-main {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.saved-addresses {
  margin-bottom: 30px;
}

.address-option {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s;
}

.address-option:hover {
  border-color: #13487d;
}

.address-option input[type="radio"] {
  margin-right: 10px;
}

.address-option label {
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.payment-methods {
  margin-top: 30px;
}

.payment-option {
  margin-bottom: 15px;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option label {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-option label:hover {
  border-color: #13487d;
}

.payment-option input[type="radio"]:checked + label {
  border-color: #13487d;
  background-color: #f5f7fa;
}

.payment-option img {
  width: 40px;
  margin-right: 15px;
}

.order-summary {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-items {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.item-info {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-weight: 600;
}

.item-quantity {
  font-size: 0.9rem;
  color: #666;
}

.order-totals {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.grand-total {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
}

.btn-place-order {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #1c8b7f;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-place-order:hover {
  background-color: #1c8b7f;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  color: #4caf50;
  font-size: 0.9rem;
}

.secure-checkout svg {
  margin-right: 5px;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

@media (max-width: 992px) {
  .checkout-columns {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    order: -1;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-steps {
    flex-direction: column;
    gap: 10px;
  }

  .checkout-steps::before {
    display: none;
  }

  .step {
    width: 100%;
    text-align: center;
  }
}

/* Order Confirmation Styles */
.order-confirmation {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.confirmation-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  width: 100%;
}

.confirmation-header {
  text-align: center;
  margin-bottom: 10px;
}

.confirmation-header h1 {
  margin: 20px 0 10px;
  color: #13487d;
}

.confirmation-header p {
  color: #666;
  font-size: 1.1rem;
}

.order-details {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.order-summary {
  margin-bottom: 30px;
}

.order-summary h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.item-info {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-weight: 600;
}

.item-quantity {
  font-size: 0.9rem;
  color: #666;
}

.order-totals {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.grand-total {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
}

.shipping-info {
  margin-bottom: 30px;
}

.shipping-info h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.address {
  line-height: 1.8;
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-continue {
  background-color: #1c8b7f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-continue:hover {
  background-color: #1c8b7f;
}

.btn-outline {
  background-color: #13487d;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 2em 0em;
}

.btn-outline:hover {
  background-color: #1c8b7f;
  color: white;
}

@media (max-width: 768px) {
  .confirmation-card {
    padding: 30px 20px;
  }

  .confirmation-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-continue,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* .cart-bx {
  margin-right: 1em;
}

.cart-bx a {
  font-size: 1em;
  text-decoration: none;
  color: #444;
} */
/* Contact Page Styles */
.contact-page {
  padding: 40px 0;
}
.contact-page h1 {
  margin-left: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.contact-methods {
  margin: 30px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #f5e6e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.contact-details p {
  margin: 0;
  color: #666;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  margin-bottom: 15px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  margin-bottom: 8px;
  display: flex;
}

.business-hours li span {
  font-weight: 600;
  min-width: 120px;
  display: inline-block;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #1c8b7f;
}

.error-message {
  color: #1c8b7f;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .business-hours li span {
    min-width: 100px;
  }
}

/* Add these styles to your CSS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-dropdown {
  position: relative;
}

.user-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.user-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.divider {
  color: #ccc;
}

.auth-page {
  padding: 2em 0em;
  margin: 2em 0em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .cart-link {
  position: relative;
  display: flex;
  align-items: center;  
  text-decoration: none;
}

.cart-count {
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: 5px;
} */

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .auth-links,
  .user-dropdown {
    display: none;
  }
}

form {
  margin: 0.5em;
}

/* drake */

.auth-form {
  position: relative;
  min-width: 40vw !important;
}

.header-content {
  /* max-height: 100px;  */
  overflow-y: visible;
}

.auth-required {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-required h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.auth-required p {
  color: #7f8c8d;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tab-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.tab-btn.active {
  background: #3498db;
  color: white;
}

.tab-btn:not(.active) {
  background: #ecf0f1;
  color: #2c3e50;
}

.tab-btn:not(.active):hover {
  background: #d6eaf8;
  color: #2980b9;
}


/* Search Results Page */
.search-results-page {
  padding: 40px 0;
}

.search-meta {
  margin-bottom: 30px;
  font-size: 18px;
}

.no-results {
  text-align: center;
  padding: 50px 0;
}

.no-results p {
  margin-bottom: 20px;
  font-size: 18px;
}

.order-item-preview {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.order-item-preview img {
  height: 90px;
  align-self: self-start;
}

/* Order Details Page Styles */
.order-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.order-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.order-items-section {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.order-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #f5f5f5;
  gap: 1.5rem;
}

.order-item:last-child {
  border-bottom: none;
}

.item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.item-details {
  flex-grow: 1;
}

.item-details h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.item-options {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.option-textarea,
.special-instructions {
  width: 100%;
  min-height: 100px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  resize: vertical; /* allow vertical resize only */
  transition: border-color 0.2s, box-shadow 0.2s;
}

.option-textarea:focus {
  border-color: #1c8b7f; /* your theme primary color */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

.item-price {
  font-weight: 600;
  min-width: 80px;
  text-align: right;
}

.order-summary-total {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.order-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

.account-page {
  margin-bottom: 2em;
}

a {
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  position: relative;
  /* height: 80vh;  */
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%;  */
  z-index: 1;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slideshow-track {
  display: flex;
  /* height: 100%;  */

  width: 100%;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide img {
  width: 100%;
  /* height: 100%;  */
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.hero-slide img.loaded {
  opacity: 1;
}

.hero-slide-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  /* background: rgba(0, 0, 0, 0.6);  */
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  max-width: 80%;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  max-width: 50%;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center;
}

/* Navigation Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slide-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* Navigation Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-dot.active {
  background: rgba(255, 255, 255, 0.9);
}

/* Touch support */
.hero-slideshow-track.grabbing {
  cursor: grabbing;
  transition: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slide-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slide-caption {
    bottom: 10%;
    font-size: 0.9rem;
  }
}

/* Add this to your existing CSS */
.hero-slideshow-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 2; /* Ensure it's above the slides but below content */
  pointer-events: none; /* Allows clicks to pass through to slideshow */
}

/* Adjust hero content z-index to be above gradient */
.hero-content {
  z-index: 3; /* Increased from 2 to be above the gradient */
}

/* Optional: Adjust text shadow for better contrast */
.hero-content h2,
.hero-content p {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-links a {
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.auth-links a:hover {
  color: #257f96;
}

.divider {
  color: #d1d5db;
}

/* User Dropdown */
.user-dropdown {
  position: relative;
}

.user-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.user-link:hover {
  color: #257f96;
}

.user-link i {
  font-size: 1.1rem;
}

.fa-id-badge {
  margin-left: 0.5em;
}

/* tabs styling start */

/* Base styles */
.tabs-wrapper {
  /* font-family: system-ui, sans-serif; */
  font-size: 1em;
  /* max-width: 1000px;  */
  width: 100%;
  margin: auto;
  padding: 0.3rem;
  color: #333;
}

/* Tab buttons (desktop) */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.tab-button {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f0f0f0;
  border-radius: 0.5rem 0.5rem 0 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background-color: #e2e2e2;
}

.tab-button.active {
  background-color: #fff;
  border-bottom: 2px solid #1c8b7f;
  color: #1c8b7f;
  font-size: 1.6em;
  font-weight: 600;
}

/* Tab panels */
.tab-panels {
  border: 1px solid #ddd;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #fff;
  padding: 1rem;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.tab-panel img {
  width: 48%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Accordion (mobile first) */
.details-x.accordion {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-width: 50%;
}
.details-x summary {
  padding: 0.5rem;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 8px;
  font-weight: bold;
}
.details-x[open] summary {
  border-bottom: 1px solid #ddd;
}
.accordion-content {
  padding: 0.5rem;
}

/* Layout */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid > div {
  flex: 1 1 45%;
}
ul {
  /* padding-left: 1rem; */
  list-style-type: disc;
}
/* li {
  margin-bottom: 0.5rem;
} */

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .tab-buttons {
    display: none;
  }
  .tab-panels {
    border: none;
    padding: 0;
  }
  .tab-panel {
    display: block;
  }
}

.product-details {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  /* border: solid 1px blue; */
}

.product-details form {
  margin-left: 0;
}

/* ----------  design tokens  ---------- */
:root {
  --accent: #66e0ad; /* purple from the sample – tweak if needed */
  --heading: #1d1d1f;
  --text: #4a4a4a;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --icon-size: 48px;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ----------  layout container  ---------- */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* gap: var(--gap); */
  gap: 0.3em;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(0.5rem, 2vw, 1rem);
  background: #4e575610;
  margin-bottom: 2em;
}

/* ----------  individual card  ---------- */
.feature {
  flex: 1 1 15rem; /* shrink, grow, base width */
  display: flex;
  gap: 0.3rem;
  min-width: 240px;
}

.feature svg {
  flex: none;
  inline-size: var(--icon-size);
  block-size: var(--icon-size);
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.feature h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.feature p {
  margin: 0.25rem 0 0;
  line-height: 1.45;
  color: var(--text);
  font-size: 0.85rem;
  max-width: 24ch;
}

/* ----------  small‑screen tweak  ---------- */
@media (max-width: 600px) {
  .feature {
    flex: 1 1 100%;
  }
}

/* -----------------------------------_____________________________________------------------------------------
--------------------------------------------_____________________________________------------------------------ */

/* make parent <li> take normal flow so the mega panel can span the screen */
.nav-item {
  position: static;
}

/* full‑width panel */
.submenu.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw; /* stretch edge‑to‑edge */
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px clamp(2rem, 6vw, 6rem) 50px;
  display: none; /* hide by default */
  z-index: 20;
}

/* show on hover */
.nav-item:hover > .mega-menu {
  display: block;
}

/* inner flex wrapper */
.mega-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1400px; /* keeps content centered on ultrawides */
  margin-inline: auto;
}

/* link columns */
.mega-col {
  flex: 1 1 180px;
  min-width: 160px;
}

/* headings */
.mega-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--heading, #13487d);
}

/* item links */
.mega-col a {
  display: block;
  padding: 2px 0;
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-col a:hover {
  color: #1c8b7f;
}

/* cover image on the right */
.mega-cover {
  flex: 0 0 260px; /* fixed width – adjust as needed */
  max-width: 320px;
  position: relative;
}
.mega-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ----------  responsive tweaks  ---------- */
@media (max-width: 992px) {
  .mega-cover {
    display: none;
  } /* hide image on tablets/phones */
}
@media (max-width: 768px) {
  .submenu.mega-menu {
    position: relative; /* push below nav for stacked mobile view */
    width: 100%;
    padding: 25px 1rem;
  }
  .mega-inner {
    flex-direction: column;
  }
}

.login-link {
  /* border: solid 1px black; */
  display: flex;
  align-items: center;
  gap: 3px;
}

.login-link img {
  height: 18px;
  opacity: 0.7;
}

.art-svg {
  height: 55px;
  opacity: 0.8;
}

/** -------------- patch ----------------- **/

.hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-self: center;
}

/* Adjust hero height for smaller devices */
@media (max-width: 1024px) {
  .hero {
    min-height: 45vh;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 35vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 30vh;
  }
}

.order-wrapper {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.sidebar {
  width: 100%;
  max-width: 260px;
  background: #f7f7f7;
  padding: 24px;
  border-right: 1px solid #e0e0e0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 12px 16px;
  border-left: 4px solid transparent;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar li.active {
  background: #fff;
  border-left-color: #0073e6;
  font-weight: bold;
}

.form-area {
  flex: 1;
  padding: 32px;
  min-width: 0;
}

h2 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 24px;
}

.form-section {
  margin-bottom: 24px;
}

.section-title {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.options label,
.option-radio-label,
.option-checkbox-label {
  display: block;
  background: #fefefe;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.option-radio:checked + .option-radio-label,
.option-radio:checked ~ .option-radio-label,
.option-checkbox:checked + .option-checkbox-label,
.option-checkbox:checked ~ .option-checkbox-label {
  border-color: #1c8b7f;
  background-color: #e0f7f7;
}

.option-radio-label:hover,
.option-checkbox-label:hover,
.option-select:focus {
  border-color: #1c8b7f;
}

.option-select,
.option-input {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  border: 0.2px solid #1c8b7f;
  border-color: #1c8b7f;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

.option-select:focus {
  border-color: rgb(149, 230, 230);
  outline: none;
}

.quantity-input,
.quantity-select {
  padding: 10px;
  font-size: 16px;
  border: 0.2px solid #1c8b7f;
  border-radius: 6px;
  width: 80px;
  text-align: center;
  margin: 5px;
}

.quantity-btn {
  background: #1c8b7f;
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
}

/* .add-to-cart {
  background-color: #1c8b7f;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
} */

.price-summary {
  margin-top: 10px 0px;
  padding: 8px 0px;
  /* background: #f8f8f8;  */
  border-radius: 6px;
  /* border: 1px solid #ddd; */
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price-row.total-row {
  font-weight: bold;
  font-size: 18px;
  /* border-top: 1px solid #ccc;  */
  padding-top: 10px;
}

@media (max-width: 768px) {
  .order-wrapper {
    flex-direction: column;
  }

  .sidebar {
    max-width: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}

/* form layout bp */

/* General group layout */
.option-group {
  margin-bottom: 24px;
}

.option-group-title {
  display: block;
  font-weight: 600;
  font-size: 0.9em;
  /* margin-bottom: 10px;  */
  color: #222;
}

.required-asterisk {
  color: #1c8b7f;
  margin-left: 4px;
}

/* Select dropdown */
.option-select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 0.2px solid #1c8b7f;
  border-radius: 6px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.option-select:focus {
  outline: none;
  border-color: #008080;
}

/* Radio & checkbox group */
.option-radio-group,
.option-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.option-radio-label,
.option-checkbox-label {
  border: 2px solid #ccc;
  padding: 10px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option-radio:checked + .option-radio-label,
.option-checkbox:checked + .option-checkbox-label {
  border-color: #1c8b7f;
  background-color: #e6f7f7;
}

/* Orientation layout */

.visually-hidden {
  position: absolute;
  left: -9999px;
}

.input-wrapper {
  border: 0.2px solid #1c8b7f;
  border-radius: 6px;
  padding: 3px;
  background: white;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ensure labels inside behave nicely */
.orientation-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.orientation-label {
  /* flex: 1 1 45%;  */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  text-align: center;
  background: #fdfdfd;
  gap: 0.5em;
}

.orientation-label:hover {
  border-color: #1c8b7f;
}

.option-radio:checked + .orientation-label {
  border: solid 1px rgb(168, 241, 241);
  /* background-color: rgb(229, 243, 243);  */
  color: rgb(3, 112, 112);
  border-radius: 3px;
}

.orientation-visual {
  background: #aaa;
}

.option-radio:checked + .orientation-label .orientation-visual {
  background-color: #1c8b7f;
}

.orientation-visual.vertical {
  width: 12px;
  height: 20px;
}

.orientation-visual.horizontal {
  width: 20px;
  height: 12px;
}

/* ppppp */

.orientation-option {
  display: flex;
  justify-content: center;
  gap: 0; /* remove gap to avoid space between */
  border: 1px solid #1c8b7faa;
  border-radius: 4px;
  overflow: hidden; /* prevent border overflow */
}

.orientation-label {
  flex: 1;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  border-right: 1px solid #1c8b7faa; /* Divider line */
}

/* Remove divider from last item */
.orientation-label:last-child {
  border-right: none;
}

/* custom-actions start */

.custom-actions {
  margin-top: 2rem;
}

.custom-actions__box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f5f5f5;
  border: solid 1px #c5c5c5;
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.custom-actions__icon {
  /* background: #aaa; */
  /* background-color: #1c8b7f; */
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-actions__icon > i {
  font-size: 30px;
  background-color: #1c8b7f;
  color: #fefefe;
}

.custom-actions__text {
  color: #666;
  font-size: 0.9em;
}

.custom-actions__box--with-contacts {
  justify-content: space-between;
  align-items: center;
}

.custom-actions__contacts i {
  font-size: 33px;
  color: #1c8b7f;
}

.custom-actions__grow {
  flex: 1;
}

.custom-actions__contacts {
  display: flex;
  gap: 0.5rem;
}

.custom-actions__contacts a img {
  display: block;
}

.contact-icos {
  /* border: solid 1px red;  */
  display: flex;
  gap: 1em;
}

.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #2c3e50;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
}

.option-group {
  margin-bottom: 1em;
  position: relative;
  min-width: 80%;
}

.disclaimer {
  border: solid 1px rgba(210, 205, 205, 0.5);
  margin: 1em 0;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0.3em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.disclaimer h5 {
  color: #1c8b7f;
}

.disclaimer span {
  font-size: 0.75em;
  color: #666;
  cursor: grab;
}

.disclaimer span:hover {
  color: #222;
}

.mega-col h4 {
  position: relative;
  display: inline-block; /* Shrinks to content width */
  /* margin: 0 auto; */
  text-align: left;
}

.mega-col h4::after {
  content: "";
  display: block;
  width: 60px; /* Adjust this value for the underline length */
  height: 0.9px; /* Thickness of the underline */
  background-color: #1c8b7fbb; /* Color of the underline */
  /* margin: 8px auto 0;  Top spacing and center alignment */
}

/* Tech Showcase Styles */
.tech-showcase {
  margin: 40px 0;
}

.tech-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-video {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.tech-video iframe {
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tech-details {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background: #f9f9f9;
}

.tech-details h3,
.faq-section h3,
.group-heading {
  color: #13487d;
  margin: 15px 0px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.tech-details h3::after,
.faq-section h3::after,
.group-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #1c8b7f;
}

.tech-details p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tech-process,
.tech-materials {
  margin-bottom: 20px;
}

.tech-process h4,
.tech-materials h4 {
  color: #1c8b7f;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .tech-item {
    flex-direction: column;
  }

  .tech-video,
  .tech-details {
    min-width: 100%;
  }

  .tech-video {
    padding-bottom: 0;
  }
}

/* Tech Showcase Styles */
.tech-showcase {
  margin: 40px 0;
}

.tech-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-video {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.tech-video iframe,
.tech-video video {
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 315px;
  background: #000;
}

.video-placeholder {
  width: 100%;
  height: 315px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.tech-details {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background: #f9f9f9;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

#productForm {
  /* border: solid 5px yellow; */
  font-size: 0.9em;
}

.product-gallery {
  position: relative;
  grid-column: 1;
}

.prod-details {
  box-sizing: border-box;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  min-width: 40vw;
  /* border: solid 1px brown;  */
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border: 1px solid #eee;
  margin-bottom: 15px;
  cursor: zoom-in;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #1c8b7f;
}

/* Samples Showcase Styles */
.samples-showcase {
  /* grid-column: 1 / -1; */ /* Span full width */
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.samples-title {
  font-size: 1.8rem;
  color: #13487d;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.samples-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #1c8b7f;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.sample-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sample-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-bottom: 1px solid #eee;
}

.sample-info {
  padding: 20px;
}

.sample-info h4 {
  color: #13487d;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.sample-info p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-page {
    grid-template-columns: 1fr;
  }

  .samples-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .thumbnail-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .samples-grid {
    grid-template-columns: 1fr;
  }
}

/* susie */

.main-media-container {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.main-media {
  width: 100%;
  min-height: 300px;
  display: block;
}

.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail {
  cursor: pointer;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #0066cc;
}

.video-thumbnail {
  position: relative;
  width: 80px;
  height: 80px;
}

.video-thumbnail .thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Product Description Styles */
.product-description-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.product-description-content {
  flex: 1;
  min-width: 300px;
}

.product-description-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-description-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.accordion summary {
  padding: 20px 25px;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  color: #13487d;
  position: relative;
  list-style: none;
  transition: background-color 0.3s;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "−";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #1c8b7f;
}

.accordion[open] summary::after {
  content: "+";
}

.accordion summary:hover {
  background: #f0f7f5;
}

.accordion-content {
  padding: 25px;
  line-height: 1; /* Professional line-height */
}

.accordion-content h2 {
  color: #13487d;
  margin-bottom: 15px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}
.accordion-content h3 {
  color: #1c8b7f;
}

.accordion-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #1c8b7f;
}

.accordion-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7rem;
}

.description-section {
  margin-bottom: 25px;
}

.product-title {
  color: #13487d;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600 !important;
}

.description-section h3 {
  color: #1c8b7f;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 8px;
}

.product-title::after,
.description-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1c8b7f;
}

.description-section ul {
  list-style: none;
  padding-left: 0;
}

.description-section li {
  /* padding: 8px 0;  */
  padding-left: 25px;
  position: relative;
  color: #555;
  /* margin-bottom: 5px;  */
}

.description-section li::before {
  content: "•";
  color: #1c8b7f;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .product-description-container {
    flex-direction: column;
    gap: 20px;
  }

  .product-description-content,
  .product-description-image {
    min-width: 100%;
  }

  .accordion-content {
    padding: 20px;
  }

  .accordion summary {
    padding: 15px 20px;
  }
}

/* 000000000000000000000000000000000000000000000000000000000000000000000 */

/* Add to your CSS file */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.subcategory-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subcategory-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.subcategory-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.subcategory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.subcategory-card:hover .subcategory-image img {
  transform: scale(1.05);
}

.subcategory-image.placeholder {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.product-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #13487d;
  color: white;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.subcategory-info {
  padding: 1.5rem;
}

.subcategory-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #2d3748;
}

.subcategory-description {
  margin: 0 0 1rem 0;
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.4;
}

.view-all-link {
  color: #4299e1;
  font-weight: 500;
  font-size: 0.9rem;
}

.subcategory-card:hover .view-all-link {
  color: #2b6cb0;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 1rem 0 2rem 0;
  font-size: 0.9rem;
  color: #b1cdf8;
  padding: 0.3em;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

.breadcrumbs a {
  color: #b4d5f0;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .current {
  color: #ecf0f5;
  font-weight: 500;
}

/* Fix for mega menu overflow */
.submenu.mega-menu {
  max-height: 80vh; /* Limit height to 80% of viewport */
  overflow-y: auto; /* Enable vertical scrolling when needed */
  padding: 20px clamp(2rem, 6vw, 6rem) 30px; /* Reduce padding to save space */
}

/* Ensure the mega menu stays visible when scrolling */
.mega-inner {
  max-height: 100%;
}

/* Optional: Style the scrollbar for better UX */
.submenu.mega-menu::-webkit-scrollbar {
  width: 8px;
}

.submenu.mega-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.submenu.mega-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.submenu.mega-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* --------------------------------------------------------------------------------------------- */

/* For very wide screens, consider more columns */
@media (min-width: 1200px) {
  .mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on wide screens */
    gap: 2rem;
  }

  .mega-cover {
    grid-column: span 1; /* Cover takes one column */
  }
}

/*

.banner-container {
  display: flex;
  width: 100%;
  padding: 2em;
  align-items: center;
  justify-content: space-between;
  position: relative; 
}

.banner-container img {
  width: 50%;
  height: 120px;
  object-fit: contain;
  display: block;
}


.banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49.5%;
  width: 2px; /
  background: radial-gradient(circle, teal 0%, transparent 90%);
  transform: translateX(-50%);
}
*/

.banner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2em;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 2em;
}

.banner-container img {
  width: 70%;
  /* height: 120px;  */
  object-fit: contain;
  display: block;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
  }

  .banner-container img {
    width: 100%;
  }

  .banner-container::before {
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px; /* horizontal line */
    transform: translateY(-50%);
  }
}

/* WhatsApp Widget Styles */
/*
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tooltip:before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
}

.whatsapp-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}
*/

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .tooltip {
    display: none;
  }
}
.payment-methods {
  text-align: center;
  padding: 1rem 0;
}

.payment-methods h5 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.payment-icons img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.3s ease;
}

.payment-icons img:hover {
  filter: grayscale(0);
}

/* Make PayPal acceptance mark behave like the others */
.payment-icons table {
  border-collapse: collapse;
}

.payment-icons table img {
  height: 32px;
  width: auto;
}

/* --- Cart Modal Styles --- */

.cart-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.cart-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cart-close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.cart-close:hover {
  color: #e74c3c;
}

#cartItems {
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.cart-items div {
  /* border: solid 1px green;  */
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3em;
  gap: 0.3em;
  font-size: 0.9em;
}

.cart-items > div {
  border-bottom: solid 1px #33333333;
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
}

.cart-item-info span:nth-child(1) {
  /* border: solid 1px pink; */
  width: 170px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
}

.cart-item span {
  flex: 1;
}

.cart-item .qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item button {
  padding: 4px 8px;
  background: #eee;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item button:hover {
  background: #ddd;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1em;
}

.checkout-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #219150;
}

/* Responsive */
@media (max-width: 480px) {
  .cart-modal-content {
    width: 95%;
    padding: 15px;
  }
}

/* --- Cart Button --- */
#cartBtn {
  background: #2c3e50;
  color: white;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

#cartBtn:hover {
  background: #1a252f;
}

#cartBtn .cart-count {
  background: #e74c3c;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
  display: none; /* will show when count > 0 */
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.best-seller-badge {
  position: absolute;
  top: 12px;
  left: -40px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #009688, #004d40);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 6px 60px; /* widen horizontally */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 3;
  text-align: left; /* center the text */
  pointer-events: none;
  white-space: nowrap; /* keep text on one line */
}

.best-seller-badge {
  left: -50px;
  transform: rotate(-45deg) translateX(-10px);
}

.product-card {
  position: relative; /* ensures badge positions correctly */
  overflow: hidden;
}

.mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
}

.best-seller-indicator {
  color: #1c8b7f;
  font-size: 0.8rem;
  margin-left: 3px;
  font-weight: bold;
}


.autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.autocomplete-results.active {
  display: block;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #f5f7fa;
}

.suggestion-item.selected {
  background: #edf4fd;
}

.suggestion-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0;
}

.suggestion-info {
  flex: 1;
  min-width: 0;
}

.suggestion-name {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.suggestion-category {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestion-price {
  color: #333;
  font-weight: 300;
  margin-left: 15px;
  white-space: nowrap;
}

.no-suggestions {
  padding: 16px;
  color: #666;
  text-align: center;
}

.search-meta {
  margin: 20px 0;
  color: #666;
}

.search-meta strong {
  color: #333;
}

.loading-indicator {
  padding: 16px;
  text-align: center;
  color: #666;
}

.loading-indicator::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #4a90e2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search-input::placeholder {
  color: rgba(109, 126, 126, 0.733); /* change text color */
  font-size: 0.9rem; /* adjust size */
  opacity: 1; /* make sure it’s fully visible */
}

.faq-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.faq-section h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.faq-section h4::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 0.5rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.packs-header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #0077b6, #1c8b7f);
  color: white;
}

.packs-header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.package-category {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-category h2 {
  font-size: 1.8rem;
  color: #1c8b7f;
  margin-bottom: 1.5rem;
  border-left: 5px solid #0077b6;
  padding-left: 10px;
}

/*asapa*/

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.package-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    #0f2027,
    #203a43,
    #2c5364
  ); /* dark vibrant gradient */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem 0.75rem 0 0; /* rounded top corners if card */
  color: #fff; /* ensure text pops on dark bg */
  margin-bottom: 0.5em;
}

.package-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(
    90deg,
    #48c6ef,
    #6f86d6
  ); /* vibrant gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
}

.package-header .price {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd166; /* gold highlight for price */
}
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0096c7;
  margin: 0.5rem 0 1rem;
}

.perfect-for {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.why-this-pack {
  background: #f1faff;
  border-left: 4px solid #00b4d8;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin: 1rem 0;
  border-radius: 8px;
  color: #333;
}

.includes {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.includes li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0077b6, #0096c7);
}

.package-card.lite {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.package-card.pro {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.package-card.platinum {
  background: linear-gradient(135deg, #0f2027, #2c5364, #ffb347);
}

.package-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* CTA for Packages */
.nav-menu .packages-cta a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, #009688, #004d40); /* vibrant gradient */
  color: #fff !important;
  font-weight: 600;
  border-radius: 2rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(43, 93, 255, 0.4);
  box-sizing: border-box;
  margin-top: -3px;
  animation: pulseGlow 2s infinite;
}

.nav-menu .packages-cta a:hover {
  background: linear-gradient(135deg, #0077b6, #0096c7);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 93, 255, 0.4);
}

.nav-menu .packages-cta a:active {
  transform: scale(0.96);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 93, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 75, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
  }
}

/* --- Bounce In Animation --- */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(50px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  80% {
    transform: scale(0.97) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.subcategory-card,
.product-card {
  /* opacity: 0; */
  opacity: 1;
  /* transform: translateY(50px);  */
  will-change: opacity, transform;
}
.subcategory-card.animate,
.product-card.animate {
  animation: bounceIn 0.8s ease forwards;
  opacity: 1; /* Stay visible after animation */
  transform: none; /* Reset position */
}

/* --- General Layout --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
}

/* --- Auth Links (Desktop) --- */
.auth-links {
  display: flex;
  gap: 0.5rem;
}

.btn-auth {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-auth.login {
  background: #f0f4ff;
  color: #023e8a;
  border: 1px solid #023e8a;
}

.btn-auth.login:hover {
  background: #023e8a;
  color: #fff;
}

.btn-auth.register {
  background: linear-gradient(45deg, #0077b6, #0096c7);
  color: #fff;
  border: none;
}

.btn-auth.register:hover {
  background: linear-gradient(45deg, #023e8a, #0077b6);
  color: #fff;
}

/* --- User Menu --- */
.user-menu {
  position: relative;
}

.user-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: #023e8a;
  font-weight: 500;
}

.user-toggle .chevron {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.user-menu:hover .chevron {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 10;
}

.user-menu:hover .user-dropdown {
  display: flex;
}

.user-dropdown a {
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.user-dropdown a:hover {
  background: #f5f7fa;
  color: #023e8a;
}

/* --- Cart --- */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: #023e8a;
  color: #fff;
  border-color: #023e8a;
}

.cart-count {
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* --- Mobile Responsive --- */
@media (max-width: 640px) {
  .btn-text {
    display: none; /* hide text */
  }

  .btn-auth,
  .cart-btn,
  .user-toggle {
    border-radius: 50%;
    padding: 0.6rem;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .auth-links {
    gap: 0.3rem;
  }

  .user-toggle {
    gap: 0; /* icon only */
  }
}

.option-textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  resize: vertical; /* allow vertical resize only */
  transition: border-color 0.2s, box-shadow 0.2s;
}

.option-textarea:focus {
  border-color: #1c8b7f; /* your theme primary color */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

input,
select,
textarea {
  font-size: 0.9em !important;
}

.cart-modal {
  position: fixed;
  top: 0;
  left: -400px; /* hidden */
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
  transition: left 0.3s ease-in-out;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}
.cart-modal.open {
  left: 0;
}

.cart-header,
.cart-footer {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.cart-footer {
  margin-top: auto;
  border-top: 1px solid #eee;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cart-item span {
  font-size: 14px;
}
.close-btn {
  float: right;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cart-footer button {
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-footer button:first-child {
  background: #0077b6;
  color: #fff;
}

.cart-footer button:first-child:hover {
  background: #007796;
}

.cart-footer button:last-child {
  background: #1c8b5f;
  color: #fff;
}

.cart-footer button:last-child:hover {
  background: #1c8b7f;
}

/* #0077b6, #1c8b7f */

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-info {
  flex: 1;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #990000;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.remove-btn:hover {
  color: #d9534f;
}

.cart-icon-wrapper {
  position: relative;
  font-size: 22px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff4444;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.cart-count.pulse {
  animation: cartPulse 0.4s ease;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.cart-table th,
.cart-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
.cart-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.btn {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #28a745;
  color: #fff;
}
.btn-danger {
  background: #dc3545;
  color: #fff;
}

.cart-footer button:disabled,
.cart-footer button.disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.checkout-container {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}
.checkout-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.checkout-summary {
  flex: 1 1 300px;
  border: 1px solid #ddd;
  padding: 20px;
  background: #f9f9f9;
}
.order-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.order-list li {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.order-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
}
.checkout-form-wrapper {
  flex: 2 1 400px;
}
#checkoutForm .form-group {
  margin-bottom: 15px;
}
#checkoutForm .half-width {
  width: calc(50% - 10px);
  float: left;
}
#checkoutForm .half-width:nth-of-type(2n) {
  float: right;
}
#checkoutForm label {
  display: block;
  margin-bottom: 5px;
}
#checkoutForm input[type="text"],
#checkoutForm input[type="email"],
#checkoutForm textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
}
.checkout-submit {
  margin-top: 20px;
  display: inline-block;
}
@media (max-width: 768px) {
  .checkout-content {
    flex-direction: column;
  }
  #checkoutForm .half-width {
    width: 100%;
    float: none;
  }
}

/* Contact Widget Styles */
.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Common Button Styles */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 26px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* Individual Button Colors */
.contact-btn.whatsapp {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
}
.contact-btn.phone {
  background-color: #1c2529;
  animation: pulse-blue 2s infinite;
}
.contact-btn.email {
  background-color: #1960b1;
  animation: pulse-orange 2s infinite;
}

/* Hover Effects */
.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Tooltips */
.tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tooltip:before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
}

.contact-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Pulse Animations */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 183, 241, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(52, 183, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 183, 241, 0);
  }
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 213, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 111, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .contact-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .tooltip {
    display: none;
  }
}

.price-row-hidden {
  display: none;
}

/* === View Cart Page Styles (Namespaced) === */

.vcart-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.vcart-heading {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
  font-weight: 600;
}

.vcart-empty {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}
.vcart-empty a {
  color: #007bff;
  text-decoration: none;
}
.vcart-empty a:hover {
  text-decoration: underline;
}

/* --- Table --- */
.vcart-table-wrapper {
  overflow-x: auto;
}

.vcart-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.vcart-table thead {
  background-color: #f7f9fc;
  border-bottom: 2px solid #e6e6e6;
}

.vcart-table th,
.vcart-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
}

.vcart-table th {
  font-weight: 600;
  color: #444;
}

.vcart-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.vcart-table tbody tr:hover {
  background-color: #fafafa;
}

/* --- Image --- */
.vcart-image-cell {
  width: 80px;
}
.vcart-image {
  width: 60px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* --- Price and Quantity --- */
.vcart-price,
.vcart-subtotal {
  font-weight: 500;
  color: #333;
}

.vcart-qty {
  text-align: center;
  font-weight: 500;
}

/* --- Summary Section --- */
.vcart-summary {
  margin-top: 25px;
  text-align: right;
}

.vcart-total {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}
.vcart-total span {
  font-weight: 600;
  color: #1c8b7f;
}

/* --- Buttons --- */
.vcart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.vcart-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.vcart-btn-primary {
  background-color: #1c8b7f;
  color: #fff;
}
.vcart-btn-primary:hover {
  background-color: #1c7b7f;
}

.vcart-btn-secondary {
  background-color: #f5f5f5;
  color: #333;
}
.vcart-btn-secondary:hover {
  background-color: #e0e0e0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .vcart-table th,
  .vcart-table td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .vcart-summary {
    text-align: center;
  }

  .vcart-actions {
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .vcart-table thead {
    display: none;
  }

  .vcart-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
  }

  .vcart-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .vcart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #444;
  }
}

/* === Checkout Page === */
.checkout-container {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.checkout-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.checkout-summary {
  flex: 1 1 350px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-summary h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.order-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding: 0.8rem 0;
}

.order-item-thumb img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  background: #f9f9f9;
}

.order-item-details {
  flex: 1;
}

.order-item-name {
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}

.order-item-subtotal {
  font-size: 0.9rem;
  color: #444;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.2rem;
  border-top: 1px solid #ddd;
  padding-top: 0.8rem;
}

/* Form section */
.checkout-form-wrapper {
  flex: 1 1 550px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-form-wrapper h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.half-width {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.checkout-submit {
  margin-top: 1rem;
  width: 100%;
  font-size: 1rem;
  padding: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .checkout-content {
    flex-direction: column;
  }

  .half-width {
    width: 100%;
  }

  .order-item-thumb img {
    width: 45px;
    height: 45px;
  }
}

/* --- Template Samples Grid --- */
.samples-showcase {
  margin-top: 20px;
}

.samples-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.sample-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.sample-card:hover {
  transform: scale(1.03);
}

.sample-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* --- Namespaced Modal --- */
.modal-template {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-template.active {
  display: flex;
}

.modal-template-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.modal-template-content:hover {
  transform: scale(1.03);
}

/* Close button */
.modal-template-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-template-close:hover {
  color: #ccc;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .samples-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  .sample-image {
    height: 120px;
  }
}

/* ===== LOCAL NAVIGATION FOR PACKAGES ===== */
.local-nav-packages {
  position: sticky;
  top: 70px; /* adjust to the height of your global nav */
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 999;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.local-nav-packages__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
}

.local-nav-packages__list a {
  display: block;
  padding: 0.6rem 1.1rem;
  border-radius: 25px;
  background: #f8f9fa;
  color: #1c8b7f;
  /* color: #13487d; */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.local-nav-packages__list a:hover,
.local-nav-packages__list a.active {
  background: #0078ff;
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .local-nav-packages__list {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .local-nav-packages__list::-webkit-scrollbar {
    display: none;
  }

  .local-nav-packages__list a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

.cart-header h3 {
  font-size: 1rem;
  color: #13487d;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.cart-header h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1c8b7f;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  color: #13487d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.testimonials-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1c8b7f;
  border-radius: 2px;
}

.testimonials-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 25%;
  padding: 0 15px;
  box-sizing: border-box;
  min-width: 0;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  height: 95%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5em;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(28, 139, 127, 0.2);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #13487d, #1c8b7f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-logo {
  width: 80px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.testimonial-content::before {
  content: "❝";
  font-size: 2.5rem;
  color: #1c8b7f;
  opacity: 0.3;
  position: absolute;
  left: -10px;
  top: -15px;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-style: normal;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
  margin-top: auto;
}

.author-name {
  font-weight: 700;
  color: #13487d;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: block;
}

.author-position {
  color: #1c8b7f;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3px;
  display: block;
}

.author-business {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e0e0e0;
  color: #13487d;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #13487d;
  color: white;
  border-color: #13487d;
  transform: scale(1.1);
}

.control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.control-btn:disabled:hover {
  background: white;
  color: #13487d;
  border-color: #e0e0e0;
}

.pause-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1c8b7f;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pause-play-btn:hover {
  background: #167a6f;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #1c8b7f;
  transform: scale(1.2);
}

.slider-dot:hover:not(.active) {
  background: #bbb;
}

/* Progress Bar */
.slider-progress {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #13487d, #1c8b7f);
  width: 0%;
  transition: width 10s linear;
  border-radius: 2px;
}

.progress-fill.paused {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 992px) {
  .testimonial-slider {
    padding: 0 40px;
  }

  .testimonial-slide {
    flex: 0 0 50%;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonial-slider {
    padding: 0 30px;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .slider-controls {
    gap: 15px;
  }

  .control-btn {
    width: 45px;
    height: 45px;
  }

  .pause-play-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .testimonial-slider {
    padding: 0 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-content::before {
    font-size: 2rem;
    left: -5px;
    top: -10px;
  }

  .slider-controls {
    gap: 10px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .pause-play-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Empty logo placeholder */
.logo-placeholder {
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #13487d;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

/* Partners Section */
.partners-section {
  padding: .8em 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1c8b7f, transparent);
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h2 {
  font-size: 2.5rem;
  color: #13487d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.partners-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1c8b7f;
  border-radius: 2px;
}

.partners-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.partners-subtitle {
  color: #13487d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Partners Grid Layout */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Partners Slider Layout */
.partners-slider {
  position: relative;
  padding: 0 60px;
  margin-bottom: 50px;
}

.partners-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.partner-slide {
  flex: 0 0 calc(20% - 24px); /* 5 per row on desktop */
  min-width: 0;
}

/* Partner Card */
.partner-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 139, 127, 0.05) 0%,
    rgba(19, 72, 125, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(28, 139, 127, 0.2);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%);  */
  opacity: 0.8;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.partner-card:hover .partner-logo {
  /* filter: grayscale(0%);  */
  opacity: 1;
  transform: scale(1.05);
}

/* Hover Info Overlay */
.partner-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(19, 72, 125, 0.95), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
  border-radius: 0 0 16px 16px;
}

.partner-card:hover .partner-info {
  transform: translateY(0);
}

.partner-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-align: center;
}

.partner-category {
  font-size: 0.8rem;
  opacity: 0.9;
  text-align: center;
}

/* Slider Controls */
/* .partners-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
} */

.partner-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e0e0e0;
  color: #13487d;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-btn:hover {
  background: #13487d;
  color: white;
  border-color: #13487d;
  transform: scale(1.1);
}

.partner-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.partner-btn:disabled:hover {
  background: white;
  color: #13487d;
  border-color: #e0e0e0;
}

/* Dots Navigation */
.partners-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.partner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.partner-dot.active {
  background: #1c8b7f;
  transform: scale(1.3);
}

.partner-dot:hover:not(.active) {
  background: #bbb;
}

/* Statistics Bar */
.partners-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}


.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1c8b7f;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Lato", sans-serif;
}

textarea{
  font-family: "Lato", sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Logo Placeholder */
.logo-placeholder {
  width: 150px;
  height: 80px;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #13487d;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.partners-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-controls .prev-partner {
  justify-self: start;
}

.partners-controls .next-partner {
  justify-self: end;
}
.pauser {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-dots {
  justify-self: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .partner-slide {
    flex: 0 0 calc(25% - 22.5px); /* 4 per row */
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 992px) {
  .partners-slider {
    padding: 0 40px;
  }

  .partner-slide {
    flex: 0 0 calc(33.333% - 20px); /* 3 per row */
  }

  .partner-card {
    height: 160px;
    padding: 25px 15px;
  }

  .partner-logo {
    max-width: 130px;
    max-height: 70px;
  }

  .stat-number {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-header h2 {
    font-size: 2rem;
  }

  .partners-slider {
    padding: 0 30px;
  }

  .partner-slide {
    flex: 0 0 calc(50% - 15px); /* 2 per row */
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .partner-card {
    height: 140px;
    padding: 20px 15px;
  }

  .partner-logo {
    max-width: 120px;
    max-height: 60px;
  }

  .partners-controls {
    gap: 15px;
  }

  .partner-btn {
    width: 45px;
    height: 45px;
  }

  .partners-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .partners-slider {
    padding: 0 15px;
  }

  .partner-slide {
    flex: 0 0 100%; /* 1 per row */
  }

  .partner-card {
    height: 130px;
    padding: 15px;
  }

  .partner-logo {
    max-width: 100px;
    max-height: 50px;
  }

  .partners-controls {
    gap: 10px;
  }

  .partner-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .partners-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

/* View Toggle Buttons */
.view-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.toggle-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: white;
  border: 2px solid #13487d;
  color: #13487d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-btn:hover {
  background: #13487d;
  color: white;
}

.toggle-btn.active {
  background: #13487d;
  color: white;
}

/* Infinite Scroll Animation */

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-infinite {
  display: flex;
  gap: 30px;
  animation: scrollPartners 40s linear infinite;
  width: max-content;
}

.partners-infinite:hover {
  animation-play-state: paused;
}

/* Auto-detect layout based on number of partners */
.partners-container[data-count="small"] .partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
}

.partners-container[data-count="medium"] .partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.partners-container[data-count="large"] .partners-slider {
  display: block;
}

.partners-container[data-count="large"] .partners-grid {
  display: none;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-thumb {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-combo-icon {
  background: #f2f2f2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name small {
  color: #777;
  margin-left: 4px;
}

.cart-item-price {
  font-weight: 600;
  white-space: nowrap;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


/* ===== CTA SECTION ===== */

.cta-section {
    background: #f4f4f4;
    padding: 80px 20px;
    text-align: center;

    box-shadow:
        inset 0 8px 12px -8px rgba(0, 0, 0, 0.08),  /* subtle inner top */
        0 12px 20px -15px rgba(0, 0, 0, 0.12);      /* subtle outer bottom */
    margin-bottom: .5em;
}


.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 40px;
}

/* Primary Button */
.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;

    background: linear-gradient(135deg, #1c8b7f, #2aa59a);
    box-shadow: 0 8px 20px rgba(28, 139, 127, 0.25);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(28, 139, 127, 0.35);
}

/* Secondary Text */
.cta-secondary {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #666;
}

.cta-secondary a {
    color: #13487d;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6px;
    transition: color 0.3s ease;
}

.cta-secondary a:hover {
    color: #0f3560;
}

/* Responsive */
@media (max-width: 768px) {

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-subtext {
        font-size: 1.05rem;
    }

    .cta-primary {
        width: 100%;
        padding: 16px;
        font-size: 1.05rem;
    }
}

/* ===== SLENDER TOP UTILITY NAV ===== */

.top-utility-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #e6e6e6;
    font-size: 0.85rem;
}

.top-utility-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.top-utility-nav a {
    color: #666;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: color 0.25s ease;
}

.top-utility-nav a:hover {
    color: #13487d;
}

.search-wrapper {
  /* max-width: 800px;  */
  width: 40%;
  /* margin: 10px auto;  */
  text-align: center;
}

/* Main pill container */
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px 14px;
  border: 3px solid #f4c542; /* yellow outline */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
}

/* Input */
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px;
  background: transparent;
}

/* Icon (left) */
.search-icon {
  background: #1abc9c;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
  margin-right: 10px;
}

/* Dropdown icon (right) */
.search-dropdown {
  font-size: 18px;
  color: #555;
  margin-left: 10px;
  cursor: pointer;
}

/* Placeholder styling */
.search-input::placeholder {
  color: #666;
  font-weight: 500;
}

/* Focus effect */
.search-box:focus-within {
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: #e0b837;
}

/* Chips below */
.search-tags {
  margin-top: 15px;
}

.search-tags span {
  display: inline-block;
  background: #f1f1f1;
  padding: 8px 14px;
  border-radius: 20px;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.search-tags span:hover {
  background: #e0e0e0;
}

.search-box {
  border: 3px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #f4c542, #f39c12) border-box;
}

.autocomplete-results {
  position: absolute;
  width: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  display: none;
  z-index: 1000;
}

.autocomplete-results.active {
  display: block;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background: #f9fafb;
}

.suggestion-thumbnail {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 10px;
  background: #f1f1f1;
}

.suggestion-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.suggestion-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.suggestion-category {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.suggestion-price {
  font-size: 13px;
  font-weight: 600;
  color: #1abc9c;
  white-space: nowrap;
}

.autocomplete-results.active {
  animation: fadeSlide 0.2s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-wrapper {
  position: relative; /* 🔑 THIS enables proper anchoring */
  max-width: 700px;
  /* margin: 40px auto;  */
}

.autocomplete-results {
  position: absolute;
  top: calc(100% + 8px); /* 👈 sits just below the search bar */
  left: 0;
  width: 100%; /* same width as search bar */
  
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  
  overflow: hidden;
  display: none;
  z-index: 1000;
}

.autocomplete-results {
  border: 1px solid rgba(0,0,0,0.05);
}

.autocomplete-results::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 40px; /* aligns under icon area */
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
}

.autocomplete-results {
  width: 95%;
  left: 2.5%;
}

.autocomplete-results.active {
  display: block;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.highlight-bar {
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.highlight-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Items */
.highlight-content span {
  display: inline-block;
  padding: 0 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Divider */
.highlight-content .divider {
  color: #bbb;
  cursor: default;
}

/* Hover effect */
.highlight-content span:not(.divider):hover {
  color: #1abc9c; /* matches your search accent */
}

.highlight-bar {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-strip {
  padding: 30px 15px;
  background: #f9fafb;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Base card */
.cta-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  position: relative;
}

/* Hover effect */
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Icon */
.cta-box img {
  width: 45px;
  height: 45px;
}

/* Text */
.cta-text h3 {
  margin: 0;
  font-size: 16px;
  color: #222;
}

.cta-text p {
  margin: 3px 0 0;
  font-size: 13px;
  color: #666;
}

/* WhatsApp button */
.cta-btn {
  margin-left: auto;
  background: #25D366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.cta-btn:hover {
  background: #1ebe5d;
}

/* Social icons row */
.cta-icons {
  display: flex;
  gap: 8px;
}

.cta-icons img {
  width: 28px;
  height: 28px;
}

/* Social links */
.cta-social-links {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.cta-social-links a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}

.cta-social-links a:hover {
  color: #1abc9c;
}

@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn,
  .cta-social-links {
    margin-left: 0;
    margin-top: 10px;
  }
}

.whatsapp {
  border-left: 4px solid #25D366;
}

.social {
  border-left: 4px solid #1abc9c;
}

/* ===== LOGO PACKAGES – PREMIUM DISTINCTION ===== */
.package-category.logo-packages-category {
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f4fa 100%);
  border-radius: 2rem;
  padding: 2.5rem 1.5rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(19, 72, 125, 0.08);
}

/* Decorative wave accent (optional – adds sophistication) */
.package-category.logo-packages-category::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(28, 139, 127, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.package-category.logo-packages-category::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(28, 139, 127, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Badge styling – refined */
.package-category.logo-packages-category .badge {
  display: inline-block;
  background: linear-gradient(135deg, #1c8b7f, #13487d);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-left: 1rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Cards – elevated and distinct */
.package-category.logo-packages-category .package-card {
  background: white;
  border: 1px solid rgba(28, 139, 127, 0.2);
  border-radius: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.package-category.logo-packages-category .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(19, 72, 125, 0.2);
  border-color: rgba(28, 139, 127, 0.5);
}



/* Price – gradient text for a premium feel */
.package-category.logo-packages-category .price {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #13487d, #1c8b7f);
  background-clip: text;
  -webkit-background-clip: text;
  /* color: transparent; */
  color: #ffd166;
  margin: 0.5rem 0 0.75rem;
}

/* CTA button – matches badge gradient */
.package-category.logo-packages-category .cta-button {
  background: linear-gradient(135deg, #1c8b7f, #13487d);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.package-category.logo-packages-category .cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #167a6f, #0f3a66);
  box-shadow: 0 8px 16px rgba(28, 139, 127, 0.3);
}

/* Optional: add a subtle icon before the package name */
.package-category.logo-packages-category .package-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
}

.package-category.logo-packages-category .package-header h3::before {
  content: "🎨";
  font-size: .8rem;
  font-weight: normal;
}

/* Perfect For & Why This Pack – slight background differentiation */
.package-category.logo-packages-category .perfect-for,
.package-category.logo-packages-category .why-this-pack {
  background: #fafaff;
  border-left: 4px solid #1c8b7f;
}

/* Responsive touch */
@media (max-width: 768px) {
  .package-category.logo-packages-category {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .package-category.logo-packages-category .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
  }

  .package-category.logo-packages-category .price {
    font-size: 1.2rem;
  }
}

.logo-package-name {
    color: #fff;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: .9rem;
}

/* Optional: underline effect */
.logo-package-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    /* background: linear-gradient(90deg, #1c8b7f, #13487d); */
    background: linear-gradient(90deg, #ffb347, #f4c542);
    border-radius: 2px;
}

/* Container for both buttons */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Base CTA button style already exists, but we can tweak */
.cta-button {
  display: block;
  text-align: center;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}

/* Keep the existing Add to Cart style (gradient) */
.add-combo-to-cart {
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  color: white;
  border: none;
}

/* WhatsApp button – distinct green */
.whatsapp-order {
  background: #25D366;
  color: white;
  border: none;
}

.whatsapp-order:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Optional: if you want the buttons to stack on very small screens */
@media (max-width: 480px) {
  .card-actions {
    flex-direction: column;
  }
  .cta-button {
    width: 100%;
  }
}