/* ============================================
   EXCLUDED SHOP PAGE - MODERN & ELEGANT
   ============================================ */

:root {
  --sdf-blue-muted: rgba(78,106,139,1);
  --sdf-blue-dark: rgba(60,85,115,1);
  --sdf-blue-france: #000091;
  --sdf-orange: #F4A259;
  --sdf-teal: #5BA3A3;
  --sdf-grey-bg: #F5F5F5;
  --sdf-grey-light: #E0E0E0;
  --sdf-grey-text: #757575;
  --sdf-grey-dark: #424242;
}

/* Main container */
.sdf-excluded-shop-page {
  min-height: 80vh;
  background: var(--sdf-grey-bg);
}

/* Header - Icon Left, Text Right Layout */
.sdf-excluded-hero {
  padding: 2rem 1.5rem;
  background: #FFF9F5;
  border-bottom: 1px solid var(--sdf-grey-light);
}

.sdf-excluded-hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sdf-excluded-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #FFF3E0;
  border-radius: 50%;
}

.sdf-excluded-icon {
  width: 40px;
  height: 40px;
  color: #F57C00;
}

.sdf-excluded-text {
  flex: 1;
  text-align: left;
}

.sdf-excluded-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--sdf-grey-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.sdf-excluded-shop-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--sdf-grey-dark);
  margin: 0 0 0.5rem 0;
}

.sdf-excluded-message {
  font-size: 0.9375rem;
  color: var(--sdf-grey-text);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Results Counter */
.sdf-results-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sdf-results-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: var(--sdf-blue-muted);
  color: white;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.sdf-results-text {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--sdf-grey-dark);
}

/* Alternatives section */
.sdf-excluded-alternatives {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.sdf-alternatives-subtitle {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--sdf-grey-text);
  margin: 0 0 2rem 0;
  font-weight: 300;
}

.sdf-alternatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1180px) {
  .sdf-alternatives-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sdf-alternatives-grid {
    grid-template-columns: 1fr;
  }
}

/* Shop card - Enhanced with logo and buttons */
.sdf-shop-card {
  background: white;
  border: 1px solid var(--sdf-grey-light);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sdf-shop-card::before {
  display: none;
}

.sdf-shop-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Shop Header with Logo */
.sdf-shop-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--sdf-grey-light);
}

.sdf-shop-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.sdf-shop-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  max-height: 80px;
}

.sdf-shop-card-title {
  font-size: 1.0625rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: var(--sdf-grey-dark);
  text-align: center;
  transition: color 0.2s ease;
}

.sdf-shop-link:hover .sdf-shop-card-title {
  color: var(--sdf-blue-muted);
}

/* Rating */
.sdf-shop-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--sdf-grey-text);
  margin-top: 0.5rem;
}

.sdf-stars {
  display: flex;
  gap: 0.125rem;
}

.sdf-star {
  width: 14px;
  height: 14px;
}

.sdf-star-filled {
  fill: #FFA726;
}

.sdf-star-empty {
  fill: #E0E0E0;
}

.sdf-shop-rating-value {
  font-weight: 500;
  color: var(--sdf-grey-dark);
}

.sdf-shop-rating-count {
  color: var(--sdf-grey-text);
}

/* Call to Action Buttons - Responsive Row Layout */
.sdf-shop-card-actions {
  padding: 1rem 1.5rem;
  background: #FAFAFA;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sdf-shop-card-actions .btn {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 165px;
  max-width: 100%;
  padding: 0.875rem 1.125rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 44px;
}

/* Single button takes full width */
.sdf-shop-card-actions .btn:only-child {
  flex: 1 1 100%;
  max-width: 100%;
}

