/* --- Top Coupons Section Styles --- */
.custom-top-coupons {
  padding: 60px 20px;
  background-color: #f8f9fa; 
  
}

.custom-top-coupons .tc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-top-coupons .tc-main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  line-height: 1.2;
}

.custom-top-coupons .tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

/* Card Styling */
.custom-top-coupons .tc-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-top-coupons .tc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
}

/* Image Wrapper and Aspect Ratio Lock */
.custom-top-coupons .tc-image-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Keeps all cards uniform regardless of original image size */
  height: 250px;
  overflow: hidden;
}

.custom-top-coupons .tc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images cover the area without stretching */
  transition: transform 0.5s ease;
}

/* Image Zoom on Card Hover */
.custom-top-coupons .tc-card:hover .tc-image-wrapper img {
  transform: scale(1.05);
}

/* Content Area */
.custom-top-coupons .tc-content {
  padding: 24px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-top-coupons .tc-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.custom-top-coupons .tc-title a {
  text-decoration: none;
  color: #111827;
  transition: color 0.2s ease;
}

/* Accent Color on Hover */
.custom-top-coupons .tc-title a:hover {
  color: #3b82f6; /* Modern Blue, easily changed to match your brand */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-top-coupons {
    padding: 40px 15px;
  }
  .custom-top-coupons .tc-main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .custom-top-coupons .tc-grid {
    gap: 20px;
  }
}

/* --- About Scoopy Reviews Section Styles --- */
.custom-about-scoopy {
  padding: 80px 20px;
  background-color: #ffffff;
  
}

.custom-about-scoopy .cas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Column Layout */
  gap: 60px;
  align-items: center;
}

/* Typography */
.custom-about-scoopy .cas-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827; /* Dark Gray/Black */
  margin-top: 0;
  margin-bottom: 24px;
}

.custom-about-scoopy .cas-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4b5563; /* Medium Gray */
  margin-top: 0;
  margin-bottom: 20px;
}

/* Emphasize the last line */
.custom-about-scoopy .cas-text .cas-highlight {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb; /* Modern vibrant blue */
  border-left: 4px solid #2563eb;
  padding-left: 16px;
  margin-top: 30px;
}

/* Image Column Styling */
.custom-about-scoopy .cas-visual {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 20px;
  
  /* Replace the URL below with your actual image URL */
  background-image: url('https://scoopyreviews.com/wp-content/uploads/2025/08/fashiondiscount3-848x360-1-1.png'); 
  background-color: #f3f4f6; /* Fallback color */
  background-size: cover;
  background-position: center;
  
  /* Stunning shadow effect */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.custom-about-scoopy .cas-visual:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments for Tablets and Mobile */
@media (max-width: 992px) {
  .custom-about-scoopy {
    padding: 60px 20px;
  }
  .custom-about-scoopy .cas-container {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
    gap: 40px;
  }
  .custom-about-scoopy .cas-title {
    font-size: 2rem;
  }
  .custom-about-scoopy .cas-visual {
    min-height: 350px;
    order: -1; /* Moves the image above the text on mobile (Optional: remove this line to keep text on top) */
  }
}

@media (max-width: 480px) {
  .custom-about-scoopy .cas-title {
    font-size: 1.75rem;
  }
  .custom-about-scoopy .cas-text p {
    font-size: 1rem;
  }
  .custom-about-scoopy .cas-visual {
    min-height: 250px;
  }
}

/* --- Hand Picked Stores Section Styles --- */
.custom-hand-picked-stores {
  padding: 60px 20px;
  background-color: #fafafa; /* Very light background to make the white cards stand out */
 
}

.custom-hand-picked-stores .hps-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.custom-hand-picked-stores .hps-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
}

/* Modern centered accent line */
.custom-hand-picked-stores .hps-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4d4d; /* Brand accent color */
  margin: 16px auto 0;
  border-radius: 4px;
}

/* Grid Layout */
.custom-hand-picked-stores .hps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Individual Store Card */
.custom-hand-picked-stores .hps-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 24px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-hand-picked-stores .hps-card span {
  color: #374151;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: color 0.3s ease;
}

/* Stunning Hover Effects */
.custom-hand-picked-stores .hps-card:hover {
  transform: translateY(-6px);
  border-color: #ff4d4d;
  box-shadow: 0 12px 24px rgba(255, 77, 77, 0.12); /* Soft red tinted shadow */
}

.custom-hand-picked-stores .hps-card:hover span {
  color: #ff4d4d;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .custom-hand-picked-stores {
    padding: 40px 15px;
  }
  
  .custom-hand-picked-stores .hps-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }

  .custom-hand-picked-stores .hps-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 12px;
  }
  
  .custom-hand-picked-stores .hps-card {
    padding: 18px 12px;
  }

  .custom-hand-picked-stores .hps-card span {
    font-size: 0.9rem;
  }
}

/* --- Featured Reviews Section Styles --- */
.custom-featured-reviews {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.custom-featured-reviews .cfr-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.custom-featured-reviews .cfr-header {
  text-align: center;
  margin-bottom: 50px;
}

.custom-featured-reviews .cfr-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 15px 0;
}

