/* Main Theme Styles for Frutiger Aero Theme */
/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --aero-blue: #A7D8F0;          /* Soft Blue: gentle sky blue */
    --aero-light: #DDE4E9;         /* Icy Silver: soft metallic silver */
    --aero-dark: #5C738A;          /* Deep Blue Gray: cool metallic shadow color */
    
    /* Accent Colors */
    --aero-accent: #92DCEA;        /* Glassy Cyan: subtle aqua glow */
    --aero-highlight: #6FC3FF;     /* Glowing Neon Blue: used for glowing elements */
    --aero-soft-edge: #C2E3F5;     /* Soft Gradient Edge: for button and panel highlights */
    
    /* UI Elements */
    --aero-text: #2d3748;          /* Dark Grey: high contrast against white/light blue backgrounds */
    --aero-glass: rgba(167, 216, 240, 0.2);  /* Transparent soft blue */
    --aero-border: rgba(244, 248, 250, 0.35); /* Bright borders for definition */
    --aero-shadow: rgba(92, 115, 138, 0.647);  /* Shadow using Deep Blue Gray */
    --aero-glow: rgba(194, 227, 245, 0.85);   /* Glow using Soft Gradient Edge */
    --aero-text-shadow: rgba(33, 34, 36, 0.829); /* Text shadow using Deep Blue Gray */
}

/* Animations */
@keyframes subtleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes gentle-title-float {
    0% { transform: translateY(0) rotateY(-2deg) rotateX(1deg); }
    50% { transform: translateY(-3px) rotateY(2deg) rotateX(-1deg); }
    100% { transform: translateY(0) rotateY(-2deg) rotateX(1deg); }
}

@keyframes gentle-float {
    0% { transform: translateY(0) rotateY(-5deg) rotateX(2deg); }
    50% { transform: translateY(-3px) rotateY(5deg) rotateX(-2deg); }
    100% { transform: translateY(0) rotateY(-5deg) rotateX(2deg); }
}

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--aero-dark), var(--aero-blue), var(--aero-light)) !important;
    background-attachment: fixed !important;
    color: var(--aero-text) !important;
    text-shadow: 0 1px 2px var(--aero-text-shadow) !important;
    font-family: 'Quicksand', "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}


/* Glossy Background Image Styles */
.glossy-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.glossy-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: blur(6px);
}

.glossy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 240, 255, 0.8),
        rgba(202, 233, 255, 0.8)
    );
    backdrop-filter: blur(10px);
    z-index: -1;
}

.glossy-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    z-index: -1;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header and Title Styles */
.site-header {
    position: relative;
    background: none;
    padding: 20px;
    margin-bottom: 40px;
    z-index: 10;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}



.site-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: 
        linear-gradient(
            to bottom,
            rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
            rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
            rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
            rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
            rgba(167, 216, 240, 0.6) 85%,    /* Stronger blend start */
            rgba(167, 216, 240, 0.8) 92%,    /* Gradual transition */
            #A7D8F0 100%                     /* Blend to container color */
        ),
        url('../images/lost_header_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(4px);
    z-index: -1;
    bottom: 0;

}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-3d-container {
    perspective: 1000px;
    text-align: center;
    padding: 20px;
}

.title-3d {
    transform-style: preserve-3d;
    animation: gentle-title-float 4s ease-in-out infinite;
    transition: transform 0.5s ease;
}


.site-title {
    font-family: 'Press Start 2P', 'Quicksand', sans-serif !important;
    font-size: 2.5em;
    margin: 0;
    font-weight: 400;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3) !important;
    padding: 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-block;
}

.site-title a {
    text-decoration: none !important;
    color: white !important;
    font-family: 'Press Start 2P', 'Quicksand', sans-serif !important;
}

/* Force Press Start 2P font with high specificity */
.site-header .site-title,
.site-header .site-title a,
header .site-title,
header .site-title a {
    font-family: 'Press Start 2P', 'Quicksand', sans-serif !important;
}

.site-description {
    font-family: 'Quicksand', sans-serif;
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 800;
    color: white !important;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.2) !important;
}







/* Navigation */
.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.main-navigation {
    margin-bottom: 40px;
    flex: 1;
}

.game-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.game-menu li {
    padding: 10px 20px;
    font-size: 1.1em;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5),
        rgba(245, 245, 245, 0.5)
    );
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 
        0 2px 8px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    flex: 1;
    text-align: center;
    min-width: 100px;
}

.game-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.game-menu li:hover {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        rgba(245, 245, 245, 0.6)
    );
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Windows 7 Style Dropdown Menus Only */
.game-menu .sub-menu,
.game-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none; /* Hidden by default */
    min-width: 180px;
    padding: 2px;
    background: linear-gradient(to bottom, #f1f4fa 0%, #e6eaf6 100%);
    color: #333;
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow: 4px 4px 3px -2px rgba(0,0,0,0.5);
    border-radius: 0;
    list-style: none;
    margin: 0;
    margin-top: 2px;
}

/* Windows 7 dropdown separator line */
.game-menu .sub-menu::before {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 30px;
    width: 2px;
    height: calc(100% - 4px);
    top: 2px;
    box-shadow: inset 1px 0 rgba(0,0,0,0.15), inset -1px 0 #fff;
}

.game-menu .sub-menu li {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    flex: none;
    min-width: auto;
    text-align: left;
    border-radius: 0;
    width: 100%;
    position: relative;
}

.game-menu .sub-menu li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 4px 10px 4px 32px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 3px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.2s ease;
    text-shadow: none;
}

.game-menu .sub-menu li:hover a,
.game-menu .sub-menu li:focus a {
    background: #3399ff;
    border-color: #4da6ff;
    color: #fff;
}

.game-menu .sub-menu li:hover {
    background: none;
    transform: none;
    box-shadow: none;
    border: none;
}

/* Show dropdown on hover - multiple selectors for compatibility */
.game-menu li:hover .sub-menu,
.game-menu li:hover ul,
.game-menu .menu-item-has-children:hover .sub-menu,
.game-menu .menu-item-has-children:hover ul {
    display: block !important;
}

/* Remove arrow indicators - clean dropdown design */
.game-menu li.menu-item-has-children > a::after {
    display: none;
}

/* Smaller Related Products on Single Product Pages */
.single-product .related.products ul.products,
.single-product .related.products .products,
.woocommerce.single-product .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 15px !important;
}

.single-product .related.products ul.products li.product,
.single-product .related.products .products li.product,
.woocommerce.single-product .related.products li.product {
    max-width: 150px !important;
    margin: 0 !important;
    padding: 10px !important;
    font-size: 0.8em !important;
}

.single-product .related.products li.product img,
.woocommerce.single-product .related.products li.product img {
    width: 100% !important;
    height: auto !important;
    max-width: 130px !important;
}

