/* Blue-White Gradient Theme */
body {
    /* Stronger Blue to White gradient covering the whole page */
    background: linear-gradient(180deg, #a6c1ee 0%, #fbc2eb 100%) !important; /* Placeholder, let's use actual Blue-White */
    background: linear-gradient(180deg, #89f7fe 0%, #ffffff 100%) !important; /* Cyan-Blue to White */
    /* Better Blue-White: */
    background: linear-gradient(180deg, #accbee 0%, #e7f0fd 100%) !important;
    background: linear-gradient(180deg, #4481eb 0%, #04befe 100%) !important; /* Too strong? */
    /* Soft Blue -> White */
    background: linear-gradient(180deg, #a1c4fd 0%, #ffffff 100%) !important;
    
    color: #333 !important;
    min-height: 100vh;
    background-attachment: fixed;
}

/* Common Containers (Cards, etc.) - Semi-transparent to show gradient */
.item, .type-card, .product-detail, .sidebar, .menu-panel, .kwatch-panel, .kwatch-submenu, .related-section {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #333 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Header/Nav */
.top-nav {
    /* Light transparent background for black text */
    background: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
}

/* Header Links */
.menu a, .kwatch-toggle, .brand-toggle {
    color: #333 !important; /* Black/Dark text */
    font-weight: 600;
}
.menu a:hover, .menu a.active, .kwatch-toggle:hover, .brand-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    color: #000 !important;
    border-radius: 4px;
}

/* Search Input */
.search-input {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
}
.search-input::placeholder {
    color: #888;
}
.search-input:focus {
    background-color: #fff !important;
    border-color: #4481eb !important;
    outline: none;
}
.search-btn {
    color: #333 !important;
}

/* Text & Headings */
h1, h2, h3, h4, h5, h6, .section-title, .title, .name, .kwatch-label, .info .name, .product-title, .desc {
    color: #2c3e50 !important;
}

/* Footer specific text fixes */
.footer .desc, .footer .desc li {
    color: #555 !important;
}
.footer .desc a {
    color: #007bff !important;
}
.footer .desc a:hover {
    color: #0056b3 !important;
}

/* Price Tag */
.price, .product-price {
    background: #f8f9fa !important;
    border: 1px solid #eee !important;
    color: #e74c3c !important; /* Red for prices */
    font-weight: bold;
}

/* Buttons */
.view-all-btn, .pagination .page-link, .nav-btn {
    background: #fff !important;
    color: #1e3c72 !important;
    border: 1px solid #dce1e6 !important;
}
.view-all-btn:hover, .pagination .page-link:hover, .nav-btn:hover {
    background: #f1f3f5 !important;
    color: #1e3c72 !important;
}
.pagination .page-link.active {
    background: #1e3c72 !important;
    color: #fff !important;
    border-color: #1e3c72 !important;
}

.btn-buy {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: #fff !important;
}
.btn-cart {
    background: #3498db !important;
    color: #fff !important;
}

/* Footer override - Transparent to show body gradient at bottom */
.footer, #site-footer {
    background: rgba(255, 255, 255, 0.6) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #444 !important;
    overflow: visible !important;
}

/* General Links */
a {
    color: #1e3c72;
    text-decoration: none;
}
a:hover {
    color: #2a5298;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .top-nav {
        background: #1e3c72 !important; /* Solid color on mobile usually better */
    }
}
