/* ============================================================
   Hydrofoil Blue - Custom Styles
   Electric Hydrofoils Website
   ============================================================ */

/* --------------------------------------------
   1. HERO SECTION & HEADER OVERRIDES
   -------------------------------------------- */
.hydrofoil-front-page .wp-block-cover {
    min-height: 90vh !important;
}

.wp-block-cover.has-ocean-breeze-background {
    position: relative;
}

.wp-block-cover.has-ocean-breeze-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 1;
}

/* --------------------------------------------
   2. WAVE ANIMATION
   -------------------------------------------- */
@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* --------------------------------------------
   3. CARD & CONTENT STYLING
   -------------------------------------------- */
.hydrofoil-feature-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 85, 165, 0.08);
}

.hydrofoil-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 85, 165, 0.15);
}

.hydrofoil-feature-card .wp-block-cover__inner-container {
    padding: 2rem;
}

/* Stats / Counter styling */
.hydrofoil-stat {
    text-align: center;
    padding: 2rem;
}

.hydrofoil-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--hydrofoil-primary, #0055a5);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hydrofoil-stat .stat-label {
    font-size: 1rem;
    color: var(--hydrofoil-navy, #0a1628);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------
   4. NAVIGATION OVERRIDES
   -------------------------------------------- */
.wp-block-navigation:not(.has-background) .wp-block-navigation__container {
    background: transparent;
}

.wp-block-navigation-item__content {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* --------------------------------------------
   5. BUTTONS
   -------------------------------------------- */
.wp-block-button.is-style-outline .wp-block-button__link {
    border: 2px solid var(--hydrofoil-primary, #0055a5);
    color: var(--hydrofoil-primary, #0055a5);
    background: transparent;
    padding: 10px 26px;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--hydrofoil-primary, #0055a5);
    color: #ffffff;
    border-color: var(--hydrofoil-primary, #0055a5);
}

/* Large hero button */
.wp-block-button.is-style-hydrofoil-hero-btn .wp-block-button__link {
    padding: 16px 40px;
    font-size: 1.125rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------
   6. DYNAMIC HEADER & NAVIGATION
   -------------------------------------------- */
.hydrofoil-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 85, 165, 0.1);
    transition: box-shadow 0.3s ease;
}

.hydrofoil-site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 85, 165, 0.1);
}

.hydrofoil-site-header .header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* Site branding / logo */
.hydrofoil-site-header .site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hydrofoil-site-header .custom-logo-link img {
    max-height: 48px;
    width: auto;
}

.hydrofoil-site-header .site-title-wrapper {
    display: flex;
    align-items: center;
}

.hydrofoil-site-header .site-title-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #0a1628;
}

.hydrofoil-site-header .hydrofoil-logo-icon {
    color: #0055a5;
    flex-shrink: 0;
}

.hydrofoil-site-header .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Header actions (cart + hamburger) */
.hydrofoil-site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

/* WooCommerce cart icon */
.hydrofoil-site-header .header-cart-icon {
    display: flex;
    align-items: center;
}

.hydrofoil-site-header .header-cart-icon .cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #0055a5;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.hydrofoil-site-header .header-cart-icon .cart-link:hover {
    background: rgba(0, 85, 165, 0.08);
    color: #003d7a;
}

.hydrofoil-site-header .header-cart-icon .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e84855;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Hamburger menu toggle */
.hydrofoil-site-header .menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.hydrofoil-site-header .menu-toggle:hover {
    background: rgba(0, 85, 165, 0.08);
}

.hydrofoil-site-header .menu-toggle .menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hydrofoil-site-header .menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #0a1628;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger active state (X) */
.hydrofoil-site-header .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hydrofoil-site-header .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.hydrofoil-site-header .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Primary navigation */
.hydrofoil-site-header .hydrofoil-navigation {
    display: flex;
    align-items: center;
}

.hydrofoil-site-header .hydrofoil-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hydrofoil-site-header .hydrofoil-menu > li {
    position: relative;
    margin: 0;
}

.hydrofoil-site-header .hydrofoil-menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    color: #0a1628;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.hydrofoil-site-header .hydrofoil-menu > li > a:hover,
.hydrofoil-site-header .hydrofoil-menu > li > a:focus,
.hydrofoil-site-header .hydrofoil-menu > li.current-menu-item > a,
.hydrofoil-site-header .hydrofoil-menu > li.current_page_item > a {
    color: #0055a5;
    background: rgba(0, 85, 165, 0.06);
}

/* Submenus */
.hydrofoil-site-header .hydrofoil-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(0, 85, 165, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 85, 165, 0.12);
    padding: 0.5rem 0;
    list-style: none;
    margin: 4px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.hydrofoil-site-header .hydrofoil-menu > li:hover > .sub-menu,
