/*
Theme Name: TjaysFun
Theme URI: https://tjaysfun4all.co.uk
Author: TJays Fun 4 All
Author URI: https://tjaysfun4all.co.uk
Description: Custom WordPress theme for TJays Fun 4 All — family-run bouncy castle, inflatable and event-hire company based in Petersfield, covering Hampshire, Surrey & West Sussex.
Version: 1.17.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tjaysfun
*/

/* ==========================================================================
   Variables
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

:root {
    --tj-purple: #6407af;
    --tj-magenta: #e0249b;
    --tj-pink: #ff5fb3;
    --tj-gradient: linear-gradient(135deg, oklch(42% .22 300) 0%, oklch(55% .25 320) 50%, oklch(65% .25 340) 100%);
    --tj-gradient-btn: linear-gradient(90deg, #ff7ac3 0%, #ff4fa8 100%);
    --tj-white: #ffffff;
    --tj-text: #2b1140;
    --tj-max-width: 1280px;
    --tj-radius: 999px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--tj-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Fredoka", sans-serif;
}

.container {
    max-width: var(--tj-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.bg-gradient-to-r {
    background: linear-gradient(135deg, oklch(42% .22 300) 0%, oklch(55% .25 320) 50%, oklch(65% .25 340));
}
header .shadow-lg {
    box-shadow: 0 0 40px rgba(189, 80, 253, 0.55);
}
header .hover\:scale-105:hover {
    transform: scale(1.01);
}
header .transition-transform {
    transition: transform 0.15s ease;
}

.site-header {
    background: var(--tj-gradient);
    position: sticky;
    top: 0;
    z-index: 999;
}
header .rounded-lg {
    border-radius: 24px;
}
header .hover\:bg-gray-100:hover {
    background-color: #f7e8ff;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 24px;
    max-width: var(--tj-max-width);
    margin: 0 auto;
}

.site-header__logo img {
    max-height: 112px !important;
    width: auto;
    height: 112px !important;
}

.site-header__logo a {
    display: inline-block;
}
header.shadow-lg {
    box-shadow: 0 20px 60px -20px rgba(100, 7, 175, 0.45);
}
/* Primary nav */
.main-navigation {
    flex: 1;
}

.main-navigation ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-navigation ul.menu li {
    position: relative;
}

.main-navigation ul.menu>li>a {
    color: var(--tj-white);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.main-navigation ul.menu>li>a:hover {
    background: #ffffff1a;
    border-radius: 50px;
}

/* dropdown */
.main-navigation li.menu-item-has-children>a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: 1px;
    margin-top: -4px;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--tj-white);
    min-width: 240px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(43, 17, 64, 0.2);
    padding: 8px 0;
    margin-top: 10px;
}

.main-navigation li.menu-item-has-children:hover>.sub-menu,
.main-navigation li.menu-item-has-children:focus-within>.sub-menu {
    display: block;
}

.main-navigation .sub-menu li a {
    color: var(--tj-text);
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 14px;
}

.main-navigation .sub-menu li a:hover {
    background: #f6ecfb;
    color: var(--tj-purple);
    border-radius: 20px
}

.main-navigation .sub-menu li {
    padding: 0 10px;
}

.site-header__cta svg {
    width: 16px;
    height: 16px;
}

/* Book now button */
.site-header__cta .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 17px;
    border-radius: var(--tj-radius);
    box-shadow: 0 6px 18px rgba(224, 36, 155, 0.35);
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn--primary svg {
    width: 16px;
}

.site-header__cta .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(224, 36, 155, 0.45);
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--tj-white);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        order: 3;
    }

    .main-navigation {
        flex-basis: 100%;
        order: 4;
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul.menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 16px 0;
    }

    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.08);
    }

    .main-navigation .sub-menu li a {
        color: var(--tj-white);
    }

    .site-header__inner {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .site-header__cta {
        order: 2;
    }

    .site-header__logo {
        padding-left: 20px;
        padding-top: 14px;
    }

    .main-navigation ul.menu>li>a {
        width: 100%;
        justify-content: space-between;
    }

    .main-navigation ul.menu li {
        width: 100%;
    }

    .main-navigation ul.menu>li>a:hover {
        background: transparent;
    }

    .main-navigation .sub-menu {
        background: transparent;
    }

    .main-navigation .sub-menu li a:hover {
        background: transparent;
        color: #fff;
    }
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
    height: var(--tjaysfun-slider-height, 560px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-color: #2b1140;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(43, 17, 64, 0.88) 0%, rgba(90, 20, 120, 0.55) 45%, rgba(43, 17, 64, 0.25) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: 18%;
    padding: 40px 44px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--tj-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--tj-radius);
    margin-bottom: 0;
}

.hero-badge svg {
    width: 16px;
}

.hero-badge--muted {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.14);
}

.hero-slide__title {
    color: var(--tj-white);
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.hero-slide__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    max-width: 460px;
    margin: 0 0 28px;
}

.hero-slide__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: var(--tj-radius);
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn--primary {
    background: #ff4bc9;
    color: var(--tj-white);
    box-shadow: 0 8px 20px rgba(224, 36, 155, 0.4);
}

.hero-btn--secondary {
    background: var(--tj-white);
    color: var(--tj-purple);
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-slider__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot-nav {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot-nav.is-active {
    width: 26px;
    background: var(--tj-white);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--tj-white);
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
    background: rgba(255, 255, 255, 0.35);
}

.hero-slider__arrow--prev {
    left: 18px;
}

.hero-slider__arrow--next {
    right: 18px;
}

@media (max-width: 780px) {
    .hero-slider__track {
        height: 620px;
    }

    /* Arrows would sit on top of the slide text at this width; swipe and the
       dots cover navigation instead. */
    .hero-slider__arrow {
        display: none;
    }

    .hero-slide__content {
        margin: 0 16px;
        padding: 28px 24px;
        max-width: none;
    }

    .hero-slide__title {
        font-size: 32px;
    }
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */
.categories-section {
    padding: 72px 0;
    background: #faf8fc;
    position: relative;
}

.categories-section__header {
    text-align: center;
    max-width: 672px;
    margin: 0 auto 48px;
}

.hero-badge--dark {
    background: #f1e4fb;
    color: var(--tj-purple);
}

.categories-section__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1c0f2e;
    margin: 18px 0 16px;
}

.categories-section__title .text-accent {
    color: var(--tj-purple);
}

.categories-section__subtitle {
    color: #6b6478;
    font-size: 18px;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.category-card {
      background: var(--tj-white);
    border-radius: 24px;
    overflow: hidden;
       box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    border: 1px solid #ebdff4
}

.category-card:hover {
    transform: translateY(-4px);
        box-shadow: 0 20px 60px -20px 
color-mix(in oklab, #6407af 45%, transparent);
}

.category-card__image {
       position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1e4fb, #fde3f3);
}

.category-card:hover img {
    transform: scale(1.08);
    overflow: hidden;
}

.category-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f84fcc;
    color: var(--tj-white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--tj-radius);
    text-transform: uppercase;
}

.category-card__body {
    padding: 16px;
    text-align: center;
}

.category-card__title {
     font-size: 18px;
    font-weight: 700;
    color: var(--tj-purple);
    margin: 0 0 0;
        line-height: 1.25;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color:#675d7c;
    font-weight: 600;
}

.category-card:hover .category-card__link {
    color: var(--tj-purple);
}

@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .woocommerce .shop-surface ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-section__title {
        font-size: 36px;
    }
      .bp-fundays__grid {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }
    .category-card__title {
    font-size: 16px;
}
.welcome-section__title {
    font-size: 36px !important;
    line-height: normal;
}
}



/* ==========================================================================
   Gallery Section ("Watch Us Bring The Party")
   ========================================================================== */
.gallery-section {
    padding: 72px 0;
    background: var(--tj-white);
    position: relative;
}

.gallery-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.gallery-section__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #1c0f2e;
       margin: 18px 0 6px;
}

.gallery-section .hero-btn--primary {
    background: var(--tj-purple);
    color: var(--tj-white);
    box-shadow: none;
    padding: 15px 33px;
    font-size: 16px;
    text-transform: uppercase;
}

.gallery-section__title .text-accent {
    color: var(--tj-purple);
}

.gallery-section__subtitle {
    color: #675d7c;
    font-size: 18px;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
        z-index: 2;
    position: relative;
}
.gallery-grid.gallery-grid--videos {
    z-index: initial;
}
.gallery-card {
    background: var(--tj-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgb(43 17 64 / 26%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}


.gallery-card__image {
    position: relative;
    /*    aspect-ratio: 1 / 0.72;*/
    overflow: hidden;
}

.gallery-card__image img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__image img {
    transform: scale(1.08);
}

.gallery-card__image img,
.gallery-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #14061a;

}

.gallery-card__video {
    aspect-ratio: 9 / 16;
}

.gallery-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1e4fb, #fde3f3);
}

.gallery-card__body {
    padding: 14px 16px;
    text-align: center;
}

.gallery-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--tj-purple);
    margin: 0;
    font-family: 'Poppins';
}

/* Video-style tiles: caption + play icon overlaid on the image, no white
   body underneath — matches the first highlight row of the gallery. */
.gallery-card--video .gallery-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(20, 6, 34, 0.75) 100%);
}
.gallery-card.gallery-card--video {
    box-shadow: 0 0 40px rgb(100 7 175 / 32%);
}
.gallery-card--video .gallery-card__play {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
}

.gallery-card--video .gallery-card__caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    color: var(--tj-white);
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        display: flex;
    gap: 6px;
    align-items: center;
}

.gallery-section__cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-grid.gallery-grid--images {
    margin-top: 45px;
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section__title {
        font-size: 36px;
    }
    .packages-section__title ,.dual-cta-card__title{
    font-size: 36px !important;
}

}

/* ==========================================================================
   Welcome / About Section
   ========================================================================== */
.welcome-section {
    padding: 80px 0;
    background: #f7e8ff;
}

.welcome-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-badge--soft {
    background: #dfc6f2;
    color: var(--tj-purple);
    padding: 5px 16px;
}