.single-product .related.products li.product h2,
.single-product .related.products li.product .woocommerce-loop-product__title,
.woocommerce.single-product .related.products li.product h2,
.woocommerce.single-product .related.products li.product .woocommerce-loop-product__title {
    font-size: 0.9em !important;
    margin: 8px 0 !important;
    line-height: 1.2 !important;
}

.single-product .related.products li.product .price,
.woocommerce.single-product .related.products li.product .price {
    font-size: 1em !important;
    margin: 5px 0 !important;
}

.single-product .related.products li.product .button,
.single-product .related.products li.product .add_to_cart_button,
.woocommerce.single-product .related.products li.product .button,
.woocommerce.single-product .related.products li.product .add_to_cart_button {
    padding: 8px 20px !important;
    font-size: 14px !important;
    margin-top: 8px !important;
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-icon {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.icon-square {
    width: 45px;
    height: 45px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5),
        rgba(245, 245, 245, 0.5)
    );
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    transition: all 0.3s ease;
}

.icon-square:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        rgba(245, 245, 245, 0.6)
    );
    box-shadow: 
        0 6px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.icon-square svg {
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cart-count:empty {
    display: none;
}

/* Background Toggle Button */
.bg-toggle-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}


/* Ensure cart page has consistent background with checkout page */
body.woocommerce-cart .site-main {
    background: transparent;
}

body.woocommerce-cart .product-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

body.woocommerce-cart .glass-panel,
body.woocommerce-cart .product-card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    position: relative;
}

/* Apply Windows Aero dialog title bar reflection effect to cart */
body.woocommerce-cart .glass-panel::before,
body.woocommerce-cart .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 245, 251, 0.8) 50%,
        rgba(226, 232, 240, 0.7) 100%
    );
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
    z-index: 1;
}

/* Force consistent navigation icon styling on cart page - override responsive behavior */
body.woocommerce-cart .nav-icons {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    order: unset !important;
    margin-bottom: 0 !important;
}

body.woocommerce-cart .icon-square {
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px !important;
}

body.woocommerce-cart .icon-square svg {
    width: 20px !important;
    height: 20px !important;
}

.bg-toggle-icon .icon-square {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bg-toggle-icon:hover .icon-square {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.25));
    transform: translateY(-2px);
}

/* Permanent Light Blue Gradient Background */
.glossy-background-image {
    display: none !important;
}

.glossy-background {
    background: linear-gradient(135deg, 
        #a7d8f0, 
        #c2e3f5, 
        #dde4e9) !important;
}

/* Remove blue overlays for clean gradient */
.glossy-overlay {
    background: none !important;
    backdrop-filter: none !important;
}

.glossy-reflection {

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0)
    ) !important;
}

/* Windows Aero/Nintendo Wii text styling for light blue gradient background */
.bg-gradient .site-title {
    color: white !important;
    text-shadow: 0 2px 4px #1a365d !important;
}

.bg-gradient .site-title a {
    color: white !important;
}

.bg-gradient .site-description {
    color: white !important;
    text-shadow: 0 2px 4px #1a365d !important;
}

.bg-gradient .game-menu li a {
    color: white !important;
    text-shadow: 0 1px 2px #1a365d !important;
}

.bg-gradient .game-menu .sub-menu li:hover a,
.bg-gradient .game-menu .sub-menu li:focus a {
    color: white !important;
    text-shadow: 0 1px 3px #1a365d !important;
}

.bg-gradient .nav-icon {
    color: white !important;
}

.bg-gradient .icon-square svg {
    color: white !important;
    filter: drop-shadow(0 1px 2px #1a365d) !important;
}

/* Content text for light blue gradient */
.bg-gradient .product-title,
.bg-gradient .product-card .product-title {
    color: white !important;
    text-shadow: 0 1px 3px #1a365d !important;
}

.bg-gradient .product-card .price {
    color: white !important;
    text-shadow: 0 1px 3px #1a365d !important;
}

.bg-gradient .woocommerce-cart table.shop_table th,
.bg-gradient .woocommerce-cart table.shop_table td {
    color: white !important;
    text-shadow: 0 1px 2px #1a365d !important;
}

.bg-gradient .woocommerce-cart .cart_totals h2,
.bg-gradient .account-dashboard h3,
.bg-gradient .woocommerce-MyAccount-content h2,
.bg-gradient .woocommerce-MyAccount-content h3,
.bg-gradient .woocommerce-account h1.page-title,
.bg-gradient .woocommerce-account .entry-title,
.bg-gradient .woocommerce-form-login h2 {
    color: white !important;
    text-shadow: 0 2px 4px #1a365d !important;
}

/* Ensure glass panels have proper contrast on light blue background */
.bg-gradient .glass-panel,
.bg-gradient .product-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.15)) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(26, 54, 93, 0.3) !important;
    box-shadow: 
        0 4px 15px rgba(26, 54, 93, 0.15),
        inset 0 1px rgba(255, 255, 255, 0.4) !important;
}

/* Override root body text color for light blue gradient background */
.bg-gradient {
    color: white !important;
    text-shadow: 0 1px 2px #1a365d !important;
}

/* General text elements for light blue gradient */
.bg-gradient p,
.bg-gradient div,
.bg-gradient span,
.bg-gradient li,
.bg-gradient td,
.bg-gradient th,
.bg-gradient label,
.bg-gradient input,
.bg-gradient textarea,
.bg-gradient select,
.bg-gradient a {
    color: white !important;
    text-shadow: 0 0px 5px #1a365d  , 1px 1px 2px black !important; 
}

/* Links with hover effects */

/* All heading elements */
.bg-gradient h1,
.bg-gradient h2 {
    color: white !important;
    text-shadow: 0 2px 4px #1a365d !important;
}

.bg-gradient h3,
.bg-gradient h4,
.bg-gradient h5,
.bg-gradient h6 {
    color: white !important;
    text-shadow: 0 1px 3px #1a365d !important;
}

/* Form elements styling */
.bg-gradient input[type="text"],
.bg-gradient input[type="email"],
.bg-gradient input[type="password"],
.bg-gradient input[type="number"],
.bg-gradient textarea,
.bg-gradient select {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(26, 54, 93, 0.3) !important;
    color: #1a365d !important;
    text-shadow: none !important;
}

/* Button elements */
.bg-gradient .button,
.bg-gradient button,
.bg-gradient input[type="submit"] {
    color: white !important;
    text-shadow: 0 1px 2px #1a365d !important;
}


/* Remove problematic cart-specific navigation overrides - let base styles work */

