/* ==========================================
   PRODUCTS PAGE
   Product listing, search, filters
========================================== */

/* === PRODUCTS PAGE HEADER === */
.headline-products {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-top: -20px;
  padding: 0 20px;
  letter-spacing: -0.5px;
}

.info-products {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #6c757d;
  margin: 10px 20px 20px;
  line-height: 1.4;
}

.info-products .highlight {
  color: #D22B2B;
  font-weight: bold;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 20px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* === SEARCH === */
#searchContainer {
  display: flex;
  justify-content: center;
  margin: 30px 20px;
}

.search-wrapper {
  position: relative;
  width: 70%;
  max-width: 700px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 50px;
}

#searchInput {
  width: 100%;
  padding: 18px 50px 18px 20px;
  font-size: 20px;
  border: 2px solid #D22B2B;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

#searchInput:focus {
  border-color: #FF4500;
  box-shadow: 0 0 8px rgba(255,36,0,0.4);
  outline: none;
}

#searchButton {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  color: #D22B2B;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
}

#searchButton:hover {
  color: #FF4500;
  transform: translateY(-50%) scale(1.1);
}

/* === FILTERS === */
.product-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 20px auto 30px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1400px;
}

.product-filters input[type="number"],
.product-filters select,
.product-filters button#applyFilter {
  padding: 10px 12px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.product-filters input[type="number"] {
  width: 80px;
}

.product-filters select {
  width: 150px;
}

.product-filters button#applyFilter {
  background-color: #D22B2B;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.product-filters button#applyFilter:hover {
  background-color: #E34234;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(210, 43, 43, 0.3);
}

.product-filters input:focus,
.product-filters select:focus {
  border-color: #D22B2B;
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 43, 43, 0.1);
}

/* ===================================================================
   MODERN PRODUCTS PAGE - REDESIGN
   =================================================================== */

/* Hero Section */
.products-hero {
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  padding: 140px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.products-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.products-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.products-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.products-count {
  font-weight: 800;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* Search & Filter Section */
.products-search-section {
  background: white;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  z-index: 100;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Search Bar */
.products-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.products-search-bar:focus-within {
  border-color: #D22B2B;
  box-shadow: 0 0 0 4px rgba(210, 43, 43, 0.1);
  background: white;
}

.search-icon {
  color: #6c757d;
  flex-shrink: 0;
}

.products-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  padding: 12px 8px;
  outline: none;
  color: #212529;
  font-family: 'Montserrat', sans-serif;
}

.products-search-bar input::placeholder {
  color: #adb5bd;
}

.search-button-modern {
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-button-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(210, 43, 43, 0.3);
}

/* Filter Bar */
.products-filter-bar {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr auto;
  gap: 16px;
  align-items: end;
}

.filter-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-label svg {
  color: #D22B2B;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-inputs input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.price-inputs input:focus {
  border-color: #D22B2B;
  box-shadow: 0 0 0 3px rgba(210, 43, 43, 0.1);
}

.price-separator {
  color: #adb5bd;
  font-weight: 600;
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-select:focus {
  border-color: #D22B2B;
  box-shadow: 0 0 0 3px rgba(210, 43, 43, 0.1);
}

.apply-filter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apply-filter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 43, 43, 0.3);
}

.apply-filter-button svg {
  flex-shrink: 0;
}

/* Results Info */
.products-results-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f1f3f5;
}

.results-text {
  font-size: 15px;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}

.results-text strong {
  color: #212529;
  font-weight: 700;
}

/* Products Main */
.products-main {
  padding: 60px 20px;
  background: #f8f9fa;
  min-height: 60vh;
}

/* Products Grid Modern */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.products-grid-modern .product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  display: block;
  text-decoration: none;
  color: inherit;
}

.products-grid-modern .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #D22B2B;
}

.products-grid-modern .product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #f8f9fa;
  transition: transform 0.4s ease;
}

.products-grid-modern .product-card:hover img {
  transform: scale(1.05);
}

.products-grid-modern .product-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #212529;
  margin: 16px 20px 8px;
  line-height: 1.4;
  display: -webkit-box;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.products-grid-modern .product-card .price {
  font-size: 22px;
  font-weight: 800;
  color: #D22B2B;
  margin: 0 20px 20px;
  display: block;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  font-size: 18px;
  color: #6c757d;
}

/* Pagination */
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background: #f8f9fa;
}

/* ===================================================================
   INLINE SIGNUP CARD (IN PRODUCT GRID)
   =================================================================== */

.signup-card-inline {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.signup-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 16px;
  text-decoration: none;
  position: relative;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  border-radius: 12px;
}

.signup-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.signup-card-inline:hover .signup-card-gradient {
  opacity: 0.5;
}

