:root {
    --nav-icon-size: 22px;
    --nav-gap: .5rem;
    --nav-color: #666;
    --nav-hover: #0f74bc;
    --dropdown-bg: #fff;
    --ham-size: 30px;
    --ham-bar-w: 25px;
    --ham-bar-h: 3.1px;
    --ham-gap: 5px;
    --ham-color: #0f74bd;
    --drawer-w: min(72vw, 250px);
}

html, body {
    overflow-x: hidden;
}

html {
    overscroll-behavior: none;
}

body.nav-open {
    overflow: hidden;
    height: 100dvh;
    touch-action: none;
    overscroll-behavior: contain;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: var(--drawer-w);
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 2147483646;
}

body.nav-open::before {
    opacity: 1;
    pointer-events: auto;
}

section {
    display: grid;
    place-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: none !important;
    padding: 15px 20px;
    transition: background 0.3s ease;
}

header nav {
    display: flex;
    align-items: center;
    gap: .1rem;
    margin: 0;
}

.main-nav {
    display: unset;
}

.nav-link, .subnav-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .5rem;
    color: var(--nav-color) !important;
    text-decoration: none;
    border-radius: 20px;
    line-height: 1;
    transition: color .2s ease, background-color .2s ease, transform .15s ease;
}

.nav-link:hover, .subnav-link:hover {
    color: var(--nav-hover) !important;
    background: none;
}

.nav-icon {
    width: var(--nav-icon-size);
    height: var(--nav-icon-size);
    display: inline-block;
    flex: 0 0 var(--nav-icon-size);
    vertical-align: middle;
    vector-effect: non-scaling-stroke;
}

.nav-link .nav-icon [stroke], .subnav-link .nav-icon [stroke], .nav-link:hover .nav-icon [stroke], .subnav-link:hover .nav-icon [stroke] {
    stroke: currentColor !important;
}

.nav-link .nav-icon [fill]:not([fill="none"]), .subnav-link .nav-icon [fill]:not([fill="none"]), .nav-link:hover .nav-icon [fill]:not([fill="none"]), .subnav-link:hover .nav-icon [fill]:not([fill="none"]), .nav-link .nav-icon path:not([stroke]):not([fill]), .subnav-link .nav-icon path:not([stroke]):not([fill]) {
    fill: currentColor !important;
}

.nav-item {
    position: relative;
}

.has-subnav .subnav {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    padding: .4rem;
    background: var(--dropdown-bg);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    display: none;
    z-index: 1000;
}

.has-subnav:hover .subnav, .has-subnav:focus-within .subnav {
    display: block;
}

.hamburger {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0;
    padding: 0;
    width: var(--ham-size);
    height: var(--ham-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2147483647 !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    top: -5px !important;
}

.hamburger:focus, .hamburger:focus-visible, .hamburger:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.hamburger > span {
    display: block;
    pointer-events: none;
}

.hamburger span {
    position: absolute;
    left: 50%;
    width: var(--ham-bar-w);
    height: var(--ham-bar-h);
    background: var(--ham-color);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform .22s ease, opacity .18s ease, top .22s ease, background-color .2s;
    will-change: transform, opacity, top;
}

.hamburger span:nth-child(1) {
    top: calc(54% - var(--ham-gap) - var(--ham-bar-h));
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, 50%);
}

.hamburger span:nth-child(3) {
    top: calc(-18% + var(--ham-gap));
}

.hamburger.is-open span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(.5);
}

.hamburger.is-open span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.category-hero {
    position: relative;
    min-height: 30vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #111;
    padding-top: 80px;
}

.category-hero .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 80px !important;
    box-sizing: border-box;
    width: 100%;
}

.category-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 44px);
}

.category-hero p {
    margin: 0;
    opacity: .9;
}

.category-results {
    padding: 18px 0 8px;
}

.cat-title {
    margin: 0 0 8px;
}

.cat-sub {
    margin: -20px auto -30px !important;
    text-align: center;
    display: block;
    width: 100%;
}

.hero-content .cat-sub {
    margin-bottom: 0 !important;
    margin-top: 4px !important;
}

.logo2 {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin: auto !important;
    align-items: center !important;
}

.logo2-img {
    height: 80px;
    width: auto;
    display: block;
}

#careers-content, .job-listings, .job-item, .job-title {
    position: relative;
    z-index: 1;
}

.category-grid, .events-grid, .upcoming-grid, #category-grid.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem !important;
}

#category-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 10px 25px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
}

.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    padding: 0 !important;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    flex: 0 0 auto;
    width: 85vw;
    max-width: 340px;
    min-width: 280px;
    scroll-snap-align: center;
}

.event-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px 0 rgba(31, 38, 135, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border-color: #fff;
}