.hero-badge--on-dark {
    background: rgba(255, 255, 255, 0.18);
    color: var(--tj-white);
}

.welcome-section__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 18px 0 20px;
}

.welcome-section__title .text-accent {
    color: var(--tj-purple);
}
.welcome-section__para.welcome-section__para_top {
    font-size: 18px;
}
.welcome-section__para {
    color: #5c5468;
    font-size: 16px;
    margin: 0 0 14px;
}
.bg-card {
    background: #fff;
    border: none;
}
.welcome-features .bg-card {
    border-radius: 24px;
}
.bg-card strong {
    color: #1c0934;
    margin-top: 7px;
    display: block;
}
.welcome-section__actions .hero-btn.hero-btn--outline-purple:hover {
    transform: none;
    background: var(--tj-purple);
    color: var(--tj-white);
}
.welcome-features .bg-card span {
    color: #675d7c;
    font-size: 12px;
    line-height: normal;
    display: block;
}
.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 30px;
}

.welcome-feature {
    background: #faf8fc;
    border: 1px solid #eee3f7;
    border-radius: 29px;
    padding: 18px 14px;
    text-align: left;
}

.welcome-feature svg {
    color: var(--tj-purple);
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
}

.welcome-feature strong {
    display: block;
    font-size: 16px;
    color: #1c0f2e;
    margin-bottom: 4px;
}

.welcome-feature span {
    display: block;
    font-size: 12px;
    color: #00000096;
}

.welcome-section__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn--solid-purple {
    background: var(--tj-purple);
    color: var(--tj-white);
}

.hero-btn--outline-purple {
    background: #fff;
    color: var(--tj-purple);
    border: 2px solid var(--tj-purple);
}

.welcome-section__media {
    position: relative;
}

.welcome-media-card {
    position: relative;
    background: var(--tj-white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(43, 17, 64, 0.15);
}

.welcome-media-card__image {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.welcome-media-card__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: linear-gradient(135deg, #f1e4fb, #fde3f3);
}

@media (max-width: 900px) {
    .welcome-section__inner {
        grid-template-columns: 1fr;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }

    .woocommerce .shop-surface ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ==========================================================================
   Party Package Deals Section
   ========================================================================== */
.packages-section {
    padding: 80px 0;
    background: var(--tj-gradient);
    position: relative;
}

.packages-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.packages-section__header .hero-badge.hero-badge--on-dark {
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.packages-section__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--tj-white);
    margin: 18px 0 0;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.packages-section__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin: 0;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}
.package-card {
    background: var(--tj-white);
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 14px 32px rgba(43, 17, 64, 0.2);
}

.package-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1e4fb;
    color: var(--tj-purple);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 24px;
}

.package-card__number--pink {
    background: #fde3f3;
    color: var(--tj-magenta);
}

.package-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 0 0 10px;
}

.package-card__text {
    color: #675d7c;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.package-card__checklist {
    margin: 0;
    padding: 0;
}

.package-card__checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #1c0934;
    margin-bottom: 4px;
    font-weight: 400;
}
.package-card__checklist svg {
    color: var(--tj-purple);
    flex-shrink: 0;
}

.package-card__note {
    margin-top: 14px;
}

.package-card__note-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #8a8194;
    margin-bottom: 4px;
}

.package-card__note p {
margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1c0934;
    line-height: 1.7;
}

.packages-section__cta {
    text-align: center;
}

.packages-section__cta .hero-btn--primary {
    font-size: 16px;
    padding: 14px 30px;
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
                padding: 0 0 !important;
    }
}

/* ==========================================================================
   Dual CTA Section (Birthday Parties / Event Hire)
   ========================================================================== */
.dual-cta-section {
    padding: 70px 0;
    background: var(--tj-white);
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dual-cta-card {
    position: relative;
    border-radius: 22px;
    padding: 40px 40px 32px;
    overflow: hidden;
    color: var(--tj-white);
        box-shadow: 0 0 40px rgb(100 7 175 / 32%);
}
.dual-cta-card:hover {
    box-shadow: 0 0 40px rgba(100, 7, 175, 0.55);
}
.dual-cta-card--pink {
    background: linear-gradient(135deg, #ff5fb3 0%, #bd50fd 100%)
}

.dual-cta-card--purple {
    background: linear-gradient(135deg, #6407af 0%, #bd50fd 100%);
}

.dual-cta-card__eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0;
   text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgb(0 0 0 / 89%);
        z-index: 2;
    position: relative;
}

.dual-cta-card__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 0;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgb(0 0 0 / 50%);
        z-index: 2;
    position: relative;
}
.dual-cta-grid .hero-btn {
    z-index: 2;
    position: relative;
}
.dual-cta-card__desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 430px;
    margin: 0 0 22px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgb(0 0 0 / 89%);
    z-index: 2;
    position: relative;
}


.dual-cta-card--purple .hero-btn--secondary {
    color: #5b21b6;
}

@media (max-width: 780px) {
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }
      .gallery-grid.gallery-grid--images {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid.gallery-grid--videos{
         grid-template-columns: repeat(1, 1fr);
    }

}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: var(--tj-gradient);
    color: var(--tj-white);
    padding-top: 56px;
        padding-bottom: 42px;
}



.site-footer a {
    color: #ffffffde;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer__brand {
    grid-column: span 2 / span 2;
}

.footer__brand .site-footer__logo img {
    height: 64px;
    width: 64px;
    margin-bottom: 18px;
}

.footer__brand p {
    max-width: 440px;
    opacity: 0.95;
    margin: 0 0 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.footer__social a:hover {
    background: rgba(255, 255, 255, 0.32);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
}

.footer__contact li {
  display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: #ffffffde;
    font-size: 14px;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.site-footer__bottom p {
    color: #ebdff4;
    font-size: 14px;
}

.footer__links li {
      margin-bottom: 8px;
    font-size: 14px;
}



.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.9;
    flex-wrap: wrap;
    gap: 10px;
}

/* Floating tags on the welcome photo */


.welcome-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 3;

}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-2deg);
    }
}

.tjBalloonBob {
    animation: 1.6s ease-in-out infinite wiggle;
}

.welcome-tag--top {

    top: -16px;

    left: -26px;

    background: linear-gradient(90deg, #ff6cc7 0%, #f23fa0 100%);

    color: #fff;

    transform: rotate(-8deg);

    box-shadow: 0 8px 20px rgba(240, 60, 160, 0.4);
    rotate: -6deg;
    animation:
        tjBalloonBob 4.6s ease-in-out infinite,
        wiggle 1.6s ease-in-out infinite;
}

.welcome-tag--bottom {
    bottom: -16px;
    right: -18px;
    background: #fff;
    color: var(--tj-purple);
    border: 2px solid var(--tj-purple);
    box-shadow: 0 8px 20px rgba(43, 17, 64, 0.16);
    animation-delay: 1.4s;
    font-size: 14px;
}

@media (max-width: 640px) {

    .welcome-tag--top {
        left: 8px;
        top: -12px;
    }

    .welcome-tag--bottom {
        right: 8px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .welcome-tag {
        animation: none;
    }

}



@media (max-width: 780px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1;
    }

    .site-footer__bottom p {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* ==========================================================================
   Reviews Marquee
   ========================================================================== */
.reviews-marquee {
    padding: 40px 0 40px;
    background: #f7e8ff;
    overflow: hidden;
        border-bottom: 1px solid #ebdff4;
}
.reviews-marquee__title svg {
    fill: #ffd400;
    stroke: #ffd400;
}
.reviews-marquee__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.reviews-marquee__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--tj-purple);
}

.reviews-marquee__subtitle {
   margin: 0;
    font-size: 14px;
    color: #675d7c;
}

.reviews-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f5b301;
    line-height: 1;
}

.reviews-stars .is-empty {
    color: #e3d7ef;
}

/* The viewport clips; the track is what moves. */
.reviews-marquee__viewport {
    overflow: hidden;
    /* Fade the strip out at both edges so cards enter and leave softly
       instead of being visibly chopped off. */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.reviews-marquee__track {
    display: flex;
    width: max-content;
    animation: tjaysfun-marquee var(--tjaysfun-marquee-speed, 45s) linear infinite;
}

.reviews-marquee--reverse .reviews-marquee__track {
    animation-direction: reverse;
}

.reviews-marquee--pause-hover .reviews-marquee__track:hover {
    animation-play-state: paused;
}

/* Keyboard users tabbing through the cards need it to stop too. */
.reviews-marquee__track:focus-within {
    animation-play-state: paused;
}

.reviews-marquee__group {
    display: flex;
    gap: 20px;
    margin: 0;
    /* Must equal the gap above: this is the space between the last card of one
       copy and the first card of the next, and it is included in the width the
       keyframe shifts by. */
    padding: 0 20px 0 0;
    list-style: none;
    flex: 0 0 auto;
}

/* Each copy is identical, so shifting by exactly one copy's width lands on the
   next copy and the loop is invisible.

   --tjaysfun-marquee-distance is set in px by reviews-marquee.js after it
   measures a copy against the viewport. The calc() fallback covers the moment
   before that runs (and the case where JS fails): it divides the track by the
   number of copies the template rendered, which is correct but only seamless
   while the remaining copies are wider than the screen. */
@keyframes tjaysfun-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(var(--tjaysfun-marquee-distance, calc(100% / var(--tjaysfun-marquee-groups, 2))) * -1), 0, 0);
    }
}

.review-card {
    flex: 0 0 auto;
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--tj-white);
    border-radius: 24px;
       box-shadow: 0 6px 18px rgb(43 17 64 / 10%);
           border: 1px solid #ebdff4;
}
.reviews-stars svg {
    fill: #ffd400;
    stroke: #ffd400;
}
.review-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.review-card__badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--tj-purple);
    text-transform: uppercase;
}

.review-card__quote-mark {
        margin-left: auto;
    color: #ece0f7;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
}

.review-card__quote {
       margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #1c0934;
    border: none;
    padding: 0;
}

.review-card__footer {
      display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 0;
}

