.home-page {
  min-height: 100vh;
  background-color: #050505;
  color: #d4d4d4;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6), #050505),
              url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: #d4af37; /* Gold */
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-content .subtitle {
  font-size: 1.4rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.cosmic-status {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.status-item {
  background: rgba(20, 20, 20, 0.6);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #d4af37;
  backdrop-filter: blur(5px);
}

.status-item.event {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

/* Astro Dashboard */
.astro-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.astro-card {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.astro-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  background: rgba(20, 20, 25, 0.8);
}

.astro-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.astro-info h3 {
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.astro-value {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
}

.astro-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.btn-primary:hover {
  background: #d4af37;
  color: #050505;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: #4a4a4a;
  color: #a0a0a0;
}

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.7;
}

.popular-readings {
  padding: 4.5rem 2rem;
  background: #080808;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  text-align: center;
}

.popular-readings .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.popular-readings h2 {
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.popular-readings .section-header p {
  color: #9c9c9c;
  font-size: 1rem;
}

.popular-readings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.reading-card {
  background: rgba(18, 18, 22, 0.75);
  border: 1px solid #1f1f1f;
  padding: 1.8rem;
  border-radius: 14px;
  text-decoration: none;
  color: #dcdcdc;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  align-items: center;
}

.reading-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.12);
}

.reading-icon {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 0.4rem;
}

.reading-card h3 {
  color: #f0f0f0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

.reading-card p {
  color: #a2a2a2;
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
  text-align: center;
}

.reading-cta {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

/* Quick modal for offline mini-gadania */
.quick-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1600;
  backdrop-filter: blur(4px);
}
.quick-modal__content {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background: #0c0c12;
  border: 1px solid #2a2a35;
  border-radius: 12px;
  padding: 1.5rem;
  width: 90%;
  max-width: 420px;
  color: #eaeaea;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.quick-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: #d4af37;
  font-size: 1.4rem;
  cursor: pointer;
}
.quick-modal__body {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.quick-modal__image img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  background: #fff;
}
.quick-modal__actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .quick-modal__body {
    flex-direction: column;
    align-items: flex-start;
  }
  .quick-modal__image img {
    width: 100%;
    max-width: 180px;
  }
}

/* Landing pages */
.landing-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 5rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), #050505);
  gap: 3rem;
}

.landing-hero__text h1 {
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.landing-hero__text .lead {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.landing-hero .eyebrow {
  color: #8f8f8f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.landing-hero .cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.landing-hero .bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: #9d9d9d;
  line-height: 1.6;
}

.landing-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    padding: 4rem 1.5rem 3rem;
    min-height: 100vh;
  }
  .hero-content h1 {
    font-size: 2.6rem;
    margin-top: 1.5rem;
  }
  .hero-content .subtitle {
    font-size: 1rem;
  }
  .cosmic-status {
    gap: 1rem;
  }
}

.glow-card {
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.15), rgba(10,10,10,0.9));
  border: 1px solid #2d2d2d;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.glow-icon {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.landing-body {
  padding: 3rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-body h2 {
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.steps {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-center {
  text-align: center;
  margin-top: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(20, 20, 20, 0.5);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid #1a1a1a;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  background: rgba(20, 20, 20, 0.8);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.feature-card h3 {
  color: #e0e0e0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
}

.feature-card p {
  color: #888;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Selections Section */
.selections-block {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.selections-block h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.selections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.selection-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-decoration: none;
  display: block;
}

.selection-card:hover {
  transform: translateY(-5px);
  border-color: #8a2be2;
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
  background: rgba(30, 30, 40, 0.8);
}

.selection-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.selection-card h3 {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.selection-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Popular Products Section */
.popular-products {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.popular-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image-placeholder {
  height: 250px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #333;
  border-bottom: 1px solid #1a1a1a;
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image-placeholder img {
  opacity: 1;
}

.product-card h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.2rem;
  color: #e0e0e0;
  font-family: 'Cormorant Garamond', serif;
}

.product-card .description {
  padding: 0 1.5rem;
  color: #666;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.product-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-size: 1.1rem;
  font-weight: 500;
  color: #d4af37;
  font-family: 'Montserrat', sans-serif;
}

.btn-buy {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid #333;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-buy:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.btn-buy:active {
  transform: scale(0.95);
}

/* Reviews Section */
.reviews {
  padding: 6rem 2rem;
  background: #080808;
  border-top: 1px solid #1a1a1a;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #0a0a0a;
  padding: 2.5rem;
  border: 1px solid #1a1a1a;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: #333;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #333;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.review-card:hover .avatar {
  filter: grayscale(0%);
}

.review-info h4 {
  color: #e0e0e0;
  margin-bottom: 0.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.stars {
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.review-text {
  color: #888;
  font-style: italic;
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}
/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 3rem;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.reviews-carousel .review-card {
    min-width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .reviews-carousel .review-card {
        min-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .reviews-carousel .review-card {
        min-width: calc(33.333% - 1.33rem);
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #d4af37;
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #d4af37;
    color: #000;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #d4af37;
}