.hydrofoil-site-header .hydrofoil-menu > li > .sub-menu:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu a {
    display: block;
    padding: 0.55rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease, background 0.2s ease;
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu a:hover,
.hydrofoil-site-header .hydrofoil-menu .sub-menu a:focus {
    color: #0055a5;
    background: rgba(0, 85, 165, 0.04);
}

/* Deep submenus (3 levels) */
.hydrofoil-site-header .hydrofoil-menu .sub-menu .sub-menu {
    top: -0.5rem;
    left: 100%;
    margin-left: 4px;
    margin-top: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hydrofoil-site-header .menu-toggle {
        display: flex; /* Show hamburger on mobile */
        align-items: center;
        justify-content: center;
    }

    .hydrofoil-site-header .hydrofoil-navigation {
        position: fixed;
        top: 71px; /* Below header */
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .hydrofoil-site-header .hydrofoil-navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hydrofoil-site-header .hydrofoil-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .hydrofoil-site-header .hydrofoil-menu > li {
        width: 100%;
    }

    .hydrofoil-site-header .hydrofoil-menu > li > a {
        padding: 0.85rem 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 85, 165, 0.06);
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 85, 165, 0.03);
        margin: 0;
        padding: 0 0 0 1rem;
        display: none; /* Hidden by default, can be expanded */
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu .sub-menu {
        left: 0;
        margin-left: 0;
    }

    .hydrofoil-site-header .hydrofoil-menu li:hover > .sub-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .hydrofoil-site-header .header-inner {
        padding: 0 1rem;
        min-height: 60px;
    }

    .hydrofoil-site-header .site-title {
        font-size: 1.25rem;
    }

    .hydrofoil-site-header .hydrofoil-navigation {
        top: 61px;
    }
}

/* --------------------------------------------
   7. FOOTER STYLES
   -------------------------------------------- */
.hydrofoil-site-footer {
    background: linear-gradient(135deg, #0a1628, #001830);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 1.5rem;
}

.hydrofoil-site-footer .footer-inner {
    max-width: 1340px;
    margin: 0 auto;
}

.hydrofoil-site-footer .footer-widgets {
    margin-bottom: 2rem;
}

.hydrofoil-site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.hydrofoil-site-footer .footer-site-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hydrofoil-site-footer .footer-site-info a:hover {
    color: #00a8e8;
}

.hydrofoil-site-footer .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hydrofoil-site-footer .footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.hydrofoil-site-footer .footer-menu a:hover {
    color: #00a8e8;
}

@media (max-width: 768px) {
    .hydrofoil-site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hydrofoil-site-footer .footer-menu {
        justify-content: center;
        gap: 1rem;
    }
}

/* --------------------------------------------
   8. WOOCOMMERCE OVERRIDES
   -------------------------------------------- */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
    background-color: var(--hydrofoil-primary, #0055a5) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background-color: var(--hydrofoil-accent, #00a8e8) !important;
}

.woocommerce .woocommerce-product-gallery {
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce div.product .product_title {
    color: var(--hydrofoil-navy, #0a1628);
    font-size: 2.5rem;
    font-weight: 700;
}

.woocommerce div.product .price {
    color: var(--hydrofoil-primary, #0055a5) !important;
    font-size: 1.8rem !important;
    font-weight: 700;
}

/* --------------------------------------------
   7. FOOTER
   -------------------------------------------- */
.site-footer {
    background: linear-gradient(135deg, var(--hydrofoil-navy, #0a1628), var(--hydrofoil-dark, #001830));
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
    color: var(--hydrofoil-accent, #00a8e8);
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

/* --------------------------------------------
   8. RESPONSIVE
   -------------------------------------------- */
@media (max-width: 768px) {
    .hydrofoil-front-page .wp-block-cover {
        min-height: 70vh !important;
    }
    
    .hydrofoil-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .wp-block-columns.is-style-hydrofoil-grid {
        gap: 1rem;
    }
    
    .wp-block-columns.is-style-hydrofoil-grid .wp-block-column {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hydrofoil-front-page .wp-block-cover {
        min-height: 60vh !important;
    }
    
    .hydrofoil-stat .stat-number {
        font-size: 2rem;
    }
}

/* --------------------------------------------
   9. ANIMATIONS
   -------------------------------------------- */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hydrofoil-float {
    animation: float 3s ease-in-out infinite;
}

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

.hydrofoil-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hydrofoil-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.hydrofoil-fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

/* --------------------------------------------
   10. DYNAMIC SITE HEADER
   -------------------------------------------- */
.hydrofoil-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--hydrofoil-navy, #0a1628), var(--hydrofoil-dark, #001830));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hydrofoil-site-header .header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* Branding */
.hydrofoil-site-header .site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hydrofoil-site-header .site-title-wrapper {
    display: flex;
    align-items: center;
}

.hydrofoil-site-header .site-title-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.hydrofoil-site-header .site-title-link:hover {
    opacity: 0.9;
}

.hydrofoil-site-header .hydrofoil-logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--hydrofoil-accent, #00a8e8);
    flex-shrink: 0;
}

.hydrofoil-site-header .site-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--hydrofoil-accent, #00a8e8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Logo */
.hydrofoil-site-header .custom-logo-link {
    display: block;
    line-height: 0;
}

.hydrofoil-site-header .custom-logo {
    max-height: 45px;
    width: auto;
    height: auto;
}

/* Navigation */
.hydrofoil-site-header .main-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hydrofoil-site-header .hydrofoil-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hydrofoil-site-header .hydrofoil-menu > li {
    position: relative;
    margin: 0;
}

.hydrofoil-site-header .hydrofoil-menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.hydrofoil-site-header .hydrofoil-menu > li > a:hover,
.hydrofoil-site-header .hydrofoil-menu > li > a:focus,
.hydrofoil-site-header .hydrofoil-menu > li.current-menu-item > a,
.hydrofoil-site-header .hydrofoil-menu > li.current_page_item > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Sub-menu styling */
.hydrofoil-site-header .hydrofoil-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.hydrofoil-site-header .hydrofoil-menu .menu-item-has-children:hover > .sub-menu,
.hydrofoil-site-header .hydrofoil-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu li {
    margin: 0;
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--hydrofoil-navy, #0a1628);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.hydrofoil-site-header .hydrofoil-menu .sub-menu a:hover {
    background: var(--hydrofoil-light, #e8f4fd);
    color: var(--hydrofoil-primary, #0055a5);
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

/* Fallback page menu styling */
.hydrofoil-site-header .hydrofoil-menu.fallback-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hydrofoil-site-header .hydrofoil-menu.fallback-menu li {
    list-style: none;
}

.hydrofoil-site-header .hydrofoil-menu.fallback-menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
}

.hydrofoil-site-header .hydrofoil-menu.fallback-menu > li > a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Cart Icon */
.hydrofoil-site-header .header-cart-icon {
    margin-left: 0.5rem;
}

.hydrofoil-site-header .header-cart-icon .cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
}

.hydrofoil-site-header .header-cart-icon .cart-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hydrofoil-site-header .header-cart-icon .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--hydrofoil-accent, #00a8e8);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    transform: translate(2px, -2px);
}

/* Menu Toggle (Mobile) */
.hydrofoil-site-header .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    color: #ffffff;
    z-index: 1001;
}

.hydrofoil-site-header .menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hydrofoil-site-header .menu-toggle-icon .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hydrofoil-site-header .menu-toggle[aria-expanded="true"] .menu-toggle-icon .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hydrofoil-site-header .menu-toggle[aria-expanded="true"] .menu-toggle-icon .bar:nth-child(2) {
    opacity: 0;
}

.hydrofoil-site-header .menu-toggle[aria-expanded="true"] .menu-toggle-icon .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive: Mobile Navigation */
@media (max-width: 768px) {
    .hydrofoil-site-header .header-inner {
        padding: 0 1.25rem;
        min-height: 60px;
    }

    .hydrofoil-site-header .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hydrofoil-site-header .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--hydrofoil-navy, #0a1628), var(--hydrofoil-dark, #001830));
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .hydrofoil-site-header .main-navigation.active {
        right: 0;
    }

    /* Mobile overlay */
    body.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .hydrofoil-site-header .hydrofoil-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .hydrofoil-site-header .hydrofoil-menu > li > a {
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0 0 0 1rem;
        border-radius: 0;
        display: none;
        transition: none;
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu.open {
        display: block;
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu a {
        padding: 0.75rem 0;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hydrofoil-site-header .hydrofoil-menu .sub-menu a:hover {
        background: transparent;
        color: var(--hydrofoil-accent, #00a8e8);
    }

    .hydrofoil-site-header .header-cart-icon {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hydrofoil-site-header .header-cart-icon .cart-link {
        width: auto;
        height: auto;
        padding: 0.75rem 0;
        justify-content: flex-start;
        gap: 0.75rem;
        border-radius: 0;
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .hydrofoil-site-header .header-cart-icon .cart-link:hover {
        background: transparent;
        color: var(--hydrofoil-accent, #00a8e8);
    }

    .hydrofoil-site-header .header-cart-icon .cart-count {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
    }

    /* Menu item with children indicator */
    .hydrofoil-site-header .hydrofoil-menu .menu-item-has-children > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hydrofoil-site-header .hydrofoil-menu .menu-item-has-children > a::after {
        content: '+';
        display: inline-block;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.5);
    }

    .hydrofoil-site-header .hydrofoil-menu .menu-item-has-children.open > a::after {
        content: '−';
        transform: rotate(0);
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hydrofoil-site-header .header-inner {
        padding: 0 1rem;
        min-height: 56px;
    }

    .hydrofoil-site-header .site-title-link {
        font-size: 1.25rem;
    }

    .hydrofoil-site-header .hydrofoil-logo-icon {
        width: 28px;
        height: 28px;
    }
}

/* --------------------------------------------
   11. CUSTOM WATER EFFECT
   -------------------------------------------- */
.water-ripple {
    position: relative;
    overflow: hidden;
}

.water-ripple::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 168, 232, 0.05) 0%, transparent 50%);
    animation: ripple 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}