.review-card__name {
     font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: #1c0934;
}

.review-card__role {
 font-size: 12px;
    color: #675d7c;
    text-align: right;
    font-weight: 600;
}

/* Someone who has asked for reduced motion gets a normal scrollable row
   rather than a moving animation. */
@media (prefers-reduced-motion: reduce) {
    .reviews-marquee__viewport {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .reviews-marquee__track {
        animation: none;
    }

    /* The duplicate copies are only there to make the loop seamless. */
    .reviews-marquee__group[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 780px) {
    .reviews-marquee {
        padding: 26px 0 32px;
    }

    .reviews-marquee__header {
        margin-bottom: 16px;
    }

    .reviews-marquee__title {
        font-size: 17px;
    }

    .review-card {
        width: 260px;
    }
}

/* ==========================================================================
   Accessibility helper
   ========================================================================== */
/* Visible to screen readers only. Used by the menu toggle and table captions. */
.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    clip-path: none;
    display: block;
    height: auto;
    width: auto;
    top: 5px;
    left: 5px;
    padding: 15px 23px 14px;
    background: #fff;
    color: var(--tj-purple);
    font-size: 14px;
    z-index: 100000;
}

/* ==========================================================================
   Shop — listing page
   ========================================================================== */
.shop-hero {
    background: #f7eefe;
    padding: 46px 0 40px;
    text-align: center;
}

.shop-hero__title {
    font-family: "Fredoka", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    margin: 14px 0 10px;
    color: var(--tj-text);
}
.single-product .site-main.woocommerce-main {
       padding: 64px 0 0;
    background: #fdfaff;
}
.shop-hero__description {
    max-width: 620px;
    margin: 0 auto;
    color: #6b5a7d;
    font-size: 15px;
    line-height: 1.6;
}

.shop-breadcrumb {
    font-size: 14px;
    color: var(--tj-purple);
    font-weight: 600;
}

.shop-breadcrumb a {
    color: #675d7c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.shop-breadcrumb a:hover {
       text-decoration: none;
    color: var(--tj-purple);
}

.shop-breadcrumb__sep {
    margin: 0 7px;
    color: #787878;
    font-weight: 600;
    font-size: 14px;
}

.shop-layout {
    padding: 40px 0 72px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.woocommerce-result-count {
    margin: 0;
    font-size: 13px;
    color: #7a6a88;
}

.woocommerce-ordering select {
    padding: 9px 12px;
    border: 1px solid #e2d5ef;
    border-radius: 10px;
    background: var(--tj-white);
    font: inherit;
    font-size: 13px;
    color: var(--tj-text);
}

/* WooCommerce outputs the loop as a <ul>; the theme lays it out as a grid. */
.woocommerce ul.products,
ul.products {
    display: grid;
    grid-template-columns: repeat(var(--tj-shop-columns, 3), minmax(0, 1fr));
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--tj-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(43, 17, 64, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(43, 17, 64, 0.13);
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f1e8f9;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #efe2fb 0%, #fbe6f4 100%);
}

.product-card__flash {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 5px 11px;
    border-radius: var(--tj-radius);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 18px 20px 20px;
    flex: 1 1 auto;
}

.product-card__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    font-family: "Fredoka", sans-serif;
}

.single-product-layout__inner img.zoomImg {
    width: 100% !important;
    height: 100% !important;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    width: 100% !important;
}

.product-card__title a {
    color: var(--tj-text);
    text-decoration: none;
}

.product-card__title a:hover {
    color: var(--tj-purple);
}

.product-card__excerpt {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #6b5a7d;
}

.product-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 4px;
}

.product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--tj-magenta);
}

.product-card__price-label,
.single-product__price-label,
.price-from-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9a8bab;
}

.product-card__price del {
    color: #b3a4c2;
    font-weight: 400;
    font-size: 14px;
    margin-right: 4px;
}

.product-card__tiers {
    font-size: 11.5px;
    color: #9a8bab;
}

.product-card__cta {
    align-self: flex-start;
    margin-top: 6px;
    font-size: 13px;
    padding: 10px 18px;
}

.shop-empty {
    text-align: center;
    padding: 60px 20px 80px;
}

.shop-empty h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 26px;
    margin: 0 0 10px;
}

.shop-empty p {
    color: #6b5a7d;
    max-width: 460px;
    margin: 0 auto 22px;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
        flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    background: var(--tj-white) !important;
    border: 1px solid #e2d5ef !important;
    color: var(--tj-text) !important;
    text-decoration: none;
    font-size: 14px;
}

.woocommerce-pagination span.current {
    background: var(--tj-purple) !important;
    border-color: var(--tj-purple) !important;
    color: var(--tj-white) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   Shop — product detail
   ========================================================================== */

.single-product-layout__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    padding: 26px 0 20px;
        max-width: 1152px;
    align-items: start;
        z-index: 2;
}

.single-product__media img {
    border-radius: 28px;
    display: block;
    width: 100%;
    height: auto;
        box-shadow: 0 0 40px rgb(100 7 175 / 32%) !important;
}

.single-product__media .flex-viewport,
.single-product__media .woocommerce-product-gallery {
    border-radius: 16px;
}

.single-product__media .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    margin: 12px 0 0 !important;
    padding: 0;
}

.single-product__media .flex-control-thumbs img {
    height: 89px !important;
    object-fit: cover;
}

.single-product__media .flex-control-thumbs li {
    width: 100% !important;
}

.single-product__media .flex-control-thumbs img {
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.75;
}

.single-product__media .flex-control-thumbs img.flex-active,
.single-product__media .flex-control-thumbs img:hover {
    opacity: 1;
}

.single-product__title {
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--tj-text);
    font-weight: bold;
}

.single-product__price {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    color: var(--tj-magenta);
}

.single-product__short {
    color: #5a4a6c;
    font-size: 15px;
    line-height: 1.65;
}

.single-product__short p {
    margin: 0 0 12px;
}

.single-product__enquire-jump {
    margin-top: 22px;
}

.single-product__meta {
    margin: 18px 0 0;
    font-size: 12.5px;
    color: #9a8bab;
}

.single-product__meta a {
    color: var(--tj-purple);
    text-decoration: none;
}

/* Hire pricing table */
.hire-pricing {
    margin-top: 24px;
    padding: 20px 22px;
    background: #faf5ff;
    border: 1px solid #eadcf8;
    border-radius: 16px;
}

.hire-pricing__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: "Fredoka", sans-serif;
    font-size: 17px;
    color: var(--tj-purple);
}

.hire-pricing__table {
    width: 100%;
    border-collapse: collapse;
}

.hire-pricing__table thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9a8bab;
    padding: 0 0 8px;
    border-bottom: 1px solid #eadcf8;
}

.hire-pricing__table thead th:last-child,
.hire-pricing__price {
    text-align: right;
}

.hire-pricing__table tbody th {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--tj-text);
    padding: 11px 12px 11px 0;
    border-bottom: 1px solid #f1e7fa;
}

.hire-pricing__table tbody tr:last-child th,
.hire-pricing__table tbody tr:last-child td {
    border-bottom: none;
}

.hire-pricing__label {
    display: block;
}

.hire-pricing__note {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #9a8bab;
    margin-top: 2px;
}

.hire-pricing__price {
    padding: 11px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--tj-magenta);
    white-space: nowrap;
    border-bottom: 1px solid #f1e7fa;
    vertical-align: top;
}

.hire-pricing__poa {
    font-weight: 600;
    font-size: 13px;
    color: #7a6a88;
}

.hire-pricing__terms {
    margin: 14px 0 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #7a6a88;
}

/* Product tabs */
.woocommerce-tabs {
    padding: 34px 0 10px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0 0 2px;
    border-bottom: 1px solid #eadcf8;
    flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    color: #7a6a88;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.woocommerce-tabs ul.tabs li.active a {
    background: #faf5ff;
    color: var(--tj-purple);
}

.woocommerce-tabs .panel h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    margin: 0 0 12px;
}

.woocommerce-tabs .panel {
    color: #5a4a6c;
    line-height: 1.7;
    font-size: 15px;
}

/* Related products */
.related.products {
    padding: 20px 0 60px;
}

.related.products>h2,
.up-sells>h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 24px;
    margin: 0 0 22px;
    color: var(--tj-text);
}

/* ==========================================================================
   Hire enquiry form
   ========================================================================== */
.enquiry-section {
    background: #f7eefe;
    padding: 52px 0 60px;
}

.enquiry-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: start;
}

.enquiry-section__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--tj-text);
}

.enquiry-section__blurb {
    margin: 0 0 16px;
    color: #6b5a7d;
    font-size: 14.5px;
    line-height: 1.65;
}

.enquiry-section__phone {
    margin: 0;
    font-size: 14px;
    color: #6b5a7d;
}

.enquiry-section__phone a {
    color: var(--tj-purple);
    font-weight: 700;
    text-decoration: none;
}

.enquiry-form-wrap {
    background: var(--tj-white);
    border-radius: 18px;
    padding: 26px 28px 28px;
    box-shadow: 0 8px 24px rgba(43, 17, 64, 0.09);
}

.enquiry-notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.55;
}

.enquiry-notice--success {
    background: #e8f8ee;
    border: 1px solid #b7e4c8;
    color: #1e6b3a;
}

.enquiry-notice--error {
    background: #fdeaea;
    border: 1px solid #f3bdbd;
    color: #9c2626;
}

.enquiry-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.enquiry-form__field {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.enquiry-form__field--full {
    grid-column: 1 / -1;
}

.enquiry-form__field label {
    font-size: 12.5px;
    font-weight: 600;
    color: #5a4a6c;
}

.enquiry-form__required {
    color: var(--tj-magenta);
}

.enquiry-form__field input,
.enquiry-form__field select,
.enquiry-form__field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #e2d5ef;
    border-radius: 10px;
    background: #fdfaff;
    font: inherit;
    font-size: 14px;
    color: var(--tj-text);
}

