

/******************
MMR MERGED: /wp-content/plugins/todo-today-assets/css/front.css
***************/

:root {
    /* Event Card Variables */
	--tt-card-radius: 10px;
    --tt-card-radius-sm: 5px;
	--tt-card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	--tt-card-text-color: #000000;
	--tt-card-bg: #fff;
	--tt-card-border: #e5e7eb;
    --tt-card-other-text-color: #212121;
    --tt-font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Lovable Design System */
	--tt-background: #ffffff;
	--tt-foreground: #171717;
	--tt-muted: #f5f5f5;
	--tt-muted-foreground: #737373;
	--tt-border: #e5e5e5;
	--tt-primary: #171717;
	--tt-primary-foreground: #ffffff;
}

body {
    font-family: var(--tt-font-family);
}

.absolute-footer, html {
  background-color: #ffffff !important;
}

/* ============================================================
   HIDE FLATSOME THEME HEADER (all screen sizes)
   The "header header-full-width" element is removed entirely.
   Only the custom tt-desktop-header remains.
   ============================================================ */
#header,
.header-wrapper,
.header-main,
#wide-nav,
.header-full-width,
.html_nav_position_text_top,
[class*="html_nav_position_text"],
.header-top .html-element,
.top-bar .html-element,
.header-inner > .html-element {
	display: none !important;
}

/* ============================================================
   DESKTOP HEADER (Lovable Design) — shown above 800px
   Matches: fixed header, h-[60px], bg-background, border-b border-border
   ============================================================ */

/* Hidden by default (mobile-first) */
.tt-desktop-header {
	display: none;
}