/* WooCommerce Sorting Dropdown - Aero Glass Style */
.woocommerce-ordering,
.woocommerce .woocommerce-ordering {
    margin: 0 0 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce-ordering select,
.woocommerce .woocommerce-ordering select {
    background: linear-gradient(to bottom, #f1f4fa 0%, #e6eaf6 100%) !important;
    border: 1px solid rgba(0,0,0,0.4) !important;
    border-radius: 3px !important;
    padding: 4px 10px !important;
    color: #333 !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.7),
        0 1px 3px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    min-width: 200px !important;
}

.woocommerce-ordering select:hover,
.woocommerce .woocommerce-ordering select:hover {
    background: #3399ff !important;
    border-color: #4da6ff !important;
    color: #fff !important;
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.7),
        0 1px 3px rgba(0,0,0,0.3) !important;
}

.woocommerce-ordering select:focus,
.woocommerce .woocommerce-ordering select:focus {
    outline: none !important;
    background: #3399ff !important;
    border-color: #4da6ff !important;
    color: #fff !important;
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.7),
        0 1px 3px rgba(0,0,0,0.3) !important;
}


/* Style the dropdown options */
.woocommerce-ordering select option,
.woocommerce .woocommerce-ordering select option {
    background: linear-gradient(to bottom, #f1f4fa 0%, #e6eaf6 100%) !important;
    color: #333 !important;
    padding: 4px 10px !important;
}

.woocommerce-ordering select option:hover,
.woocommerce .woocommerce-ordering select option:hover {
    background: #3399ff !important;
    color: #fff !important;
}

/* WooCommerce Product Gallery Carousel */
.woocommerce-product-gallery {
    position: relative !important;
    background: none !important;
}

.woocommerce-product-gallery .flex-viewport {
    border-radius: 8px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
    justify-content: center !important;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 60px !important;
    height: 60px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1)) !important;
    backdrop-filter: blur(5px) !important;
}

.woocommerce-product-gallery .flex-control-thumbs li.flex-active-slide,
.woocommerce-product-gallery .flex-control-thumbs li:hover {
    border-color: var(--aero-highlight) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 10px var(--aero-glow) !important;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.post-card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.4em;
    margin: 10px 0;
}

.post-title a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-meta {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.post-excerpt {
    margin: 15px 0;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    border: 1px solid var(--aero-border);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.read-more:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2));
    box-shadow: 
        0 8px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

/* Footer */
/* Simple Footer with White Text - Add to your aero-style.css */

/* Footer with background image */
.site-footer {
    background: url('../images/lost_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #A7D8F0 0%,                       /* Container blend color at top */
        #A7D8F0 15%,                      /* Hold solid color longer */
        rgba(167, 216, 240, 0.8) 25%,    /* Stronger fade start */
        rgba(167, 216, 240, 0.5) 35%,    /* Gradual transition */
        rgba(111, 195, 255, 0.4) 50%,    /* Glowing neon blue overlay */
        rgba(146, 220, 234, 0.3) 75%,    /* Glassy cyan overlay */
        rgba(167, 216, 240, 0.4) 100%    /* Light aero-blue overlay */
    );
    z-index: 1;
    pointer-events: none;
}

.site-footer .footer-content {
    position: relative;
    z-index: 2;
}

/* Footer content container */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Legal links container */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

/* Legal links styling - simple white text */
.footer-links a {
    color: white;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Copyright text */
.footer-content p {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
    opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links a {
        font-size: 0.85em;
    }
    
    .footer-content p {
        font-size: 0.85em;
    }
    
    .site-footer {
        padding: 15px;
    }
}


/* Utility Classes */
.reflection {
    position: relative;
    overflow: hidden;
}

.reflection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.2) 0%,
        transparent 70%,
        transparent 100%);
    pointer-events: none;
}

/* Glass Panel Utility Class */
.glass-panel {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    margin-bottom: 20px;
}

/* Product Page Styles */
.product-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.product-3d-container {
    perspective: 1000px;
}

.product-3d {
    transform-style: preserve-3d;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--aero-border);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-price {
    font-size: 2em;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--aero-border);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.product-description {
    font-size: 1.1em;
    line-height: 1.6;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--aero-border);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.product-actions {
    margin-top: 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--aero-border);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

/* WooCommerce Button Styles */
.single_add_to_cart_button {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.7)) !important;
    border: 5px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 600 !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2)) !important;
    box-shadow: 
        0 8px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

.quantity input {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    padding: 10px !important;
    border-radius: 6px !important;
    width: 80px !important;
    text-align: center !important;
    margin-right: 10px !important;
}

/* Product Archive/Shop Page Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05));
    backdrop-filter: blur(15px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    transform-style: preserve-3d;
    color: #444444 !important;
}

.product-card:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        0 8px 25px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.product-card a {
    text-decoration: none;
    color: white;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card .product-title {
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: 500;
    color: #444444 !important;
    text-shadow: none;
}

.product-card .price {
    font-size: 1.4em;
    font-weight: 700;
    margin: 10px 0;
    color: #444444 !important;
}

.product-card .button {
    width: 100%;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    border: 1px solid var(--aero-border);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.product-card .button:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2));
    transform: translateY(-2px);
}

/* Windows-style WooCommerce button styling for product cards */
.product-card .ajax_add_to_cart,
.product-card .add_to_cart_button,
.product-card .single_add_to_cart_button,
.product-card .button.product_type_simple {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5) !important;
    border: 2px solid #5bb3d1 !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 18px !important;
    font-weight: normal !important;
    color: #444444 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    min-width: 180px !important;
    text-align: center !important;
    user-select: none !important;
    margin-top: 10px !important;
    text-decoration: none !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.product-card .ajax_add_to_cart:hover,
.product-card .add_to_cart_button:hover,
.product-card .single_add_to_cart_button:hover,
.product-card .button.product_type_simple:hover {
    background: linear-gradient(to bottom, #f8f8f8, #eeeeee) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px) !important;
    color: #444444 !important;
}

.product-card .ajax_add_to_cart:active,
.product-card .add_to_cart_button:active,
.product-card .single_add_to_cart_button:active,
.product-card .button.product_type_simple:active {
    background: linear-gradient(to bottom, #eeeeee, #e0e0e0) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transform: translateY(1px) !important;
    color: #444444 !important;
}

/* Additional Cart Page Styles - Add this to your aero-style.css */

/* Cart title styling */
.cart-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: center;
}

/* Enhanced Cart Table Styling */


.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.woocommerce-cart table.shop_table thead {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08));
}

.woocommerce-cart table.shop_table th {
    color: #2d3748 !important;
    font-weight: 600 !important;
    font-family: 'Quicksand', sans-serif !important;
    padding: 15px 12px !important;
    text-align: center !important;
    border: none !important;
    border-bottom: 2px solid rgba(255,255,255,0.1) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    background: transparent !important;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Specific fix for price header to ensure it matches other headers */
.woocommerce-cart table.shop_table th.product-price {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255,255,255,0.1) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
}

