/**
 * Phat Cauc - Custom Styles
 * Additional styles not covered by theme.json
 */

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 4rem;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-section .btn-primary {
    background-color: #B2F300;
    color: #000000;
    padding: 1rem 2.5rem;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.hero-section .btn-primary:hover {
    background-color: #9ce600;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(178, 243, 0, 0.3);
}

/* ============================================
   Header Enhancements
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When mobile nav is open, ensure header stays visible */
body.mobile-nav-open .site-header {
    background-color: #ffffff;
}
/* Add padding to body to compensate for fixed header */
body {
    padding-top: 80px;
    margin-bottom: -24px;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo */
.logo-text {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: #000000;
    transition: opacity 0.3s ease;
}

/* Logo Styles */
.brand-logo {
    margin: 0;
    max-width: 180px;
}

.brand-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover img {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-text:hover {
    opacity: 0.9;
}

/* Navigation */
.primary-menu {
    gap: 2rem;
}

.nav-item a {
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Nav items - Hover state with toxic green accent */
.nav-item a:hover {
    color: #9ce600;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B2F300;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item a:hover::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

.header-search {
    position: relative;
}

.header-search input {
    padding: 0.5rem 1rem;
    padding-left: 2.5rem;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    color: #000000;
    font-size: 0.875rem;
    width: 180px;
    transition: all 0.3s ease;
}

.header-search input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.header-search input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #B2F300;
    width: 220px;
}

.header-search::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-buttons {
    display: flex;
    gap: 0.25rem;
}

.header-icon {
    position: relative;
}

.header-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: color 0.3s ease;
}

.header-icon a:hover {
    color: #9ce600;
}

.header-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000000;
    background-color: #B2F300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-count.has-items,
.cart-count:not(:empty) {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.menu-toggle-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-search {
        display: none;
    }
}

/* ============================================
   Product Cards Enhancements
   ============================================ */

.product-card {
    will-change: transform;
    padding-top: 20px;
    padding-bottom: 35px;
}

.product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.product-card__image {
    width: 100%;
    height: 100%;
}

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

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

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.375rem 0.75rem;
    font-family: 'Clash Display', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    background-color: #B2F300;
    border-radius: 4px;
    z-index: 1;
}

.product-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card__action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #000000;
}

.product-card__action-btn:hover {
    background-color: #B2F300;
    color: #000000;
    box-shadow: 0 4px 12px rgba(178, 243, 0, 0.3);
}

.product-card__info {
    padding: 1rem;
}

.product-card__info h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.product-card__info h3 a {
    color: #000000;
}

/* ============================================
   Category Cards
   ============================================ */

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card h3 {
    color: #B2F300;
}

.category-card p {
    color: #C0C0C0;
}

/* ============================================
   Testimonial Cards
   ============================================ */

.testimonial-card {
    background-color: #ffffff;
    border-color: #e5e5e5;
    max-width: 380px;
}

.testimonial-card blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
}

.testimonial-card p:last-child {
    margin-top: 1rem;
}

.testimonial-card strong {
    color: #B2F300;
}

/* ============================================
   Single Product Page
   ============================================ */

.product-page {
    max-width: 1400px;
}

.product-grid {
    max-width: 1400px;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.product-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.product-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f5f5f5;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Product Tabs */
.product-tabs {
    border-top: 1px solid #e5e5e5;
    margin-top: 3rem;
}

.product-tabs .wc-block-product-details-tabs {
    display: flex;
    flex-direction: column;
}

/* ============================================
   Footer Enhancements
   ============================================ */

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo a {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link a {
    color: #C0C0C0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link a:hover {
    color: #B2F300;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.2s ease;
}

.social-link a:hover {
    background-color: #B2F300;
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #C0C0C0;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #C0C0C0;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: #B2F300;
}

/* ============================================
   Utility Classes
   ============================================ */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

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

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }

    .cart-drawer {
        max-width: 100%;
    }

    .product-card__actions {
        opacity: 1;
        transform: translateX(0);
        flex-direction: row;
    }

    .category-card {
        min-width: 100%;
        max-width: none;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .cart-drawer-wrapper {
        display: none;
    }
}

/* ============================================
   NEW MOBILE NAVIGATION (Tablet & Mobile)
   Breakpoint: 992px and below
   ============================================ */

/* Mobile Menu Toggle - Show on tablet/mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop search on mobile/tablet */
    .header-search {
        display: none;
    }
}