#past-events-grid .event-card {
    min-height: 0 !important;
}

.poster, .event-card .poster {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 220px;
    display: block;
    position: relative;
    border-radius: 20px 20px 0 0 !important;
    -webkit-border-radius: 20px 20px 0 0 !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.poster img, .event-card .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px 20px 0 0 !important;
    -webkit-border-radius: 20px 20px 0 0 !important;
    transition: transform 0.6s ease;
}

.event-card:hover .poster img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 55px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.date-badge .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.2;
}

.date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0f74bc;
    text-shadow: 0 2px 10px rgba(13, 110, 253, 0.15);
}

.event-content, .event-card .event-content {
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
    border-radius: 0 0 20px 20px !important;
    -webkit-border-radius: 0 0 20px 20px !important;
}

.event-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 2px 0;
}

.event-card h3, .event-card h4, .event-card .muted, .event-card .description {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card .description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
    margin-top: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    overflow-wrap: anywhere !important;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.footer-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
}

.footer-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f74bc;
}

.footer-price.sold-out {
    color: #ef4444;
}

.price-tag {
    background-color: #0f74bc !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    padding: 10px !important;
    margin-top: 12px !important;
    align-items: center !important;
    border: none !important;
    text-align: center;
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.price-tag.sold-out {
    background-color: #6c757d !important;
    cursor: default;
}

#organiser-contact {
    background-color: #f9fafb;
    margin-top: 0;
    border-radius: 15px;
}

#organiser-contact h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
}

#contact-rows-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
    font-size: 1.1rem;
}

#org-email-row, #org-phone-row, #share-merchant-btn {
    margin: 0 !important;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    text-decoration: none !important;
    color: #374151 !important;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

#org-email-row:hover, #org-phone-row:hover, #share-merchant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 210, 0.15);
    border-color: #0056D2;
}

#organiser-contact i {
    font-size: 1.1rem;
    color: #0056D2;
}

#organiser-contact a {
    text-decoration: none !important;
    color: inherit !important;
}

.muted {
    color: #6b7280;
}

.skeleton {
    background: linear-gradient(90deg,#eef2ff,#f8fafc 40%,#eef2ff 80%);
    background-size: 200% 100%;
    animation: sk 1.1s linear infinite;
}

@keyframes sk {
    to { background-position: -200% 0; }
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 20px;
    position: sticky;
    left: 0;
    right: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background-color: #0056D2;
    width: 24px;
    border-radius: 4px;
}

#reviews-section {
    padding: 0 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#reviews-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 16px;
}

#reviews-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stars-display {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 12px auto 0;
    width: 100%;
    line-height: 1;
}

.stars-display .star-icons {
    color: #f59e0b;
    font-size: 2.6rem;
    letter-spacing: 3px;
    line-height: 1;
    display: flex;
    gap: 3px;
    justify-content: center;
}

.stars-display .star-icons svg {
    width: 28px;
    height: 28px;
}

.stars-display .star-count {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    display: block;
    white-space: nowrap;
}

.review-form {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 28px;
}

.review-form .star-picker {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 1.6rem;
    cursor: pointer;
}

.review-form .star-picker span {
    color: #d1d5db;
    transition: color .15s;
    user-select: none;
}

.review-form .star-picker span.lit {
    color: #f59e0b;
}

.review-form .star-picker svg {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.review-form .star-picker span svg {
    pointer-events: none;
}

.review-form textarea {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    resize: none;
    min-height: 60px;
    box-sizing: border-box;
    margin-bottom: 10px;
    outline: none;
    background: transparent;
    color: #111827;
    caret-color: #0f74bc;
    display: block;
    transition: border-color .15s;
}

.review-form textarea:focus {
    border-color: #0f74bc;
}

.review-form textarea::placeholder {
    color: #9ca3af;
}

.review-form .submit-review {
    background: #0f74bc;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background .15s;
}

.review-form .submit-review:hover {
    background: #0a5a91;
}

.review-form .submit-review:disabled {
    background: #9ca3af;
    cursor: default;
}

.review-form .form-msg {
    font-size: 0.85rem;
    margin-top: 8px;
}

.review-form .form-msg.ok {
    color: #059669;
}

.review-form .form-msg.err {
    color: #dc2626;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 16px;
}

.review-item .ri-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}

.review-item .ri-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.review-item .ri-meta {
    flex: 1;
    min-width: 0;
}

.review-item .ri-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    display: block;
}

.review-item .ri-date {
    font-size: 12px;
    color: #9ca3af;
    display: block;
    margin-top: 1px;
}

.review-item .ri-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
    color: #f59e0b;
    font-size: 0.95rem;
}

