/* ============================================================
   Sekhar Super Market — Playful Toy-Store theme
   Original vibrant styling (paired with style.css).
   Bright multi-colour, rounded, bouncy. Design tokens live in
   theme.json; this adds the motion/components it can't express.
   ============================================================ */

:root {
  --sk-red: #ef4444;
  --sk-blue: #2563eb;
  --sk-yellow: #facc15;
  --sk-green: #22c55e;
  --sk-purple: #a855f7;
  --sk-pink: #ec4899;
  --sk-orange: #f97316;
  --sk-cyan: #06b6d4;
  --sk-ink: #20223a;
  --sk-muted: #6b7280;
  --sk-line: #eef0f6;
  --sk-canvas: #fff8f0;
  --sk-radius: 26px;
  --sk-shadow-sm: 0 6px 18px -8px rgba(32, 34, 58, .25);
  --sk-shadow-md: 0 18px 40px -16px rgba(32, 34, 58, .32);
  --sk-shadow-lg: 0 30px 60px -22px rgba(32, 34, 58, .40);
  --sk-pop: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Playful canvas with confetti dots ---------- */
body {
  background-color: var(--sk-canvas);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(250, 204, 21, .14), transparent 22%),
    radial-gradient(circle at 88% 4%, rgba(37, 99, 235, .12), transparent 20%),
    radial-gradient(circle at 78% 38%, rgba(236, 72, 153, .08), transparent 24%),
    radial-gradient(circle at 6% 60%, rgba(34, 197, 94, .10), transparent 22%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { letter-spacing: -0.01em; }
h2.wp-block-heading { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }

/* ---------- Playful section eyebrow chip ---------- */
.sekhar-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; padding: .5rem 1.1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--sk-red), var(--sk-pink));
  box-shadow: 0 8px 18px -6px rgba(236, 72, 153, .6);
  transform: rotate(-1.5deg);
}
.sekhar-eyebrow::before { content: "🎈"; -webkit-text-fill-color: initial; }
.sekhar-lead { color: var(--sk-muted); max-width: 60ch; font-size: 1.05rem; }

/* ---------- HERO ---------- */
.sekhar-hero-visual { position: relative; display: grid; place-items: center; padding: 1.5rem; min-height: 380px; }
.sekhar-hero-blob {
  position: absolute; inset: 4%;
  background: conic-gradient(from 120deg, #ef4444, #f97316, #facc15, #22c55e, #06b6d4, #2563eb, #a855f7, #ef4444);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(8px); opacity: .9;
  animation: sk-spin 18s linear infinite, sk-morph 12s ease-in-out infinite;
}
.sekhar-hero-card {
  position: relative; width: min(100%, 430px);
  background: #fff; border: 4px solid #fff; border-radius: 32px;
  padding: 2.4rem; box-shadow: var(--sk-shadow-lg);
  display: grid; place-items: center;
}
.sekhar-hero-logo { position: relative; width: 100%; max-width: 320px; height: auto; display: block; }
.sekhar-hero-chip {
  position: absolute; width: 96px; height: 96px; border-radius: 24px;
  background: #fff; box-shadow: var(--sk-shadow-md); object-fit: cover; padding: 9px; z-index: 2;
  border: 3px solid #fff;
}
.sekhar-hero-chip.is-1 { top: 2%; left: -3%; transform: rotate(-8deg); animation: sk-bob 6s ease-in-out infinite; }
.sekhar-hero-chip.is-2 { bottom: 6%; right: -4%; width: 116px; height: 116px; transform: rotate(7deg); animation: sk-bob 8s ease-in-out infinite reverse; }
.sekhar-hero-chip.is-3 { bottom: -2%; left: 10%; width: 78px; height: 78px; transform: rotate(-5deg); animation: sk-bob 7s ease-in-out infinite .5s; }

/* floating decorative shapes */
.sekhar-shape { position: absolute; z-index: 1; font-size: 2rem; animation: sk-bob 5s ease-in-out infinite; pointer-events: none; }

@keyframes sk-bob { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }
@keyframes sk-spin { to { transform: rotate(360deg); } }
@keyframes sk-morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 60% 40% 40% 60% / 42% 58% 42% 58%; }
}