.enquiry-form__field input:focus,
.enquiry-form__field select:focus,
.enquiry-form__field textarea:focus {
    outline: none;
    border-color: var(--tj-purple);
    box-shadow: 0 0 0 3px rgba(106, 31, 208, 0.12);
}

.enquiry-form__field textarea {
    resize: vertical;
    min-height: 92px;
}

/* Off-screen rather than display:none — some bots skip hidden fields. */
.enquiry-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.enquiry-form__note {
    margin: 16px 0 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #8a7a9b;
}

.enquiry-form__actions {
    margin: 18px 0 0;
}

.enquiry-form__actions button {
    border: none;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 980px) {

    .single-product-layout__inner,
    .enquiry-section__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .woocommerce ul.products,
    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pdp-surface .shop-breadcrumb {
    padding: 0;
}
}

@media (max-width: 620px) {
    .shop-hero {
        padding: 32px 0 28px;
    }

    .shop-hero__title {
        font-size: 28px;
    }

    .single-product__title {
        font-size: 26px;
    }

    .woocommerce ul.products,
    ul.products {
        grid-template-columns: minmax(0, 1fr);
    }

    .enquiry-form__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .enquiry-form-wrap {
        padding: 20px 18px 22px;
    }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-page {
    padding: 44px 0 70px;
}

.contact-page__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 54px;
    align-items: start;
}

.contact-page__inner--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 820px;
}

.contact-page__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--tj-magenta);
}

.contact-page__intro,
.contact-page__content p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.75;
    color: #4a3a5c;
}

.contact-page__form-intro {
    margin: 26px 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a3a5c;
}

/* Contact methods row */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 38px;
    list-style: none;
    margin: 24px 0 4px;
    padding: 0;
}

.contact-method a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--tj-purple);
    font-weight: 700;
    font-size: 15px;
}

.contact-method a:hover .contact-method__text {
    text-decoration: underline;
}

.contact-method__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ede1fa;
    color: var(--tj-purple);
    flex: 0 0 auto;
}

.contact-method__icon--whatsapp {
    background: #e8f8ec;
    color: #25d366;
}

.contact-method__icon--mail {
    background: #ede1fa;
    color: var(--tj-purple);
}

/* Sidebar */
.contact-page__sidebar {
    position: sticky;
    top: 24px;
}

.contact-sidebar__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    margin: 0 0 16px;
    color: var(--tj-magenta);
}

.contact-sidebar__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tj-magenta);
    color: var(--tj-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 16px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.contact-sidebar__download:hover {
    background: #c01a83;
    color: var(--tj-white);
}

.contact-notes {
    margin-top: 26px;
}

.contact-note+.contact-note {
    margin-top: 22px;
}

.contact-note__title {
    margin: 0 0 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tj-text);
}

.contact-note__text p {
    margin: 0 0 8px;
    font-size: 12.5px;
    line-height: 1.65;
    color: #5a4a6c;
}

.contact-note__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Contact Form 7
   ========================================================================== */
.contact-form-wrap {
    margin-top: 6px;
}

.contact-form-notice {
    padding: 14px 16px;
    background: #fff8e5;
    border: 1px solid #f0dca8;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #7a5c00;
}

/* Field rows laid out by the wrapper classes in the CF7 form markup. */
.tjf-form__row {
    display: block;
    margin-bottom: 5px;
}

.tjf-form__row--single {
    grid-template-columns: minmax(0, 1fr);
}

.tjf-form__field {
    display: flex;
    flex-direction: column;
}

.tjf-form__label {
    font-size: 12.5px;
    font-weight: 600;
    color: #3d2d4f;
    margin-bottom: 5px;
}

.tjf-form__required {
    color: #d81b60;
    font-size: 11px;
    font-weight: 500;
}

/* The small grey caption under a field, e.g. "First", "Postcode". */
.tjf-form__hint {
    font-size: 11px;
    color: #9a8bab;
    margin-top: 4px;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="date"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #c9b8da;
    border-radius: 3px;
    background: var(--tj-white);
    font: inherit;
    font-size: 14px;
    color: var(--tj-text);
}
.enquiry-card__cf7 input[type="text"]:focus-visible,
.enquiry-card__cf7 input[type="email"]:focus-visible,
.enquiry-card__cf7 input[type="tel"]:focus-visible,
.enquiry-card__cf7 textarea:focus-visible {
    outline: none;
    border: 0;
    box-shadow: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--tj-magenta);
    box-shadow: 0 0 0 3px rgba(224, 36, 155, 0.12);
}

.contact-form-wrap textarea {
    min-height: 150px;
    resize: vertical;
}

/* CF7 wraps every field in a span that would otherwise break the grid. */
.contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrap input[type="submit"] {
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    border: none;
    border-radius: var(--tj-radius);
    padding: 12px 30px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.contact-form-wrap input[type="submit"]:hover {
    filter: brightness(1.06);
}

.contact-form-wrap input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: progress;
}

/* Validation and response messages */
.contact-form-wrap .wpcf7-not-valid-tip {
    display: block;
    margin-top: 5px;
    font-size: 11.5px;
    color: #c0261f;
}

.contact-form-wrap .wpcf7-not-valid {
    border-color: #d9534f;
}

.contact-form-wrap .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 13px 16px !important;
    border: 1px solid #e2d5ef !important;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.55;
}

.contact-form-wrap form.sent .wpcf7-response-output {
    background: #e8f8ee;
    border-color: #b7e4c8 !important;
    color: #1e6b3a;
}

.contact-form-wrap form.invalid .wpcf7-response-output,
.contact-form-wrap form.unaccepted .wpcf7-response-output,
.contact-form-wrap form.failed .wpcf7-response-output,
.contact-form-wrap form.aborted .wpcf7-response-output {
    background: #fdeaea;
    border-color: #f3bdbd !important;
    color: #9c2626;
}

.contact-form-wrap .wpcf7-spinner {
    margin: 0 0 0 10px;
    vertical-align: middle;
}

.contact-form-wrap .wpcf7-list-item {
    margin: 0 16px 0 0;
}

/* reCAPTCHA / Turnstile widget sits above the button. */
.contact-form-wrap .tjf-form__captcha {
    margin: 4px 0 16px;
}

.contact-form-wrap .grecaptcha-badge {
    box-shadow: none;
}

@media (max-width: 940px) {
    .contact-page__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .contact-page__sidebar {
        position: static;
        padding-top: 26px;
        border-top: 1px solid #eadcf8;
    }
}

@media (max-width: 620px) {
    .contact-page {
        padding: 30px 0 50px;
    }

    .contact-page__heading {
        font-size: 25px;
    }

    .contact-methods {
        gap: 12px 20px;
    }

    .tjf-form__row {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
}

/* ==========================================================================
   Latest Offers page
   ========================================================================== */
.offers-page {
    padding: 44px 0 70px;
}

.offers-page__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 8px;
    text-align: center;
    color: var(--tj-purple);
}

.offers-page__intro {
    max-width: 620px;
    margin: 0 auto 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #6b5a7d;
}

/* A narrow, left-aligned reading column centred on the page: long bullet
   lists are much easier to scan this way than centred text. */
.offers-page__body {
    max-width: 660px;
    margin: 34px auto 0;
}

.offer-block+.offer-block {
    margin-top: 34px;
}

.offer-block__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 14px;
    color: var(--tj-text);
}

.offer-block__content {
    font-size: 13px;
    line-height: 1.75;
    color: #3d3348;
}

.offer-block__content p {
    margin: 0 0 14px;
}

/* Sub-headings inside an offer, e.g. "Mascots available". */
.offer-block__content h2,
.offer-block__content h3,
.offer-block__content h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 22px 0 10px;
    color: var(--tj-text);
}

.offer-block__content strong {
    font-weight: 700;
}

.offer-block__content ol,
.offer-block__content ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.offer-block__content li {
    margin-bottom: 7px;
}

/* Nested lists sit in from their parent step. */
.offer-block__content li>ul,
.offer-block__content li>ol {
    margin: 8px 0 4px;
    padding-left: 20px;
}

.offer-block__content ol>li::marker {
    font-weight: 600;
    color: var(--tj-purple);
}

.offer-block__content ul>li::marker {
    color: var(--tj-purple);
}

.offer-block__content a {
    color: var(--tj-purple);
}

.offers-page__closing {
    margin: 30px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--tj-text);
}

.offers-page__notice {
    padding: 14px 16px;
    background: #fff8e5;
    border: 1px solid #f0dca8;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #7a5c00;
}

.offers-page__cta {
    margin-top: 44px;
    text-align: center;
}

.offers-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    background: #9b2d8f;
    color: var(--tj-white);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.offers-cta-btn:hover,
.offers-cta-btn:focus-visible {
    background: #7d1f74;
    color: var(--tj-white);
    transform: translateY(-1px);
}

@media (max-width: 620px) {
    .offers-page {
        padding: 30px 0 50px;
    }

    .offers-page__heading {
        font-size: 25px;
    }

    .offers-page__body {
        margin-top: 24px;
    }

    .offers-page__cta {
        margin-top: 32px;
    }

    .offers-cta-btn {
        display: block;
    }
}

/* ==========================================================================
   404 / not found
   ========================================================================== */
.error-404 {
    text-align: center;
    padding: 70px 20px 90px;
}

