/* Shared */
.button {
  border-radius: 100px;
}

.cart-btn {
  color: white;        
  border: none;       
  border-radius: 10px;     
  width: 20px;        
  height: 20px;      
  display: inline-flex;  
  margin-right: 4px;
  justify-content: center;  
  align-items: center;      
  cursor: pointer;         
  transition: background-color 0.3s ease; 
  font-size: 10px;   
  background-color: #898787;       
}

/* Change to red on hover */
.cart-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer {
  border-top: 1px solid #eee;
  background-color: rgb(31 67 58);
  color: #fff;
  padding: 2rem 0;
}

.footer iframe {
  border-radius: 100px;
}

.footer-link {
  color: #fff !important;
  text-decoration: underline;
}

/* Override Skeleton CSS .button-primary styles */
.button-primary {
  background-color: #0a7c6f !important; /* Change this to your preferred color */
  border-color: #0a7c6f !important;     /* Optional: Change border color if needed */
  color: white !important;              /* Optional: Ensure text color is readable */
}

/* Optional: Change hover effect */
.button-primary:hover {
  background-color: #09675c !important; /* Slightly darker shade for hover effect */
  border-color: #09675c !important;
}

.hidden {
  display: none !important;
}

.menu .button {
  text-align: left;
  float: left;
  width: 80%;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  overflow-y: visible;
  height: 6.7rem;
}

.logo {
  margin-right: 1rem;
}

.logo img {
  width: 100px;
}

/* Sections */
.section {
  padding: 8rem 0 7rem;
  text-align: center;
}

.section-heading,
.section-description {
  margin-bottom: 1.2rem;
}

/* Bigger than 750 */
@media (min-width: 750px) {

  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

}

/* Values */
.values {
  /*background-image: url('../images/values-bg.png');*/
  background:linear-gradient(0deg, rgba(10, 124, 111, 0.3), rgba(10, 124, 111, 0.3)), url('../images/values-bg.png');
  background-size: cover;
  color: #fff;
  padding-bottom: 5rem;
}

.value-multiplier {
  margin-bottom: .5rem;
  color: #44f4df;
}

.value-heading {
  margin-bottom: .3rem;
}

.value-description {
  opacity: .8;
  font-weight: 300;
}

/* Products */
.tabcontent {
  display: none;
}

.products-desc, .products .container h2 {
  text-align: left;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  text-align: left;
}

.product_intro {
  text-align: left;
}

.product_intro.mobile {
  display: none;
}

.product_intro.tablet {
  display: block;
}

.visible-xs {
  display: none;
}

@media screen and (max-width: 750px) {
  .product_intro.mobile {
    display: block;
  }

  .product_intro.tablet {
    display: none;
  }

  .tab-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .visible-xs {
    display: block !important;
  }

  th:nth-child(3),
  td:nth-child(3),
  th:nth-child(4),
  td:nth-child(4),
  th:nth-child(5),
  td:nth-child(5) {
    display: none;
  }
}

/* Navbar */
.navbar {
  display: block;
  margin-left: 1rem;
  height: 6.5rem;
  background: #fff;
  z-index: 99;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.navbar>.container {
  width: 100%;
}

.navbar-list {
  list-style: none;
  margin-bottom: 0;
}

.navbar-item {
  position: relative;
  float: left;
  margin-bottom: 0;
  margin-left: 15px;
}

.navbar-link {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2rem;
  margin-right: 35px;
  text-decoration: none;
  line-height: 6.5rem;
  color: #222;
}

.navbar-link.active {
  color: #33C3F0;
}

@media (max-width: 750px) {
  .navbar {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #f7f7f7;
    width: 200px;
    flex-direction: column;
    text-align: left;
    padding: 10px;
  }
}


/* Cart */
.cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 50%;
  z-index: 1000;
}

/* Cart Icon Blink and Jump Animation */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cart-icon.blink {
  animation: blink 1s ease-in-out;
}

.cart-icon.jump {
  animation: jump 0.5s ease-in-out;
}

/* Modal styles */
.cart-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow-y: auto;
}

.cart-content {
  background-color: white;
  padding: 20px;
  margin: 50px auto;
  max-width: 500px;
  border-radius: 10px;
}

.cart ul {
  list-style: none;  /* Remove bullet points */
  padding: 0;
}

.cart ul li {
  display: flex;          /* Use flexbox to control layout */
  justify-content: space-between; /* Space out the content */
  align-items: center;    /* Align items vertically in the center */
}

.cart ul li div {
  margin-left: auto;      /* Push the div with "2 tk" to the right */
}

#submitBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Close button inside modal */
.close-btn {
  float: right;
  cursor: pointer;
  font-size: 20px;
  color: #333;
}

/* Basic tab styling */

.tab-links {
  margin-bottom: 20px;  
  margin-right: 15px;
  padding: 10px;
  cursor: pointer;
  background-color: #f4f4f4;
  border-radius: 5px;
  display: inline-block;
}

.tab-links.active {
  background-color: #333;
  color: white;
}

/* Hide tab content initially */
.tab-content {
  display: none;
}

/* Show active tab content */
.tab-content.active {
  display: block;
}