.woocommerce-cart table.shop_table tbody tr {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.woocommerce-cart table.shop_table tbody tr:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06));
}

.woocommerce-cart table.shop_table td {
    color: #2d3748 !important;
    padding: 20px 12px !important;
    text-align: center !important;
    vertical-align: middle !important;
    border: none !important;
    background: transparent !important;
}

/* Product thumbnail column */
.woocommerce-cart .product-thumbnail {
    width: 80px !important;
    text-align: center !important;
}

.woocommerce-cart .product-thumbnail img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.woocommerce-cart .product-thumbnail img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Product name column */
.woocommerce-cart .product-name {
    text-align: left !important;
    min-width: 200px;
}

.woocommerce-cart .product-name a {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1em !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-cart .product-name a:hover {
    color: var(--aero-highlight) !important;
    text-shadow: 0 0 10px var(--aero-glow);
}

/* Price columns */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    font-weight: 600 !important;
    font-size: 1.1em !important;
    width: 100px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 20px 8px 12px 8px !important;
    vertical-align: middle !important;
    text-align: center !important;
}

.woocommerce-cart .product-price .woocommerce-Price-amount,
.woocommerce-cart .product-subtotal .woocommerce-Price-amount {
    
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: 600;
}

/* Quantity column */
.woocommerce-cart .product-quantity {
    width: 120px;
}

.woocommerce-cart .quantity {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce-cart .quantity input.qty {
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    border-radius: 8px !important;
    color: white !important;
    text-align: center !important;
    padding: 8px !important;
    width: 60px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-family: 'Quicksand', sans-serif !important;
}

.woocommerce-cart .quantity input.qty:focus {
    border-color: var(--aero-highlight) !important;
    box-shadow: 0 0 15px var(--aero-glow) !important;
    outline: none !important;
    background: rgba(255,255,255,0.15) !important;
}

/* Remove button column */
.woocommerce-cart .product-remove {
    width: 60px;
}

.woocommerce-cart .product-remove a {
    background: linear-gradient(135deg,
        rgba(255,100,100,0.2),
        rgba(255,100,100,0.1)) !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(255,107,107,0.3) !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    margin: 0 auto !important;
}

.woocommerce-cart .product-remove a:hover {
    background: linear-gradient(135deg,
        rgba(255,100,100,0.4),
        rgba(255,100,100,0.2)) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

/* Cart actions row */
.woocommerce-cart .actions {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05)) !important;
    padding: 20px !important;
    border-radius: 0 0 12px 12px;
}

.woocommerce-cart .actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.woocommerce-cart .actions input[type="text"] {
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 10px 15px !important;
    font-family: 'Quicksand', sans-serif !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .actions input[type="text"]:focus {
    border-color: var(--aero-highlight) !important;
    box-shadow: 0 0 15px var(--aero-glow) !important;
    outline: none !important;
}

.woocommerce-cart .actions input[type="text"]::placeholder {
    color: rgba(255,255,255,0.6) !important;
}

/* Apply Coupon Button - Windows Style to Match Checkout Button */
.woocommerce-cart .actions .button,
.woocommerce-cart .actions input[name="apply_coupon"] {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5) !important;
    border: 2px solid #5bb3d1 !important;
    border-radius: 20px !important;
    padding: 8px 20px !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 14px !important;
    font-weight: normal !important;
    color: #444444 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15) !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    cursor: pointer !important;
    max-width: 50% !important;
    width: auto !important;
}

.woocommerce-cart .actions .button:hover,
.woocommerce-cart .actions input[name="apply_coupon"]:hover {
    background: linear-gradient(to bottom, #f0f8ff, #e6f3ff) !important;
    border-color: #4a9ec1 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px) !important;
    color: #333333 !important;
}

.woocommerce-cart .actions .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Screen reader text - hide visually */
.woocommerce-cart .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Cart totals section - Transparent background */
.woocommerce-cart .cart_totals {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 25px;
    box-shadow: none !important;
    width: 100% !important;
    float: none !important;
    margin: 20px 0 0 0 !important;
    max-width: 100%;
}

.woocommerce-cart .cart_totals h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 2px 3px rgba(0,0,0,0.3);
    margin: 0 0 20px 0;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Enhanced Cart Totals Table Styling */
.woocommerce-cart .cart_totals table {
    width: 100%;
    margin-bottom: 0;
    background: transparent;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-cart .cart_totals .cart-totals-table-wrapper {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));
    border-radius: 8px;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.woocommerce-cart .cart_totals th {
    padding: 15px 20px !important;
    text-align: left !important;
    font-weight: 600 !important;
    border: none !important;
    color: white !important;
    background: transparent !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 1em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.woocommerce-cart .cart_totals td {
    padding: 15px 20px !important;
    text-align: right !important;
    border: none !important;
    color: white !important;
    background: transparent !important;
    font-weight: 500;
}

.woocommerce-cart .cart_totals tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.woocommerce-cart .cart_totals tr:last-child {
    border-bottom: none;
}

.woocommerce-cart .cart_totals tr:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
}

/* Subtotal row */
.woocommerce-cart .cart_totals .cart-subtotal th,
.woocommerce-cart .cart_totals .cart-subtotal td {
    padding: 12px 20px !important;
}

/* Shipping row */
.woocommerce-cart .cart_totals .shipping th,
.woocommerce-cart .cart_totals .shipping td {
    padding: 12px 20px !important;
    vertical-align: top;
}

.woocommerce-cart .cart_totals .shipping td {
    text-align: right !important;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: right;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
    color: white;
    font-weight: 500;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
    margin: 5px 0 0 0 !important;
    font-size: 0.9em;
    color: rgba(255,255,255,0.8) !important;
    text-align: right;
}

.woocommerce-cart .cart_totals .shipping-calculator-button {
    color: var(--aero-highlight) !important;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.woocommerce-cart .cart_totals .shipping-calculator-button:hover {
    color: white !important;
    text-shadow: 0 0 8px var(--aero-glow);
}

/* Total row - make it stand out */
.woocommerce-cart .cart_totals .order-total {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08));
    border-top: 2px solid var(--aero-border) !important;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 1.2em !important;
    font-weight: 700 !important;
    padding: 18px 20px !important;

    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount {
    
    font-weight: 700;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
}

.woocommerce-cart .cart_totals th {
    padding: 12px 0;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    background: transparent;
}

.woocommerce-cart .cart_totals td {
    padding: 12px 0;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    background: transparent;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: none;
    border-top: 2px solid var(--aero-border);
    padding-top: 15px;
}

/* Enhanced Proceed to Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 20px;
}

.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5) !important;
    border: 2px solid #5bb3d1 !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 18px !important;
    font-weight: normal !important;
    color: #444444 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15) !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    max-width: 50% !important;
    width: auto !important;
    margin: 0 auto !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a:hover {
    background: linear-gradient(to bottom, #f0f8ff, #e6f3ff) !important;
    border-color: #4a9ec1 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px) !important;
    color: #333333 !important;
}

/* Empty cart message */
.woocommerce-cart .cart-empty {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    font-size: 1.2em;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    margin: 20px 0;
}

/* Return to shop button */
.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 30px;
}