.custom-featured-reviews .cfr-divider {
  width: 80px;
  height: 4px;
  background-color: #ff4d4d; /* Theme accent color */
  margin: 0 auto;
  border-radius: 2px;
}

/* Grid Layout */
.custom-featured-reviews .cfr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

/* Card Styling */
.custom-featured-reviews .cfr-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-featured-reviews .cfr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}

/* Image & Badge Area */
.custom-featured-reviews .cfr-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f9fafb;
}

.custom-featured-reviews .cfr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-featured-reviews .cfr-card:hover .cfr-image-wrapper img {
  transform: scale(1.08);
}

.custom-featured-reviews .cfr-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff4d4d;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(255, 77, 77, 0.3);
  z-index: 2;
}

/* Card Content Area */
.custom-featured-reviews .cfr-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.custom-featured-reviews .cfr-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.custom-featured-reviews .cfr-card-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-featured-reviews .cfr-card-title a:hover {
  color: #ff4d4d;
}

.custom-featured-reviews .cfr-excerpt {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

/* Meta Data (Author & Date) */
.custom-featured-reviews .cfr-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #f3f4f6;
  padding-top: 20px;
  margin-bottom: 20px;
}

.custom-featured-reviews .cfr-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #6b7280;
}

.custom-featured-reviews .cfr-meta-item svg {
  color: #9ca3af;
}

.custom-featured-reviews .cfr-meta-item a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
}

.custom-featured-reviews .cfr-meta-item a:hover {
  color: #ff4d4d;
}

/* Read More Link */
.custom-featured-reviews .cfr-read-more {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff4d4d;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.custom-featured-reviews .cfr-read-more:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-featured-reviews {
    padding: 60px 15px;
  }
  .custom-featured-reviews .cfr-grid {
    grid-template-columns: 1fr;
  }
  .custom-featured-reviews .cfr-title {
    font-size: 2rem;
  }
  .custom-featured-reviews .cfr-content {
    padding: 20px;
  }
  .custom-featured-reviews .cfr-card-title {
    font-size: 1.25rem;
  }
}
/* --- How to Use a Coupon Section Styles --- */
.custom-how-to-use {
  padding: 80px 20px;
  background-color: #f9fafb; /* Soft light gray to make the cards stand out */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.custom-how-to-use .htu-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.custom-how-to-use .htu-header {
  text-align: center;
  margin-bottom: 50px;
}

.custom-how-to-use .htu-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.custom-how-to-use .htu-divider {
  width: 70px;
  height: 4px;
  background-color: #ff4d4d; /* Brand accent color */
  margin: 0 auto;
  border-radius: 2px;
}

/* Grid Layout */
.custom-how-to-use .htu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Step Card Styling */
.custom-how-to-use .htu-step-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-how-to-use .htu-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
}

/* Icon Styling */
.custom-how-to-use .htu-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff0f0; /* Soft tint of the red accent */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: background-color 0.3s ease;
}

.custom-how-to-use .htu-step-card:hover .htu-icon-wrapper {
  background-color: #ff4d4d;
}

.custom-how-to-use .htu-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: #ff4d4d;
  transition: fill 0.3s ease;
}

.custom-how-to-use .htu-step-card:hover .htu-icon-wrapper svg {
  fill: #ffffff; /* Icon turns white when card is hovered */
}

/* Content Styling */
.custom-how-to-use .htu-content {
  flex-grow: 1;
}

.custom-how-to-use .htu-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
}

.custom-how-to-use .htu-step-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-how-to-use {
    padding: 60px 15px;
  }
  .custom-how-to-use .htu-title {
    font-size: 2rem;
  }
  .custom-how-to-use .htu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* On very small screens, stack the icon and text */
  .custom-how-to-use .htu-step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  .custom-how-to-use .htu-icon-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* --- Global Footer Styles --- */
.scoopy-global-footer {
  background-color: #111827; /* Rich dark background */
  color: #f9fafb;
  padding: 60px 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.scoopy-global-footer .sgf-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Trending Coupons Section */
.scoopy-global-footer .sgf-trending-section {
  margin-bottom: 50px;
}

.scoopy-global-footer .sgf-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

/* Stylish underline for the heading */
.scoopy-global-footer .sgf-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: #ff4d4d; /* Red accent */
  border-radius: 2px;
}

/* Tags/Pills Layout for Links */
.scoopy-global-footer .sgf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scoopy-global-footer .sgf-tags a {
  background-color: rgba(255, 255, 255, 0.05);
  color: #d1d5db; /* Light gray text */
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scoopy-global-footer .sgf-tags a:hover {
  background-color: #ff4d4d;
  color: #ffffff;
  border-color: #ff4d4d;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 77, 77, 0.2);
}

/* Bottom Bar & Copyright Note */
.scoopy-global-footer .sgf-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.scoopy-global-footer .sgf-copyright {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .scoopy-global-footer {
    padding: 50px 15px 20px;
  }
  .scoopy-global-footer .sgf-tags {
    gap: 10px;
  }
  .scoopy-global-footer .sgf-tags a {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}