.error-404__code {
    display: block;
    font-family: "Fredoka", sans-serif;
    font-size: 84px;
    line-height: 1;
    font-weight: 800;
    background: var(--tj-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.error-404__title {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    margin: 12px 0 10px;
}

.error-404__text {
    color: #6b5a7d;
    max-width: 480px;
    margin: 0 auto 26px;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.error-404__search {
    margin: 34px auto 0;
    max-width: 420px;
}

.error-404__search input[type="search"] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e4d8ef;
    border-radius: var(--tj-radius);
    font-family: inherit;
    font-size: 14px;
}

.error-404__search input[type="search"]:focus {
    outline: 2px solid var(--tj-magenta);
    outline-offset: 1px;
}

.error-404__search label {
    display: block;
}

.error-404__search input[type="submit"] {
    margin-top: 10px;
    padding: 11px 26px;
    border: 0;
    border-radius: var(--tj-radius);
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.error-404__admin {
    margin-top: 34px;
    font-size: 13px;
    color: #8a7a99;
}

.error-404__admin a {
    color: var(--tj-magenta);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .error-404 {
        padding: 46px 20px 60px;
    }

    .error-404__code {
        font-size: 62px;
    }

    .error-404__title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Blog — listing, archives and search
   ========================================================================== */
.blog-layout {
    padding: 44px 0 70px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Post card ---------------------------------------------------------------- */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--tj-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgb(43 17 64 / 24%);
          transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
       position: relative;
    cursor: pointer;
        border: 1px solid #ebdff4;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.post-card__title a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.post-card__media,
.post-card__more,
.post-card__cat {
    position: relative;
    z-index: 2;
}
.post-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 60px -20px 
color-mix(in oklab, #6407af 45%, transparent) !important;
}

.post-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: #f4ebfb;
    overflow: hidden;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.04);
}

.post-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #c9b2de;
}

.post-card__cat {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: var(--tj-purple);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--tj-radius);
    box-shadow: 0 2px 8px rgba(43, 17, 64, 0.16);
}

.post-card__cat svg {
    width: 16px;
}

.post-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 22px;
}

.post-card__title {
    font-family: "Fredoka", sans-serif;
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 8px;
}

.post-card__title a {
    color: var(--tj-text);
    text-decoration: none;
    font-weight: bold;
}

.blog-listing .post-card:hover .post-card__title a {
    color: var(--tj-purple);
}

.post-card__title a:hover {
    color: var(--tj-purple);
}

.post-card__meta {
    font-size: 13px;
    color: #8a7a99;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.post-card__dot {
    opacity: 0.6;
}

.post-card__excerpt {
    font-size: 14.5px;
    color: #56466a;
    line-height: 1.6;
    margin: 0 0 16px;
}

.post-card__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    color: var(--tj-purple);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.post-card__more svg {
    width: 16px;
}
.post-card:hover a.post-card__more svg {
        transition: transform 0.2s ease;
    margin-left: 3px;
}
.post-card__more:hover {
    gap: 9px;
}

/* Featured post ------------------------------------------------------------ */
.post-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--tj-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 17, 64, 0.1);
    margin-bottom: 34px;
}

.post-feature__media {
    display: block;
    min-height: 280px;
    background: #f4ebfb;
}

.post-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-feature__body {
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.post-feature__flag {
    display: inline-block;
    background: #f7eefe;
    color: var(--tj-purple);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--tj-radius);
    margin-bottom: 12px;
}

.post-feature__title {
    font-family: "Fredoka", sans-serif;
    font-size: 28px;
    line-height: 1.22;
    margin: 0 0 10px;
}

.post-feature__title a {
    color: var(--tj-text);
    text-decoration: none;
}

.post-feature__title a:hover {
    color: var(--tj-magenta);
}

.post-feature__cat {
    color: var(--tj-magenta);
    font-weight: 600;
}

.post-feature__excerpt {
    color: #56466a;
    line-height: 1.65;
    margin: 0 0 20px;
}

/* Empty states ------------------------------------------------------------- */
.blog-empty {
    text-align: center;
    padding: 50px 20px 60px;
}

.blog-empty__title {
    font-family: "Fredoka", sans-serif;
    font-size: 26px;
    margin: 0 0 10px;
}

.blog-empty__text {
    color: #6b5a7d;
    max-width: 460px;
    margin: 0 auto 22px;
}

.blog-search {
    margin: 20px auto 0;
    max-width: 420px;
}

.blog-search input[type="search"] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e4d8ef;
    border-radius: var(--tj-radius);
    font-family: inherit;
    font-size: 14px;
}

.blog-search input[type="submit"] {
    margin-top: 10px;
    padding: 11px 26px;
    border: 0;
    border-radius: var(--tj-radius);
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

/* ==========================================================================
   Blog — single post
   ========================================================================== */
.post-hero {
    background: #f7eefe;
    padding: 34px 0 38px;
}

.post-hero__inner {
    max-width: 1280px;
}

.post-breadcrumb {
    font-size: 13px;
    color: #8a7a99;
    margin-bottom: 14px;
}

.post-breadcrumb a {
    color: #675d7c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.post-breadcrumb a:hover {
    color: var(--tj-magenta);
}

.post-breadcrumb__sep {
    margin: 0 7px;
    opacity: 0.5;
}

.post-hero__title {
    font-family: "Fredoka", sans-serif;
    font-size: 34px;
    line-height: 1.16;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--tj-text);
}
.post-single__content h1 {
    font-size: 18px;
    text-align: left !important;
}
.post-single__content p {
    font-size: 16px;
    text-align: left !important;
    font-family: 'Poppins';
}
.post-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #6b5a7d;
}

.post-hero__author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--tj-text);
}

.post-hero__avatar {
    border-radius: 50%;
}

/* Post body ---------------------------------------------------------------- */
.post-single__inner {
    max-width: 1280px;
    padding-top: 36px;
}

.post-single__thumb {
    margin: 0 0 20px;
}

.post-single__thumb img {
     height: auto;
    width: 100%;
    border-radius: 18px;
    display: block;
}

.post-single__thumb figcaption {
    font-size: 13px;
    color: #8a7a99;
    text-align: center;
    margin-top: 9px;
}

.post-single__content {
    font-size: 16.5px;
    line-height: 1.75;
    color: #3f3350;
}

.post-single__content>*+* {
    margin-top: 20px;
}

.post-single__content h2 {
    font-family: 'Poppins';
    font-size: 18px;
    margin-top: 7px;
    color: var(--tj-text);
    margin-bottom: 0;
    font-weight: 600;
    text-align: left !important;
}

.post-single__content h3 {
  font-family: 'Poppins';
    font-size: 18px;
    margin-top: 4px;
    color: var(--tj-text);
    font-weight: 600;
}

.post-single__content a {
    color: var(--tj-magenta);
    text-decoration: underline;
}

.post-single__content ul,
.post-single__content ol {
    padding-left: 22px;
}

.post-single__content ul {
    list-style: disc;
}

.post-single__content ol {
    list-style: decimal;
}

.post-single__content li+li {
    margin-top: 7px;
}

.post-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.post-single__content blockquote {
    border-left: 4px solid var(--tj-magenta);
    background: #faf6fe;
    padding: 16px 22px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #56466a;
}

.post-single__content blockquote p:last-child {
    margin-bottom: 0;
}

.post-single__content table {
    width: 100%;
    border-collapse: collapse;
}

.post-single__content th,
.post-single__content td {
    border: 1px solid #eadcf5;
    padding: 9px 12px;
    text-align: left;
}

/* Tags and share ----------------------------------------------------------- */
.post-tags,
.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 34px;
}

.post-tags__label,
.post-share__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a7a99;
    margin-right: 3px;
}

.post-tags__tag {
    background: #f7eefe;
    color: var(--tj-purple);
    font-size: 13px;
    padding: 6px 13px;
    border-radius: var(--tj-radius);
    text-decoration: none;
}

.post-tags__tag:hover {
    background: var(--tj-purple);
    color: var(--tj-white);
}

.post-share {
    padding-top: 22px;
    border-top: 1px solid #eee3f7;
}

.post-share__btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    border: 1px solid #e2d5ef;
    border-radius: var(--tj-radius);
    color: var(--tj-text);
    text-decoration: none;
}

.post-share__btn:hover {
    border-color: var(--tj-magenta);
    color: var(--tj-magenta);
}

/* Previous / next ---------------------------------------------------------- */
.post-nav {
    margin-top: 46px;
    padding: 28px 0;
    background: #faf6fe;
    border-top: 1px solid #efe4f8;
    border-bottom: 1px solid #efe4f8;
}

.post-nav__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-nav__link {
    text-decoration: none;
    display: block;
}

.post-nav__link--next {
    text-align: right;
}

.post-nav__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tj-magenta);
    margin-bottom: 5px;
}

.post-nav__title {
    display: block;
    font-weight: 600;
    color: var(--tj-text);
    line-height: 1.35;
}

.post-nav__link:hover .post-nav__title {
    color: var(--tj-magenta);
}

/* Related ------------------------------------------------------------------ */
.post-related {
    padding: 64px 0 64px;
    position: relative;
}

.post-related__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 34px;
    margin: 0 0 24px;
    text-align: center;
        font-weight: bold;
}

/* Comments ----------------------------------------------------------------- */
.post-comments {
    max-width: 1280px;
    padding: 54px 20px 70px;
}

.comments-area__title {
    font-family: "Fredoka", sans-serif;
    font-size: 23px;
    margin: 0 0 20px;
}

.comment-list {
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
}

.comment-list .children {
    list-style: none;
    margin-left: 26px;
    padding: 0;
}

.comment-body {
    background: #faf6fe;
    border: 1px solid #efe4f8;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.comment-author img {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 9px;
}

.comment-author .fn {
    font-weight: 700;
    font-style: normal;
}

.comment-metadata {
    font-size: 12.5px;
    color: #8a7a99;
    margin: 5px 0 10px;
}

.comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.comment-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e4d8ef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14.5px;
    margin-bottom: 14px;
}

.comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.comment-notes,
.comment-form-cookies-consent label {
    font-size: 13px;
    color: #8a7a99;
    font-weight: 400;
}

.comment-form .submit {
    border: 0;
    cursor: pointer;
}

.comments-area__closed {
    font-size: 14px;
    color: #8a7a99;
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 980px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-feature {
        grid-template-columns: 1fr;
    }

    .post-feature__media {
        min-height: 220px;
    }

    .post-feature__body {
        padding: 26px 24px 30px;
    }
}

@media (max-width: 700px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        padding: 32px 0 54px;
    }

    .post-hero__title {
        font-size: 27px;
    }

    .post-feature__title {
        font-size: 22px;
    }

    .post-single__content {
        font-size: 16px;
    }

    .post-single__content h2 {
        font-size: 22px;
    }

    .post-nav__inner {
        grid-template-columns: 1fr;
    }

    .post-nav__link--next {
        text-align: left;
    }

    .post-related {
        padding-top: 40px;
    }

    .post-comments {
        padding: 40px 20px 54px;
    }
}