.woocommerce-cart .return-to-shop .button {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15)) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    text-decoration: none;
}

.woocommerce-cart .return-to-shop .button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2)) !important;
    box-shadow: 
        0 8px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

/* Fix cart collaterals layout */
.woocommerce-cart .cart-collaterals {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 100% !important;
    clear: both;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Mobile cart totals */
@media (max-width: 768px) {
    .woocommerce-cart .cart_totals {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .woocommerce-cart .cart-collaterals {
        margin-top: 20px;
    }
}

/* My Account Page Styles - VERTICAL LAYOUT (Navigation Left, Content Right) */
.woocommerce-account .account-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: center;
}

/* Main account layout grid - navigation left, content right */
.account-layout-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
    width: 100%;
}

/* Remove any conflicting WooCommerce styles */
.woocommerce-account .woocommerce {
    display: block !important;
    grid-template-columns: none !important;
}

/* Navigation panel - vertical layout on left */
.account-layout-grid .woocommerce-MyAccount-navigation {
    position: sticky;
    top: 20px;
    height: fit-content;
    width: 100%;
}

.account-layout-grid .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.account-layout-grid .woocommerce-MyAccount-navigation li {
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
}

.account-layout-grid .woocommerce-MyAccount-navigation li:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05));
    transform: translateX(5px);
}

.account-layout-grid .woocommerce-MyAccount-navigation li.is-active {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    border: 1px solid var(--aero-border);
    box-shadow: 
        0 2px 8px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.account-layout-grid .woocommerce-MyAccount-navigation a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-align: left;
}

.account-layout-grid .woocommerce-MyAccount-navigation a:hover {
    color: var(--aero-highlight);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 0 8px var(--aero-glow);
}

/* Content panel on the right */
.account-layout-grid .woocommerce-MyAccount-content {
    min-height: 400px;
    width: 100%;
}

/* Dashboard content */
.account-dashboard {
    padding: 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.account-dashboard p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-size: 1.05em;
}

.account-dashboard p:first-child {
    font-size: 1.2em;
    font-weight: 500;
    color: white;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06));
    border-radius: 8px;
    border-left: 4px solid var(--aero-highlight);
}

.account-dashboard a {
    color: var(--aero-highlight);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.account-dashboard a:hover {
    color: white;
    text-shadow: 0 0 8px var(--aero-glow);
    border-bottom-color: rgba(255,255,255,0.5);
}

.account-dashboard h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4em;
    position: relative;
    padding-bottom: 10px;
}

.account-dashboard h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--aero-highlight), transparent);
    border-radius: 1px;
}

/* Recent orders styling */
.recent-orders {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--aero-border);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.recent-order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.recent-order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-order-item:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08));
    transform: translateX(5px);
}

.recent-order-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.recent-order-item a:hover {
    color: var(--aero-highlight);
    text-shadow: 0 0 10px var(--aero-glow);
}

.order-date {
    font-size: 0.9em;
    opacity: 0.7;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.order-status {
    text-transform: capitalize;
    padding: 6px 12px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* Custom endpoint content */
.custom-endpoint-content {
    color: white;
    padding: 20px 0;
}

/* Style form fields */
.woocommerce-MyAccount-content .woocommerce-Input,
.woocommerce-MyAccount-content .woocommerce-form__input,
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    padding: 12px !important;
    border-radius: 8px !important;
    width: 100% !important;
    margin-bottom: 15px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: var(--aero-highlight) !important;
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.1),
        0 0 10px var(--aero-glow) !important;
}

/* Style labels */
.woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* Style buttons */
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content button {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15)) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2)) !important;
    box-shadow: 
        0 8px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

/* Style tables */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-MyAccount-content table th {
    padding: 15px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--aero-border);
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05));
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.woocommerce-MyAccount-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: white;
}

.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none;
}

.woocommerce-MyAccount-content table tr:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Order details */
.woocommerce-orders-table__cell-order-actions a {
    display: inline-block;
    margin: 3px;
    padding: 6px 12px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    border: 1px solid var(--aero-border);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.woocommerce-orders-table__cell-order-actions a:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    transform: translateY(-2px);
}

/* Address section */
.woocommerce-Address {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05));
    border: 1px solid var(--aero-border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.woocommerce-Address-title h3 {
    margin: 0;
}

.woocommerce-Address-title a {
    color: white;
    font-size: 0.9em;
}

/* Pagination */
.woocommerce-pagination {
    margin: 40px 0;
    text-align: center;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    border: 1px solid var(--aero-border);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-pagination a:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2));
    transform: translateY(-2px);
}

.woocommerce-pagination .current {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2));
    font-weight: bold;
}

/* Login Page Title */
.woocommerce-account h1.page-title,
.woocommerce-account .entry-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8em;
    color: #2d3748;
    text-align: center;
    margin: 20px auto 40px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    max-width: 600px;
}

/* Login Form Styles */
.woocommerce-form-login {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06));
    border: 1px solid var(--aero-border);
    border-radius: 16px;
    padding: 40px;
    margin: 30px auto;
    max-width: 450px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
    position: relative;
}

.woocommerce-form-login h2 {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.8em !important;
    color: #2d3748 !important;
    text-align: center !important;
    margin: 0 0 30px 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    position: relative;
    display: block !important;
    width: 100% !important;
}

.woocommerce-form-login h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--aero-highlight);
}

.woocommerce-form-login .woocommerce-form-row {
    margin-bottom: 25px;
    position: relative;
}

.woocommerce-form-login .woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-size: 1.05em;
}

.woocommerce-form-login .woocommerce-Input {
    width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 1.1em !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.woocommerce-form-login .woocommerce-Input:focus {
    outline: none !important;
    border-color: var(--aero-highlight) !important;
    background: rgba(255,255,255,0.15) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 0 20px var(--aero-glow) !important;
    transform: translateY(-2px);
}

.woocommerce-form-login .woocommerce-Input::placeholder {
    color: rgba(255,255,255,0.6) !important;
}

.woocommerce-form-login .woocommerce-Button {
    width: 100% !important;
    padding: 18px !important;
    background: linear-gradient(135deg,
        var(--aero-highlight),
        rgba(255,255,255,0.3)) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 12px !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.2em !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 6px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    margin-top: 10px;
}

.woocommerce-form-login .woocommerce-Button:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.4),
        var(--aero-highlight)) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