.sekhar-stat-num { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 2rem; line-height: 1; }
.sekhar-stat-num.c1 { color: var(--sk-red); }
.sekhar-stat-num.c2 { color: var(--sk-blue); }
.sekhar-stat-num.c3 { color: var(--sk-green); }
.sekhar-stat-label { font-size: .85rem; color: var(--sk-muted); margin-top: .3rem; font-weight: 600; }

/* ---------- Header ---------- */
.sekhar-site-header {
  background: rgba(255, 255, 255, .9) !important;
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 3px solid var(--sk-line);
}
.sekhar-site-header { padding-top: .55rem; padding-bottom: .55rem; }
.sekhar-site-header > .wp-block-group { align-items: center; flex-wrap: nowrap; }
.sekhar-logo { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 0; transition: transform .25s var(--sk-pop); }
.sekhar-logo:hover { transform: scale(1.04); }
.sekhar-logo img, .sekhar-site-header .custom-logo { height: 56px; width: auto !important; max-width: 230px; display: block; object-fit: contain; }
.sekhar-nav { flex: 1; }
.sekhar-nav .wp-block-navigation-item__content {
  color: var(--sk-ink); font-weight: 600; padding: .4rem .7rem; border-radius: 999px; transition: all .2s var(--sk-pop);
}
.sekhar-nav .wp-block-navigation-item__content:hover,
.sekhar-nav .current-menu-item .wp-block-navigation-item__content { color: var(--sk-red); background: rgba(239, 68, 68, .1); }
.sekhar-nav .wp-block-navigation__submenu-container {
  border: 2px solid var(--sk-line); border-radius: 18px; box-shadow: var(--sk-shadow-md); padding: .4rem; background: #fff;
}
.sekhar-nav .wp-block-navigation__submenu-container .wp-block-navigation-item:hover { background: var(--sk-canvas); border-radius: 12px; }
.sekhar-header-actions { align-items: center; gap: .35rem; }
.sekhar-icon-btn, .wc-block-mini-cart__button {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex !important; align-items: center; justify-content: center;
  color: var(--sk-ink) !important; background: transparent; transition: background .2s, color .2s, transform .2s var(--sk-pop);
}
.sekhar-icon-btn:hover, .wc-block-mini-cart__button:hover { background: rgba(239, 68, 68, .1); color: var(--sk-red) !important; transform: translateY(-1px); }
.wc-block-mini-cart__badge { background: var(--sk-red) !important; color: #fff !important; font-weight: 700; }
.wc-block-mini-cart__quantity-badge { color: var(--sk-ink); }

/* ---------- Feature cards (chunky colourful icons) ---------- */
.sekhar-feature {
  display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; border-radius: 20px;
  transition: transform .3s var(--sk-pop), background .3s;
}
.sekhar-feature:hover { background: #fff; transform: translateY(-4px) scale(1.02); box-shadow: var(--sk-shadow-sm); }
.sekhar-feature .ico {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 1.6rem; flex-shrink: 0;
  color: #fff; box-shadow: 0 8px 16px -6px rgba(32,34,58,.4); transform: rotate(-4deg);
  background: linear-gradient(135deg, var(--sk-red), var(--sk-orange));
}
.sekhar-feature .ico.b { background: linear-gradient(135deg, var(--sk-blue), var(--sk-purple)); }
.sekhar-feature .ico.g { background: linear-gradient(135deg, var(--sk-green), var(--sk-cyan)); }
.sekhar-feature .ico.y { background: linear-gradient(135deg, var(--sk-yellow), var(--sk-orange)); }
.sekhar-feature strong { display: block; font-weight: 700; color: var(--sk-ink); font-family: 'Fredoka', sans-serif; }
.sekhar-feature span { font-size: .85rem; color: var(--sk-muted); }

/* ---------- Colourful category tiles ---------- */
.sekhar-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.sekhar-cat-card {
  position: relative; display: block; border-radius: var(--sk-radius); overflow: hidden;
  background: #fff; border: 3px solid #fff; box-shadow: var(--sk-shadow-sm); text-decoration: none;
  transition: transform .4s var(--sk-pop), box-shadow .4s;
}
.sekhar-cat-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--sk-shadow-md); }
.sekhar-cat-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.sekhar-cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--sk-pop); mix-blend-mode: multiply; }
.sekhar-cat-card:hover .sekhar-cat-media img { transform: scale(1.1) rotate(2deg); }
.sekhar-cat-body { padding: 1rem 1.1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.sekhar-cat-name { color: var(--sk-ink); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.08rem; line-height: 1.2; }
.sekhar-cat-count { color: #fff; font-size: .72rem; font-weight: 800; padding: .25rem .7rem; border-radius: 999px; white-space: nowrap; }
/* per-category bright colours */
.sekhar-cat-card:nth-child(7n+1) .sekhar-cat-media { background: #fee2e2; } .sekhar-cat-card:nth-child(7n+1) .sekhar-cat-count { background: var(--sk-red); }
.sekhar-cat-card:nth-child(7n+2) .sekhar-cat-media { background: #dbeafe; } .sekhar-cat-card:nth-child(7n+2) .sekhar-cat-count { background: var(--sk-blue); }
.sekhar-cat-card:nth-child(7n+3) .sekhar-cat-media { background: #dcfce7; } .sekhar-cat-card:nth-child(7n+3) .sekhar-cat-count { background: var(--sk-green); }
.sekhar-cat-card:nth-child(7n+4) .sekhar-cat-media { background: #fef9c3; } .sekhar-cat-card:nth-child(7n+4) .sekhar-cat-count { background: var(--sk-orange); }
.sekhar-cat-card:nth-child(7n+5) .sekhar-cat-media { background: #f3e8ff; } .sekhar-cat-card:nth-child(7n+5) .sekhar-cat-count { background: var(--sk-purple); }
.sekhar-cat-card:nth-child(7n+6) .sekhar-cat-media { background: #cffafe; } .sekhar-cat-card:nth-child(7n+6) .sekhar-cat-count { background: var(--sk-cyan); }
.sekhar-cat-card:nth-child(7n+7) .sekhar-cat-media { background: #fce7f3; } .sekhar-cat-card:nth-child(7n+7) .sekhar-cat-count { background: var(--sk-pink); }
@media (max-width: 980px) { .sekhar-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .sekhar-cat-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; } }

/* ---------- Product cards (WooCommerce + Product Collection) ---------- */
.woocommerce ul.products li.product,
.wc-block-product-template .wc-block-product,
.wp-block-woocommerce-product-template li {
  background: #fff; border: 3px solid #fff; border-radius: var(--sk-radius); overflow: hidden; padding-bottom: 1rem;
  box-shadow: var(--sk-shadow-sm); transition: transform .35s var(--sk-pop), box-shadow .35s, border-color .35s;
}
.woocommerce ul.products li.product:hover,
.wc-block-product-template .wc-block-product:hover,
.wp-block-woocommerce-product-template li:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--sk-shadow-md); border-color: var(--sk-yellow); }
.wc-block-product-template .wc-block-product img,
.woocommerce ul.products li.product img { border-radius: 20px 20px 0 0; transition: transform .6s var(--sk-pop); }
.wc-block-product-template .wc-block-product:hover img,
.woocommerce ul.products li.product:hover img { transform: scale(1.06); }
.wc-block-product-template .wc-block-components-product-price,
.woocommerce ul.products li.product .price { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--sk-red); }
.wc-block-grid__product-title, .wc-block-components-product-name { color: var(--sk-ink) !important; font-family: 'Fredoka', sans-serif; }
.woocommerce ul.products li.product .price del { color: var(--sk-muted); font-weight: 400; }
.wc-block-product-template .wc-block-product > * { padding-left: 1rem; padding-right: 1rem; }
.wc-block-product-template .wc-block-product > img,
.wc-block-product-template .wc-block-product .wc-block-components-product-image { padding: 0; }

/* ---------- Buttons: bright, chunky, bouncy ---------- */
.wp-element-button, .wc-block-components-button,
.woocommerce a.button, .woocommerce button.button, .woocommerce .button.alt {
  border-radius: 999px !important; font-weight: 700 !important; letter-spacing: .01em;
  box-shadow: 0 10px 20px -8px rgba(239, 68, 68, .6);
  transition: transform .2s var(--sk-pop), box-shadow .25s;
}
.wp-element-button:hover, .wc-block-components-button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 30px -10px rgba(239, 68, 68, .7); }
.wp-block-button.is-style-outline .wp-block-button__link {
  border: 2.5px solid var(--sk-ink) !important; color: var(--sk-ink) !important; background: #fff !important; box-shadow: 0 6px 0 0 var(--sk-ink) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover { border-color: var(--sk-red) !important; color: var(--sk-red) !important; box-shadow: 0 4px 0 0 var(--sk-red) !important; transform: translateY(2px) !important; }

/* ---------- Sale badge ---------- */
.woocommerce span.onsale, .wc-block-components-product-sale-badge {
  background: var(--sk-yellow) !important; color: var(--sk-ink) !important; border-radius: 999px !important;
  font-weight: 800; font-size: .74rem; box-shadow: var(--sk-shadow-sm); transform: rotate(-6deg);
}

/* ---------- Single product ---------- */
.woocommerce div.product .product_title { font-family: 'Fredoka', sans-serif; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--sk-red); font-family: 'Fredoka', sans-serif; font-size: 1.9rem; font-weight: 700; }

/* ---------- Notices ---------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--sk-shadow-sm); border-top: none; }

/* ---------- My Account ---------- */
.woocommerce-account .woocommerce-MyAccount-navigation ul { background: #fff; border: 2px solid var(--sk-line); border-radius: var(--sk-radius); padding: 1rem; box-shadow: var(--sk-shadow-sm); list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: .65rem 1rem; border-radius: 12px; color: var(--sk-muted); font-weight: 600; text-decoration: none; transition: all .2s; }
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--sk-canvas); color: var(--sk-ink); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--sk-red); color: #fff; }

/* ---------- Footer ---------- */
.sekhar-footer { position: relative; }
.sekhar-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #ef4444, #f97316, #facc15, #22c55e, #06b6d4, #2563eb, #a855f7); }
.sekhar-footer .wp-block-columns { align-items: flex-start; }
.sekhar-footer-logo img { background: #fff; padding: .4rem .7rem; border-radius: 12px; max-height: 64px; width: auto; }
.sekhar-footer h5 { margin-bottom: 1rem; font-family: 'Fredoka', sans-serif; }
.sekhar-footer-list a, .sekhar-footer a { text-decoration: none; transition: color .2s, padding-left .2s; }
.sekhar-footer-list li a:hover { color: var(--sk-yellow) !important; padding-left: 5px; }
.sekhar-footer .wp-block-social-links { margin-top: 1.25rem; }
.sekhar-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.sekhar-paybar { display: flex; gap: .5rem; flex-wrap: wrap; }
.sekhar-paybar span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); padding: .35rem .7rem; border-radius: 8px; font-size: .72rem; font-weight: 700; color: #cbd5e1; }
.sekhar-footer-bottom p { margin: 0; font-size: .82rem; color: #94a3b8; }

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .sekhar-reveal { opacity: 0; transform: translateY(20px); animation: sk-reveal .7s var(--sk-pop) forwards; animation-timeline: view(); animation-range: entry 0% cover 28%; }
}
@keyframes sk-reveal { to { opacity: 1; transform: none; } }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  /* Header: logo (left) · hamburger + cart (right) */
  .sekhar-site-header > .wp-block-group { gap: .6rem; }
  .sekhar-logo { margin-right: auto; }            /* push cart + menu together on the right */
  .sekhar-logo img { height: 46px; max-width: 180px; }
  .sekhar-nav { flex: 0 0 auto; order: 3; }
  .sekhar-icon-btn, .wc-block-mini-cart__button { width: 40px; height: 40px; }
  .sekhar-header-actions { order: 2; gap: .4rem; }
  .sekhar-login { display: none; }                 /* reach login via the menu's "My Account" */
  .sekhar-site-header .wp-block-navigation__responsive-container-open {
    display: inline-flex; background: #fff; width: 42px; height: 42px; border-radius: 12px;
    align-items: center; justify-content: center; box-shadow: var(--sk-shadow-sm); border: 2px solid var(--sk-line);
  }
  /* Hero: tighter, stacked, readable */
  .sekhar-hero-chip, .sekhar-shape { display: none; }
  .sekhar-hero-visual { min-height: 260px; padding: .5rem; }
  .sekhar-hero-card { width: min(78%, 320px); padding: 1.6rem; }
  .sekhar-hero-stats { gap: 1.25rem !important; flex-wrap: wrap; }
  .sekhar-stat-num { font-size: 1.6rem; }
  .wp-block-button { flex: 1 1 auto; }
  .wp-block-button .wp-block-button__link { display: block; text-align: center; }
  /* Footer */
  .sekhar-footer-bottom { flex-direction: column-reverse; text-align: center; }
  .sekhar-paybar { justify-content: center; }
}
@media (max-width: 600px) {
  .sekhar-eyebrow { font-size: .7rem; padding: .45rem .9rem; }
  .sekhar-hero-stats { gap: 1rem !important; }
  .sekhar-hero-stats > div { flex: 1 1 28%; }
}

/* ---------- FAQ accordion ---------- */
.wp-block-group details { border: 2px solid var(--sk-line); border-radius: 16px; padding: 1rem 1.25rem; margin-bottom: .75rem; background: #fff; }
.wp-block-group details[open] { box-shadow: var(--sk-shadow-sm); border-color: var(--sk-yellow); }
.wp-block-group details summary { font-family: 'Fredoka', sans-serif; font-size: 1.02rem; }
.wp-block-group details p { margin-top: .75rem; }

/* ============================================================
   Toy-store header + hero (teal & orange scheme)
   ============================================================ */
:root {
  --tt-teal: #dc2626;   /* header — matches the logo's SEKHAR red */
  --tt-teal-d: #b01717; /* top bar — darker red */
  --tt-orange: #f7941e;
  --tt-orange-d: #ef8214;
  --tt-yellow: #ffd23f;
}

/* ---- Top info bar ---- */
.tt-topbar { background: var(--tt-teal-d); color: #eafffb; font-size: .82rem; }
.tt-topbar-inner {
  max-width: 1140px; margin: 0 auto; padding: .55rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.tt-topbar-left, .tt-topbar-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.tt-topbar a, .tt-tb-item { color: #eafffb !important; text-decoration: none; }
.tt-topbar a:hover { color: #fff !important; }

/* ---- Main teal header ---- */
.sekhar-site-header.tt-header {
  background: var(--tt-teal) !important;
  border-bottom: none !important;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.tt-header-inner { display: flex; align-items: center; gap: 1.4rem; flex-wrap: nowrap; }
.tt-logo { background: #fff; border-radius: 14px; padding: .38rem .65rem; display: inline-flex; align-items: center; flex-shrink: 0; line-height: 0; box-shadow: 0 6px 16px -8px rgba(0,0,0,.35); }
.tt-logo img { height: 44px; width: auto; display: block; }

/* Search bar */
.tt-search { flex: 1 1 auto; max-width: 640px; display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 4px 4px 4px 6px; box-shadow: 0 8px 20px -12px rgba(0,0,0,.3); }
.tt-search-cat { border: none; background: transparent; padding: .55rem .7rem; font-weight: 600; color: var(--sk-ink); border-right: 2px solid #eef0f6; cursor: pointer; outline: none; max-width: 40%; }
.tt-search input[type="search"] { flex: 1; min-width: 0; border: none; outline: none; background: transparent; padding: .6rem .85rem; font-size: .95rem; color: var(--sk-ink); }
.tt-search button { flex-shrink: 0; width: 44px; height: 44px; border: none; border-radius: 50%; background: var(--tt-orange); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .2s; }
.tt-search button:hover { background: var(--tt-orange-d); transform: scale(1.05); }

/* Support phone */
.tt-support { display: inline-flex; align-items: center; gap: .6rem; color: #fff !important; text-decoration: none; flex-shrink: 0; }
.tt-support-ico { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; }
.tt-support-txt small { display: block; font-size: .72rem; opacity: .9; }
.tt-support-txt strong { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; }

/* Header icons (wishlist + cart) on teal */
.tt-header-icons { display: flex; align-items: center; gap: .3rem; }
.tt-icon, .tt-header .wc-block-mini-cart__button {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex !important; align-items: center; justify-content: center;
  color: #fff !important; background: transparent; transition: background .2s, transform .2s;
}
.tt-icon:hover, .tt-header .wc-block-mini-cart__button:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }
.tt-header .wc-block-mini-cart__badge { background: var(--tt-yellow) !important; color: var(--sk-ink) !important; font-weight: 800; }

/* ---- White nav bar ---- */
.tt-navbar { background: #fff; box-shadow: 0 6px 18px -14px rgba(15,23,42,.5); position: relative; z-index: 90; }
.tt-navbar-inner { max-width: 1140px; margin: 0 auto; padding: .35rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tt-nav .wp-block-navigation-item__content { color: var(--sk-ink); font-weight: 600; padding: .5rem .2rem; }
.tt-nav .wp-block-navigation-item__content:hover,
.tt-nav .current-menu-item .wp-block-navigation-item__content { color: var(--tt-teal); }
.tt-nav .wp-block-navigation__submenu-container { border: 2px solid var(--sk-line); border-radius: 16px; box-shadow: var(--sk-shadow-md); padding: .4rem; background: #fff; }
.tt-nav .wp-block-navigation__submenu-container .wp-block-navigation-item:hover { background: #fef2f2; border-radius: 10px; }
.tt-deals { background: #ffe6ef; color: #ef4444; font-weight: 800; font-size: .88rem; padding: .5rem 1.15rem; border-radius: 999px; text-decoration: none; white-space: nowrap; transition: transform .2s var(--sk-pop), box-shadow .2s; }
.tt-deals:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(239,68,68,.6); color: #ef4444; }

/* ============================================================
   Orange hero
   ============================================================ */
.tt-hero {
  position: relative; overflow: hidden; border-radius: 30px;
  background: radial-gradient(120% 140% at 85% 10%, #f9a53a 0%, var(--tt-orange) 45%, var(--tt-orange-d) 100%);
  padding: clamp(2rem, 5vw, 3.75rem);
  box-shadow: 0 30px 60px -28px rgba(239,130,20,.7);
}
.tt-cloud { position: absolute; background: rgba(255,255,255,.16); border-radius: 100px; }
.tt-cloud-1 { width: 220px; height: 70px; top: -20px; left: 8%; }
.tt-cloud-2 { width: 160px; height: 55px; bottom: 10%; left: -30px; }
.tt-cloud-3 { width: 200px; height: 64px; bottom: -22px; right: 18%; }

.tt-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.tt-hero-pill { display: inline-block; background: var(--tt-yellow); color: #2a1a00; font-weight: 800; font-size: .85rem; padding: .5rem 1.1rem; border-radius: 999px; margin-bottom: 1.2rem; box-shadow: 0 8px 16px -8px rgba(0,0,0,.25); }
.tt-hero-title { color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 4.8vw, 3.9rem); line-height: 1.03; letter-spacing: -.01em; margin: 0 0 1rem; text-shadow: 0 3px 0 rgba(0,0,0,.06); }
.tt-hero-title span { color: #fff2c2; }
.tt-hero-sub { color: rgba(255,255,255,.94); font-size: 1.05rem; line-height: 1.6; max-width: 44ch; margin: 0 0 1.75rem; }
.tt-hero-btn { display: inline-flex; align-items: center; gap: .6rem; background: #fff; color: var(--tt-orange-d); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.05rem; padding: .95rem 2rem; border-radius: 999px; text-decoration: none; box-shadow: 0 14px 28px -12px rgba(0,0,0,.4); transition: transform .2s var(--sk-pop), box-shadow .2s; }
.tt-hero-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 36px -14px rgba(0,0,0,.45); color: var(--tt-orange-d); }

/* Hero visual — floating product photos around a disc */
.tt-hero-visual { position: relative; min-height: 360px; }
.tt-hero-disc { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: min(94%, 340px); aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.2); }
.tt-hero-prod { position: absolute; object-fit: cover; border-radius: 22px; border: 4px solid #fff; box-shadow: 0 18px 36px -14px rgba(0,0,0,.4); background: #fff; }
.tt-prod-main { right: 12%; top: 50%; transform: translateY(-50%); width: min(58%, 220px); aspect-ratio: 1; border-radius: 50%; }
.tt-prod-a { top: 4%; right: 54%; width: 104px; height: 104px; transform: rotate(-8deg); animation: sk-bob 6s ease-in-out infinite; }
.tt-prod-b { bottom: 4%; right: 58%; width: 96px; height: 96px; transform: rotate(7deg); animation: sk-bob 8s ease-in-out infinite reverse; }
.tt-prod-c { bottom: 8%; right: 2%; width: 88px; height: 88px; transform: rotate(6deg); animation: sk-bob 7s ease-in-out infinite .5s; }
.tt-star { position: absolute; color: #fff2c2; font-size: 1.6rem; z-index: 3; animation: sk-bob 5s ease-in-out infinite; }
.tt-star-1 { top: 6%; right: 34%; }
.tt-star-2 { bottom: 16%; right: 46%; font-size: 2rem; animation-delay: .8s; }
.tt-star-3 { top: 30%; right: 0; color: #fff; animation-delay: 1.3s; }

/* ---- Responsive: toy header + hero ---- */
@media (max-width: 980px) {
  .tt-support-txt { display: none; }
  .tt-hero-grid { grid-template-columns: 1fr; }
  .tt-hero-visual { min-height: 300px; order: -1; margin-bottom: .5rem; }
}
@media (max-width: 820px) {
  .tt-header-inner { flex-wrap: wrap; }
  .tt-logo { order: 1; }
  .tt-header-icons { order: 2; margin-left: auto; }
  .tt-navbar-inner .tt-nav { order: 3; }
  .tt-search { order: 4; flex-basis: 100%; max-width: 100%; margin-top: .2rem; }
  .tt-support { display: none; }
  .tt-navbar-inner { justify-content: space-between; }
  /* nav hamburger on the white bar */
  .tt-nav .wp-block-navigation__responsive-container-open {
    display: inline-flex; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center;
    background: #fef2f2; border: 2px solid #fbd5d5; color: var(--tt-teal);
  }
}
@media (max-width: 600px) {
  .tt-topbar { font-size: .74rem; }
  .tt-topbar-inner { justify-content: center; gap: .4rem 1rem; padding: .45rem 1rem; }
  .tt-topbar-right .tt-tb-item:first-child { display: none; }
  .tt-hero-prod { display: none; }
  .tt-hero-disc { display: none; }
  .tt-hero-visual { min-height: 0; }
}
