* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: #fafafa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #c073b1;
  border-bottom: 1px solid #eaeaea;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative;
}

header h1 {
  margin: 0;
  font-weight: bold;
  font-size: 2.2em;
  color: white;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

header h1::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, white, transparent);
  border-radius: 2px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  z-index: 1;
}

button {
  background: none;
  border: 2px solid #333;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s, color 0.2s;
}

button:hover {
  background-color: #333;
  color: #fff;
}

/* Navigation */
.main-nav {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 30px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #333;
}

.cart-count {
  background-color: #333;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8em;
  margin-left: 5px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.hero-content h2 {
  font-weight: normal;
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #c073b1;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #333;
}

.hero-tagline {
  font-size: 1.1em;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 30px;
  color: #a855f7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 0;
}

.cta-btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.cta-btn.primary {
  background-color: #333;
  color: white;
}

.cta-btn.primary:hover {
  background-color: #c073b1;
  color: #fff;
}

.cta-btn.secondary {
  background-color: transparent;
  color: #c073b1;
  border: 2px solid #c073b1;
}

.cta-btn.secondary:hover {
  background-color: #c073b1;
  color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat i {
  font-size: 2em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.stat span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat p {
  margin: 0;
  opacity: 0.8;
}

/* Categories Section */
.categories-section {
  padding: 60px 0;
  background-color: white;
}

.categories-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fafafa;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(192, 115, 177, 0.2);
}

.category i {
  font-size: 3em;
  color: #c073b1;
  margin-bottom: 15px;
}

.category h3 {
  margin: 0 0 10px 0;
  color: #333;
}

.category p {
  margin: 0;
  color: #666;
}

/* Products Section */
.products-section {
  padding: 60px 0;
  background-color: #fafafa;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.section-header p {
  color: #666;
  font-size: 1.1em;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #c073b1;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
  z-index: 1;
}

.product-badge.sale {
  background-color: #ef4444;
}

.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin: 0 0 10px 0;
  font-weight: normal;
  color: #333;
}

.product-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9em;
  line-height: 1.4;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.rating {
  color: #f59e0b;
  font-weight: bold;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.buy-btn {
  flex: 1;
  background-color: #333;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

.buy-btn:hover {
  background-color: #555;
}

.wishlist-btn {
  background-color: transparent;
  border: 2px solid #c073b1;
  color: #c073b1;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  background-color: #c073b1;
  color: white;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #c073b1;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}

.newsletter-form button {
  background-color: #333;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

.newsletter-form button:hover {
  background-color: #555;
}

/* Footer */
footer {
  background-color: #c073b1;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  font-size: 1.5em;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; 
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  position: relative;
}

.modal h2 {
  margin-top: 0;
  color: #333;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: #333;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="email"], input[type="password"], input[type="text"] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
}

.modal button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}

.modal button:hover {
  background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
  
  header h1 {
    position: static;
    transform: none;
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .auth-buttons {
    justify-content: center;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5em;
    letter-spacing: 1px;
  }
  
  .profile-img {
    width: 60px;
    height: 60px;
  }
}

/* Profile Image */
.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Signup Page Styles */
.signup-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fafafa 0%, #e5e5e5 100%);
}

.signup-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 100%;
}

.signup-header {
  text-align: center;
  margin-bottom: 30px;
}

.signup-header h2 {
  color: #c073b1;
  margin-bottom: 10px;
  font-size: 2em;
}

.signup-header p {
  color: #666;
  margin: 0;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #c073b1;
}

.form-group input {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #c073b1;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: normal;
  font-size: 0.9em;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c073b1;
}

.terms-link {
  color: #c073b1;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.signup-btn {
  background-color: #c073b1;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.signup-btn:hover {
  background-color: #a855f7;
  transform: translateY(-2px);
}

.signup-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.signup-footer p {
  margin: 0;
  color: #666;
}

.login-link {
  color: #c073b1;
  text-decoration: none;
  font-weight: bold;
}

.login-link:hover {
  text-decoration: underline;
}

/* About Page Styles */
.about-main {
  background-color: #fafafa;
}

.about-hero {
  background: linear-gradient(135deg, #f3e8ff 0%, #f8fafc 100%);
  color: #333;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.about-hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-tagline {
  font-size: 1.3em;
  opacity: 0.9;
  font-style: italic;
}

/* About Tiles Section */
.about-tiles-section {
  padding: 60px 0;
}

.about-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.about-tile {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.about-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c073b1, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-tile:hover::before {
  transform: scaleX(1);
}

.about-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tile-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c073b1, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.about-tile:hover .tile-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(192, 115, 177, 0.3);
}

.tile-icon i {
  font-size: 2em;
  color: white;
}

.about-tile h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.about-tile p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.values-list li {
  padding: 8px 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-list li i {
  color: #c073b1;
  font-size: 0.9em;
}

/* Stats Section */
.about-stats-section {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  padding: 80px 0;
  margin-top: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #c073b1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1em;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 2.5em;
  }
  
  .about-tiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-tile {
    padding: 30px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .about-hero h2 {
    font-size: 2em;
  }
  
  .about-hero {
    padding: 60px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tile-icon {
    width: 60px;
    height: 60px;
  }
  
  .tile-icon i {
    font-size: 1.5em;
  }
}

/* About Story Section */
.about-story-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin: 60px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.story-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c073b1, #a855f7);
  border-radius: 2px;
}

.story-text {
  text-align: left;
  line-height: 1.8;
  color: #555;
}

.story-text p {
  margin-bottom: 25px;
  font-size: 1.1em;
  text-align: justify;
}

.story-signature {
  font-style: italic;
  font-weight: bold;
  color: #c073b1 !important;
  text-align: center !important;
  font-size: 1.2em !important;
  margin-top: 40px !important;
  padding: 20px;
  background: rgba(192, 115, 177, 0.1);
  border-radius: 10px;
  border-left: 4px solid #c073b1;
}

/* Enhanced tile colors for different sections */
.mission-tile .tile-icon {
  background: linear-gradient(135deg, #c073b1, #a855f7);
}

.vision-tile .tile-icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.journey-tile .tile-icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.values-tile .tile-icon {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.authenticity-tile .tile-icon {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.impact-tile .tile-icon {
  background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.emotional-tile .tile-icon {
  background: linear-gradient(135deg, #F97316, #EA580C);
}

.dream-tile .tile-icon {
  background: linear-gradient(135deg, #84CC16, #65A30D);
}

/* Responsive design for story section */
@media (max-width: 768px) {
  .story-content h2 {
    font-size: 2em;
  }
  
  .story-text p {
    font-size: 1em;
  }
  
  .story-signature {
    font-size: 1.1em !important;
  }
  
  .about-story-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .story-content h2 {
    font-size: 1.8em;
  }
  
  .story-text {
    padding: 0 10px;
  }
  
  .story-signature {
    font-size: 1em !important;
    padding: 15px;
  }
}

/* About Verse Section */
.about-verse-section {
  padding: 40px 0 0 0;
  background: none;
}

.about-verse {
  background: linear-gradient(90deg, #f3e8ff 0%, #fdf6fb 100%);
  border-left: 6px solid #c073b1;
  border-radius: 12px;
  padding: 32px 30px 28px 30px;
  margin: 0 auto 40px auto;
  max-width: 600px;
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 1.35em;
  color: #7c3aed;
  position: relative;
  box-shadow: 0 4px 24px rgba(192, 115, 177, 0.08);
}

.verse-icon {
  display: block;
  font-size: 2em;
  color: #c073b1;
  margin-bottom: 10px;
}

.verse-text {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
  color: #7c3aed;
  margin-bottom: 8px;
}

.verse-ref {
  display: block;
  font-size: 1em;
  color: #a855f7;
  font-style: italic;
}

@media (max-width: 600px) {
  .about-verse {
    padding: 20px 10px 18px 10px;
    font-size: 1em;
  }
  .verse-icon {
    font-size: 1.3em;
  }
}

/* About Verse Header (under main heading) */
.about-verse-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  margin-top: -10px;
  margin-bottom: 10px;
}

.about-verse-header-block {
  background: linear-gradient(90deg, #f3e8ff 0%, #fdf6fb 100%);
  border-left: 4px solid #c073b1;
  border-radius: 10px;
  padding: 18px 24px 14px 24px;
  margin: 0 auto;
  max-width: 420px;
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 1.1em;
  color: #7c3aed;
  box-shadow: 0 2px 12px rgba(192, 115, 177, 0.07);
  display: inline-block;
}

.about-verse-header-block .verse-icon {
  font-size: 1.3em;
  color: #c073b1;
  margin-bottom: 4px;
  display: block;
}

.about-verse-header-block .verse-text {
  font-weight: bold;
  font-size: 1.1em;
  color: #7c3aed;
  margin-bottom: 4px;
  display: block;
}

.about-verse-header-block .verse-ref {
  font-size: 0.95em;
  color: #a855f7;
  font-style: italic;
  display: block;
}

@media (max-width: 600px) {
  .about-verse-header-block {
    padding: 10px 8px 8px 8px;
    font-size: 0.98em;
    max-width: 95vw;
  }
  .about-verse-header-block .verse-icon {
    font-size: 1em;
  }
}

/*
 * This styles the main verse text under the About Shey's Shop heading.
 * We use a soft pink (#c073b1) to match the brand's palette and keep it elegant.
 */
.about-verse-plain {
  margin: 18px 0 8px 0;
  font-family: 'Georgia', serif;
  font-size: 1.25em;
  color: #c073b1 !important;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
}

/*
 * This is for the verse reference (e.g., Psalm 139:14) right after the main verse.
 * Keeping it the same pink for consistency and a gentle, cohesive look.
 */
.about-verse-ref {
  color: #c073b1 !important;
  font-size: 0.95em;
  font-style: italic;
  margin-left: 8px;
}

/* Cursor Hearts Effect */
.cursor-star {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, #ff6b9d 50%, transparent 100%);
  border-radius: 50%;
  animation: heartBeat 1.2s ease-in-out infinite;
  box-shadow: 0 0 15px #ff6b9d, 0 0 25px #fff, 0 0 35px rgba(255, 107, 157, 0.6);
  filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.9));
  transform-origin: center;
}

.cursor-star::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: heartPulse 1.8s ease-in-out infinite;
}

.cursor-star::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: heartGlow 2.4s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  25% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
  75% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

@keyframes heartPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.6);
  }
}

@keyframes heartGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(2);
  }
}


.cursor-star:nth-child(4n) {
  background: radial-gradient(circle, #fff 0%, #ff6b9d 50%, transparent 100%);
  box-shadow: 0 0 15px #ff6b9d, 0 0 25px #fff, 0 0 35px rgba(255, 107, 157, 0.6);
  filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.9));
}

.cursor-star:nth-child(4n)::before {
  background: radial-gradient(circle, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
}

.cursor-star:nth-child(4n+1) {
  background: radial-gradient(circle, #fff 0%, #ff9ecd 50%, transparent 100%);
  box-shadow: 0 0 15px #ff9ecd, 0 0 25px #fff, 0 0 35px rgba(255, 158, 205, 0.6);
  filter: drop-shadow(0 0 10px rgba(255, 158, 205, 0.9));
}

.cursor-star:nth-child(4n+1)::before {
  background: radial-gradient(circle, rgba(255, 158, 205, 0.5) 0%, transparent 70%);
}

.cursor-star:nth-child(4n+2) {
  background: radial-gradient(circle, #fff 0%, #ffb3d9 50%, transparent 100%);
  box-shadow: 0 0 15px #ffb3d9, 0 0 25px #fff, 0 0 35px rgba(255, 179, 217, 0.6);
  filter: drop-shadow(0 0 10px rgba(255, 179, 217, 0.9));
}

.cursor-star:nth-child(4n+2)::before {
  background: radial-gradient(circle, rgba(255, 179, 217, 0.5) 0%, transparent 70%);
}

.cursor-star:nth-child(4n+3) {
  background: radial-gradient(circle, #fff 0%, #ffcce6 50%, transparent 100%);
  box-shadow: 0 0 15px #ffcce6, 0 0 25px #fff, 0 0 35px rgba(255, 204, 230, 0.6);
  filter: drop-shadow(0 0 10px rgba(255, 204, 230, 0.9));
}

.cursor-star:nth-child(4n+3)::before {
  background: radial-gradient(circle, rgba(255, 204, 230, 0.5) 0%, transparent 70%);
}

/* Special effects for burst hearts */
.cursor-star.burst-star {
  width: 16px;
  height: 16px;
  animation: burstHeartBeat 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px currentColor, 0 0 30px #fff, 0 0 45px rgba(255, 255, 255, 0.7);
}

.cursor-star.burst-star::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  animation: burstHeartPulse 2s ease-in-out infinite;
}

.cursor-star.burst-star::after {
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  animation: burstHeartGlow 3s ease-in-out infinite;
}

@keyframes burstHeartBeat {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  25% {
    opacity: 0.9;
    transform: scale(1.15);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  75% {
    opacity: 0.95;
    transform: scale(1.25);
  }
}

@keyframes burstHeartPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.9);
  }
}

@keyframes burstHeartGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(2.5);
  }
}


@media (max-width: 768px) {
  .cursor-star {
    display: none;
  }
} 