/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 50%, #f7fafc 100%);
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility classes */
.text-primary {
  color: #ff6b9d;
}

.icon {
  width: 1rem;
  height: 1rem;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
}

.btn-outline {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  color: #ff6b9d;
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff6b9d, #c084fc, #60a5fa) 1;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn.full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Header styles */
.header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.promo-banner {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
  padding: 1rem 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #6b7280;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.header-link:hover {
  color: #ff6b9d;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ff6b9d;
  text-decoration: none;
}

.search-container {
  flex: 1;
  max-width: 32rem;
  margin: 0 2rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 1rem;
  padding-right: 3rem;
  font-size: 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: white;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #ff6b9d;
}

.search-btn {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  bottom: 0.25rem;
  padding: 0 1rem;
  background-color: #ff6b9d;
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-btn:hover {
  background-color: #c084fc;
}

.cta-btn {
  background-color: #ff6b9d;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-btn:hover {
  background-color: #c084fc;
}

/* Navigation styles */
.nav {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
  padding: 0.75rem 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ff6b9d;
}

.nav-link.new {
  color: #ff6b9d;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 50%, #f7fafc 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-heading h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .hero-heading h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-heading h1 {
    font-size: 3.75rem;
  }
}

.hero-heading p {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    transition: all 0.3s ease;
}

.trust-item:nth-child(1) .trust-icon {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
}

.trust-item:nth-child(2) .trust-icon {
    background: linear-gradient(135deg, #8b45ff, #a855f7);
}

.trust-item:nth-child(3) .trust-icon {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.trust-item:nth-child(4) .trust-icon {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.trust-icon .icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-item {
        gap: 0.5rem;
    }
    
    .trust-icon {
        width: 36px;
        height: 36px;
    }
    
    .trust-icon .icon {
        width: 18px;
        height: 18px;
    }
    
    .trust-content h4 {
        font-size: 0.9rem;
    }
    
    .trust-content p {
        font-size: 0.75rem;
    }
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.product-preview {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  transform: rotate(2deg);
}

.banner-preview {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  border-radius: 1rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.banner-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.banner-preview h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-preview p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.price-tag {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transform: rotate(-3deg);
  text-align: center;
}

.price-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b9d;
}

/* Features */
.features {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.8));
  backdrop-filter: blur(10px);
  padding: 4rem 0;
  border-radius: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 100%);
  border-radius: 1rem;
  padding: 1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.feature-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6b7280;
}

/* Categories section */
.categories {
  background-color: white;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: #ff6b9d;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(192, 132, 252, 0.05) 50%, rgba(96, 165, 250, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  border-color: #ff6b9d;
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: #ff6b9d;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  z-index: 10;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}

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

.category-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.category-card:hover h3 {
  color: #ff6b9d;
}

.category-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.category-link {
  display: flex;
  align-items: center;
  color: #ff6b9d;
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-link {
  text-decoration: underline;
}

.category-link .icon {
  margin-left: 0.25rem;
  transition: transform 0.3s;
}

.category-card:hover .category-link .icon {
  transform: translateX(0.25rem);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

.view-all .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

/* Featured products section */
.featured-products {
  background-color: #f9fafb;
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 157, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
  border-color: rgba(255, 107, 157, 0.3);
}

.product-badges {
  position: relative;
}

.bestseller-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #ff6b9d;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  z-index: 10;
}

.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  background-color: white;
}

.wishlist-btn .icon {
  color: #9ca3af;
  transition: color 0.2s;
}

.wishlist-btn:hover .icon {
  color: #ff6b9d;
}

.product-image {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.75rem;
  transition: transform 0.3s;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.product-rating .stars {
  display: flex;
}

.product-rating .star {
  color: #fbbf24;
  font-size: 1rem;
}

.product-rating .rating-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.product-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.product-card:hover .product-info h3 {
  color: #ff6b9d;
}

.product-info p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.size-info {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.original-price {
  font-size: 1.125rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount {
  font-size: 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-details {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  color: #ff6b9d;
  font-weight: 500;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.product-details:hover {
  text-decoration: underline;
}

/* Footer styles */
.footer {
  background-color: #111827;
  color: white;
}

.newsletter {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.newsletter-icon:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.newsletter-icon .icon {
  width: 36px;
  height: 36px;
  color: white;
  stroke-width: 2;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .form-group {
    flex-direction: row;
    gap: 0;
  }
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .newsletter-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
}

.newsletter-input:focus {
  outline: none;
  background: white;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.newsletter-input::placeholder {
  color: #6b7280;
}

.newsletter-btn {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .newsletter-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #374151, #4b5563);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover .btn-icon {
  transform: translateX(2px);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter {
    padding: 4rem 0;
  }
  
  .newsletter-content h3 {
    font-size: 2rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .newsletter-icon .icon {
    width: 28px;
    height: 28px;
  }
  
  .newsletter-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 3rem 0;
  }
  
  .newsletter-content h3 {
    font-size: 1.75rem;
  }
  
  .newsletter-input,
  .newsletter-btn {
    padding: 0.875rem 1rem;
  }
  
  .form-group {
    max-width: 100%;
  }
}

.footer-main {
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-section {
  max-width: none;
}

@media (min-width: 1024px) {
  .footer-brand-section {
    max-width: 350px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b9d, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.footer-brand p {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: #d1d5db;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #ff6b9d;
  transform: translateX(4px);
}

.contact-item .icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #ff6b9d;
  flex-shrink: 0;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #c084fc);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #ff6b9d;
  transform: translateX(4px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #ff6b9d;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Social Media Section */
.footer-social-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-social-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-social-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b9d, #c084fc);
  border-radius: 1px;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .social-media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .social-media-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.social-media-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.social-media-link:hover {
  background: rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.3);
  color: #ff6b9d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
}

.social-media-link .icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-media-link:hover .icon {
  transform: scale(1.1);
}

/* Remove old social media styles */
.social-media-links {
  display: none;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #374151;
}

@media (min-width: 768px) {
  .trust-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
}

.trust-item .icon {
  width: 2.25rem;
  height: 2.25rem;
  color: #ff6b9d;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.trust-content {
  flex: 1;
}

.trust-title {
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.trust-desc {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    gap: 2rem;
  }
}

.copyright {
  color: #d1d5db;
  font-size: 0.9rem;
  text-align: center;
}

@media (min-width: 768px) {
  .copyright {
    text-align: left;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  color: #9ca3af;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: #ff6b9d;
  background: rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.2);
  transform: translateY(-2px);
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .footer-main {
    padding: 4rem 0 2rem 0;
  }
  
  .footer-grid {
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item,
  .footer-links a {
    justify-content: center;
  }
  
  .contact-item:hover,
  .footer-links a:hover {
    transform: translateY(-2px);
  }
  
  .trust-section {
    margin-top: 3rem;
    padding-top: 2rem;
    gap: 2rem;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 3rem 0 1.5rem 0;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 1.125rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .trust-item {
    padding: 1rem;
  }
}

/* Form styles with candy colors */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 1);
}

.form-input::placeholder {
  color: #a0aec0;
}

/* Special candy button variations */
.btn-candy-pink {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: white;
  border: none;
}

.btn-candy-pink:hover {
  background: linear-gradient(135deg, #e55a87 0%, #ff6b9d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-candy-purple {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
  color: white;
  border: none;
}

.btn-candy-purple:hover {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 132, 252, 0.4);
}

.btn-candy-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  border: none;
}

.btn-candy-blue:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.btn-candy-rainbow {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 25%, #60a5fa 50%, #34d399 75%, #fbbf24 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-candy-rainbow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-candy-rainbow:hover::after {
  left: 100%;
}

.btn-candy-rainbow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5);
}

/* Candy-colored alerts and notifications */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: none;
  backdrop-filter: blur(10px);
}

.alert-success {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.1));
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

.alert-error {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.1), rgba(239, 68, 68, 0.1));
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-info {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.1));
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

/* Candy-colored badges and tags */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-pink {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  color: white;
}

.tag-purple {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  color: white;
}

.tag-blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
}

.tag-green {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: white;
}

.tag-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

/* Candy-colored progress bars */
.progress {
  width: 100%;
  height: 0.5rem;
  background-color: #e2e8f0;
  border-radius: 2rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #60a5fa 100%);
  border-radius: 2rem;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shimmer 2s linear infinite;
}

@keyframes progress-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Candy-colored tooltips */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  background: linear-gradient(135deg, #2d3748, #4a5568);
  color: white;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .header-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-main {
    flex-direction: column;
    gap: 1rem;
  }

  .search-container {
    margin: 0;
    max-width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-heading h1 {
    font-size: 2rem;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-heading h1 {
    font-size: 1.75rem;
  }

  .hero-heading p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