/* When buttons wrap, each takes full width */
@media (max-width: 480px) {
  .sdf-shop-card-actions .btn {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.sdf-shop-card-actions .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sdf-shop-card-actions .btn:hover::before {
  width: 300px;
  height: 300px;
}

.sdf-shop-card-actions .btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.sdf-shop-card-actions .btn * {
  text-decoration: none;
}

.sdf-shop-card-actions .btn-emergency {
  background: #FF6B35;
  color: white;
}

.sdf-shop-card-actions .btn-emergency:hover {
  background: #E85A2A;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.sdf-shop-card-actions .btn-recall {
  background: var(--sdf-blue-muted);
  color: white;
}

.sdf-shop-card-actions .btn-recall:hover {
  background: var(--sdf-blue-dark);
  box-shadow: 0 4px 12px rgba(78, 106, 139, 0.4);
}

/* Shop Info - Responsive Rows */
.sdf-shop-card-info {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

/* Location & Distance on same row */
.sdf-shop-location-distance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sdf-shop-location,
.sdf-shop-distance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--sdf-grey-text);
}

.sdf-shop-info-row .sdf-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--sdf-blue-muted);
}

.sdf-shop-distance strong {
  color: var(--sdf-grey-dark);
  font-weight: 500;
}

/* Badges on same row */
.sdf-shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.sdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sdf-badge i {
  font-size: 0.75rem;
}

.sdf-badge-emergency {
  background: #FFF3E0;
  color: #F57C00;
}

.sdf-badge-open {
  background: #E8F5E9;
  color: #4CAF50;
}

/* Card Footer */
.sdf-shop-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--sdf-grey-light);
}

.sdf-link-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--sdf-blue-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.sdf-link-profile:hover {
  color: var(--sdf-blue-dark);
  gap: 0.75rem;
  text-decoration: none;
}

.sdf-link-profile i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.sdf-link-profile:hover i {
  transform: translateX(4px);
}

/* Locksmith CTA Card */
.sdf-locksmith-cta-card {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border: 2px solid var(--sdf-blue-muted);
  position: relative;
  overflow: hidden;
}

.sdf-locksmith-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sdf-blue-muted) 0%, var(--sdf-orange) 50%, var(--sdf-teal) 100%);
}

.sdf-locksmith-cta-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.sdf-locksmith-cta-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sdf-blue-muted) 0%, var(--sdf-blue-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 4px 12px rgba(78, 106, 139, 0.3);
}

.sdf-locksmith-cta-text {
  flex: 1;
  min-width: 0;
}

.sdf-locksmith-cta-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--sdf-grey-dark);
  margin: 0 0 0.375rem 0;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.sdf-locksmith-cta-subtitle {
  font-size: 0.9375rem;
  color: var(--sdf-blue-muted);
  font-weight: 400;
  margin: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.sdf-locksmith-cta-benefits {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(78, 106, 139, 0.03);
}

.sdf-locksmith-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--sdf-grey-text);
}

.sdf-locksmith-benefit i {
  font-size: 1rem;
  color: #4CAF50;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.sdf-locksmith-benefit span {
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: normal;
  flex: 1;
}

.sdf-locksmith-cta-footer {
  padding: 1.5rem;
  text-align: center;
}

.sdf-btn-locksmith-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--sdf-blue-muted) 0%, var(--sdf-blue-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(78, 106, 139, 0.3);
}

.sdf-btn-locksmith-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sdf-btn-locksmith-cta:hover::before {
  width: 400px;
  height: 400px;
}

.sdf-btn-locksmith-cta i {
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

.sdf-btn-locksmith-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(78, 106, 139, 0.5);
  color: white;
  text-decoration: none;
}

.sdf-btn-locksmith-cta * {
  text-decoration: none;
}

/* Search All Button */
.sdf-search-all-wrapper {
  text-align: center;
  margin: 2rem 0;
}

.sdf-btn-search-all {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--sdf-blue-muted);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sdf-btn-search-all::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sdf-btn-search-all:hover::before {
  width: 400px;
  height: 400px;
}

.sdf-btn-search-all svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sdf-btn-search-all:hover {
  background: var(--sdf-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 106, 139, 0.4);
  color: white;
  text-decoration: none;
}