.woocommerce-form-login .woocommerce-Button:active {
    transform: translateY(-1px);
}

.woocommerce-form-login .woocommerce-form-row--wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.woocommerce-form-login .woocommerce-form__input-checkbox {
    margin-right: 8px;
    transform: scale(1.2);
}

.woocommerce-form-login .woocommerce-LostPassword {
    color: var(--aero-highlight) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce-form-login .woocommerce-LostPassword:hover {
    color: white !important;
    text-shadow: 0 0 10px var(--aero-glow);
}

/* Register Form (if shown alongside login) */
.woocommerce-form-register {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05));
    border: 1px solid var(--aero-border);
    border-radius: 16px;
    padding: 30px;
    margin: 20px auto;
    max-width: 450px;
    backdrop-filter: blur(15px);
}

/* Mobile Login Form */
@media (max-width: 768px) {
    .woocommerce-form-login {
        padding: 25px 20px;
        margin: 20px 15px;
        border-radius: 12px;
    }
    
    .woocommerce-form-login h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    
    .woocommerce-form-login .woocommerce-Input {
        padding: 14px 16px !important;
        font-size: 1em !important;
    }
    
    .woocommerce-form-login .woocommerce-Button {
        padding: 16px !important;
        font-size: 1.1em !important;
    }
    
    .woocommerce-form-login .woocommerce-form-row--wide {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .site-title {
        font-size: 2.5em;
        padding: 15px;
    }

    .title-3d {
        animation: none;
    }

    .game-menu {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }
    
    .game-menu li {
        width: 100%;
        padding: 8px 16px;
        font-size: 1em;
        min-width: auto;
        margin: 0;
        text-align: center;
    }
    
    .game-menu li a {
        display: block;
        padding: 5px;
        width: 100%;
    }
    
    .game-menu li:hover {
        transform: none;
    }
    
    /* Mobile dropdown styles */
    .game-menu .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.1);
        margin: 8px 0 0 0;
        padding: 8px;
        border-radius: 6px;
    }
    
    .game-menu .sub-menu li {
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
        margin-bottom: 4px;
    }
    
    .game-menu .sub-menu li a {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    
    .game-menu li.menu-item-has-children > a::after {
        float: right;
        margin-left: auto;
    }
    
    .navigation-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .main-navigation {
        width: 100%;
        margin-bottom: 10px;
        order: 2;
    }
    
    .nav-icons {
        justify-content: center;
        gap: 20px;
        order: 1;
        margin-bottom: 15px;
    }
    
    .icon-square {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .icon-square svg {
        width: 24px;
        height: 24px;
    }
    
    .cart-count {
        top: -8px;
        right: -8px;
        font-size: 11px;
        padding: 3px 7px;
        min-width: 18px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .product-3d {
        grid-template-columns: 1fr;
        animation: none;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .product-card {
        animation: none;
    }

    /* My Account Mobile Styles */
    .account-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .account-layout-grid .woocommerce-MyAccount-navigation {
        position: static;
    }
    
    .account-layout-grid .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .account-layout-grid .woocommerce-MyAccount-navigation li {
        flex: 1 1 calc(50% - 5px);
        text-align: center;
        margin-bottom: 0;
    }
    
    .account-layout-grid .woocommerce-MyAccount-navigation li:hover {
        transform: none;
    }
    
    .account-layout-grid .woocommerce-MyAccount-navigation a {
        text-align: center;
        padding: 10px 8px;
    }
    
    .woocommerce-account .account-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .recent-order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .woocommerce-orders-table__cell-order-actions {
        display: flex;
        flex-direction: column;
    }
    
    .woocommerce-orders-table__cell-order-actions a {
        margin-bottom: 5px;
        text-align: center;
    }

    

    /* Enhanced Cart Mobile Styles */
    .woocommerce-cart {
        padding: 10px !important;
    }
    
    .woocommerce-cart .product-container {
        padding: 10px !important;
    }
    
    .woocommerce-cart .product-card {
        padding: 15px !important;
        margin: 10px 0 !important;
    }
    
    .woocommerce-cart .cart-title {
        font-size: 1.8em !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    /* Cart table mobile optimization */
    .woocommerce-cart table.shop_table {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .woocommerce-cart table.shop_table thead {
        display: none !important;
    }
    
    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td {
        display: block !important;
        width: 100% !important;
    }
    
    .woocommerce-cart table.shop_table tr {
        background: linear-gradient(135deg,
            rgba(255,255,255,0.15),
            rgba(255,255,255,0.08)) !important;
        border: 1px solid var(--aero-border) !important;
        border-radius: 8px !important;
        margin-bottom: 15px !important;
        padding: 15px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .woocommerce-cart table.shop_table td {
        border: none !important;
        padding: 8px 0 !important;
        text-align: left !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .woocommerce-cart table.shop_table td::before {
        content: attr(data-title) ": ";
        font-weight: 600 !important;
        color: rgba(255,255,255,0.9) !important;
        text-shadow: 0 1px 1px rgba(0,0,0,0.2) !important;
        min-width: 100px !important;
        text-transform: uppercase !important;
        font-size: 12px !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Product thumbnail mobile */
    .woocommerce-cart .product-thumbnail {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
        margin-right: 10px !important;
    }
    
    .woocommerce-cart .product-thumbnail img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 6px !important;
    }
    
    /* Product name mobile */
    .woocommerce-cart .product-name {
        flex: 1 !important;
        padding-right: 10px !important;
    }
    
    .woocommerce-cart .product-name a {
        font-size: 14px !important;
        line-height: 1.3 !important;
        display: block !important;
    }
    
    /* Quantity controls mobile */
    .woocommerce-cart .quantity {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: rgba(255,255,255,0.1) !important;
        padding: 5px 8px !important;
        border-radius: 6px !important;
        border: 1px solid var(--aero-border) !important;
    }
    
    .woocommerce-cart .quantity input {
        width: 50px !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        color: white !important;
        font-size: 14px !important;
    }
    
    /* Cart totals mobile */
    .woocommerce-cart .cart_totals {
        width: 100% !important;
        float: none !important;
        margin-top: 20px !important;
        padding: 20px !important;
    }
    
    .woocommerce-cart .cart_totals h2 {
        font-size: 1.4em !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .woocommerce-cart .cart_totals table {
        width: 100% !important;
    }
    
    .woocommerce-cart .cart_totals td,
    .woocommerce-cart .cart_totals th {
        padding: 10px 8px !important;
        font-size: 14px !important;
    }
    
    /* Cart actions mobile */
    .woocommerce-cart .actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }
    
    .woocommerce-cart .actions .button {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
        font-size: 14px !important;
        text-align: center !important;
    }
    
    .woocommerce-cart .actions input[name="update_cart"] {
        order: 2 !important;
    }
    
    .woocommerce-cart .actions .checkout-button,
    .woocommerce-cart .wc-proceed-to-checkout a {
        order: 1 !important;
        font-size: 16px !important;
        padding: 15px !important;
        font-weight: 600 !important;
    }
    
    /* Remove item button mobile */
    .woocommerce-cart .product-remove a {
        background: rgba(255,69,69,0.8) !important;
        color: white !important;
        border-radius: 50% !important;
        width: 30px !important;
        height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        font-size: 16px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    }
    
    /* Empty cart mobile */
    .woocommerce-cart .cart-empty {
        text-align: center !important;
        padding: 40px 20px !important;
    }
    
    .woocommerce-cart .return-to-shop {
        text-align: center !important;
        margin-top: 20px !important;
    }
}

/* Force WooCommerce to use our custom product styling */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    padding: 20px 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1)) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--aero-border) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    transform-style: preserve-3d !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg) !important;
    box-shadow: 
        0 8px 25px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
    text-decoration: none !important;
    color: white !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.5em !important;
    margin: 10px 0 !important;
    font-weight: 800 !important;
    color: white !important;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.8) , 1px 1px 2px black !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    font-size: 1.4em !important;
    font-weight: 700 !important;
    margin: 10px 0 !important;
    color: white !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .button,
.woocommerce-page ul.products li.product .add_to_cart_button {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5) !important;
    border: 2px solid #5bb3d1 !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 18px !important;
    font-weight: normal !important;
    color: #444444 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15) !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    width: 100% !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .add_to_cart_button:hover {
    background: linear-gradient(to bottom, #f0f8ff, #e6f3ff) !important;
    border-color: #4a9ec1 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px) !important;
    color: #333333 !important;
}

/* Hide page title on homepage */
.home h1.page-title,
.home .page-title {
    display: none !important;
}

/* Apply glass panel styling to my-account page - Match Header */
.page-id-15 .page-content.reflection,
.woocommerce-account .page-content.reflection {
    background: linear-gradient(
        to bottom,
        rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
        rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
        rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
        rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
        rgba(167, 216, 240, 0.2) 85%,    /* Light aero-blue */
        rgba(167, 216, 240, 0.1) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid var(--aero-border) !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    margin-bottom: 30px !important;
}

/* Force WooCommerce single product pages to use custom styling */
.woocommerce div.product,
.woocommerce-page div.product {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    perspective: 1000px !important;
    background: linear-gradient(
        to bottom,
        rgba(174, 213, 255, 0.35) 0%,
        rgba(245, 248, 252, 0.82) 100%
    ) !important;
    border: 1px solid rgba(160, 174, 192, 0.6) !important;
    border-radius: 8px !important;
    padding: 40px !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 1px 3px rgba(0, 0, 0, 0.12) inset !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(20px) !important;
    position: relative !important;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
    transform-style: preserve-3d !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    float: none !important;
    width: auto !important;
    clear: none !important;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
    background: linear-gradient(
        to bottom,
        rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
        rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
        rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
        rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
        rgba(167, 216, 240, 0.2) 85%,    /* Light aero-blue */
        rgba(167, 216, 240, 0.1) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    display: block !important;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    grid-column: 2 !important;
}

.woocommerce div.product h1.product_title,
.woocommerce-page div.product h1.product_title {
    font-family: 'Quicksand', sans-serif !important;
    font-size: 2.5em !important;
    margin: 0 !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price {
    font-size: 2em !important;
    font-weight: 700 !important;
    color: white !important;
    background: linear-gradient(
        to bottom,
        rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
        rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
        rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
        rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
        rgba(167, 216, 240, 0.2) 85%,    /* Light aero-blue */
        rgba(167, 216, 240, 0.1) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    padding: 15px 25px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    margin: 0 !important;
}

.woocommerce div.product div.product_meta,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-page div.product div.product_meta,
.woocommerce-page div.product .woocommerce-product-details__short-description {
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    background: linear-gradient(
        to bottom,
        rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
        rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
        rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
        rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
        rgba(167, 216, 240, 0.2) 85%,    /* Light aero-blue */
        rgba(167, 216, 240, 0.1) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    color: white !important;
}

.woocommerce div.product form.cart,
.woocommerce-page div.product form.cart {
    margin-top: 20px !important;
    background: linear-gradient(
        to bottom,
        rgba(167, 216, 240, 0.9) 0%,     /* Bright aero-blue */
        rgba(111, 195, 255, 0.8) 20%,    /* Glowing neon blue */
        rgba(146, 220, 234, 0.6) 50%,    /* Glassy cyan */
        rgba(194, 227, 245, 0.4) 70%,    /* Soft gradient edge */
        rgba(167, 216, 240, 0.2) 85%,    /* Light aero-blue */
        rgba(167, 216, 240, 0.1) 100%
    ) !important;
    backdrop-filter: blur(4px) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

/* Fix grid layout for single product */
.woocommerce div.product,
.woocommerce-page div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

/* WooCommerce Product Tabs Styling */
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    margin-top: 40px !important;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1)) !important;
    border-radius: 12px !important;
    border: 1px solid var(--aero-border) !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    overflow: hidden !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08)) !important;
    border-bottom: 1px solid var(--aero-border) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    border-radius: 12px 12px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
    position: relative !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15)) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
    color: white !important;
    text-decoration: none !important;
    padding: 20px 25px !important;
    display: block !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-align: center !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a:hover {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1)) !important;
    color: var(--aero-highlight) !important;
    text-shadow: 0 0 8px var(--aero-glow) !important;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce-page div.product .woocommerce-tabs .panel {
    padding: 30px !important;
    background: transparent !important;
    color: white !important;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce-page div.product .woocommerce-tabs .panel h2 {
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 1.8em !important;
    margin: 0 0 20px 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce-page div.product .woocommerce-tabs .panel p {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

/* Review Form Styling */
.woocommerce div.product #review_form_wrapper,
.woocommerce-page div.product #review_form_wrapper {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.08)) !important;
    padding: 25px !important;
    border-radius: 8px !important;
    border: 1px solid var(--aero-border) !important;
    margin-top: 20px !important;
}

.woocommerce div.product #review_form input,
.woocommerce div.product #review_form textarea,
.woocommerce div.product #review_form select,
.woocommerce-page div.product #review_form input,
.woocommerce-page div.product #review_form textarea,
.woocommerce-page div.product #review_form select {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    padding: 10px !important;
    border-radius: 6px !important;
    width: 100% !important;
}

.woocommerce div.product #review_form label,
.woocommerce-page div.product #review_form label {
    color: white !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.woocommerce div.product #review_form .submit,
.woocommerce-page div.product #review_form .submit {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15)) !important;
    border: 1px solid var(--aero-border) !important;
    color: white !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.woocommerce div.product #review_form .submit:hover,
.woocommerce-page div.product #review_form .submit:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2)) !important;
    box-shadow: 
        0 8px 20px var(--aero-shadow),
        inset 0 1px var(--aero-glow) !important;
}

/* Star Rating Styling */
.woocommerce div.product .stars a,
.woocommerce-page div.product .stars a {
    color: var(--aero-highlight) !important;
    text-shadow: 0 0 5px var(--aero-glow) !important;
}

/* Privacy Policy Page - Windows Aero Dialog Box Style */
.page-template-default .page-content.reflection,
.privacy-policy .page-content.reflection,
body.page .page-content.reflection {
    background: linear-gradient(
        to bottom,
        rgba(174, 213, 255, 0.35) 0%,
        rgba(245, 248, 252, 0.82) 100%
    ) !important;
    border: 1px solid rgba(160, 174, 192, 0.6) !important;
    border-radius: 8px !important;
    padding: 40px !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 1px 3px rgba(0, 0, 0, 0.12) inset !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(20px) !important;
    position: relative !important;
}

/* Windows Aero dialog title bar effect */
.page-template-default .page-content.reflection::before,
.privacy-policy .page-content.reflection::before,
body.page .page-content.reflection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(240, 245, 251, 0.8) 50%,
        rgba(226, 232, 240, 0.7) 100%
    );
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
    z-index: 1;
}

