/* ==========================
   Global Reset & Base Styles
   ========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* ==========================
   Section Titles
   ========================== */

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================
   Selected Stores Section
   ========================== */

.selected-stores-banner {
  background: #f5f7fa;
  padding: 60px 0;
}

.stores-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
}

/* Store Card */
.store-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 15px 30px 15px;
}

.store-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Store Logo - 200x200 px */
.store-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #e67e22;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.store-card:hover .store-logo {
  transform: scale(1.05);
}

/* Store Name */
.store-name {
  margin: 0;
}

.store-name a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  padding: 0 12px;
  transition: color 0.2s;
}

.store-name a:hover {
  color: #e67e22;
}

/* Section Title Styling */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}
.section-title::after {
  content: '';
  width: 110px;
  height: 4px;
  background: #e67e22;
  display: block;
  margin: 12px auto 0 auto;
  border-radius: 3px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .store-logo {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .store-logo {
    width: 120px;
    height: 120px;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .store-name a {
    font-size: 1rem;
  }
}

/* ==========================
   Selected Products Section
   ========================== */

.selected-products-banner {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 20px;
}

.btn.view-product {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn.view-product:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.no-products {
  font-size: 1.2rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* ==========================
   Selected Blogs Section
   ========================== */

.selected-blogs-banner {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.blogs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  text-align: center;
}

.blog-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #007bff;
  text-decoration: underline;
}

.blog-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

.no-blogs {
  font-size: 1.2rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* ==========================
   Selected Coupons Section
   ========================== */

.selected-coupons-banner {
  background-color: #f9f9f9;
  padding: 60px 15px;
}

.coupons-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.coupon-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.coupon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 20px auto;
  border-radius: 50%;
}

.coupon-details {
  padding: 15px;
}

.coupon-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 15px;
}

.coupon-title a {
  text-decoration: none;
  color: inherit;
}

.coupon-title a:hover {
  text-decoration: underline;
}

.coupon-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.coupon-expiry {
  font-size: 1rem;
  color: #888;
  margin-bottom: 20px;
}

.button-container {
  padding: 20px;
}

.show-code-button, .get-deal-button {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.show-code-button {
  background-color: #28a745;
}

.get-deal-button {
  background-color: #007bff;
}

.show-code-button:hover, .get-deal-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.no-coupons {
  font-size: 1.2rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* ==========================
   End of Styles
   ========================== */