/* CTA Container */
.sdf-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Label Description Box - Horizontal Layout */
.sdf-label-box {
  background: linear-gradient(135deg, var(--sdf-blue-muted) 0%, var(--sdf-blue-dark) 100%);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sdf-label-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.sdf-label-content {
  flex: 1;
  color: white;
}

.sdf-label-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.sdf-label-text {
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

.sdf-label-text strong {
  font-weight: 500;
}

/* CTA Grid - Improved Layout */
.sdf-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sdf-cta-card {
  background: white;
  border: 1px solid var(--sdf-grey-light);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sdf-cta-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.sdf-cta-card::after {
  display: none;
}

.sdf-cta-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.sdf-cta-card:hover .sdf-cta-icon {
  transform: scale(1.1);
}

.sdf-cta-emergency .sdf-cta-icon {
  background: #FFF3E0;
  color: var(--sdf-orange);
}

.sdf-cta-project .sdf-cta-icon {
  background: #E0F2F1;
  color: var(--sdf-teal);
}

.sdf-cta-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--sdf-grey-dark);
  margin: 0;
  line-height: 1.3;
}

.sdf-cta-description {
  font-size: 0.9375rem;
  color: var(--sdf-grey-text);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.sdf-cta-card .sdf-btn {
  margin-top: auto;
  width: 100%;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.sdf-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sdf-btn:hover::before {
  width: 400px;
  height: 400px;
}

.sdf-btn-primary {
  background: var(--sdf-blue-muted);
  color: white;
  cursor: pointer;
}

.sdf-btn-primary:hover {
  background: var(--sdf-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 106, 139, 0.3);
  color: white;
  text-decoration: none;
}

.sdf-btn-primary:hover * {
  color: white;
  text-decoration: none;
}

/* Become Member CTA - Horizontal Layout */
.sdf-cta-become-member {
  background: var(--sdf-blue-muted);
  border-radius: 0.75rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sdf-cta-become-member:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sdf-cta-member-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.sdf-cta-member-content {
  flex: 1;
  color: white;
}

.sdf-cta-member-title {
  font-size: 1.375rem;
  font-weight: 300;
  color: white;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.sdf-cta-member-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

.sdf-btn-white {
  flex-shrink: 0;
  background: white;
  color: var(--sdf-blue-muted);
  padding: 0.875rem 2rem;
  font-weight: 400;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.sdf-btn-white::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(78, 106, 139, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sdf-btn-white:hover::before {
  width: 400px;
  height: 400px;
}

.sdf-btn-white i {
  font-size: 1rem;
}

.sdf-btn-white:hover {
  background: #FAFAFA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--sdf-blue-muted);
  text-decoration: none;
}

.sdf-btn-white:hover * {
  color: var(--sdf-blue-muted);
  text-decoration: none;
}

/* Back Link */
.sdf-cta-back {
  text-align: center;
  padding-top: 1.5rem;
}

.sdf-link-back {
  color: var(--sdf-grey-text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sdf-link-back i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.sdf-link-back:hover {
  color: var(--sdf-blue-muted);
  text-decoration: none;
}

.sdf-link-back:hover i {
  transform: translateX(-4px);
}

/* No results */
.sdf-excluded-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--sdf-grey-text);
  font-size: 1rem;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .sdf-excluded-hero {
    padding: 1.5rem 1rem;
  }

  .sdf-excluded-hero-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .sdf-excluded-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .sdf-excluded-icon {
    width: 30px;
    height: 30px;
  }

  .sdf-excluded-text {
    text-align: center;
  }

  .sdf-excluded-title {
    font-size: 1.125rem;
  }

  .sdf-alternatives-grid {
    grid-template-columns: 1fr;
  }

  .sdf-shop-card-actions {
    grid-template-columns: 1fr;
  }

  .sdf-shop-location-distance {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sdf-cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sdf-label-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .sdf-label-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .sdf-label-title {
    font-size: 1.25rem;
  }

  .sdf-cta-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .sdf-cta-become-member {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .sdf-cta-member-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .sdf-cta-member-title {
    font-size: 1.125rem;
  }

  .sdf-btn-white {
    width: 100%;
    justify-content: center;
  }

  .sdf-results-counter {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sdf-results-text {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.sdf-shop-card,
.sdf-cta-card,
.sdf-label-box {
  animation: fadeIn 0.4s ease-out;
}
