/* =============================================
   Durban Big Walk - Carbon Copy CSS
   Matches original durbanbigwalk.co.za
   ============================================= */

/* === Fonts === */
@font-face {
    font-family: 'PaytoneOne';
    src: url('/fonts/PaytoneOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === Base === */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    scroll-behavior: smooth;
    color: #333;
}

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

/* === Sticky wrapper for entire header === */
.header-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1200;
}

/* === Header: 3-Row Layout (Suncoast | Logo | ECR) === */
.header-top-bar {
    background: #fee712;
    border-bottom: none;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px;
}

.header-top-left,
.header-top-right {
    flex: 1;
}

.header-top-center {
    flex: 0 0 auto;
    text-align: center;
}

.header-top-right {
    text-align: right;
}

.header-main-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.suncoast-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.ecr-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.header-sponsor-logo {
    display: inline-block;
}

/* === Nav Bar === */
.header-navbar {
    background: #1e293b !important;
    color: #fee712 !important;
    justify-content: center !important;
    border-bottom: none;
}

.header-navbar .mud-appbar {
    position: relative !important;
}

.nav-link-btn {
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase !important;
    color: #fee712 !important;
    transition: color 0.2s ease;
    padding: 8px 16px !important;
}

.nav-link-btn:hover {
    color: #51c6e0 !important;
    background-color: transparent !important;
}

/* === MudMainContent padding override (sticky header, not fixed) === */
.mud-main-content:not(.admin-main-content) {
    padding-top: 0 !important;
}