.review-item .ri-stars svg {
    width: 14px;
    height: 14px;
}

.review-item .ri-comment {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

@media (hover:hover) {
    .hamburger:hover span {
        background: #095a8f;
    }
}

@media (min-width: 640px) {
    .category-grid, .events-grid, .upcoming-grid, #category-grid.cat-grid, #category-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #reviews-section {
        max-width: 860px;
    }
    .review-form textarea {
        min-height: 120px;
    }
    .review-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    #reviews-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }
    #reviews-form-col {
        flex: 0 0 340px;
        position: sticky;
        top: 90px;
    }
    #reviews-list-col {
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 769px) {
    .hamburger, .logo2 {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .category-grid, .events-grid, .upcoming-grid, #category-grid.cat-grid, #category-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .job-description {
        margin-top: 10px;
    }
    #reviews-section {
        max-width: 1000px;
    }
    .review-form textarea {
        min-height: 140px;
    }
    .review-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1110px) {
    footer.site-footer .footer-container .footer-social {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    footer.site-footer .footer-container .footer-social .social-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        flex-wrap: wrap !important;
        margin: 8px auto 0 !important;
        padding: 0 !important;
        width: max-content !important;
        max-width: 100% !important;
    }
    footer.site-footer .footer-container .footer-social .social-icons a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    footer.site-footer .footer-container .footer-social .social-icons svg, footer.site-footer .footer-container .footer-social .social-icons i {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 1023px) {
    .job-description {
        margin-top: 1px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px;
    }
    header nav {
        position: fixed !important;
        top: 0;
        right: 0 !important;
        left: auto !important;
        height: 100dvh;
        width: var(--drawer-w) !important;
        background: #fff;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform .28s ease, visibility .28s step-end;
        z-index: 2147483647 !important;
        padding: 12px 10px;
        padding-right: max(12px, env(safe-area-inset-right));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .01rem !important;
        overflow: auto;
        box-shadow: none;
        margin: 0 !important;
    }
    header nav.active {
        transform: translateX(0) !important;
        visibility: visible;
        pointer-events: auto;
        box-shadow: -16px 0 32px rgba(0,0,0,.18);
    }
    header nav::before {
        content: none !important;
        display: none !important;
    }
    .has-subnav > .nav-link {
        display: none !important;
    }
    .has-subnav .subnav {
        position: static !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        min-width: auto !important;
    }
    .nav-link, .subnav-link {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: .55rem;
        padding: 1.2rem .9rem !important;
        margin: 0;
        border-radius: 0px !important;
        color: #222;
        text-align: left;
        font-size: 1rem;
    }
    .nav-icon, .subnav-link svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
        display: inline-block;
        vertical-align: middle;
    }
    #contact-rows-container {
        flex-direction: column !important;
    }
    #org-email-row, #org-phone-row, #share-merchant-btn {
        width: 100%;
        justify-content: center;
    }
    .dots-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #reviews-section {
        padding-bottom: 16px;
    }

    #organiser-social {
        padding-top: 8px;
    }
}

@media (max-width: 768px) {
#reviews-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 16px;
}

#reviews-inner,
#reviews-list-col,
.review-list,
.review-item {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}

@media (max-width: 768px) {
    #organiser-social {
        padding: 0 !important;
    }

    #social-tiles-grid {
        padding: 0 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
}

#social-tiles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.event-card .event-content {
    flex: 0 1 auto !important;
}

.event-card {
    min-height: 0 !important;
}

#social-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    justify-items: center;
}

@media (min-width: 768px) {
    #social-tiles-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)) !important;
        gap: 3px !important;
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    #reviews-section {
        max-width: 100% !important;
        padding: 0 40px 40px !important;
    }

    #reviews-inner {
        justify-content: space-between !important;
        gap: 48px !important;
    }

    #reviews-form-col {
        flex: 0 0 420px !important;
    }

    #reviews-list-col {
        flex: 1 !important;
    }
}

@media (min-width: 1024px) {
    #reviews-section {
        max-width: 100% !important;
        padding: 0 60px 40px !important;
    }

    #reviews-form-col {
        flex: 0 0 480px !important;
    }
}

#social-tiles-grid a:hover {
    background: #f3f4f6 !important;
    border-radius: 16px;
    transform: translateY(-3px);
    transition: all 0.2s ease;
}

#social-tiles-grid a {
    transition: all 0.2s ease;
    border-radius: 16px;
}

@media (min-width: 768px) {
    #reviews-section {
        padding-bottom: 0px !important;
    }

    #organiser-social {
        padding-top: 0px !important;
    }
}

#btn-follow-organiser {
    margin-bottom: 0 !important;
}

.category-results {
    padding-top: 0px !important;
}

#merchant-logo {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}