/* ============================================================
   Shared Product Layout Styles
   Used by all product pages (CardyWall, etc.)
   ============================================================ */

/* -------------------------------------
   Hero Section (Unified Layout)
-------------------------------------- */
.product-hero {
    background: linear-gradient(135deg, #fff9f9, #ffeaea);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-app-icon {
    width: 130px;
    height: auto;
    /* border-radius: 28px; */
    box-shadow: none;
    margin-bottom: 0px;
    transition: transform 0.3s ease;
  }
  
  .hero-app-icon:hover {
    transform: scale(1.06);
  }
  
  .hero-title {
    font-size: 2.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
  }
  
  /* Store Buttons */
  .store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .store-btn img {
    height: 55px;
    transition: transform 0.3s ease;
  }
  
  .store-btn:hover img {
    transform: scale(1.05);
  }
  
  /* -------------------------------------
     Product Details Section
  -------------------------------------- */
  .product-details {
    text-align: center;
    padding: 60px 20px;
  }
  
  .product-details h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  
  .feature-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  /* -------------------------------------
     Responsive Design
  -------------------------------------- */
  @media (max-width: 768px) {
    .hero-app-icon {
      width: 100px;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .store-btn img {
      height: 45px;
    }
  }

  /* --- Store Badges Normalization --- */
.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .store-btn img {
    height: 55px;
    object-fit: contain;
    transition: transform 0.25s ease;
  }
  
  .store-btn.play img {
    height: 60px; /* Slightly larger to visually match App Store */
  }
  
  .store-btn.app img {
    height: 55px;
  }
  
  .store-btn:hover img {
    transform: scale(1.05);
  }
  
  /* --- Privacy Policy Section --- */
  .policy-section {
    text-align: center;
    margin: 60px auto 80px;
    font-size: 1rem;
    color: var(--text-light);
  }
  
  .policy-section a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
  }
  
  .policy-section a:hover {
    border-bottom: 1px solid var(--primary);
  }