/* ==========================================================================
   Gradient hero band (Latest Offers hero, Games band, Contact hero)
   ========================================================================== */
.tj-hero-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, oklch(42% .22 300) 0%, #ad1ac9 50%, #e934be 100%);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 92px 0 92px;
}
.tj-hero-band .pointer-events-none {
    z-index: 2;
}
.tj-hero-band .hero-btn.hero-btn--primary svg {
    width: auto;
}
.tj-hero-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6407afb3 0%, #ad1ac9bd 50%, #e934bec9 100%);
}

/* Scattered confetti, no images needed. */
.tj-hero-band__confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 3px at 6% 30%, rgba(255, 210, 70, 0.9) 98%, transparent),
        radial-gradient(circle 3px at 14% 72%, rgba(255, 120, 190, 0.9) 98%, transparent),
        radial-gradient(circle 2px at 24% 18%, rgba(120, 230, 255, 0.9) 98%, transparent),
        radial-gradient(circle 3px at 36% 84%, rgba(140, 240, 160, 0.9) 98%, transparent),
        radial-gradient(circle 2px at 52% 12%, rgba(120, 230, 255, 0.9) 98%, transparent),
        radial-gradient(circle 3px at 64% 78%, rgba(255, 210, 70, 0.9) 98%, transparent),
        radial-gradient(circle 2px at 76% 26%, rgba(255, 255, 255, 0.8) 98%, transparent),
        radial-gradient(circle 3px at 86% 64%, rgba(140, 240, 160, 0.9) 98%, transparent),
        radial-gradient(circle 3px at 94% 38%, rgba(255, 120, 190, 0.9) 98%, transparent);
}

.tj-hero-band__inner {
    position: relative;
    z-index: 2;
    max-width: 770px;
}

.tj-hero-band .hero-badge {
    margin-bottom: 18px;
    padding: 5px 16px;
    text-shadow: 0 2px 12px #140628b3, 0 1px 2px #0009;
}

.tj-hero-band .hero-badge svg {
    width: 16px;
}

.offers-hero .tj-hero-band__title {
    font-size: 60px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.offers-hero .tj-hero-band__title {
    font-size: 60px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.tj-hero-band.offers-hero .tj-hero-band__sub {
    font-size: 18px;
    max-width: 768px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.tj-hero-band.offers-hero .hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
}

.tj-hero-band__title {
    font-family: "Fredoka", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--tj-white);
    margin: 0 0 14px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.tj-hero-band__sub {
  color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.65;
    max-width: 768px;
    margin: 0 auto 26px;
    text-shadow: 0 2px 12px #140628b3, 0 1px 2px #0009;
}

.tj-hero-band .hero-btn--primary {
  font-size: 16px;
    text-transform: uppercase;
    padding: 16px 32px;
}

/* Floating balloons pinned to the bottom edge of the band. */
.tj-balloon {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 50px;
    border-radius: 50% 50% 48% 48%;
    pointer-events: none;
}

.tj-balloon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1px;
    height: 140px;
    background: rgba(255, 255, 255, 0.65);
}

.tj-balloon--yellow {
    background: radial-gradient(circle at 32% 28%, #ffe98a, #f7c948 65%, #e2a921);
}

.tj-balloon--pink {
    background: radial-gradient(circle at 32% 28%, #ff9ccb, #f75fa8 65%, #d63c8c);
    width: 46px;
    height: 58px;
}

.tj-balloon--small {
    width: 32px;
    height: 40px;
}

/* Offers hero can carry a faint photo behind the gradient. */
.offers-hero {
    background-color: #8b2fd6;
}

/* ==========================================================================
   Latest Offers page
   ========================================================================== */
.offers-steps {
    padding: 64px 0;
    background: #fdfaff;
}

.offers-steps__grid {
    margin-bottom: 0;
    max-width: 1152px;
    margin: auto;
        padding: 0 24px;
}

.package-card--flat {
    box-shadow: 0 8px 24px rgba(43, 17, 64, 0.08);
    border: 1px solid #f0e6f8;
}

.offers-extra {
    padding: 60px 0;
    background: var(--tj-white);
}

.offers-extra__inner {
    max-width: 720px;
}

/* Games band */
.games-band {
    padding: 64px 0 64px;
    background: linear-gradient(135deg, oklch(42% .22 300) 0%, #ad1ac9 50%, #e934be 100%);
}

.games-band__spark {
    display: inline-flex;
    color: var(--tj-white);
    margin-bottom: 12px;
}

.games-band__spark svg {
    display: inline-block;
    animation: sparkZoom 2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes sparkZoom{
0%, 100% {
    opacity: .3;
    transform: scale(.4);
}
50% {
    opacity: 1;
    transform: scale(1);
}
    }



.games-band__title {
    font-family: "Fredoka", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--tj-white);
    margin: 0 0 22px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);}

.games-band__pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.games-band__pill {
    background: var(--tj-white);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--tj-radius);
    box-shadow: 0 4px 12px rgba(43, 17, 64, 0.18);
    color: var(--tj-purple);
}

.games-band__closing {
    color: var(--tj-white);
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 26px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.games-band .hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
}

/* ==========================================================================
   Hire locations strip
   ========================================================================== */
.locations-strip {
    padding: 52px 0 56px;
    background: #f7e8ff;
    text-align: center;
}

.locations-strip__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--tj-purple);
    margin: 0 0 14px;
}

.locations-strip__list {
    max-width: 1024px;
    margin: 0 auto 12px;
    font-size: 16px;
    line-height: 1.75;
    color: #675d7c;
}
.locations-strip__note {
    margin: 0;
    font-size: 14px;
    color: #675d7c;
}

/* ==========================================================================
   Contact page — hero, split layout, enquiry card
   ========================================================================== */
.contact-split {
    padding: 64px 0 64px;
    background: #faf6fd;
}

.contact-split__inner {
    display: grid;
    gap: 44px;
    align-items: start;
    max-width: 1152px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-split__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    color: #1c0f2e;
    margin: 0 0 10px;
    font-weight: bold;
}
.contact-split__intro,
.contact-split__content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: normal;
    color: #675d7c;
}

.contact-split__intro a,
.contact-split__content a {
    color: var(--tj-purple);
}

/* Contact cards — pill-style rows for phones, email, location */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.contact-card,
.contact-card a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card a,
.contact-card--static {
width: 100%;
    background: var(--tj-white);
    border: 1px solid #eee3f7;
    border-radius: 24px;
    padding: 16px;
    font-weight: 800;
    font-size: 16px;
    color: var(--tj-purple);
    box-shadow: 0 4px 14px rgba(43, 17, 64, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card svg {
    stroke: var(--tj-purple);
}

li.contact-card.contact-card--static .contact-card__text {
    font-weight: 600;
    color: #000;
}

.contact-card a:hover {
    box-shadow: 0 8px 20px rgba(43, 17, 64, 0.12);
}

.contact-card--static {
    color: #4a3a5c;
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--tj-magenta);
}

/* Booking form card */
.booking-card {
  background: var(--tj-white);
    border: 1px solid #eee3f7;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 6px 18px rgb(43 17 64 / 8%);
}

.booking-card__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    color: #1c0f2e;
    margin: 0 0 14px;
    font-weight: bold;
}

.booking-card__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tj-purple);
    color: var(--tj-white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--tj-radius);
    margin-bottom: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.booking-card__download svg {
    width: 16px;
}

.booking-card__download:hover {
transform: scale(1.05);
}

.booking-card__note+.booking-card__note {
    margin-top: 16px;
}

.booking-card__note-title {
    font-size: 16px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 0 0 6px;
}

.booking-card__note-text p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: normal;
    color: #675d7c;
}

.booking-card__note-text p:last-child {
    margin-bottom: 0;
}

/* Gradient enquiry card */
.enquiry-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(84, 21, 140, 0.35);
    color: var(--tj-white);
    background: linear-gradient(135deg, #6407af 0%, #ad1ac9 50%, #e934be 100%);
        padding:32px;
    height: 100%;
    border-radius: 28px;
}



.enquiry-card__heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--tj-white);
    margin: 0 0 8px;

}

.enquiry-card__intro {
    position: relative;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 20px;
}

.enquiry-card__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enquiry-card__input {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--tj-white);
    padding: 12px 15px;
    font-family: inherit;
    font-size: 13.5px;
    color: #2b1140;
    box-shadow: inset 0 1px 3px rgba(43, 17, 64, 0.06);
}

.enquiry-card__input::placeholder {
    color: #a394b5;
}

.enquiry-card__input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.45);
}

.enquiry-card__input--area {
    resize: vertical;
    min-height: 110px;
}

.enquiry-card__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--tj-gradient-btn);
    color: var(--tj-white);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: var(--tj-radius);
    box-shadow: 0 8px 20px rgba(43, 8, 70, 0.3);
    margin-top: 4px;
    transition: transform 0.2s ease;
}

.enquiry-card__submit:hover {
    transform: translateY(-2px);
}

