








/*Footer Css*/
/* Awesome Footer Styles */
.awesome-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  font-size: 15px;
  line-height: 1.6;
}

.footer-top {
  padding: 60px 0 40px;
  background-color: #2c3e50;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-widget {
  flex: 1 0 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-widget-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

.footer-widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #3498db;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: #3498db;
  width: 20px;
  text-align: center;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #3498db;
  padding-left: 5px;
}

.newsletter-widget {
  max-width: 300px;
}

.newsletter-input-group {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-input-group input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter-submit {
  background-color: #3498db !important;
  color: white !important;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0 !important;
  cursor: pointer;
  transition: background-color 0.3s !important;
}

.newsletter-submit:hover {
  background-color: #2980b9;
}

.newsletter-consent {
  font-size: 12px;
  color: #95a5a6;
}

.newsletter-consent input {
  margin-right: 5px;
}

.footer-social {
  margin-top: 25px;
}

.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #34495e;
  color: #ecf0f1;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}

.footer-middle {
  padding: 20px 0;
  background-color: #34495e;
  border-top: 1px solid #3d566e;
  border-bottom: 1px solid #3d566e;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-methods h4 {
  color: #bdc3c7;
  margin: 0 15px 0 0;
  font-size: 14px;
}

.payment-icons {
  display: flex;
  gap: 15px;
}

.payment-icons i {
  font-size: 28px;
  color: #bdc3c7;
  transition: color 0.3s;
}

.payment-icons i:hover {
  color: #3498db;
}

.footer-bottom {
  padding: 25px 0;
  background-color: #2c3e50;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copyright {
  color: #95a5a6;
  margin-bottom: 10px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.legal-links a {
  color: #bdc3c7;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #3498db;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-widget {
    flex: 1 0 50%;
  }
}

@media (max-width: 768px) {
  .footer-widget {
    flex: 1 0 100%;
  }

  .payment-methods {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods h4 {
    margin: 0 0 10px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 15px;
  }
}












/* Base Styles */
.product-listing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-card {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 15px;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.product-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d26e4b;
  margin: 10px 0;
}

.product-rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.buy-now-button {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.buy-now-button:hover {
  background-color: #e88a04;
  color: white;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: 20px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.comparison-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.comparison-table tr:hover {
  background-color: #f9f9f9;
}

.comparison-table img {
  max-width: 150px;
  height: auto;
}

/* Search and Filter */
.product-search-filter {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.product-search-filter input[type="text"],
.product-search-filter input[type="number"],
.product-search-filter select {
  padding: 8px 12px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.product-search-filter button {
  padding: 8px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.product-search-filter button:hover {
  background: #555;
}

.price-range {
  display: inline-block;
  margin: 0 15px;
}

.price-range span {
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-listing {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .product-search-filter input,
  .product-search-filter select {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .price-range {
    display: block;
    margin: 10px 0;
  }
}
