.elementor-5082 .elementor-element.elementor-element-15d6730{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5082 .elementor-element.elementor-element-d27b2fa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7042838 */:root {
  --bg: #0b1220;
  --card: #0f172a;
  --muted: #9ca3af;
  --text: #e5e7eb;
  --accent: #38bdf8;
  --accent-strong: #2563eb;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f9e6ef;
  color: var(--text);
}

.page-shell {
  max-width: 1100px;
  padding: 64px 24px 96px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.eyebrow {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  background: #dc2626; /* red patti */
  color: #fef2f2;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
}

/* Categories Section Styles */
.categories {
  margin: 48px 0 40px;
  padding: 24px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0px;
  justify-items: center;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 200ms ease;
}

.category-card:hover {
  transform: translateY(-8px);
}
/* Hover effect */
.category-card:hover .card-circle {
  transform: scale(1.05); /* Thoda zoom hoga hover par */
  border-color: #ffd700;
}
.card-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #ffeb3b; /* Bright Yellow border jaisa image me hai */
  overflow: hidden; /* Image ko circle ke andar cut karega */
  background: #fff; /* Agar image load na ho to white background */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
/* Image ko circle me fit karne ke liye */
.card-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ko bina stretch kiye fit karega */
  display: block;
}

.card-circle:nth-child(1) {
  background: linear-gradient(135deg, #f87171 0%, #fb7185 50%, #60a5fa 100%);
}

.category-card:nth-child(1) .card-circle {
  background: linear-gradient(135deg, #f87171 0%, #fb7185 50%, #60a5fa 100%);
}

.category-card:nth-child(2) .card-circle {
  background: linear-gradient(135deg, #5b21b6 0%, #6366f1 50%, #3b82f6 100%);
}

.category-card:nth-child(3) .card-circle {
  background: linear-gradient(135deg, #f87171 0%, #fb7185 50%, #60a5fa 100%);
}

.category-card:nth-child(4) .card-circle {
  background: linear-gradient(135deg, #5b21b6 0%, #6366f1 50%, #3b82f6 100%);
}

.category-card:nth-child(5) .card-circle {
  background: linear-gradient(135deg, #f87171 0%, #fb7185 50%, #fbbf24 100%);
}

.category-card:nth-child(6) .card-circle {
  background: linear-gradient(135deg, #5b21b6 0%, #6366f1 50%, #3b82f6 100%);
}

.category-card:nth-child(7) .card-circle {
  background: linear-gradient(135deg, #f87171 0%, #fb7185 50%, #fbbf24 100%);
}

.circle-text {
  font-size: 24px;
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.deals-text {
  font-style: italic;
  letter-spacing: 0.05em;
}

.quiz-text {
  font-size: 48px;
  color: #fbbf24;
}

.circle-icon {
  width: 48px;
  height: 48px;
  color: #fbbf24;
}

.heart-icon {
  width: 56px;
  height: 56px;
}

.category-label {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
}

.product-heading {
  margin: 0;
  padding: 12px 14px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #e5e7eb;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-top: 3px solid #dc2626;
  text-align: center;
  letter-spacing: 0.01em;
}

@keyframes gradientShift {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
  100% {
    filter: brightness(1);
  }
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .card-circle {
    width: 120px;
    height: 120px;
    font-size: 24px;
    border-width: 6px;
  }
/* Media Queries update for Responsiveness */
@media (max-width: 1024px) {
  .card-circle {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
}

@media (max-width: 768px) {
  .card-circle {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 600px) {
  .card-circle {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }
}

@media (max-width: 480px) {
  .card-circle {
    width: 70px;
    height: 70px;
  }
}
  .circle-icon {
    width: 42px;
    height: 42px;
  }

  .heart-icon {
    width: 48px;
    height: 48px;
  }

  .quiz-text {
    font-size: 40px;
  }

  .category-label {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
  }

  .card-circle {
    width: 100px;
    height: 100px;
    font-size: 18px;
    border-width: 5px;
  }

  .circle-text {
    font-size: 16px;
  }

  .circle-icon {
    width: 36px;
    height: 36px;
  }

  .heart-icon {
    width: 40px;
    height: 40px;
  }

  .quiz-text {
    font-size: 32px;
  }

  .category-label {
    font-size: 12px;
  }

  .category-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .categories {
    margin: 32px 0 24px;
    padding: 16px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
  }

  .card-circle {
    width: 80px;
    height: 80px;
    font-size: 14px;
    border-width: 4px;
  }

  .circle-text {
    font-size: 12px;
  }

  .circle-icon {
    width: 28px;
    height: 28px;
  }

  .heart-icon {
    width: 32px;
    height: 32px;
  }

  .quiz-text {
    font-size: 24px;
  }

  .category-label {
    font-size: 11px;
  }

  .category-card:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 40px 12px 60px;
  }

  .categories {
    margin: 24px 0 16px;
    padding: 12px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
  }

  .card-circle {
    width: 70px;
    height: 70px;
    font-size: 12px;
    border-width: 3px;
  }

  .circle-text {
    font-size: 10px;
  }

  .circle-icon {
    width: 24px;
    height: 24px;
  }

  .heart-icon {
    width: 28px;
    height: 28px;
  }

  .quiz-text {
    font-size: 20px;
  }

  .category-label {
    font-size: 10px;
    gap: 8px;
  }

  h1 {
    font-size: clamp(24px, 4vw, 32px);
  }

  .eyebrow {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.lead {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.media {
  margin: 32px 0 40px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.image-card {
  margin: 0;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-swap .swap-wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

.image-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.image-swap img.base {
  opacity: 1;
}

.image-swap img.hover {
  opacity: 0;
}

.image-swap:hover img.base {
  opacity: 0;
}

.image-swap:hover img.hover {
  opacity: 1;
}

.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 15px;
  border-top: 1px solid var(--border);
}

.image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.cta {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border: none;
  color: #f8fafc;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.cta-btn.ghost {
  background: #f472b6;
  border-color: rgba(244, 114, 182, 0.6);
  color: #0b1220;
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.35);
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

.status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.story {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height 0.65s ease;
}

.story-toggle-btn {
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(244, 114, 182, 0.6);
  background: #f472b6;
  color: #0b1220;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.35);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.story-toggle-btn:hover {
  transform: translateY(-1px);
}

.story-toggle-btn:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .image-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 48px 18px 72px;
  }

  .image-card img {
    height: 180px;
  }
}/* End custom CSS */