/* Privacy Policy Text Formatting - Windows Dialog Style */
.page-content .page-body h1,
.page-content .page-body h2,
.page-content .page-body h3,
.page-content .page-body h4 {
    color: #2d3748 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    margin: 30px 0 15px 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-content .page-body h1 {
    font-size: 2.2em !important;
    margin-bottom: 25px !important;
    margin-top: 40px !important;
    text-align: center !important;
    background: none !important;
    padding: 20px !important;
    border-radius: 0 !important;
    border: none !important;
    color: #3182ce !important;
}

.page-content .page-body h2 {
    font-size: 1.6em !important;
    color: #2b6cb0 !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid rgba(43, 108, 176, 0.3) !important;
    margin-top: 35px !important;
}

/* WordPress Block Editor H2 Headings - Windows Dialog Style */
.page-content .page-body h2.wp-block-heading {
    color: #2b6cb0 !important;
    background: linear-gradient(
        to bottom,
        rgba(237, 242, 247, 0.8) 0%,
        rgba(226, 232, 240, 0.6) 100%
    ) !important;
    padding: 12px 18px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(160, 174, 192, 0.4) !important;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.6) inset !important;
    text-shadow: none !important;
    margin: 25px 0 20px 0 !important;
    border-bottom: 1px solid rgba(160, 174, 192, 0.4) !important;
}

