* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #deebf4;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #deebf4, #aadbf1);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #deebf4, #aadbf1);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-family: Arial, sans-serif;
  padding: 20px;
}

html,
body {
  height: 100%;
}

.contain {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.product-card {
  width: 400px;
  border-radius: 10px;  
  -webkit-box-shadow: 0px 0px 47px -20px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 47px -20px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 47px -20px rgba(0, 0, 0, 1);
  margin: 60px 0px 60px 0px;
  background-color: #fff;
}

.product-image {
  height: 300px;
  overflow: hidden;
  position: relative;
  top: -90px;
  padding: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  border-radius: 10px;
  
}

.product-image:hover img {
  transform: scale(1.1);
}


.product-details {
  padding: 20px;
  margin-top: -90px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #666;
}

.product-details.expand {
  height: auto;
}

.product-details .expand-button {
  cursor: pointer;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

.product-details .expand-button:hover {
  color: #000;
  text-decoration: underline;
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-to-cart,
.compare {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.add-to-cart {
  background-color: #666;
}

.compare {
  background-color: #aadbf1;
  color: #fff;
}

.add-to-cart:hover,
.compare:hover {
  opacity: 0.8;
}

.credit a {
  text-decoration: none;
  color: #000;
  font-weight: 800;
}

.credit {
  color: #000;
  text-align: center;
  margin-top: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Centering the brand container at the top of the page */
#fix-header{
  
  background: linear-gradient(to right, #deebf4, #aadbf1);
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure it's above other content */
}

.brand-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; 
  background: linear-gradient(to right, #deebf4, #aadbf1);
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* Remove underline from link */
  color: #333;
  /* Text color */
}

.brand-icon {
  width: 90px;
  height: 80px;
  border-radius: 50%;
  background-color: #c1e9ef;
  padding: 5px;
  margin-right: 10px;
}

.brand-text {
  font-size: 24px;
  font-weight: bold;
}

/* General body styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Centering the brand container at the top of the page */
.brand-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.brand-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  padding: 5px;
  margin-right: 10px;
}

.brand-text {
  font-size: 24px;
  font-weight: bold;
}

/* Container for product type */
.container.product-type {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
}

/* Style for the product-type-details (table) */
.product-type-details {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
}

.product-type-details table {
  width: 100%;
  border-collapse: collapse;
}

.product-type-details th, .product-type-details td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.product-type-details th {
  background-color: #f9f9f9;
}

/* Style for the product-image */
.product-type-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-type-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(121, 129, 130, 0.486), rgba(251, 254, 254, 0.919) 20%);
  border-radius: 10px;
  z-index: 1;
}

.product-type-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  z-index: 2;
  position: relative;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-type-image:hover img {
  transform: scale(1.1);
}


/* footer-style.css */

.footer {
  background: linear-gradient(to right, #deebf4, #aadbf1);
  color: #4a5568; /* Gray text color */
  padding: 2rem 0;
}

.footer .brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2d3748; /* Dark gray color for text */
}

.footer .brand-logo img {
  width: 4rem; /* Adjust logo size */
  height: 4rem;
  margin-right: 1rem;
}

.footer .brand-logo span {
  font-size: 1.25rem; /* Adjust font size */
  font-weight: 500;
}

.footer .text-sm {
  font-size: 0.875rem;
}

.footer .social-icons {
  display: flex;
  gap: 1rem; /* Space between icons */
  margin-top: 1rem;
}

.footer .social-icons a {
  color: #4a5568; /* Gray color for icons */
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #2d3748; /* Darker gray on hover */
}

.footer .social-icons svg {
  width: 1.25rem; /* Icon size */
  height: 1.25rem;
}

.footer .text-sm {
  margin-top: 1rem;
}

/*.product-type-heading{*/
/*  width:100%;*/
/*  height:50px;*/
/*}*/