/* === Hero Section - Matches original === */
.hero-section {
    position: relative;
    min-height: 55vw;
    background-color: #fcdb00;
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-wave-divider {
    background: rgba(254,231,18,1);
    height: 80px;
    border-radius: 0 0 50% 50%;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.hero-banner-logo {
    width: 32%;
    margin-left: 5%;
    height: auto;
}

.hero-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: -70px auto 22px;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-blue-wave {
    width: 100%;
    display: block;
    margin-top: auto;
    z-index: 1;
}

/* === Countdown Section (white bg with cyan accents) === */
.countdown-section {
    background: #fff;
    padding: 2rem 0 3rem;
    text-align: center;
}

.countdown-heading {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.cyan-text {
    color: #51c6e0;
}

.gallery-btn {
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    background: transparent !important;
    color: #1e293b !important;
    border: 3px solid #fee712 !important;
    border-radius: 25px !important;
    padding: 8px 28px !important;
    font-size: 1rem !important;
}

.gallery-btn:hover {
    background: #fee712 !important;
}

/* Countdown Timer Component */
.countdown-container {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 1.2rem 1.8rem;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    color: #51c6e0;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
}

.countdown-label {
    color: #666;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    text-transform: capitalize;
}

.countdown-separator {
    color: #51c6e0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 0.25rem;
}

.countdown-started-msg {
    color: #cc0711;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1rem;
}

/* === Info Cards Section === */
.info-cards-section {
    background: #f0f0f0;
    padding: 3rem 0;
}

.info-card {
    background: #fff !important;
    text-align: center;
    height: 100%;
    border-radius: 0;
    border: 1px solid #ddd !important;
}

.info-card-title {
    color: #51c6e0;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
}

.info-card-text {
    color: #444;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* === Sponsors Section === */
.sponsors-section {
    background: #fff;
    padding: 3rem 0;
}

.sponsors-grid {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2rem;
}

.sponsors-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sponsor-link {
    display: inline-block;
    flex: 0 1 200px;
    text-align: center;
}

.sponsor-img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.sponsor-link:hover .sponsor-img {
    opacity: 0.7;
}

/* === Page Banner (cyan bg for inner pages) === */
.page-banner {
    background: #51c6e0;
    padding: 2.5rem 0;
    text-align: center;
}

.page-banner-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    margin: 0;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* === Archive Banner (Product listing pages) === */
.archive-banner {
    background: #334155;
    padding: 2rem 0;
    text-align: center;
}

.archive-banner-title {
    color: #fff !important;
    font-weight: 700 !important;
    margin: 0;
}

/* === Product Grid (WooCommerce-style) === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-out-of-stock-badge {
    display: block;
    text-align: center;
    background: #eee;
    color: #cc0711;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    text-transform: uppercase;
}

.product-card-summary {
    padding: 1rem;
    text-align: center;
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-card-price {
    display: block;
    font-size: 0.95rem;
    color: #cc0711;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card-price del {
    color: #999;
    margin-right: 0.5rem;
}

.product-card-price ins {
    text-decoration: none;
    font-weight: 600;
}

.product-card-category {
    display: block;
    font-size: 0.75rem;
    color: #51c6e0;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

/* === Gallery Page === */
.gallery-title-banner {
    background: #334155;
    padding: 2.5rem 0;
    text-align: center;
}

.gallery-title-text {
    color: #fff !important;
    font-weight: 700 !important;
}

.gallery-tabs-section {
    padding: 2rem 0 3rem;
    background: #fff;
}

.gallery-tabs .mud-tabs-tabbar {
    background: #51c6e0 !important;
    border-radius: 6px 6px 0 0;
}

.gallery-tabs .mud-tab {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
}

.gallery-tabs .mud-tab.mud-tab-active {
    color: #fff !important;
    background: #334155 !important;
}

.gallery-tab-panel {
    padding: 1.5rem 0 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
}

.gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.08);
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 0.2;
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* === Ticket Cards (legacy) === */
.ticket-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.ticket-card .mud-card-content {
    flex-grow: 1;
}

.ticket-card-media {
    background-color: #e2e8f0;
}

/* === Price Styling === */
.price-sale {
    color: #51c6e0 !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}

.price-original {
    text-decoration: line-through;
    color: #94a3b8 !important;
}

/* === Footer (matches original) === */
.site-footer {
    margin-top: 0;
}

.footer-contact-bar {
    background: #51c6e0;
    padding: 1rem 0;
    text-align: center;
}

.footer-contact-text {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-bottom {
    background: #1e293b;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-nav-link {
    color: #fee712;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #51c6e0;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0.5rem 0;
}

.footer-credit {
    color: #475569;
    font-size: 0.7rem;
    margin: 0;
}

.footer-credit a {
    color: #51c6e0;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* === FAQ Panels (cyan accent, matches accordion style) === */
.faq-panel .mud-expand-panel-header {
    font-weight: 600;
    color: #555;
}

.faq-panel.mud-expand-panel--active .mud-expand-panel-header {
    color: #51c6e0;
    background: #f5f5f5;
}

.faq-panel .mud-expand-panel-content {
    background: #51c6e0;
    color: #fff;
}

.faq-panel .mud-expand-panel-content .mud-typography {
    color: #fff !important;
}

/* === Road Closures Section === */
.road-closures-section {
    background: #334155;
    padding: 3rem 0;
    color: #fff;
}

.section-heading-cyan {
    color: #51c6e0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 2rem 0;
}

.road-closures-content {
    max-width: 800px;
    margin: 0 auto;
}

.road-time-heading {
    color: #cc0711;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem 0;
}

.road-list {
    color: #ddd;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin: 0 0 1rem 0;
}

.road-list li {
    margin-bottom: 0.25rem;
}

/* === Park & Ride Section === */
.park-ride-section {
    background: #fff;
    padding: 3rem 0;
}

.park-ride-content {
    max-width: 800px;
    margin: 0 auto;
}

.parking-option-heading {
    color: #51c6e0;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem 0;
}

/* === Route Map Section === */
.route-map-section {
    background: #334155;
    padding: 3rem 0;
}

.route-map-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.route-map-image {
    background-color: #e2e8f0;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* === Gallery Lightbox === */
.gallery-lightbox-dialog .mud-dialog {
    background: transparent !important;
    box-shadow: none !important;
}

/* === Scroll to Top === */
.scroll-to-top-btn {
    position: fixed !important;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
}

/* === Cart Drawer === */
.cart-drawer {
    width: 460px !important;
    max-width: 100%;
}

.cart-drawer:not(.mud-drawer--open) {
    display: none !important;
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
}

.cart-drawer-footer {
    border-top: 1px solid #e2e8f0;
}

/* === Blazor Error UI === */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* === Entry Info Section (Home page) === */
.entry-info-section {
    background: #51c6e0;
    padding: 3rem 1rem;
    padding-top: calc(3rem + 80px);
    margin-top: -80px;
    text-align: center;
}

.entry-info-heading {
    font-family: 'PaytoneOne', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.entry-info-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
}

/* Legacy toggle styles preserved for backward compatibility */

.entry-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.entry-btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.entry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.entry-btn-primary {
    background: #fee712;
    color: #1e293b;
    border: 2px solid #fee712;
}

.entry-btn-corporate {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.entry-corporate-helper {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.entry-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0.25rem 0;
}

/* === Dual Distance Selectors (Home page) === */
.distance-dual-selectors {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.distance-selector-card {
    background: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 200px;
    transition: border-color 0.2s;
}

.distance-selector-card:hover {
    border-color: #fff;
}

.distance-selector-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.distance-selector-price {
    margin-bottom: 1rem;
}

.distance-price-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.distance-price-earlybird {
    font-size: 0.85rem;
    color: #cc0711;
    font-weight: 600;
}

.distance-selector-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stepper-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #51c6e0;
    background: #fff;
    color: #51c6e0;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.stepper-btn:hover {
    background: #51c6e0;
    color: #fff;
}

.stepper-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    min-width: 40px;
    text-align: center;
}

/* === Countdown Section Yellow (Home page) === */
/* Spec: Large bold yellow numbers with teal labels, inside a rounded white container */
.countdown-section-yellow {
    background: linear-gradient(to bottom, #51c6e0 50%, #fff 50%);
    padding: 2.5rem 1rem;
    text-align: center;
}

.countdown-wrapper-white {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 3rem;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 3px solid #fee712;
}

.countdown-section-yellow .countdown-container {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.countdown-section-yellow .countdown-box {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 1rem;
}

.countdown-section-yellow .countdown-number {
    color: #fee712;
    font-size: 2.8rem;
    font-weight: 700;
}

.countdown-section-yellow .countdown-label {
    color: #51c6e0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-section-yellow .countdown-separator {
    color: #51c6e0;
    font-size: 2rem;
}

.countdown-section-yellow .countdown-started-msg {
    color: #1e293b;
}

/* === Info Cards Section New (Home page) === */
.info-cards-section-new {
    background: #f5f5f5;
    padding: 3rem 0;
}

.info-card-new {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.info-card-new-title {
    color: #51c6e0;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.03em;
}

.info-card-new-text {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex: 1;
}

.info-card-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #51c6e0;
    border: 2px solid #51c6e0;
    border-radius: 25px;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}

.info-card-btn:hover {
    background: #51c6e0;
    color: #fff;
}

/* === Route Description Section (Home page) === */
.route-description-section {
    background: #51c6e0;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.route-description-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

.route-pin {
    flex-shrink: 0;
    opacity: 0.6;
}

.route-description-content {
    text-align: center;
}

.route-description-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem 0;
}

.route-description-text {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* === Route Description Section Yellow (Home page — spec: yellow background band) === */
.route-description-section-yellow {
    background: #fee712;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.route-description-section-yellow .route-description-title {
    color: #1e293b;
}

.route-description-section-yellow .route-description-text {
    color: #1e293b;
}

.route-description-section-yellow .route-pin svg path {
    fill: #1e293b;
}

/* === Footer Social Icons === */
.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-social-icons a:hover {
    opacity: 0.7;
}

/* === Buy Page Submit Button === */
.buy-submit-btn {
    width: 100%;
    font-size: 1.1rem !important;
    padding: 0.75rem 2rem !important;
}

/* === Sponsors Section Simple (Home page) === */
.sponsors-section-simple {
    background: #fff;
    padding: 2.5rem 1rem;
}

.sponsors-row-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sponsor-link-centered {
    display: inline-block;
    text-align: center;
}

.sponsor-link-centered:hover .sponsor-img {
    opacity: 0.7;
}

/* === Social Media Section (Home page) === */
.social-media-section {
    background: #f5f5f5;
    padding: 1.5rem 1rem;
    text-align: center;
}

.social-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-icon-link svg {
    transition: fill 0.2s;
}

.social-icon-link:hover svg {
    fill: #51c6e0;
}

/* === Home Footer Section === */
.home-footer-section {
    background: #f0f0f0;
    padding: 1.5rem 1rem;
    text-align: center;
}

.home-footer-links {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 0.5rem 0;
}

.home-footer-links a {
    color: #51c6e0;
    text-decoration: none;
    font-weight: 600;
}

.home-footer-links a:hover {
    text-decoration: underline;
}

.home-footer-copyright {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

/* === Responsive === */
@media (max-width: 960px) {
    .header-main-logo {
        height: 80px;
    }
    .suncoast-logo {
        height: 50px;
    }
    .ecr-logo {
        height: 70px;
    }
    .hero-section {
        min-height: 60vw;
    }
    .hero-banner-logo {
        max-width: 70%;
        width: 70%;
    }
    .hero-heading {
        font-size: 1.8rem;
        margin-top: -50px;
    }
    .countdown-heading {
        font-size: 1.4rem;
    }
    .countdown-boxes {
        gap: 0.5rem;
    }
    .countdown-box {
        padding: 1rem 1.25rem;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 1.75rem;
    }
    .countdown-separator {
        font-size: 1.5rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .entry-info-heading {
        font-size: 2.2rem;
    }
    .route-pin {
        display: none;
    }
    .countdown-section-yellow .countdown-number {
        font-size: 2rem;
    }
    .countdown-wrapper-white {
        padding: 1.5rem 2rem;
    }
    .distance-dual-selectors {
        gap: 1rem;
    }
    .distance-selector-card {
        min-width: 160px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .header-top-inner {
        flex-direction: row;
        padding: 4px 8px;
    }
    .header-main-logo {
        height: 60px;
    }
    .suncoast-logo {
        height: 35px;
    }
    .ecr-logo {
        height: 50px;
    }
    .hero-section {
        min-height: 65vw;
    }
    .hero-banner-logo {
        max-width: 80%;
        width: 80%;
    }
    .hero-heading {
        font-size: 1.3rem;
        margin-top: -40px;
    }
    .countdown-heading {
        font-size: 1.1rem;
    }
    .page-banner {
        padding: 1.5rem 0;
    }
    .cart-drawer {
        width: 100% !important;
    }
    .countdown-container {
        padding: 1rem;
    }
    .countdown-box {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .countdown-separator {
        font-size: 1.25rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sponsors-row {
        gap: 1rem;
    }
    .sponsor-img {
        max-height: 50px;
        max-width: 130px;
    }
    .footer-nav {
        flex-direction: column;
        gap: 0.25rem;
    }
    .entry-info-heading {
        font-size: 1.8rem;
    }
    .entry-info-section {
        padding: 2rem 1rem;
    }
    .distance-toggle-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    .entry-btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.85rem;
    }
    .pricing-item {
        font-size: 0.95rem;
    }
    .pricing-item strong {
        font-size: 1.1rem;
    }
    .route-description-section {
        padding: 2rem 1rem;
    }
    .route-description-title {
        font-size: 1.3rem;
    }
    .route-description-text {
        font-size: 0.85rem;
    }
    .route-pin {
        display: none;
    }
    .countdown-section-yellow .countdown-number {
        font-size: 1.6rem;
    }
    .countdown-section-yellow .countdown-box {
        padding: 0.75rem 1rem;
        min-width: 55px;
    }
    .countdown-wrapper-white {
        padding: 1rem 1.5rem;
    }
    .distance-dual-selectors {
        flex-direction: column;
        align-items: center;
    }
    .distance-selector-card {
        width: 100%;
        max-width: 300px;
    }
    .sponsors-row-centered {
        gap: 1.5rem;
    }
    .home-footer-links {
        font-size: 0.75rem;
    }
}