/* Show on desktop (> 800px) */
@media (min-width: 801px) {
	.tt-desktop-header {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 60px;
		background: var(--tt-background, #ffffff);
		border-bottom: 1px solid var(--tt-border, #e5e5e5);
		z-index: 9999;
	}

	.tt-desktop-header__inner {
		height: 100%;
		max-width: 1050px;
		margin: 0 auto;
		padding: 0 24px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.tt-desktop-header__logo {
		display: flex;
		align-items: center;
		gap: 8px;
		text-decoration: none !important;
	}

	.tt-desktop-header__logo img {
		height: 32px;
		width: auto;
	}

	.tt-desktop-header__nav {
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.tt-desktop-header__nav-item {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 8px 16px;
		border-radius: .75rem;
		font-size: 14px;
		font-weight: 500;
		color: var(--tt-muted-foreground, #737373);
		text-decoration: none !important;
		transition: all 0.15s ease;
	}

	.tt-desktop-header__nav-item:hover {
		background: var(--tt-muted, #f5f5f5);
		color: var(--tt-foreground, #171717);
	}

	.tt-desktop-header__nav-item--active {
		background: rgba(23, 23, 23, 0.1);
		color: var(--tt-primary, #171717);
	}

	.tt-desktop-header__nav-item--active:hover {
		background: rgba(23, 23, 23, 0.15);
	}

	.tt-desktop-header__nav-item i {
		font-size: 16px;
		width: 16px;
		height: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.tt-desktop-header__nav-icon {
		width: 16px;
		height: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.tt-desktop-header__nav-icon svg {
		width: 16px;
		height: 16px;
		display: block;
	}

	.tt-desktop-header__nav-item--active i {
		font-weight: 900;
	}

	.tt-desktop-header__nav-item--logout {
		color: #dc2626 !important;
	}

	.tt-desktop-header__nav-item--logout:hover {
		background: rgba(220, 38, 38, 0.1);
		color: #b91c1c !important;
	}

	.tt-desktop-header__nav-item--logout i {
		color: inherit;
	}

	/* Add padding to main content for fixed header */
	#main {
		padding-top: 60px;
	}

	/* WordPress Admin Bar offset */
	body.admin-bar .tt-desktop-header {
		top: 32px;
	}

	/* Normalize first content block spacing */
	#main > .row.row-main.event-listing-row {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	#main > .row.row-main.event-listing-row .event_listing_main,
	#main > .row.row-main.event-listing-row .event_sidebar,
	#main > .row.row-main.event-listing-row .event_listing_data {
		margin-top: 0 !important;
	}

  #main > .row.row-main.event-listing-row .event_listing_main,
  .tt-single-event-row .event_listing_main {
    padding-bottom: 0px !important;
  }

  #main > .row.row-main.event-listing-row .event_listing_data,
  .tt-single-event-row .event_listing_data {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

/* Ensure no unwanted top margins from theme wrappers */
#main > .row:first-child,
.event_sidebar,
.event_listing_data {
	margin-top: 0;
}

/* ============================================================
   MOBILE (≤ 800px): Hide header, show bottom nav
   ============================================================ */
@media (max-width: 800px) {
  .tt-single-event-row .event_listing_main {
    padding: 0 !important;
    gap: 0 !important;
  }

	/* Hide custom desktop header on mobile */
	.tt-desktop-header {
		display: none !important;
	}

	/* Remove any top spacing from header */
	body,
	body.admin-bar {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}

	#main,
	#content,
	.page-wrapper {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}

/* ============================================================
   FOOTER (Lovable Design - Site-wide)
   Matches: bg-muted border-t border-border py-8 px-[15px]
   ============================================================ */

/* Hide existing Flatsome footer CONTENT but keep wrapper visible for our footer */
.footer-wrapper > .footer,
.footer-wrapper > .absolute-footer,
.footer-wrapper .footer-widgets,
.footer-wrapper .absolute-footer-wrap,
#footer > .footer,
#footer > .absolute-footer {
	display: none !important;
}

/* Reset the footer wrapper to be visible and full-width */
.footer-wrapper,
#footer.footer-wrapper {
	display: block !important;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Lovable Footer */
.tt-footer {
	background: var(--tt-muted, #f5f5f5);
	border-top: 1px solid var(--tt-border, #e5e5e5);
	padding: 32px 15px;
	width: 100%;
}

.tt-footer-inner {
	max-width: 896px; /* max-w-4xl */
	margin: 0 auto;
}

.tt-footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* Logo: h-6 (24px) */
.tt-footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tt-footer-logo img {
	height: 24px;
	width: auto;
}

/* Links: flex flex-wrap items-center justify-center gap-4 text-sm text-muted-foreground */
.tt-footer-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.tt-footer-link {
	font-size: 14px;
	color: var(--tt-muted-foreground, #737373);
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.tt-footer-link:hover {
	color: var(--tt-foreground, #171717);
}

/* Copyright: text-xs text-muted-foreground */
.tt-footer-copyright {
	font-size: 12px;
	color: var(--tt-muted-foreground, #737373);
	margin: 0;
}

/* Mobile footer: extra bottom padding for bottom nav clearance */
@media (max-width: 800px) {
	.tt-footer {
		padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px) + 70px);
	}
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR (Lovable Design)
   Shown at ≤ 800px. Matches: fixed bottom-0, h-[50px],
   bg-background/80, backdrop-blur-xl, border-t, z-50
   ============================================================ */

/* Hidden by default (desktop) */
.tt-bottom-nav {
	display: none;
}

/* Show at ≤ 850px */
@media (max-width: 800px) {
	.tt-bottom-nav {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
		transform: none;
		height: 70px;
		padding-left: max(16px, calc((100vw - 28rem) / 2));
		padding-right: max(16px, calc((100vw - 28rem) / 2));
		padding-bottom: env(safe-area-inset-bottom, 0px);
		background: rgba(255, 255, 255, 0.80);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		border-top: 1px solid rgba(229, 229, 229, 0.5);
		z-index: 9999;
		justify-content: space-around;
		align-items: center;
		box-sizing: border-box;
		animation: tt-bottom-nav-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
	}

	@keyframes tt-bottom-nav-slide-up {
		from {
			transform: translateY(100%);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	/* Nav item */
	.tt-bottom-nav__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		flex: 1;
		padding: 4px 0;
		text-decoration: none !important;
		-webkit-tap-highlight-color: transparent;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.tt-bottom-nav__item:active {
		transform: scale(0.82);
		opacity: 0.6;
	}

	/* Icon */
	.tt-bottom-nav__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.tt-bottom-nav__icon svg {
		width: 22px;
		height: 22px;
		stroke-width: var(--tt-nav-stroke, 1.8);
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	/* Label */
	.tt-bottom-nav__label {
		font-size: 10px;
		letter-spacing: 0.02em;
		font-weight: 500;
		line-height: 1;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}

	/* Default state (inactive) */
	.tt-bottom-nav__item {
		color: var(--tt-muted-foreground, #737373);
	}

	/* Active state */
	.tt-bottom-nav__item--active {
		color: var(--tt-primary, #171717);
	}

	.tt-bottom-nav__item--active .tt-bottom-nav__icon {
		transform: scale(1.15) translateY(-1px);
	}

	.tt-bottom-nav__item--active .tt-bottom-nav__label {
		font-weight: 600;
	}

	/* Push Intercom launcher above the bottom nav bar */
	.intercom-lightweight-app-launcher {
		bottom: 80px !important;
	}
}

.tt-single-page-tags-container {
	margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tt-hidden {
	display: none;
}

.tt-tag-box {
    border-radius: 10px;
    white-space: nowrap;
    background: #f9f9f9;
    padding: 2px 15px;
    margin-right: 5px;
    /* color: #000000; */
    border: 1px solid #eeeeee;
}

.venue_google_map_link {
    cursor: pointer;
}

/* Wrapper */
.tt-card-header-tags-wrapper {
	display: flex;
	align-items: center;
    justify-content: space-between;
    width: 90%;
}

.tt-card-header-tags {
    display: flex;
    flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tt-card-header-tags-wrapper .todo-actions {
    position: absolute;
}

.tt-recurring-row .todo-actions {
    position: static;
}

/* Base tag */
.tt-card-header-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: normal;
	line-height: 1;
	border-radius: 10px;
	white-space: nowrap;
    height: 24px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
}

/* Icon */
.tt-card-header-tag i {
	font-size: 12px;
}

/* Primary (Red filled) */
.tt-card-header-tag-primary {
	background-color: #ff4d3f;
	color: #ffffff;
}

/* Outline tags */
.tt-card-header-tag-outline {
	background-color: #f5f5f5;
	color: #000000;
	border: 1px solid #e0e0e0;
}

.tt-card-header-tag-text {
    line-height: 24px;
}

.tt-highlights-card-header-tags-wrapper {
    /* position: absolute;
    top: 190px; */
}

/* Recurring Event Popup - Overlay Style (matches td-popup-overlay) */
#my-recurring-event-popup.td-popup-overlay {
    z-index: 9999;
}

#my-recurring-event-popup .td-popup-card--recurring {
    background: #f9f9f9;
    width: min(720px, 94vw);
    max-height: 85vh;
}

@media (max-width: 768px) {
    #my-recurring-event-popup .td-popup-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* Sidebar overlay backdrop */
.append_slideout {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
    background: #00000080;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.tt-popup-panel {
    padding: 0 10px 10px 10px;
    flex: 1;
    overflow: auto;
    min-height: 0;
}

.tt-popup-loading {
    padding: 100px 0;
    text-align: center;
}

.tt-recurring-event-tag {
    color: #1c7ce2;
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	/* Hide first tag on mobile */
    .tt-highlighted-tag {
        display: none !important;
    }

    .new_home_featured_tag {
        display: block !important;
    }

	/* Slightly smaller tags on mobile */
	.tt-card-header-tag {
		font-size: 11px;
		padding: 5px 9px;
	}
}


.todo-actions__menu .events_actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.todo-actions__menu .events_actions i {
  width: 14px;
  min-width: 14px;
  text-align: center;
  font-size: 12px;
}

.todo-actions__menu li {
  border-radius: 8px;
}



/* Vertical Event Card Styles */
.tt-v-card {
	color: var(--tt-card-text-color);
	width: 100%;
	max-width: 100%;
	background: var(--tt-card-bg);
	border: 1px solid var(--tt-card-border);
	border-radius: var(--tt-card-radius);
	/* box-shadow: var(--tt-card-shadow); */
}
.tt-v-card-media {
	position: relative;
	background: #fff;
}
.tt-v-card-media .tt-v-card-media-image {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
    border-radius: var(--tt-card-radius);
}
.tt-v-card-media-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.tt-v-card-topbar-status {
    padding: 4px 10px;
    /* background: #03a9f4; */
    /* color: #fff; */
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--tt-card-radius-sm);
    /* border: 1px solid #fff; */
}
.tt-v-card-topbar-more-menu {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #bdbdbd;
    font-size: 10px;
}
.tt-more-popup {
    position: absolute;
    top: 50px;
    right: 5px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 130px;
    display: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 1000;
}

.tt-more-popup ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

.tt-more-popup ul li {
    padding: 5px 14px;
    cursor: pointer;
    margin-bottom: 0;
    transition: background 0.2s ease;
    font-size: 12px;
}

.tt-more-popup ul li:hover {
    background: #f7f7f7;
}
.tt-more-popup-arrow {
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    transform: rotate(45deg);
}

.tt-v-card-media-bottombar {
    padding: 15px;
}

.tt-event-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
}

.tt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
}

.tt-badge-walkin {
  background: #c6f0bb;
  color: #424242;
  border: 1px solid #c9e5c3;
}

.tt-badge-online-tickets {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.tt-badge-booking-recommended {
    background: #3f51b5;
    color: #ffffff;
    border: 1px solid #3f51b5;
}

.tt-badge-booking-required {
    background: #3f51b5;
    color: #ffffff;
    border: 1px solid #3f51b5;
}

.tt-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #d6d6d6;
  font-size: 12px;
  color: #4a4a4a;
  background: #ffffff;
}

.tt-v-card-reccurring-icon {
    width: 10px;
    height: 10px;
}

.tt-v-card-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;     /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tt-v-card-small-icon {
    width: 14px;
    height: 14px;
}

.tt-v-card-icon-text-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tt-v-card-icon-text {
    font-size: 14px;
    color: var(--tt-card-other-text-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tt-tag-item {
    background: #fff;
    border: 1px solid #212121;
    border-radius: 5px;
    padding: 2px 10px;
    font-weight: 600;
    font-size: 12px;
    color: #212121;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.8;
}

.tt-tag-container {
    position: absolute;
    left: 0;
    top: 130px;
    margin: 8px;

    display: flex;
    flex-wrap: nowrap;          /* keep in a single row */
    gap: 8px;

    max-width: 100%;            /* avoid overflowing page */
    padding-right: 8px;         /* so last tag isn't cut off */

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;      /* Firefox: hide scrollbar */
    -ms-overflow-style: none;   /* IE/Edge legacy: hide scrollbar */

    cursor: grab;
}

/* Chrome / Safari: hide scrollbar */
.tt-tag-container::-webkit-scrollbar {
    display: none;
}

.tt-tag-item {
    flex: 0 0 auto;             /* make each tag stay its size */
    white-space: nowrap;        /* keep text on one line */
}

/* Optional: nicer feedback while dragging */
.tt-tag-container:active {
    cursor: grabbing;
}

.tt-recurring-span {
    background: #ffffff;
    color: #000000;
    border: 1px solid #bdbdbd;
    cursor: pointer;
    display: inline-block;
    position: relative;      /* ✅ Important for the tooltip */
}

.tooltip-text {
    visibility: hidden;
    width: max-content;
    max-width: 250px;
    background-color: #000;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    position: fixed;
    z-index: 9999;           /* bump it just in case */
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: normal;
    font-size: 13px;
    line-height: 19px;
    pointer-events: none;    /* optional: avoid hover flicker */
}

.tt-recurring-span:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.event-reaction_sp {
    position: absolute;
    right: 15px;
    left: auto;
    top: 15px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    border: #212121 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    display: none !important;
}

.event-reaction_sp_featured {
    bottom: 15px;
    top: auto;
}

/* my-events-page */
.tt-my-event-header-container {
    background-color: #ffffff;
    padding: 15px 0px;
    border-bottom: 1px solid #e0e0e0;
}

.tt-my-event-header {
    max-width: 1050px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
}

.tt-add-event-btn {
	text-transform: capitalize;
    border-radius: 5px;
    background: #000000;
    margin: 0;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 8px;
}
.tt-add-event-btn {
	box-shadow: none;
    color: #ffffff;
}

.tt-header-title {
    margin: 0;
	color: #212121;
	font-weight: normal;
	font-size: 20px;
}

.tt-header-subtitle {
    font-size: 14px;
    color: #6b6f76;
    margin: auto;
    max-width: 1050px;
}

/* Header container - NEW */
.tt-tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px 0;
}

/* Your original tabs wrap CSS - UNCHANGED */
.tt-tabs-wrap {
    width: 55%;
    margin: 0; /* Remove bottom margin since header has it */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 6px;
    border-radius: 15px;
    display: flex;
    gap: 6px;
    box-sizing: border-box;
    position: relative;
}

/* Sliding background indicator - NEW */
.tt-tabs-wrap::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 9px);
    height: calc(100% - 12px);
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Move background when second tab is active - NEW */
.tt-tabs-wrap:has(.tt-tab-btn:nth-child(2).active)::before {
    transform: translateX(calc(100% + 6px));
}

/* Your original tab button CSS - UNCHANGED */
.tt-tab-btn {
    width: 50%;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 0;
    position: relative; /* Added for z-index */
    z-index: 1; /* Added for slide animation */
}

/* Hover effect - NEW */
.tt-tab-btn:hover:not(.active) {
    background: rgba(245, 245, 245, 0.5);
}

/* Your original active state - UNCHANGED */
.tt-tab-btn.active {
    background: transparent; /* Changed to transparent for slide animation */
    border: 1px solid transparent; /* Changed to transparent for slide animation */
    font-weight: 600; /* Added bold */
}

/* Add Event Button - NEW */
.tt-add-event-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tt-add-event-btn:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.tt-add-event-btn:active {
    transform: translateY(0);
}

@media (max-width: 400px) {
    .tt-add-event-btn {
        padding: 5px 5px !important;
        gap: 0px !important;
    }
    .tt-header-subtitle {
        font-size: 12px !important;
    }
    .tt-header-title {
        font-size: 18px !important;
    }
}

.tt-plus-icon {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}

.tt-btn-text {
    line-height: 1;
}

.todo-font-italic {
    font-style: italic;
}

.tt-show-recurring-icon {
    display: none !important;
    margin-left: 2px;
}

/* ============================================================
   AREA NAME VISIBILITY
   - Desktop: show area name in all sections
   - Mobile: hide area name in all sections
   - Today's Top Picks / Tomorrow's Top Picks: hide on both devices
   ============================================================ */

/* Show area name on desktop only (default for all sections) */
.tt-desktop-only {
    display: inline;
}

/* Hide area name on mobile for all sections */
@media (max-width: 1024px) {
    .tt-desktop-only {
        display: none;
    }
}

/* Hide area name in Today's Top Picks / Tomorrow's Top Picks sections on ALL devices */
.event_data_higlight .tt-desktop-only {
    display: none !important;
}

.event_data_higlight .tt-home-star-icon {
    margin-right: 5px;
}

/* Base title style */
.event-card__header {
    width: 100%;
}

.event-card__title {
    padding: 0;
    margin: 10px 0;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* Desktop: show desktop title, hide mobile */
.event-card__title--desktop {
    display: -webkit-box;
    width: 85%;
    font-size: 16px;
}

.event_data_higlight_box .event-card__title--desktop {
    width: 100%;
}

.event-card__title--mobile {
    display: none;
}

/* Mobile: hide desktop title, show mobile */
@media (max-width: 768px) {
    .event-card__title--desktop {
        display: none;
    }

    .event-card__title--mobile {
        display: -webkit-box;
        width: 95%;
        font-size: 14px;
    }

    .event_data_higlight_box .event-card__title--mobile {
        width: 100%;
    }
}

/* Your original mobile CSS - UPDATED for new layout */
@media (max-width: 775px) {
    .tt-tabs-header {
        flex-direction: row;
        gap: 10px;
    }
    
    .tt-tabs-wrap {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tt-tab-btn {
        font-size: 13px;
    }
    .tt-show-recurring-icon {
        display: inline-block !important;
    }
    .tt-home-card-header-recurring-tag {
        display: none !important;
    }
}
/* Mobile styles for recurring popup handled in main #my-recurring-event-popup block */
@media (max-width: 400px) {
    .tt-tab-btn {
        font-size: 12px;
    }
}

/**
 * Sidebar Styles — TODO.TODAY
 * FILE: assets/css/sidebar-today.css
 */

.td-sidebar {
    position: sticky;
    top: 0;
    overflow-y: auto;
    padding: 15px 15px 15px 0px;
    border-right: 1px solid #f0eeea;
    background: #ffffff;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
/* Admin bar: adjust sticky sidebar top position */
body.admin-bar .td-sidebar {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar .td-sidebar {
        top: 46px;
    }
}
.td-sidebar::-webkit-scrollbar { width: 4px; }
.td-sidebar::-webkit-scrollbar-track { background: transparent; }
.td-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* HERO */
.td-sidebar-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: tdFadeUp 0.5s ease both;
}
.td-sidebar-hero__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: 180px;
    object-fit: cover;
    display: block;
}
.td-sidebar-hero__img--fallback {
    height: 180px;
    background:
        radial-gradient(circle at 65% 55%, rgba(255,200,60,0.8) 0%, transparent 35%),
        radial-gradient(circle at 60% 60%, rgba(255,140,20,0.6) 0%, transparent 40%),
        linear-gradient(180deg, #1a0a2e 0%, #5c2d6e 22%, #c0504d 42%, #f4a134 60%, #2a1a0a 92%, #1a0f05 100%);
}
.td-sidebar-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}
.td-sidebar-hero__top {
    position: absolute;
    top: 18px;
    left: 20px;
    right: 54px;
    z-index: 2;
}
.td-sidebar-hero__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 0;
    padding: 0;
}
.td-sidebar-hero__date {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
/* Hero filter button - matches Lovable: w-10 h-10 rounded-full bg-white/20 backdrop-blur-sm */
.td-sidebar-hero__filter {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
    z-index: 2;
}
/* SVG icon for hero filter (Settings2 style from Lovable) */
.td-sidebar-hero__filter-icon {
    width: 15px;
    height: 15px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.td-sidebar-hero__filter:hover {
    background: rgba(255,255,255,0.3);
}
.td-sidebar-hero__bottom {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 2;
}
.td-sidebar-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.td-sidebar-hero__location i { font-size: 12px; opacity: 0.85; }

@media (max-width: 800px) {
    .td-sidebar-hero__img,
    .td-sidebar-hero__img--fallback {
        height: 220px;
    }
    /* On mobile the site header is hidden — replace "Today" text with the brand name */
    .td-sidebar-hero__title {
        font-size: 0;
    }
    .td-sidebar-hero__title::before {
        content: 'ToDo.Today';
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        line-height: 1.1;
    }
}

/* DIGEST (Lovable Design - pixel-perfect) */
.td-sidebar-digest {
    background: var(--tt-muted, #f5f5f5);
    border: 1px solid var(--tt-border, #e5e5e5);
    border-radius: 16px;
    padding: 20px;
    animation: tdFadeUp 0.5s ease both;
    animation-delay: 0.1s;
}
.td-sidebar-digest__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.td-sidebar-digest__header svg {
  font-size: 20px;
}
.td-sidebar-digest__buttons svg{
  font-size: 16px;
}
.td-sidebar-digest__title {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
    color: var(--tt-foreground, #171717);
}
.td-sidebar-digest__desc {
    font-size: 14px;
    color: var(--tt-muted-foreground, #737373);
    line-height: 1.625;
    margin-bottom: 16px;
}
.td-sidebar-digest__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
	align-items: stretch;
}

.td-sidebar-digest__buttons .td-btn {
	display: grid !important;
	grid-template-columns: 16px 1fr;
	column-gap: 12px !important;
	align-items: center !important;
	justify-content: start !important;
	text-align: left !important;
}

.td-sidebar-digest__buttons .td-btn i,
.td-sidebar-digest__buttons .td-btn .fa,
.td-sidebar-digest__buttons .td-btn .fas,
.td-sidebar-digest__buttons .td-btn .fab,
.td-sidebar-digest__buttons .td-btn [class*="fa-"] {
	justify-self: center;
}

/* BUTTONS (Lovable Design - pixel-perfect) */
.td-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    transition: all 150ms ease-in-out !important;
    text-decoration: none !important;
    letter-spacing: -0.1px;
    text-align: left !important;
    width: 100% !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
}

/* Icon styling - fixed width for alignment */
.td-btn i,
.td-btn .fa,
.td-btn .fas,
.td-btn .fab,
.td-btn [class*="fa-"] {
    font-size: 16px !important;
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

/* WhatsApp Group - Light green (matches Lovable exactly) */
.td-btn--whatsapp-group {
    background: #E8FAF0 !important;
    color: #1a9e4a !important;
    border: 1px solid #c8f0d8 !important;
}
.td-btn--whatsapp-group i,
.td-btn--whatsapp-group [class*="fa-"] {
    color: #1a9e4a !important;
}
.td-btn--whatsapp-group:hover,
.td-btn--whatsapp-group:active {
    background: #25D366 !important;
    color: #ffffff !important;
    border-color: #25D366 !important;
    transform: none !important;
    box-shadow: none !important;
}
.td-btn--whatsapp-group:hover i,
.td-btn--whatsapp-group:hover [class*="fa-"],
.td-btn--whatsapp-group:active i,
.td-btn--whatsapp-group:active [class*="fa-"] {
    color: #ffffff !important;
}

/* WhatsApp Channel - Light green (same as Group) */
.td-btn--whatsapp-channel {
    background: #E8FAF0 !important;
    color: #1a9e4a !important;
    border: 1px solid #c8f0d8 !important;
}
.td-btn--whatsapp-channel i,
.td-btn--whatsapp-channel [class*="fa-"] {
    color: #1a9e4a !important;
}
.td-btn--whatsapp-channel:hover,
.td-btn--whatsapp-channel:active {
    background: #25D366 !important;
    color: #ffffff !important;
    border-color: #25D366 !important;
    transform: none !important;
}
.td-btn--whatsapp-channel:hover i,
.td-btn--whatsapp-channel:hover [class*="fa-"],
.td-btn--whatsapp-channel:active i,
.td-btn--whatsapp-channel:active [class*="fa-"] {
    color: #ffffff !important;
}

/* Telegram Channel - Light blue */
.td-btn--telegram {
    background: #E6F4FA !important;
    color: #0088cc !important;
    border: 1px solid #c4e4f0 !important;
}
.td-btn--telegram i,
.td-btn--telegram [class*="fa-"] {
    color: #0088cc !important;
}
.td-btn--telegram:hover,
.td-btn--telegram:active {
    background: #0088cc !important;
    color: #ffffff !important;
    border-color: #0088cc !important;
    transform: none !important;
}
.td-btn--telegram:hover i,
.td-btn--telegram:hover [class*="fa-"],
.td-btn--telegram:active i,
.td-btn--telegram:active [class*="fa-"] {
    color: #ffffff !important;
}

/* POPUP */
.td-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000; /* Above bottom nav (z-index: 9999) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.td-popup-overlay--active { opacity: 1; pointer-events: auto; }
.td-popup-overlay--active .td-popup-card { transform: translateY(0) scale(1); opacity: 1; }

.td-popup-card {
    background: #fff;
    border-radius: 24px;
    width: 500px;
    max-width: 92vw;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
}
.td-popup__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px 10px;
    border-bottom: 1px solid #f0eeea;
}
.td-popup__close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none; background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    color: #1a1a1a; font-size: 16px;
    margin: 0;
    padding: 0;
}
.td-popup__close:hover { background: #f0f0f0; }
.td-popup__close .td-popup__icon--back { display: none !important; }
.td-popup__close .td-popup__icon--close { display: inline-block !important; }
.td-popup__title { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; }

@media (max-width: 800px) {
    /* On mobile: slide up from bottom */
    .td-popup-overlay {
        align-items: flex-end;
        justify-content: center;
    }
    .td-popup-card {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(100%);
        opacity: 1;
    }
    .td-popup-overlay--active .td-popup-card {
        transform: translateY(0);
    }
    .td-popup__close .td-popup__icon--back { display: inline-block !important; }
    .td-popup__close .td-popup__icon--close { display: none !important; }
    /* Safe area padding for footer save button */
    .td-popup__footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.td-popup__tabs { display: flex; gap: 8px; padding: 16px 24px; border-bottom: 1px solid #f0eeea; }
.td-popup__tab {
    display: flex; align-items: center; gap: 7px;
    padding: 0px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #f0eeea;
    background: #fff; color: #6b6b6b;
    transition: all 0.25s ease;
    margin: 0;
}
.td-popup__tab:hover { border-color: #e0ddd6; }
.td-popup__tab i { font-size: 13px; }
.td-popup__tab--active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

.td-popup__body {
    flex: 1; overflow-y: auto;
    padding: 4px 14px 16px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
.td-popup__tab-content { display: none; }
.td-popup__tab-content--active { display: block; }

.td-popup__country {
    display: flex; align-items: center;
    padding: 14px 10px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}
.td-popup__country:hover { background: #fafaf8; border-color: #1a1a1a; }
.td-popup__country:has(+ .td-popup__cities .td-popup__radio--selected) { background: #fafaf8; }
.td-popup__country-flag {
    width: 28px;
    height: 20px;
    margin-right: 14px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.td-popup__country-info { flex: 1; }
.td-popup__country-name { font-size: 15px; font-weight: 600; }
.td-popup__country-meta { font-size: 13px; color: #666666; margin-top: 2px; }
.td-popup__country-chevron { font-size: 18px; color: #666666; transition: transform 0.3s ease; }
.td-popup__country--expanded .td-popup__country-chevron { transform: rotate(180deg); }

.td-popup__cities { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.td-popup__cities--open { max-height: 500px; }

.td-popup__city {
    display: flex; align-items: center;
    padding: 12px 10px 12px 28px;
    cursor: pointer; border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}
.td-popup__city:hover { background: #fafaf8; border-color: #1a1a1a; }
.td-popup__city:has(.td-popup__radio--selected) { background: #fafaf8; }
.td-popup__city-icon { font-size: 20px; margin-right: 12px; }
.td-popup__city-name { font-size: 14.5px; font-weight: 500; flex: 1; }
.td-popup__city-count { font-size: 13px; color: #9a9a9a; margin-right: 12px; }

.td-popup__radio {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s ease;
}
.td-popup__radio--selected { border-color: #1a1a1a; }
.td-popup__radio-inner {
    width: 12px; height: 12px;
    border-radius: 50%; background: #1a1a1a;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.16,1,0.3,1);
}
.td-popup__radio--selected .td-popup__radio-inner { transform: scale(1); }

.td-popup__vibes-placeholder { text-align: center; padding: 40px 20px; color: #9a9a9a; font-size: 14px; }

.td-popup__footer { padding: 16px 24px 22px; border-top: 1px solid #f0eeea; }
.td-popup__save {
    width: 100%; padding: 14px;
    border-radius: 14px;
    background: #1a1a1a; color: #fff;
    font-size: 15px; font-weight: 600;
    border: none; cursor: pointer;
    transition: all 0.25s ease;
    margin: 0;
    line-height: 1.4em;
}
.td-popup__save:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

@keyframes tdFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .td-sidebar {
        position: relative; height: auto;
        border-right: none;
        border-bottom: 1px solid #f0eeea;
    }
}

/* ═══════════════════════════════════════════════════════════
   TODO.TODAY — Welcome Page Styles
   ═══════════════════════════════════════════════════════════ */

/* Hide default header on welcome page */
.home header#header {
    display: none;
}

.home footer#footer {
    display: none;
}

/* Hide mobile bottom nav on welcome page */
.home .tt-bottom-nav {
    display: none;
}

/* ─── Reset (scoped) ─── */
.tdtd-welcome,
.tdtd-welcome *,
.tdtd-welcome *::before,
.tdtd-welcome *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── Variables ─── */
.tdtd-welcome {
  --bg: #fafafa;
  --bg-hero-mobile: #000000;
  --text: #212121;
  --text-light: #6b6b6b;
  --text-white: #ffffff;
  --accent: #000000;
  --card-radius: 16px;
  --section-gap: 36px;
  --ring-color: #000000;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
}

.home header.tt-desktop-header {
  display: none;
}

.home #main {
  padding-top: 0 !important;
}

/* ═══════════════════════════════════════
   LAYOUT — Desktop side-by-side
   ═══════════════════════════════════════ */
.tdtd-wrap {
  display: flex;
  min-height: 100vh;
  max-width: 1050px;
  margin: 0 auto;
  padding: 48px 16px;
  gap: 64px;
}

/* ═══════════════════════════════════════
   HERO PANEL (left sticky)
   ═══════════════════════════════════════ */
.tdtd-hero {
  flex: 0 0 340px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Logo */
.tdtd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px;
}

.tdtd-logo-image {
    height: 40px;
}

.tdtd-logo:hover {
  color: inherit;
  text-decoration: none;
}

.tdtd-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-body);
}

/* Headline */
.tdtd-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Subtitle */
.tdtd-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 300px;
}

/* Stats row */
.tdtd-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tdtd-stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.2;
}

.tdtd-stat-label {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.tdtd-stats-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA BUTTON
   ═══════════════════════════════════════ */
.tdtd-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1.4;
}

.tdtd-cta:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
}

.tdtd-cta:disabled,
.tdtd-cta[disabled] {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #fff;
}

.tdtd-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tdtd-cta:not(:disabled):hover .tdtd-cta-icon {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   CHANNELS PANEL (right scrollable)
   ═══════════════════════════════════════ */
.tdtd-channels {
  flex: 1;
  min-width: 0;
}

.tdtd-channels-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.tdtd-channels-subtitle {
  display: none;
}

/* ═══════════════════════════════════════
   COUNTRY SECTION
   ═══════════════════════════════════════ */
.tdtd-country {
  margin-bottom: var(--section-gap);
  animation: tdtdFadeUp 0.5s ease both;
}

.tdtd-country:nth-child(2) { animation-delay: 0.07s; }
.tdtd-country:nth-child(3) { animation-delay: 0.14s; }
.tdtd-country:nth-child(4) { animation-delay: 0.21s; }
.tdtd-country:nth-child(5) { animation-delay: 0.28s; }
.tdtd-country:nth-child(6) { animation-delay: 0.35s; }

@keyframes tdtdFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tdtd-country-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tdtd-country-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tdtd-country-name {
  font-weight: 700;
  font-size: 17px;
}

.tdtd-country-count {
  font-size: 14px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   CHANNEL GRID
   ═══════════════════════════════════════ */
.tdtd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

/* ═══════════════════════════════════════
   CHANNEL CARD
   ═══════════════════════════════════════ */
.tdtd-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: 3px solid transparent;
  outline-offset: 3px;
  background: #2a1a0e;
}

.tdtd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.tdtd-card.selected {
  outline-color: var(--ring-color);
}

.tdtd-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tdtd-card:hover img {
  transform: scale(1.06);
}

/* Gradient overlay */
.tdtd-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Card info */
.tdtd-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tdtd-card-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.tdtd-card-name .tdtd-emoji {
  font-size: 16px;
  line-height: 1;
}

.tdtd-card-events {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
}

/* ═══════════════════════════════════════
   CHECKMARK BADGE
   ═══════════════════════════════════════ */
.tdtd-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tdtd-card.selected .tdtd-check {
  opacity: 1;
  transform: scale(1);
}

.tdtd-check svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ═══════════════════════════════════════
   MOBILE LAYOUT (≤ 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .tdtd-wrap {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  /* Hero becomes full-width dark header */
  .tdtd-hero {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
    background: var(--bg-hero-mobile);
    color: var(--text-white);
    padding: 44px 24px 36px;
    text-align: center;
    align-items: center;
    gap: 18px;
    border-radius: 0;
  }

  .tdtd-headline {
    color: var(--text-white);
    font-size: 28px;
    line-height: 1.2;
  }

  .tdtd-sub {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
  }

  .tdtd-stat-label {
    color: rgba(255, 255, 255, 0.6);
  }

  .tdtd-stats-divider {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Hide desktop CTA on mobile */
  .tdtd-hero .tdtd-cta {
    display: none;
  }

  /* Channels section */
  .tdtd-channels {
    padding: 28px 20px 80px;
  }

  .tdtd-channels-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
  }

  .tdtd-channels-subtitle {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
  }

  .tdtd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tdtd-card {
    aspect-ratio: 1 / 1;
  }

  .tdtd-card-events {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════ */
.tdtd-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .tdtd-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
  }

  .tdtd-mobile-cta .tdtd-cta {
    border-radius: 60px;
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   SCROLLBAR (webkit)
   ═══════════════════════════════════════ */
.tdtd-welcome ::-webkit-scrollbar {
  width: 6px;
}

.tdtd-welcome ::-webkit-scrollbar-track {
  background: transparent;
}

.tdtd-welcome ::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   LOADING SKELETON (optional)
   ═══════════════════════════════════════ */
.tdtd-card-skeleton {
  background: linear-gradient(
    110deg,
    #e8e8e8 8%,
    #f5f5f5 18%,
    #e8e8e8 33%
  );
  background-size: 200% 100%;
  animation: tdtdShimmer 1.5s linear infinite;
  border-radius: var(--card-radius);
  aspect-ratio: 4 / 3;
}

@keyframes tdtdShimmer {
  to {
    background-position-x: -200%;
  }
}

@media (max-width: 768px) {
  .tdtd-card-skeleton {
    aspect-ratio: 1 / 1;
  }
}

p.tt-field-error:empty {
  display: none !important;
}

/* ═══════════════════════════════════════
   RECURRING INSTANCES MODAL (single event page)
   ═══════════════════════════════════════ */

.tt-single-recurring-count--clickable {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tt-single-recurring-count--clickable:hover {
  opacity: 0.75;
}
.tt-single-recurring-count--clickable:focus-visible {
  outline: 2px solid var(--tt-primary, #171717);
  outline-offset: 2px;
  border-radius: 3px;
}

.tt-recurring-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

@media (min-width: 640px) {
  .tt-recurring-modal {
    align-items: center;
    padding: 24px;
  }
}

.tt-recurring-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.tt-recurring-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: clip;
  z-index: 1;
}

@media (min-width: 640px) {
  .tt-recurring-modal__panel {
    border-radius: 15px;
    max-width: 480px;
    height: auto;
    max-height: 72vh;
  }
}

.tt-recurring-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 8px;
}

@media (min-width: 640px) {
  .tt-recurring-modal__head {
    padding: 16px 20px 12px;
  }
}

.tt-recurring-modal__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #171717 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .tt-recurring-modal__title {
    font-size: 16px !important;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

.tt-recurring-modal__close {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #737373;
  font-size: 22px !important;
  line-height: 1 !important;
  padding: 4px 6px !important;
  border-radius: 6px !important;
  margin: 0 !important;
  transition: color 0.15s;
}
.tt-recurring-modal__close:hover {
  color: #171717;
}

.tt-recurring-modal__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px;
  flex: 1;
  min-height: 0;
}
.tt-recurring-modal__body::-webkit-scrollbar {
  width: 5px;
}
.tt-recurring-modal__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 0;
}
.tt-recurring-modal__body::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.tt-recurring-modal__body::-webkit-scrollbar-button {
  display: none;
}

.tt-recurring-modal__loading,
.tt-recurring-modal__empty,
.tt-recurring-modal__error {
  text-align: center;
  padding: 32px 0;
  font-size: 14px;
  text-transform: none !important;
  margin: 0;
}
.tt-recurring-modal__loading { color: #737373; }
.tt-recurring-modal__empty   { color: #737373; }
.tt-recurring-modal__error   { color: #dc2626; }

/* Parent event card */
.tt-recurring-parent {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  margin-bottom: 16px;
}

.tt-recurring-parent__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-recurring-parent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tt-recurring-parent__thumb-placeholder {
  color: #a3a3a3;
}
.tt-recurring-parent__thumb-placeholder .tt-icon {
  width: 28px;
  height: 28px;
}

.tt-recurring-parent__content {
  flex: 1;
  min-width: 0;
  padding: 2px 0;
}

.tt-recurring-parent__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 0 3px !important;
  color: #171717 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-recurring-parent__meta {
  font-size: 12px;
  color: #737373;
  margin: 0 0 2px;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.tt-recurring-parent__heart {
  flex-shrink: 0;
  align-self: center;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 6px !important;
  color: #d1d5db;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  margin: 0 0 0 8px !important;
}
.tt-recurring-parent__heart .tt-icon {
  width: 20px;
  height: 20px;
}
.tt-recurring-parent__heart:hover {
  color: #ef4444;
}
.tt-recurring-parent__heart.tt-recurring-inst__heart--liked {
  color: #ef4444 !important;
}

.tt-recurring-modal__section-label {
  font-size: 12px;
  color: #737373;
  font-weight: 500;
  margin: 0 0 8px;
  padding: 0 4px;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Instance row */
.tt-recurring-inst {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fbfbfb;
  margin-bottom: 6px;
  border: 2px solid transparent;
}

.tt-recurring-inst__icon {
  color: #737373;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.tt-recurring-inst__icon .tt-icon {
  width: 16px;
  height: 16px;
}

.tt-recurring-inst__content {
  flex: 1;
  min-width: 0;
}

.tt-recurring-inst__date {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  margin: 0 0 2px;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.tt-recurring-inst__meta {
  font-size: 12px;
  color: #737373;
  margin: 0;
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Heart button */
.tt-recurring-inst__heart {
  flex-shrink: 0;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 6px !important;
  color: #d1d5db;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  margin: 0 !important;
}
.tt-recurring-inst__heart .tt-icon {
  width: 18px;
  height: 18px;
}
.tt-recurring-inst__heart:hover {
  color: #ef4444;
}
.tt-recurring-inst__heart--liked {
  color: #ef4444 !important;
}

body.tt-modal-open {
  overflow: hidden;
}

/* Shared Todo.Today footer */

.tt-locations-footer {
	background: #f4f4f5;
	border-top: 1px solid #e4e4e7;
	color: #71717a;
}

.tt-locations-footer a {
	color: #71717a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tt-locations-footer a:hover,
.tt-locations-footer a:focus {
	color: #0a0a0a;
	text-decoration: none;
}

.tt-locations-footer-desktop {
	display: none;
}

.tt-locations-footer-inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 40px 24px;
}

.tt-locations-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.tt-locations-footer-heading {
	margin: 0 0 16px;
	color: #0a0a0a;
	font-size: 14px;
	font-weight: 600;
}

.tt-locations-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-locations-footer-list li + li {
	margin-top: 12px;
}

.tt-locations-footer-list a {
	font-size: 14px;
}

.tt-locations-footer-bar {
	border-top: 1px solid #e4e4e7;
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.tt-locations-footer-copy {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.tt-locations-footer-sep {
	color: #a1a1aa;
}

.tt-locations-footer-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tt-locations-social-icon {
	width: 20px;
	height: 20px;
	display: block;
}

.tt-locations-footer-mobile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 15px;
	max-width: 100%;
	box-sizing: border-box;
}

@media (max-width: 800px) {
	.tt-locations-footer-mobile {
		padding-bottom: 85px;
	}
}

.tt-locations-footer-mobile-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 15px;
	font-size: 14px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.tt-locations-footer-mobile-nav a {
	white-space: nowrap;
	color: #71717a;
	text-overflow: clip;
}

.tt-locations-footer-mobile-nav a:hover,
.tt-locations-footer-mobile-nav a:focus {
	color: #0a0a0a;
}

.tt-locations-footer-mobile .tt-locations-footer-social {
	gap: 20px;
}

.tt-locations-footer-mobile .tt-locations-footer-social a {
	color: #71717a;
}

.tt-locations-footer-mobile .tt-locations-footer-social a:hover,
.tt-locations-footer-mobile .tt-locations-footer-social a:focus {
	color: #0a0a0a;
}

.tt-locations-footer-copy-mobile {
	margin: 0;
	font-size: 12px;
	color: #71717a;
	text-align: center;
}

@media (min-width: 1024px) {
	.tt-locations-footer-desktop {
		display: block;
	}

	.tt-locations-footer-mobile {
		display: none;
	}
}



/******************
MMR MERGED: /wp-content/themes/flatsome-child/assets/css/todo-about.css
***************/

/**
 * Todo Today – About Page Styles (v3, Lovable-aligned)
 * File: /wp-content/themes/flatsome-child/assets/css/todo-about.css
 */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --todo-black:  #111110;
  --todo-white:  #F8F6F1;
  --todo-warm:   #F0EBE1;
  --todo-warm-light: #f5f1ea;
  --todo-gold:   #C8A96E;
  --todo-muted:  #7A7570;
  --todo-gap:    clamp(3rem, 8vw, 7rem);
  --todo-radius: 16px;
}

/* ── Hide Flatsome page title section ──────────────────── */
#page-title,
.entry-header,
.page-title-default {
  display: none !important;
}

/* ── HERO ───────────────────────────────────────────────── */
.wp-block-cover.todo-hero {
  min-height: 85vh !important;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  align-items: flex-end !important;
}

.todo-hero__content {
  padding-bottom: clamp(3rem, 6vw, 6rem) !important;
  padding-left: clamp(1.25rem, 5vw, 4rem) !important;
  padding-right: clamp(1.25rem, 5vw, 4rem) !important;
  text-align: left !important;
}

.todo-hero__content * {
  text-align: left !important;
}

p.todo-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(248,246,241,0.6) !important;
  margin-bottom: 1rem !important;
  text-align: left !important;
}

body h1.todo-hero__title,
h1.todo-hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  color: #F8F6F1 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.5rem !important;
  text-align: left !important;
}

/* Gold accent on "local life," span */
h1.todo-hero__title .todo-hero__accent {
  color: var(--todo-gold) !important;
}

p.todo-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  color: rgba(248,246,241,0.7) !important;
  line-height: 1.65 !important;
  font-weight: 300 !important;
  text-align: left !important;
}

/* ── BUTTONS ────────────────────────────────────────────── */
body .todo-btn-white .wp-block-button__link,
body .todo-btn-white .wp-block-button__link.button,
body .todo-btn-white .wp-element-button {
  background-color: #F8F6F1 !important;
  color: #111110 !important;
  border: 2px solid #F8F6F1 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .todo-btn-dark .wp-block-button__link,
body .todo-btn-dark .wp-block-button__link.button,
body .todo-btn-dark .wp-element-button {
  background-color: #111110 !important;
  color: #F8F6F1 !important;
  border: 2px solid #111110 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .todo-btn-outline-white .wp-block-button__link,
body .todo-btn-outline-white .wp-block-button__link.button,
body .todo-btn-outline-white .wp-element-button {
  background: transparent !important;
  background-color: transparent !important;
  color: #F8F6F1 !important;
  border: 1.5px solid rgba(248,246,241,0.35) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .todo-btn-white .wp-element-button:hover { background-color: #ede9e0 !important; border-color: #ede9e0 !important; color: #111110 !important; }
body .todo-btn-dark .wp-element-button:hover { background-color: #2a2a28 !important; border-color: #2a2a28 !important; }
body .todo-btn-outline-white .wp-element-button:hover { background-color: rgba(248,246,241,0.08) !important; border-color: rgba(248,246,241,0.6) !important; }

/* ── LABEL ──────────────────────────────────────────────── */
p.todo-label {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--todo-muted) !important;
  margin-bottom: 0.5rem !important;
}

/* Gold label in dark sections */
.todo-intro-strip p.todo-label,
.todo-footer-cta p.todo-label {
  color: rgba(248,246,241,0.5) !important;
}

/* ── DIVIDER ────────────────────────────────────────────── */
hr.todo-divider,
.wp-block-separator.todo-divider {
  border: none !important;
  border-top: 2px solid var(--todo-gold) !important;
  width: 48px !important;
  margin: 1rem 0 !important;
  opacity: 1 !important;
  background: none !important;
}

/* ── INTRO STRIP ────────────────────────────────────────── */
body .wp-block-group.todo-intro-strip,
.wp-block-group.todo-intro-strip {
  background-color: #111110 !important;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) !important;
}

body p.todo-intro-text,
p.todo-intro-text {
  font-size: clamp(1rem, 2vw, 1.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: rgba(248,246,241,0.65) !important;
  margin-bottom: 1.25rem !important;
}

/* Lead paragraph — first intro text is larger and bolder */
.todo-intro-strip p.todo-intro-text:first-of-type,
body .todo-intro-strip p.todo-intro-text:first-of-type {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem) !important;
  font-weight: 500 !important;
  color: rgba(248,246,241,0.95) !important;
  line-height: 1.6 !important;
}

body p.todo-author__name,
p.todo-author__name {
  font-size: 0.9rem !important;
  color: #F8F6F1 !important;
  font-weight: 600 !important;
  margin: 0 0 0.15rem !important;
  line-height: 1.3 !important;
}

body p.todo-author__instagram,
p.todo-author__instagram {
  font-size: 0.8rem !important;
  color: rgba(248,246,241,0.55) !important;
  font-weight: 400 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

body p.todo-author__instagram a,
p.todo-author__instagram a {
  color: rgba(248,246,241,0.55) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  transition: color 0.2s !important;
}

body p.todo-author__instagram a:hover,
p.todo-author__instagram a:hover {
  color: rgba(248,246,241,0.9) !important;
}

.wp-block-group.todo-author {
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(248,246,241,0.12) !important;
  gap: 1rem !important;
  align-items: center !important;
}

.wp-block-group.todo-author .todo-author__avatar img,
figure.todo-author__avatar img {
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
}

.todo-author__info {
  display: flex !important;
  flex-direction: column !important;
}

/* ── STORY SECTIONS ─────────────────────────────────────── */
body .wp-block-group.todo-story-section,
.wp-block-group.todo-story-section {
  background-color: #ffffff !important;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) !important;
}

/* columns inside story sections: vertically centered, correct gap */
.wp-block-group.todo-story-section .wp-block-columns,
.wp-block-group.todo-story-section--warm .wp-block-columns {
  align-items: center !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
}

body .wp-block-group.todo-story-section--warm,
.wp-block-group.todo-story-section--warm {
  background-color: #f5f5f5 !important;
}

.todo-story-grid.todo-story-grid--reverse {
  flex-direction: row-reverse !important;
}

body h2.todo-story__title,
h2.todo-story__title {
  font-size: clamp(1.75rem, 3vw, 2.625rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  color: #111110 !important;
  margin-top: 0.25rem !important;
  margin-bottom: 1rem !important;
}

body p.todo-story__body,
p.todo-story__body {
  font-size: 0.95rem !important;
  color: #7A7570 !important;
  line-height: 1.75 !important;
  margin-bottom: 0.75rem !important;
}

body p.todo-story__body--strong,
p.todo-story__body--strong {
  color: #111110 !important;
  font-weight: 500 !important;
}

/* hide gold divider in all story sections */
.todo-story-section .todo-divider,
.todo-story-section .wp-block-separator,
.todo-story-section--warm .todo-divider,
.todo-story-section--warm .wp-block-separator {
  display: none !important;
}

/* rounded-2xl images to match Lovable */
.todo-story__image,
.wp-block-image.todo-story__image {
  border-radius: 16px !important;
  overflow: hidden !important;
}

.todo-story__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: 4 / 3 !important;
  display: block !important;
  border-radius: 16px !important;
}

/* ── LIFE STREAM ────────────────────────────────────────── */
body .wp-block-group.todo-lifestream,
.wp-block-group.todo-lifestream {
  background-color: #ffffff !important;
  padding: var(--todo-gap) clamp(1.25rem, 5vw, 4rem) !important;
}

body h2.todo-lifestream__title,
h2.todo-lifestream__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #111110 !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem !important;
}

body p.todo-lifestream__body,
p.todo-lifestream__body {
  font-size: 0.95rem !important;
  color: #7A7570 !important;
  line-height: 1.75 !important;
  margin-bottom: 0.4rem !important;
}

/* Life Stream cards */
.wp-block-columns.todo-ls-icons {
  gap: 1rem !important;
  margin-top: 1.25rem !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-block-column.todo-ls-card {
  background-color: #f2f2f0 !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important;
  text-align: center !important;
}

/* new pattern: wp:html div wrapper */
.todo-ls-icon-wrap {
  width: 40px !important;
  height: 40px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111110 !important;
  flex-shrink: 0 !important;
}

/* old pattern fallback: emoji paragraph */
p.todo-ls-icon-circle {
  width: 40px !important;
  height: 40px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  font-size: 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

p.todo-ls-icon-label {
  font-size: 0.875rem !important;
  color: #111110 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  text-align: center !important;
}

p.todo-ls-tagline {
  font-size: 0.9rem !important;
  color: #111110 !important;
  font-weight: 500 !important;
  font-style: italic !important;
  margin-top: 0.5rem !important;
}

/* ── FEATURE GRID ───────────────────────────────────────── */
body .wp-block-group.todo-features,
.wp-block-group.todo-features {
  padding: var(--todo-gap) clamp(1.25rem, 5vw, 4rem) !important;
  background-color: #f5f5f5 !important;
}

/* Feature cards — match Lovable's bg-card border rounded-2xl */
.wp-block-columns.todo-features-grid {
  gap: 1.5rem !important;
}

.wp-block-column.todo-feature-card {
  background-color: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 16px !important;
  padding: clamp(1.5rem, 3vw, 2.5rem) !important;
  display: flex !important;
  flex-direction: column !important;
}

.todo-feature-icon {
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #f2f2f0 !important;
  border-radius: 50% !important;
  margin-bottom: 1.25rem !important;
  color: #111110 !important;
  flex-shrink: 0 !important;
}

.todo-feature__note {
  font-size: 0.8rem !important;
  color: #7A7570 !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  border-top: 1px solid #e5e5e5 !important;
  padding-top: 1rem !important;
  margin-top: auto !important;
}

p.todo-feature-category {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #7A7570 !important;
  margin-bottom: 0.25rem !important;
}

body h3.todo-feature__title,
h3.todo-feature__title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: clamp(1.1rem, 2vw, 1.375rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #111110 !important;
  margin: 0 0 1rem !important;
}

body p.todo-feature__body,
p.todo-feature__body {
  font-size: 0.88rem !important;
  color: #7A7570 !important;
  line-height: 1.7 !important;
  margin-bottom: 0.75rem !important;
}

/* Feature list — Lovable bullet style */
ul.todo-feature__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

ul.todo-feature__list li {
  font-size: 0.88rem !important;
  color: #7A7570 !important;
  line-height: 1.6 !important;
  padding: 0.3rem 0 !important;
  padding-left: 1.25rem !important;
  position: relative !important;
}

ul.todo-feature__list li::before {
  content: '·' !important;
  position: absolute !important;
  left: 0 !important;
  color: #111110 !important;
  font-weight: 700 !important;
}

/* ── TEXT-ONLY 2-COLUMN (places/curation) ───────────────── */
body h3.todo-text-col__title,
h3.todo-text-col__title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: #111110 !important;
  margin-bottom: 1rem !important;
}

/* ── VALUES (light warm background — Lovable bg-secondary/50) ── */
body .wp-block-group.todo-values,
.wp-block-group.todo-values {
  background-color: #f7f7f7 !important;
  padding: var(--todo-gap) clamp(1.25rem, 5vw, 4rem) !important;
}

body h2.todo-values__title,
body .todo-values h2,
h2.todo-values__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #111110 !important;
  margin-bottom: clamp(2rem, 5vw, 4rem) !important;
  text-align: center !important;
}

/* Center and constrain the 2-column grid */
.wp-block-columns.todo-values-grid {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 0 2rem !important;
}

.todo-value-item {
  margin-bottom: 2rem !important;
}

/* Dot rendered as a block-level sibling, not ::before pseudo */
body h4.todo-value__name,
body .todo-values h4,
h4.todo-value__name {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #111110 !important;
  margin: 0 0 0.3rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  line-height: 1.3 !important;
}

h4.todo-value__name::before {
  content: '' !important;
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  border-radius: 50% !important;
  background: #111110 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

body p.todo-value__desc,
body .todo-values p,
p.todo-value__desc {
  font-size: 0.88rem !important;
  color: #7A7570 !important;
  line-height: 1.65 !important;
  padding-left: calc(10px + 0.75rem) !important;
  margin: 0 !important;
}

/* ── STATS (dark background — Lovable bg-foreground) ───── */
body .wp-block-group.todo-stats,
.wp-block-group.todo-stats {
  background-color: #111110 !important;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) !important;
}

body p.todo-stats__label,
p.todo-stats__label {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(248,246,241,0.5) !important;
  margin-bottom: 2.5rem !important;
}

body h3.todo-stat__number,
h3.todo-stat__number {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: #F8F6F1 !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
}

body p.todo-stat__desc,
p.todo-stat__desc {
  font-size: 0.68rem !important;
  color: rgba(248,246,241,0.5) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

/* ── WHERE WE ARE ───────────────────────────────────────── */
body .wp-block-group.todo-where,
.wp-block-group.todo-where {
  background-color: #ffffff !important;
  padding: var(--todo-gap) clamp(1.25rem, 5vw, 4rem) !important;
}

body h2.todo-where__title,
h2.todo-where__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 0.75rem !important;
  color: #111110 !important;
}

body p.todo-where__body,
p.todo-where__body {
  font-size: 0.95rem !important;
  color: #7A7570 !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.7 !important;
}

.todo-cities-dynamic {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  margin-bottom: 2.5rem !important;
  max-width: 100% !important;
}

p.todo-city-pill,
span.todo-city-pill,
a.todo-city-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  padding: 0.55rem 1.1rem !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 9999px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #444 !important;
  background: #ffffff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.15s, background 0.15s !important;
}

a.todo-city-pill:hover {
  border-color: #aaa !important;
  background: #f8f8f8 !important;
  color: #111110 !important;
}

a.todo-city-pill:focus,
a.todo-city-pill:focus-visible,
a.todo-city-pill:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #e2e2e2 !important;
  border-width: 1px !important;
}

p.todo-city-pill svg,
span.todo-city-pill svg,
a.todo-city-pill svg {
  color: #7A7570 !important;
  flex-shrink: 0 !important;
}

body .wp-block-group.todo-where-cta,
.wp-block-group.todo-where-cta {
  background-color: #f5f5f5 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 16px !important;
  padding: 2.5rem 3rem !important;
  text-align: center !important;
  margin-top: 3rem !important;
  max-width: 720px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body h3.todo-where-cta__title,
h3.todo-where-cta__title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: #111110 !important;
}

/* ── FOOTER CTA ─────────────────────────────────────────── */
body .wp-block-group.todo-footer-cta,
.wp-block-group.todo-footer-cta {
  background-color: #111110 !important;
  padding: var(--todo-gap) clamp(1.25rem, 5vw, 4rem) !important;
  text-align: center !important;
}

body h2.todo-footer-cta__title,
body .todo-footer-cta h2,
h2.todo-footer-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.625rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #F8F6F1 !important;
  margin-bottom: 1rem !important;
}

body p.todo-footer-cta__sub,
p.todo-footer-cta__sub {
  font-size: 1rem !important;
  color: rgba(248,246,241,0.6) !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.7 !important;
}

body p.todo-footer-cta__note,
p.todo-footer-cta__note {
  font-size: 0.85rem !important;
  color: rgba(248,246,241,0.5) !important;
  margin-top: 2.5rem !important;
  line-height: 1.6 !important;
  font-style: italic !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.todo-footer-cta .wp-block-buttons {
  gap: 0.75rem !important;
  margin-bottom: 0 !important;
  justify-content: center !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 781px) {
  .todo-story-grid--reverse { flex-direction: column !important; }
  .wp-block-column.todo-stat { flex-basis: calc(50% - 1rem) !important; }
  .todo-features-grid { flex-direction: column !important; }
  .todo-values-grid { flex-direction: column !important; }
  .todo-ls-icons { flex-direction: column !important; }

  /* How it started: text before image on mobile */
  .todo-story-section--warm .wp-block-columns {
    flex-direction: column !important;
  }
  .todo-story-section--warm .wp-block-column:first-child {
    order: 2 !important;
  }
  .todo-story-section--warm .wp-block-column:last-child {
    order: 1 !important;
  }

  /* Footer CTA buttons: stack on mobile */
  .todo-footer-cta .wp-block-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  .todo-footer-cta .wp-block-button {
    width: 100% !important;
    max-width: 300px !important;
  }
  .todo-footer-cta .wp-block-button__link,
  .todo-footer-cta .wp-element-button {
    width: 100% !important;
    text-align: center !important;
  }
}

/* extra css in future move to top or if global css move to other file*/
#main {
        padding-top: 0px !important;
  }

.tt-desktop-header{display: none !important;}
    
#header, .header-wrapper, .header-main, #wide-nav, .header-full-width, .html_nav_position_text_top, [class*="html_nav_position_text"], .header-top .html-element, .top-bar .html-element, .header-inner > .html-element{     display: block !important;}