.signup-card-icon {
  font-size: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.signup-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: white;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  text-align: center;
}

.signup-card-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-align: center;
}

.signup-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 160px;
  position: relative;
  z-index: 1;
}

.signup-feature {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.signup-card-inline:hover .signup-feature {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.signup-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #D22B2B;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.signup-card-inline:hover .signup-card-cta {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.signup-card-inline:hover .cta-arrow {
  transform: translateX(4px);
}

.signup-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.signup-card-inline:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(210, 43, 43, 0.4);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .signup-card-link {
    padding: 16px 12px;
  }

  .signup-card-icon {
    font-size: 40px;
    margin-bottom: 8px;
  }

  .signup-card-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .signup-card-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .signup-card-features {
    gap: 5px;
    margin-bottom: 10px;
    max-width: 140px;
  }

  .signup-feature {
    padding: 5px 10px;
    font-size: 10px;
  }

  .signup-card-cta {
    padding: 8px 16px;
    font-size: 12px;
  }

  .signup-card-badge {
    padding: 4px 10px;
    font-size: 9px;
  }

  .signup-card-inline:hover .signup-feature {
    transform: translateX(2px);
  }
}

@media (max-width: 480px) {
  .signup-card-link {
    padding: 14px 10px;
  }

  .signup-card-icon {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .signup-card-title {
    font-size: 15px;
  }

  .signup-card-subtitle {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .signup-card-features {
    max-width: 120px;
    gap: 4px;
    margin-bottom: 8px;
  }

  .signup-feature {
    padding: 4px 8px;
    font-size: 9px;
  }

  .signup-card-cta {
    padding: 7px 14px;
    font-size: 11px;
    gap: 4px;
  }

  .cta-arrow {
    font-size: 14px;
  }
}

/* ===================================================================
   SIGNUP BANNER SECTION
   =================================================================== */

.signup-banner-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  margin: 40px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(210, 43, 43, 0.3);
}

.signup-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.signup-banner-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-clean-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin: 0 0 8px 0;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.section-clean-title::before {
  content: '🎁';
  display: block;
  font-size: 64px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.signup-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 35px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.signup-banner-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

.benefit-clean {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 16px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.benefit-clean:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.benefit-clean-icon {
  font-size: 32px;
  margin: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  line-height: 1;
}

.benefit-clean h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.benefit-clean p {
  display: none;
}

.signup-banner-button {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: #D22B2B;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  position: relative;
}

.signup-banner-button::after {
  content: 'Limited Time Offer';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.signup-banner-button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ===================================================================
   PRODUCTS PAGE SIGNUP BANNER (NEW DESIGN)
   =================================================================== */

.products-signup-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #D22B2B 0%, #ff4444 100%);
  margin: 60px auto;
  max-width: 1400px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(210, 43, 43, 0.4);
}

.products-signup-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.products-signup-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
}

.products-signup-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.products-signup-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: pulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.products-signup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.products-signup-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 50px 0;
  font-weight: 500;
  line-height: 1.5;
}

.products-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.products-benefit-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px 20px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.products-benefit-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.products-benefit-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.products-benefit-card:hover .products-benefit-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.products-benefit-icon {
  font-size: 42px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.products-benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.products-benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.products-signup-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.products-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 56px;
  background: white;
  color: #D22B2B;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.products-signup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.products-signup-btn:hover::before {
  opacity: 1;
}

.products-signup-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  background: #f8f9fa;
}

.products-signup-btn:active {
  transform: translateY(-3px) scale(1.02);
}

.products-signup-btn svg {
  transition: transform 0.4s ease;
}

.products-signup-btn:hover svg {
  transform: translateX(6px);
}

.products-signup-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .products-signup-banner {
    padding: 60px 20px;
    margin: 40px 20px;
    border-radius: 20px;
  }

  .products-signup-title {
    font-size: 40px;
  }

  .products-signup-description {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .products-benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .products-benefit-card {
    padding: 28px 16px;
  }

  .products-benefit-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .products-benefit-icon {
    font-size: 36px;
  }

  .products-benefit-card h3 {
    font-size: 18px;
  }

  .products-signup-btn {
    padding: 20px 48px;
    font-size: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .products-signup-banner {
    padding: 20px 16px;
    margin: 16px 16px;
    border-radius: 12px;
  }

  .products-signup-badge {
    font-size: 9px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .products-signup-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .products-signup-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .products-benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .products-benefit-card {
    padding: 12px 8px;
  }

  .products-benefit-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .products-benefit-icon {
    font-size: 22px;
  }

  .products-benefit-card h3 {
    font-size: 13px;
  }

  .products-benefit-card p {
    font-size: 10px;
  }

  .products-signup-btn {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .products-signup-note {
    font-size: 10px;
    text-align: center;
  }
}
