.elementor-5191 .elementor-element.elementor-element-3fca482{--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;}/* Start custom CSS for html, class: .elementor-element-0dac1b2 */: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;
  position: relative;
}

.media-header {
  margin-bottom: 28px;
  position: sticky;
  top: 0;
  background: #f9e6ef;
  padding: 16px 0;
  z-index: 10;
}

.media-title {
  margin: 0 0 8px 0;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.media-subtitle {
  margin: 0;
  font-size: 16px;
  color: #9ca3af;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.image-card {
  margin: 0;
  border-radius: 20px;
  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: 160px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.image-swap .swap-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.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.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);
}

/* Tablet: 768px to 1024px */
@media (max-width: 1024px) {
  .page-shell {
    max-width: 100%;
    padding: 48px 20px 80px;
  }

  .image-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .image-card img {
    height: 140px;
  }

  .media-title {
    font-size: clamp(20px, 4vw, 28px);
  }

  .media-subtitle {
    font-size: 15px;
  }

  .button-row {
    gap: 12px;
  }

  .cta-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* Tablet: 600px to 768px */
@media (max-width: 768px) {
  .page-shell {
    padding: 40px 16px 64px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .image-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .image-card img {
    height: 120px;
  }

  .product-heading {
    padding: 10px 12px 6px;
    font-size: 13px;
  }

  .media-title {
    font-size: clamp(18px, 4vw, 24px);
  }

  .media-subtitle {
    font-size: 14px;
  }

  .button-row {
    gap: 10px;
  }

  .cta-btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .story {
    font-size: 15px;
    line-height: 1.6;
  }

  .story-toggle-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
}

/* Mobile: 480px to 600px */
@media (max-width: 600px) {
  .page-shell {
    padding: 24px 14px 48px;
  }

  .hero {
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: 11px;
    padding: 8px 12px;
  }

  h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .media {
    margin: 28px 0 32px;
    padding: 16px 0;
    position: relative;
  }

  .media-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    position: sticky;
    top: 0;
    background: #f9e6ef;
    padding: 12px 0 16px 0;
    z-index: 10;
  }

  .media-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .media-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
  }

  .image-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-card img {
    height: 180px;
  }

  .image-swap .swap-wrap {
    height: 180px;
  }

  .product-heading {
    padding: 10px 12px 8px;
    font-size: 13px;
  }

  .button-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  .story {
    font-size: 14px;
    margin-top: 28px;
    padding: 16px 0;
  }

  .story-toggle-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .cta {
    gap: 10px;
  }
}

/* Mobile: Below 480px */
@media (max-width: 480px) {
  .page-shell {
    padding: 20px 12px 40px;
  }

  .hero {
    margin-bottom: 20px;
  }

  .eyebrow {
    font-size: 10px;
    padding: 6px 10px;
    margin: 0 auto;
  }

  h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .categories {
    margin: 16px 0 12px;
    padding: 8px 0;
  }

  .media {
    margin: 20px 0 24px;
    padding: 12px 0;
    position: relative;
  }

  .media-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    position: sticky;
    top: 0;
    background: #f9e6ef;
    padding: 8px 0 12px 0;
    z-index: 10;
  }

  .media-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .media-subtitle {
    font-size: 12px;
    margin: 0;
  }

  .image-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-card img {
    height: 160px;
  }

  .image-swap .swap-wrap {
    height: 160px;
  }

  .product-heading {
    padding: 10px 12px 8px;
    font-size: 12px;
  }

  .button-row {
    flex-direction: column;
    gap: 8px;
  }

  .cta-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
  }

  .story {
    font-size: 13px;
    margin-top: 20px;
    padding: 12px 0;
  }

  .story-toggle-btn {
    padding: 7px 10px;
    font-size: 11px;
  }

  .story-content {
    font-size: 13px;
    line-height: 1.5;
  }

  .cta {
    gap: 8px;
  }

  .status {
    font-size: 12px;
  }
}

/* Ultra-small screens: Below 360px */
@media (max-width: 360px) {
  .page-shell {
    padding: 16px 8px 32px;
  }

  h1 {
    font-size: 18px;
  }

  .media-title {
    font-size: 16px;
  }

  .media-subtitle {
    font-size: 11px;
  }

  .image-row {
    gap: 10px50px;
  }

  .image-swap .swap-wrap {
    height: 15
  }

  .image-card img {
    height: 180px;
  }

  .button-row {
    gap: 6px;
  }

  .cta-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}/* End custom CSS */