.page-content .page-body h3 {
    font-size: 1.3em !important;
    color: #4a5568 !important;
    margin-top: 25px !important;
}

.page-content .page-body p {
    color: #2d3748 !important;
    line-height: 1.7 !important;
    margin-bottom: 18px !important;
    font-size: 1.05em !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    letter-spacing: 0.2px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-content .page-body ul,
.page-content .page-body ol {
    color: #2d3748 !important;
    margin: 15px 0 20px 25px !important;
    line-height: 1.6 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-content .page-body li {
    margin-bottom: 8px !important;
    text-shadow: none !important;
    color: #2d3748 !important;
}

.page-content .page-body strong,
.page-content .page-body b {
    color: #2b6cb0 !important;
    font-weight: 600 !important;
}

.page-content .page-body a {
    color: #3182ce !important;
    text-decoration: underline !important;
    transition: all 0.2s ease !important;
    border-bottom: none !important;
}

.page-content .page-body a:hover {
    color: #2c5aa0 !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

/* Privacy Policy Sections - Windows Dialog Style */
.page-content .page-body section {
    background: linear-gradient(
        to bottom,
        rgba(247, 250, 252, 0.8) 0%,
        rgba(237, 242, 247, 0.6) 100%
    ) !important;
    padding: 25px !important;
    margin: 25px 0 !important;
    border-radius: 4px !important;
    border: 1px solid rgba(160, 174, 192, 0.4) !important;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Contact Information Highlighting - Windows Dialog Style */
.page-content .page-body .contact-info {
    background: linear-gradient(
        to bottom,
        rgba(219, 234, 254, 0.9) 0%,
        rgba(191, 219, 254, 0.8) 100%
    ) !important;
    padding: 20px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    margin: 20px 0 !important;
    text-align: center !important;
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.6) inset !important;
    color: #2b6cb0 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Table Styling for Privacy Policy - Windows Dialog Style */
.page-content .page-body table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 20px 0 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    border: 1px solid rgba(160, 174, 192, 0.4) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-content .page-body table th,
.page-content .page-body table td {
    padding: 12px 15px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(160, 174, 192, 0.2) !important;
    color: #2d3748 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.page-content .page-body table th {
    background: linear-gradient(
        to bottom,
        rgba(237, 242, 247, 0.9) 0%,
        rgba(226, 232, 240, 0.8) 100%
    ) !important;
    font-weight: 600 !important;
    color: #2b6cb0 !important;
    border-bottom: 2px solid rgba(43, 108, 176, 0.2) !important;
}

.page-content .page-body table tr:last-child th,
.page-content .page-body table tr:last-child td {
    border-bottom: none !important;
}

.page-content .page-body table tr:hover {
    background: rgba(247, 250, 252, 0.5) !important;
}

/* Global Glass Panels - Match Site Header Styling */
.glass-panel,
.product-card,
.cart_totals,
.hero-section,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(245, 245, 245, 0.50) 100%
    ) !important;
    border: 1px solid rgba(160, 174, 192, 0.3) !important;
    border-radius: 8px !important;
    padding: 40px !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 1px 3px rgba(0, 0, 0, 0.08) inset !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(20px) !important;
    position: relative !important;
}

/* Enhanced text readability across site */
body,
.woocommerce,
.page-content,
.product-card {
    font-weight: 400 !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Stronger text shadows for better contrast */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 2px 6px rgba(0,0,0,0.5) !important;
}



/* Homepage Hero Section */
.hero-section {
    margin-bottom: 40px;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.15));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    box-shadow: 
        0 8px 25px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    margin: 0 0 20px 0;
    animation: gentle-title-float 8s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3em;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin: 0;
    font-weight: 400;
}

.products-section {
    margin-bottom: 40px;
}

.no-products {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    box-shadow: 
        0 4px 15px var(--aero-shadow),
        inset 0 1px var(--aero-glow);
}

.no-products p {
    color: white;
    font-size: 1.2em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin: 0;
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5em;
        animation: none;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .game-menu li {
        padding: 6px 8px;
        font-size: 0.9em;
    }
    
    .main-navigation {
        margin-bottom: 15px;
    }
}