.enquiry-card__notice {
    position: relative;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.enquiry-card__notice--success {
    background: rgba(255, 255, 255, 0.94);
    color: #1d6b34;
}

.enquiry-card__notice--error {
    background: rgba(255, 255, 255, 0.94);
    color: #a12040;
}

/* Contact Form 7 dropped inside the card inherits the same look. */
.enquiry-card__cf7 {
    position: relative;
}

.enquiry-card__cf7 input[type="text"],
.enquiry-card__cf7 input[type="email"],
.enquiry-card__cf7 input[type="tel"],
.enquiry-card__cf7 textarea {
      width: 100%;
    border: none;
    border-radius: 20px;
    background: var(--tj-white);
    padding: 12px 15px;
    font-family: inherit;
    font-size: 16px;
    color: #2b1140;
    margin-bottom: 12px;
}
.enquiry-card__cf7 textarea {
    height: 146px;
}
.enquiry-card__cf7 input[type="submit"],
.enquiry-card__cf7 button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer;
    background: #f84fcc;
    color: var(--tj-white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: var(--tj-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: inline-block;
       box-shadow: 0 0 40px rgb(189 80 253 / 20%);
}

.enquiry-card__cf7 input[type="submit"]::before {
    content: "";
    position: absolute;
    left: calc(50% - 85px);
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.8 11.3 2 22l10.7-3.79'/%3E%3Cpath d='M4 3h.01'/%3E%3Cpath d='M22 8h.01'/%3E%3Cpath d='M15 2h.01'/%3E%3Cpath d='M22 20h.01'/%3E%3Cpath d='m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10'/%3E%3Cpath d='m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17'/%3E%3Cpath d='m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7'/%3E%3Cpath d='M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-2.83-2-5 .83-.83 3.07.07 5 2Z'/%3E%3C/svg%3E");

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    pointer-events: none;
    z-index: 5;
}

.enquiry-card__cf7 form p:has(input[type="submit"]) {
    position: relative;
}

.enquiry-card__cf7 form p:has(input[type="submit"])::before {
    content: "";
    position: absolute;
    left: calc(49% - 82px);
    top: 30%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.8 11.3 2 22l10.7-3.79'/%3E%3Cpath d='M4 3h.01'/%3E%3Cpath d='M22 8h.01'/%3E%3Cpath d='M15 2h.01'/%3E%3Cpath d='M22 20h.01'/%3E%3Cpath d='m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10'/%3E%3Cpath d='m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17'/%3E%3Cpath d='m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7'/%3E%3Cpath d='M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-2.83-2-5 .83-.83 3.07.07 5 2Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}

.enquiry-card__cf7 input[type="submit"]:hover {
    transform: scale(1.05);
}

.enquiry-card__cf7 .wpcf7-not-valid-tip {
    color: #ffe1ef;
    font-size: 12px;
    margin: -8px 0 10px;
}

.enquiry-card__cf7 .wpcf7-response-output {
    border: none;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--tj-white);
}

/* ==========================================================================
   Offers / Contact responsive
   ========================================================================== */
@media (max-width: 980px) {
    .contact-split__inner {
        grid-template-columns: 1fr;
    }

    .enquiry-card {
        order: -1;
    }
}

@media (max-width: 640px) {
    .tj-hero-band {
        padding: 56px 0 72px;
    }

    .tj-hero-band__title {
        font-size: 36px !important;
    }

    .games-band__title {
        font-size: 25px;
    }

    .tj-balloon {
        display: none;
    }

    .offers-steps,
    .contact-split {
        padding: 50px 0 60px;
    }

    .enquiry-card {
        padding: 24px 20px 28px;
    }
}

/* ==========================================================================
   Offer step cards — muted list label + gift list (Latest Offers page)
   ========================================================================== */
.package-card__list-label {
    font-size: 14px;
    color: #675d7c;
    margin: 0 0 10px;
}

.package-card__text+.package-card__list-label,
.package-card__text+.package-card__checklist {
    margin-top: 12px;
}

.package-card__checklist--gift li {
    font-size: 14px;
    margin-bottom: 5px;
}

.package-card__checklist--gift svg {
    color: var(--tj-magenta);
}

/* ==========================================================================
   Locations strip sparkles
   ========================================================================== */
.locations-strip {
    position: relative;
    overflow: hidden;
}



.locations-strip .container {
    position: relative;
}

/* ==========================================================================
   Enquiry card polish (contact page form)
   ========================================================================== */

.enquiry-card__heading {
    font-size: 24px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.enquiry-card__heading svg {
    animation:
        tjBalloonBob 4.6s ease-in-out infinite,
        wiggle 1.6s ease-in-out infinite;
}

.enquiry-card__intro {
    font-size: 14px;
    margin-bottom: 18px;
    max-width: inherit;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.enquiry-card__cf7 p br {
    display: none;
}

.enquiry-card__form {
    gap: 13px;
}

.enquiry-card__input {
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 13px;
}

.enquiry-card__input::placeholder {
    color: #9d8fb0;
}

.enquiry-card__input--area {
    min-height: 120px;
}

.enquiry-card__submit {
    background: linear-gradient(90deg, #ff6cc7 0%, #f23fa0 100%);
    box-shadow: 0 10px 24px rgba(40, 6, 66, 0.35);
    padding: 14px 24px;
}

/* Contact Form 7 inside the card: labels and paragraphs kept tidy. */
.enquiry-card__cf7 label {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.enquiry-card__cf7 p {
    margin: 0 0 4px;
}

.enquiry-card__cf7 .wpcf7-form-control-wrap {
    display: block;
}

.enquiry-card__cf7 select {
    width: 100%;
    border: none;
    border-radius: 9px;
    background: var(--tj-white);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 13px;
    color: #2b1140;
    margin-bottom: 12px;
}

.enquiry-card__cf7 .wpcf7-spinner {
    display: block;
    margin: 8px auto 0;
}

/* ==========================================================================
   Shop listing — gradient hero, lavender surface, mini cards
   ========================================================================== */
.tj-balloon--green {
    background: radial-gradient(circle at 32% 28%, #c9f7b3, #8ce36b 65%, #5cbd42);
}

.tj-balloon--orange {
    background: radial-gradient(circle at 32% 28%, #ffce9e, #f79a52 65%, #dd7527);
}

.tj-balloon--lilac {
    background: radial-gradient(circle at 32% 28%, #dcbcff, #b57df2 65%, #8f4fd6);
}

/* Free-floating decorative balloon: no string, sits inside a section. */
.tj-balloon--float::after {
    display: none;
}

.shop-surface {
    position: relative;
    background: #fdfaff;
    padding: 64px 0 72px;
    overflow: hidden;
}

.shop-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 2px at 10% 18%, rgba(247, 201, 72, 0.8) 98%, transparent),
        radial-gradient(circle 2px at 22% 66%, rgba(255, 120, 190, 0.65) 98%, transparent),
        radial-gradient(circle 2px at 48% 30%, rgba(247, 201, 72, 0.6) 98%, transparent),
        radial-gradient(circle 2px at 70% 80%, rgba(255, 120, 190, 0.6) 98%, transparent),
        radial-gradient(circle 2px at 88% 24%, rgba(247, 201, 72, 0.8) 98%, transparent),
        radial-gradient(circle 2px at 94% 62%, rgba(255, 120, 190, 0.65) 98%, transparent);
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    border: none;
        flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    width: 40px;
    height: 40px;
    display: flex;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-surface__inner {
    position: relative;
    max-width: 1080px;
}

.shop-surface__inner li.product-card:hover img {
    transform: scale(1.08);
}

.shop-surface__inner li.product-card img {
    transition: transform 0.5s;
}

.shop-surface .hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 32px;
}

.shop-surface__cta {
    text-align: center;
    margin-top: 46px;
}

.shop-surface__inner li.product-card {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.shop-surface .woocommerce ul.products {
    grid-template-columns: repeat(var(--tj-shop-columns, 4), minmax(0, 1fr));
}

.woocommerce .shop-surface ul.products {
    grid-template-columns: repeat(4, 1fr);
}

.woocommerce .shop-surface ul.products::before {
    display: none;
}

.shop-surface .shop-surface__inner {
    max-width: 1280px;
}

/* Minimal listing card */
.product-card--mini {
    border-radius: 24px;
    border: 1px solid #f0e2fa;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgb(43 17 64 / 13%);
}
.shop-surface .hero-btn--primary svg {
    width: auto;
}
.product-card--mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -20px rgba(100, 7, 175, 0.45);
}

.product-card--mini .product-card__media {
    aspect-ratio: 1 / 0.82;
    background: var(--tj-white);
}

.product-card--mini .product-card__media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.pdp-related .related.products li.product-card:hover img {
    transform: scale(1.08);
}

.container.single-product-layout__inner {
    padding: 20px;
        padding-bottom: 64px;
        position: relative;
}
.single-product__summary {
    z-index: 2;
    position: relative;
}
.product-card__body--mini {
    padding: 14px 14px 16px;
    text-align: center;
}

.product-card__body--mini .product-card__title {
    font-size: 18px;
    margin: 0 0 6px;
}

.product-card__body--mini .product-card__title a {
    color: var(--tj-purple);
        font-weight: bold;
}
.product-card--mini:hover .product-card__details {
    color: var(--tj-purple);
}
.product-card__price--mini {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.product-card__details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #7c6a91;
    transition: color 0.2s ease;
    justify-content: center;
}

.product-card__details:hover {
    color: var(--tj-magenta);
}

/* ==========================================================================
   Product detail page — lavender surface, pill, tagline, tick-list
   ========================================================================== */
.pdp-surface {
    position: relative;
    background: #fdfaff;
    overflow: hidden;
}

.pdp-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 2px at 8% 12%, rgba(247, 201, 72, 0.7) 98%, transparent),
        radial-gradient(circle 2px at 16% 44%, rgba(255, 120, 190, 0.55) 98%, transparent),
        radial-gradient(circle 2px at 40% 8%, rgba(120, 230, 255, 0.65) 98%, transparent),
        radial-gradient(circle 2px at 68% 20%, rgba(255, 120, 190, 0.55) 98%, transparent),
        radial-gradient(circle 2px at 90% 40%, rgba(247, 201, 72, 0.7) 98%, transparent),
        radial-gradient(circle 2px at 82% 74%, rgba(255, 120, 190, 0.5) 98%, transparent);
}

.pdp-surface .tj-balloon--float {
    opacity: 0.9;
}

.pdp-surface .product-breadcrumb-bar {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.pdp-surface .shop-breadcrumb {
      max-width: 1152px;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 28px;
}

.pdp-surface .shop-breadcrumb .breadcrumb_last,
.pdp-surface .shop-breadcrumb span:last-child {
    color: #787878;
    font-weight: 600;
    font-size: 14px;
}

.single-product-layout {
    position: relative;
}

.pdp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fae7ff;
    color: var(--tj-purple);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--tj-radius);
    margin-bottom: 14px;
    transition: background 0.2s ease;
}


.pdp-tagline p {
    font-size: 20px;
    font-weight: 700;
    color: var(--tj-purple);
    margin: 0 0 16px;
}

.pdp-features {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.pdp-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a3a5c;
    margin-bottom: 9px;
}

.pdp-features svg {
    flex: 0 0 auto;
    margin-top: 6px;
    color: var(--tj-purple);
}

.pdp-pricing-note {
    font-size: 14px;
    color: #8a7a9c;
    margin: 0 0 22px;
}

.single-product__summary .hero-btn.hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 32px;
}

/* Related products */
.pdp-related {
    position: relative;
    padding: 64px 0 64px;

    background: #f7e8ff;
}

.pdp-related__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--tj-purple);
    text-align: center;
    margin: 0 0 28px;
}