/* ============================================
   Mobile Navigation Panel Styles
   ============================================ */

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for mobile nav */
.mobile-nav-panel::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-panel::-webkit-scrollbar-thumb {
    background: rgba(178, 243, 0, 0.3);
    border-radius: 3px;
}

.mobile-nav-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(178, 243, 0, 0.5);
}

.mobile-nav-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mobile-nav-panel.active::before {
    opacity: 1;
}

.mobile-nav-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-inner {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

/* Mobile Nav Search */
.mobile-nav-search {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.05s forwards;
}

.mobile-nav-search .search-field {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-nav-search .search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-search .search-field:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #B2F300;
    box-shadow: 0 0 0 4px rgba(178, 243, 0, 0.15);
}

.mobile-nav-search::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.mobile-nav-search {
    position: relative;
}

/* Main Mobile Navigation Menu */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
	list-style-type: none;
}

.mobile-nav-menu .wp-block-navigation-link {
    width: 100%;
	justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

.mobile-nav-menu .wp-block-navigation-link a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.mobile-nav-menu .wp-block-navigation-link a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(178, 243, 0, 0.15);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-nav-menu .wp-block-navigation-link a:hover {
    color: #B2F300;
    transform: scale(1.05);
}

.mobile-nav-menu .wp-block-navigation-link a:hover::before {
    width: 120%;
    height: 100%;
}

/* Stagger animations for menu items */
.mobile-nav-menu .wp-block-navigation-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu .wp-block-navigation-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-menu .wp-block-navigation-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-menu .wp-block-navigation-link:nth-child(4) { animation-delay: 0.25s; }

/* Separator */
.mobile-nav-panel .wp-block-separator {
    border-color: #000000;
    width: 60%;
    max-width: 300px;
    margin: 4px auto;
}

/* Mobile Nav Extras */
.mobile-nav-extras {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

/* Mobile Social Links */
.mobile-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.mobile-social p {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    margin: 0;
}

.mobile-social .wp-block-social-links {
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-social .wp-block-social-links .wp-block-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #B2F300;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-social .wp-block-social-links .wp-block-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(178, 243, 0, 0.4);
}

.mobile-social .wp-block-social-links .wp-block-social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobile-social .wp-block-social-links svg {
    width: 22px;
    height: 22px;
    color: #000000;
}


/* ============================================
   Close Button for Mobile Nav
   ============================================ */

.mobile-nav-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1003;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: rotate(-90deg);
}

.mobile-nav-close.active {
    opacity: 1;
    transform: rotate(0);
}

.mobile-nav-close:hover {
    background-color: #B2F300;
    border-color: #B2F300;
    transform: rotate(90deg);
}

.mobile-nav-close:hover svg {
    color: #000000;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Show close button when menu is open */
body.mobile-nav-open .mobile-nav-close {
    display: flex;
}

/* Hide hamburger toggle when menu is open */
body.mobile-nav-open .menu-toggle-btn {
    display: none;
}

/* Toggle Button Animations */
.menu-toggle-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1004;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide toggle button when menu is open */
body.mobile-nav-open .menu-toggle-btn {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-toggle-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Mobile menu toggle - ensure visibility on light header */
.site-header .menu-toggle-btn span {
    background-color: #000000;
}

/* Active state for hamburger to X animation */
body.mobile-nav-open .menu-toggle-btn span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #B2F300;
}

body.mobile-nav-open .menu-toggle-btn span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

body.mobile-nav-open .menu-toggle-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #B2F300;
}

/* ============================================
   Animations Keyframes
   ============================================ */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet and Mobile - Show mobile nav */
@media (max-width: 992px) {
    .mobile-nav-panel {
        display: block;
    }

    /* Hide main navigation on tablet/mobile */
    .main-navigation {
        display: none;
    }
}

/* Desktop - Hide mobile elements */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav-panel,
    .mobile-nav-overlay,
    .mobile-nav-close {
        display: none !important;
    }
}

/* Mobile specific adjustments */
@media (max-width: 576px) {
    .mobile-nav-inner {
        padding: 5rem 1.5rem 3rem;
    }

    .mobile-nav-close {
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .mobile-social .wp-block-social-links .wp-block-social-link {
        width: 42px;
        height: 42px;
    }

    .mobile-social .wp-block-social-links svg {
        width: 18px;
        height: 18px;
    }
}