body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.product-info {
    text-align: center;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active-slide {
    display: block;
}

.carousel img {
    height: 180px;
    margin: 10px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #333;
    background-color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.carousel-arrow:hover {
    color: #007bff;
}

.price {
    margin-top: 10px;
}

.original-price {
    position: relative;
    color: #999;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: red;
    transform: translateY(-50%);
}

.sale-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.discount {
    color: green;
    margin-top: 5px;
    font-weight: bold;
}

.cta-button {
    display: block;
    background-color: #1DA1F2;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
}

.cta-button:hover {
    background-color: #007bff; 
}

footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    color: #007bff;
}


.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #333;
  background-color: #fff;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 2;
}

.carousel-arrow.back {
  left: 10px;
}

.carousel-arrow.forward {
  right: 0px;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
}
.inventory {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add additional styling as needed */
    color: #1DA1F2;
}

.inventory-content {
  display: flex;
  align-items: center;
  /* Add additional styling as needed */
}

.inventory-icon {
  font-size: 24px;
  /* Add additional styling as needed */
    color: #1DA1F2;
}

.inventory-count {
  margin-right: 4px;
  font-weight: bold;
  /* Add additional styling as needed */
}

.inventory-label {
  /* Add additional styling as needed */
}
.twitter-banner {
  background-color: #1DA1F2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center; /* Add this line */
}

.twitter-banner i {
  color: #ffffff;
  font-size: 24px;
  margin-right: 10px;
}

.twitter-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
   text-align: center; /* Add this line */
}
.star-rating i 
{
  color: #1DA1F2 !important;
}