.pdp-related .related.products {
    padding: 0;
}

.pdp-related ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.pdp-related .related.products li.product-card {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.pdp-related ul.products::before {
    display: none;
}

@media (min-width: 901px) {
    .site-header__cta.mobile_cta {
        display: none;
    }
}

@media (max-width: 900px) {
    .pdp-related ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-surface .tj-balloon--float {
        display: none;
    }

    .site-header__cta.desktop_cta {
        display: none;
    }
}

@media (max-width: 520px) {


    .shop-surface {
        padding: 44px 0 56px;
    }

}

/* ==========================================================================
   Blog listing — surface, inset card photos, tighter cards
   ========================================================================== */
.blog-surface {
    background: var(--tj-white);
    padding: 0 20px;
    position: relative;
}

.blog-listing .blog-layout {
    padding: 64px 24px 64px;
}

/* Photo sits inset within the card with a white frame, like the design. */
.blog-listing .post-card__media,
.pdp-related .post-card__media {
    margin: 10px 10px 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.blog-listing .post-card {
    border-radius: 28px;
}

.blog-listing .post-card__media {
    aspect-ratio: 1 / 0.62;
    margin: 0;
}

.blog-listing .post-card__body {
    padding: 16px 18px 18px;
}

.blog-listing .post-card__title {
    font-size: 20px;
    margin: 0 0 7px;
}

.blog-listing .post-card__excerpt {
     font-size: 14px;
    line-height: normal;
    color: #675d7c;
    margin: 0 0 14px;
}

.blog-listing .post-card__more {
    font-size: 14px;
    font-weight: 700;
    color: var(--tj-purple);
        transition: transform 0.2s ease
}

.blog-listing .post-card__more svg {
    width: 16px;
}

/* ==========================================================================
   Party Bus page
   ========================================================================== */
.bus-features {
    background: var(--tj-white);
    padding: 64px 0;
}

.bus-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1152px;
        padding: 0 24px;
    margin: 0 auto;
}

.bus-feature-card svg {
    width: 45px;
    height: 45px;
}

.bus-feature-card {
    background: var(--tj-white);
    border: 1px solid #f0e2fa;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 6px 18px rgb(43 17 64 / 8%);
}

.bus-feature-card__icon {
    display: inline-flex;
    color: var(--tj-purple);
    margin-bottom: 12px;
}

.bus-feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 0 0 8px;
}

.bus-feature-card__text {
   font-size: 16px;
    line-height: normal;
    color: #675d7c;
    margin: 0;
}

.bus-content {
    background: var(--tj-white);
    padding: 0 0 40px;
}

.bus-content__inner {
    max-width: 760px;
}

.bus-gallery {
    position: relative;
    background: #f4e9fb;
    padding: 64px 0 64px;
    overflow: hidden;
}

.bus-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 3px at 6% 14%, rgba(216, 132, 244, 0.55) 98%, transparent),
        radial-gradient(circle 2px at 14% 62%, rgba(247, 201, 72, 0.7) 98%, transparent),
        radial-gradient(circle 3px at 30% 30%, rgba(255, 120, 190, 0.5) 98%, transparent),
        radial-gradient(circle 2px at 55% 10%, rgba(140, 227, 107, 0.6) 98%, transparent),
        radial-gradient(circle 2px at 76% 48%, rgba(120, 230, 255, 0.65) 98%, transparent),
        radial-gradient(circle 3px at 90% 22%, rgba(255, 154, 111, 0.6) 98%, transparent),
        radial-gradient(circle 2px at 88% 78%, rgba(140, 227, 107, 0.6) 98%, transparent),
        radial-gradient(circle 3px at 40% 86%, rgba(216, 132, 244, 0.5) 98%, transparent);
}

.bus-gallery .container {
    position: relative;
}

.bus-gallery__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--tj-purple);
    text-align: center;
    margin: 0 0 30px;
}

.bus-gallery__spark {
    display: block;
    margin-bottom: 0;
}

.bus-gallery__spark svg {
    display: inline-block;
    animation: sparkZoom 1.8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sparkZoom {

    0%,
    100% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.2);
    }
}

.bus-gallery__cta a.hero-btn.hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
        padding: 16px 32px;
}

.bus-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1152px;
        padding: 0 24px;
    margin: 0 auto;
}

.bus-gallery__item {
    margin: 0;
    border-radius: 24px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 8px 20px rgba(43, 17, 64, 0.12);
}

.bus-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.bus-gallery__item:hover img {
    transform: scale(1.02);
}

.bus-gallery__cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 900px) {

    .bus-features__grid{
        grid-template-columns: 1fr;
                padding: 0;
    }
    .bus-gallery__grid{
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            padding: 0;
    }

    .site-header__logo img {
        max-height: 72px !important;
    }
}

/* ==========================================================================
   Birthday Parties page
   ========================================================================== */
.bp-body {
    background: #fdfaff;
    padding: 64px 0 64px;
}

.bp-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1152px;
    margin: 0 auto 52px;
    padding: 0 24px;
}

.bp-question {
    background: var(--tj-white);
    border: 1px solid #eadcf7;
    border-radius: 24px;
    padding: 24px;
    font-size: 18px;
    font-weight: 800;
    color: var(--tj-purple);
    box-shadow: 0 4px 14px rgb(43 17 64 / 17%);
}

.bp-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
        padding: 0 24px;
}

.bp-split__text p {
      font-size: 18px;
    line-height: normal;
    color: #675d7c;
    margin: 0 0 14px;
}

.bp-split__text a {
    color: var(--tj-purple);
}

.bp-split__bold {
    font-weight: 700;
    color: #1c0f2e !important;
}

.bp-split__text .hero-btn {
    margin-top: 8px;
    color: #fff;
    font-size: 16px;
  text-transform: uppercase;
    padding: 16px 32px;
}
.bp-photo {
    margin: 0;
    background: var(--tj-white);
    border-radius: 28px;
    padding: 0;
 box-shadow: 0 0 40px rgb(100 7 175 / 32%);
}

.bp-photo img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

/* Gradient band with three photos */
.bp-fundays {
    text-align: center;
    padding: 64px 0 64px;
}

.bp-fundays__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--tj-white);
    margin: 0 0 28px;
    position: relative;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.25);
}

.bp-fundays__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1152px;
    padding: 0 24px;
    margin: 0 auto;
        z-index: 2;
}

.bp-fundays__item {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 26px rgba(30, 6, 50, 0.3);
}

.bp-fundays__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Case study + food card */
.bp-case-section {
    background: var(--tj-white);
    padding: 64px 0 64px;
}

.bp-case-section__inner {
    display: grid;
    gap: 56px;
    align-items: start;
    max-width: 1152px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 24px;
}

.bp-case-section__inner--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 720px;
}

.bp-case__heading {
   font-family: "Fredoka", sans-serif;
    font-size: 30px;
    color: #1c0934;
    margin: 0 0 16px;
    font-weight: bold;
    line-height: normal;
}

.bp-case__text {
    font-size: 16px;
    line-height: normal;
    color: #675d7c;
    margin: 0 0 14px;
}

.bp-case__bold {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.7;
    margin: 0 0 22px;
    color: var(--tj-purple);
}

.bp-case__clients-label {
    font-size: 16px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 0 0 12px;
}

.bp-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.bp-clients__pill {
    background: #f3e8fb;
    color: var(--tj-purple);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--tj-radius);
}

.bp-case__note {
       font-size: 14px;
    color: #675d7c;
    margin: 0;
}

.bp-food-card {
background: var(--tj-white);
    border: 1px solid #f0e2fa;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 14px 34px rgba(43, 17, 64, 0.12);
}

.bp-food-card__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1c0f2e;
    margin: 0 0 16px;
}

.bp-food-card__heading svg {
    color: var(--tj-magenta);
    animation:
        tjBalloonBob 4.6s ease-in-out infinite,
        wiggle 1.6s ease-in-out infinite;
}

.bp-food-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 18px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.bp-food-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 16px;
    line-height: 1.5;
    color: #1c0934;
}

.bp-food-card__list svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--tj-purple);
    width: 18px;
}

.bp-food-card__bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--tj-purple);
    margin: 0 0 18px;
}

.bp-food-card .hero-btn--primary {
    font-size: 16px;
    text-transform: uppercase;
        padding: 16px 32px;
}

@media (max-width: 900px) {
    .bp-questions {
        grid-template-columns: 1fr;
                padding: 0;
    }

    .bp-split,
    .bp-case-section__inner {
        grid-template-columns: 1fr;
    }

        .bp-split {
        padding: 0;
    }
  

    

    .bp-food-card__list {
        display: block;
    }
}

/* Full category description shown under the product grid */
.shop-category-info {
    max-width: 760px;
    margin: 48px auto 0;
    background: var(--tj-white);
    border: 1px solid #f0e2fa;
    border-radius: 14px;
    padding: 26px 30px;
    box-shadow: 0 6px 18px rgba(43, 17, 64, 0.06);
    position: relative;
}

.shop-category-info__heading {
    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    color: var(--tj-purple);
    margin: 0 0 12px;
}

.shop-category-info__text p {
    font-size: 13px;
    line-height: 1.75;
    color: #5c4d70;
    margin: 0 0 12px;
}

.shop-category-info__text p:last-child {
    margin-bottom: 0;
}


