
*{box-sizing:border-box}body{font-family:Arial,Helvetica,sans-serif;margin:0;background:#f6f9fb;color:#333}
.container{max-width:1200px;margin:0 auto;padding:0 18px}
header.site-header{background:#2563eb;padding:12px 0;position:relative}
.header-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.logo-group{display:flex;align-items:center;gap:12px}
.logo-img{width:64px;height:64px;object-fit:contain;background:#fff;border-radius:8px;padding:6px}
.logo-x{color:#fff;font-size:34px;margin:0}
.right-side{display:flex;align-items:center;gap:12px;flex:1;justify-content:flex-end;min-width:0}
.search-wrapper{position:relative;flex:1;max-width:520px}
.search-box{width:100%;padding:10px 44px 10px 14px;border-radius:24px;border:1px solid #e1eef6}
.search-icon{position:absolute;right:14px;top:50%;transform:translateY(-50%);color:#6b7b82}
.hamburger{font-size:30px;color:#fff;cursor:pointer;padding:6px 10px;border-radius:6px}
.dropdown-menu{position:absolute;right:18px;top:78px;display:none;flex-direction:column;width:320px;background:#f8f9fa;border-radius:8px;padding:8px;box-shadow:0 8px 24px rgba(0,0,0,0.15);z-index:9999}
.menu-link{color:#174487;text-decoration:none;padding:10px 14px;display:block;font-weight:700}
.menu-link:hover{background:#174487;color:#fff}
.main{padding:28px 0}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.product-card{background:#fff;border-radius:12px;padding:14px;text-align:center;box-shadow:0 6px 18px rgba(10,30,50,0.06);cursor:pointer}
.product-img{height:160px;display:flex;align-items:center;justify-content:center;background:#f6fbff;border-radius:8px;overflow:hidden;margin-bottom:10px}
.product-img img{max-width:100%;max-height:100%;object-fit:contain}
.card-bottom{display:flex;justify-content:center;gap:12px;margin-top:10px}
.cart-btn,.price-btn{width:44px;height:44px;border-radius:50%;border:none;background:#174487;color:#fff;cursor:pointer}
/* Enhanced Mobile Responsive Design */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-x {
        font-size: 26px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        gap: 10px;
    }
    
    .search-box {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .logo-group {
        display: none;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-x {
        font-size: 22px;
    }
    
    .hamburger {
        font-size: 24px;
        padding: 8px 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
    }
    
    .hamburger:active {
        background: rgba(255,255,255,0.2);
        transform: scale(0.95);
    }
    
    .search-wrapper {
        max-width: none;
        margin-right: 8px;
    }
    
    .search-box {
        font-size: 14px;
        padding: 10px 40px 10px 14px;
        height: 40px;
        border: 2px solid #e1eef6;
        transition: all 0.3s ease;
    }
    
    .search-box:focus {
        outline: none;
        border-color: #174487;
        box-shadow: 0 0 0 3px rgba(23, 68, 135, 0.1);
    }
    
    .search-icon {
        right: 12px;
        font-size: 14px;
    }
    
    .dropdown-menu {
        right: 15px;
        top: 65px;
        width: 280px;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.4);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .menu-link {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-link:active {
        transform: scale(0.98);
    }
    
    .product-card {
        padding: 14px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .product-img {
        height: 140px;
        border-radius: 10px;
    }
    
    .card-bottom {
        gap: 10px;
    }
    
    .cart-btn, .price-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cart-btn:active, .price-btn:active {
        transform: scale(0.95);
    }
    
    .main {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 12px;
    }
}
/* Performance Optimizations */
.product-card {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.product-img {
    will-change: transform;
    backface-visibility: hidden;
}

.cart-btn, .price-btn {
    will-change: transform, background-color;
    backface-visibility: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced Mobile Performance */
@media (max-width: 768px) {
    /* Optimize images for mobile */
    .product-img img {
        content-visibility: auto;
        contain-intrinsic-size: 160px 160px;
    }
    
    /* Improve touch target sizes */
    .cart-btn, .price-btn, .hamburger, .menu-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Optimize animations for mobile */
    .product-card {
        transition: transform 0.2s ease;
    }
    
    .cart-btn, .price-btn {
        transition: transform 0.15s ease, background-color 0.2s ease;
    }
}
/* Enhanced Mobile Cart Experience */
@media (max-width: 768px) {
    .yns-header-cart {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        padding: 0;
        animation: floatCart 3s ease-in-out infinite;
    }
    
    @keyframes floatCart {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }
    
    .cart-icon-link {
        padding: 12px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        min-width: 60px;
        min-height: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cart-text {
        display: none;
    }
    
    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        margin-right: 0;
        border: 2px solid #fff;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .cart-icon-link i {
        margin-right: 0;
        font-size: 1.4em;
    }
    
    .cart-icon-link:active {
        transform: scale(0.95);
    }
}

/* Enhanced cart button styles */

.cart-btn:active {
    transform: scale(0.95);
}

.cart-btn.adding {
    background-color: #28a745 !important;
    color: white !important;
}

/* Debug info styles */
.debug-info {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 10000;
    display: none;
}/* Floating cart for mobile */
@media (max-width: 768px) {
    .yns-header-cart {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }
    
    /* Ensure cart is visible over other content */
    .yns-header-cart .cart-icon-link {
        box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    }
}

/* Ensure cart stays visible in dropdown menu on mobile */
@media (max-width: 768px) {
    .dropdown-menu .yns-header-cart {
        position: static;
        margin: 10px 15px;
    }
    
    .dropdown-menu .cart-icon-link {
        border-radius: 8px;
        width: auto;
        height: auto;
        padding: 12px 20px;
        justify-content: flex-start;
    }
    
    .dropdown-menu .cart-text {
        display: inline;
    }
    
    .dropdown-menu .cart-count {
        position: static;
        margin-right: 8px;
    }
}/* Header Cart Styles */
.yns-header-cart {
    margin-left: auto;
    padding: 0 15px;
}

.cart-icon-link {
    display: flex;
    align-items: center;
    background: #174487;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cart-icon-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-icon-link i {
    font-size: 1.2em;
    margin-right: 8px;
}

.cart-count {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.cart-text {
    font-weight: 500;
    font-size: 0.9em;
}

/* Pulse animation for cart count */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Cart count animation when item added */
.cart-count.added {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.3);
    }
    80% {
        transform: scale(1.1);
    }
}

/* Enhanced Mobile Styles for Small Screens */
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    header.site-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-top {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
    }
    
    .logo-group {
        display: none;
    }
    
    .hamburger {
        font-size: 20px;
        padding: 8px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .hamburger:active {
        background: rgba(255,255,255,0.2);
        transform: scale(0.95);
    }
    
    .right-side {
        gap: 8px;
        align-items: center;
    }
    
    .search-wrapper {
        flex: 1;
        min-width: 0;
        margin-right: 0;
    }
    
    .search-box {
        padding: 10px 38px 10px 14px;
        font-size: 14px;
        border-radius: 20px;
        height: 40px;
        border: 2px solid #e1eef6;
        transition: all 0.3s ease;
    }
    
    .search-box:focus {
        outline: none;
        border-color: #174487;
        box-shadow: 0 0 0 3px rgba(23, 68, 135, 0.1);
    }
    
    .search-icon {
        right: 12px;
        font-size: 14px;
        color: #174487;
    }
    
    .dropdown-menu {
        top: 58px;
        width: 92%;
        right: 4%;
        left: 4%;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .menu-link {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-link:active {
        transform: scale(0.98);
    }
    
    .product-card {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .product-img {
        height: 150px;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    
    .card-bottom {
        margin-top: 14px;
        gap: 10px;
    }
    
    .cart-btn, .price-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cart-btn:active, .price-btn:active {
        transform: scale(0.95);
    }
    
    .main {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Desktop specific styles */
@media (min-width: 769px) {
    .yns-header-cart {
        order: 999; /* Ensure it stays on the right */
    }
    
    .dropdown-menu .yns-header-cart {
        margin: 10px 0;
        padding: 0;
    }
    
    .dropdown-menu .cart-icon-link {
        justify-content: center;
        border-radius: 8px;
    }
}


/* AI Icon Styles */
.ai-icon-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: 14px;
    margin-right: 8px;
}

.ai-icon-link:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    transform: translateY(-2px);
}

.ai-icon-link i {
    margin-right: 6px;
}

@media (max-width: 768px) {
    .ai-icon-link span {
        display: none;
    }
    
    .ai-icon-link i {
        margin-right: 0;
    }
}
/* AI Search Styles */
.ai-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 2;
    cursor: help;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-3px); }
}

.ai-suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.ai-suggestions-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.ai-suggestions-header i {
    margin-right: 8px;
}

.ai-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.ai-suggestions-list {
    max-height: 300px;
    overflow-y: auto;
}

.ai-suggestion-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.ai-suggestion-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.ai-suggestion-item:last-child {
    border-bottom: none;
}

.ai-suggestion-item strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 14px;
}

.ai-suggestion-item small {
    color: #666;
    font-size: 12px;
}

/* AI Kit Modal Styles */
.ai-kit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.ai-kit-modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.ai-kit-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-kit-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-kit-info {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.ai-kit-info h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.ai-kit-info p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.ai-kit-components {
    padding: 20px;
    max-height: 40vh;
    overflow-y: auto;
}

.ai-kit-components h5 {
    margin: 0 0 15px 0;
    color: #333;
}

.components-list {
    margin-bottom: 20px;
}

.component-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.component-item:last-child {
    border-bottom: none;
}

.component-item span {
    flex: 1;
}

.component-item span:first-child {
    flex: 2;
    color: #333;
}

.component-item span:nth-child(2) {
    text-align: center;
    color: #666;
}

.component-item span:last-child {
    text-align: right;
    font-weight: 600;
    color: #28a745;
}

.kit-total {
    text-align: right;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #333;
}

.ai-kit-actions {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: #f8f9fa;
}

.ai-kit-actions button {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-add-all {
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-all:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

/* AI Notification */
.yns-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.yns-notification.success {
    background: #28a745;
}

.yns-notification.info {
    background: #17a2b8;
}

.yns-notification.warning {
    background: #ffc107;
    color: #333;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* AI Kit Card Styles for Waiting Page */
.ai-kit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #6a11cb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ai-kit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ai-kit-title {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-kit-title i {
    color: #6a11cb;
}

.ai-kit-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-kit-components {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.component-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.component-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.component-item:last-child {
    border-bottom: none;
}

.component-name {
    color: #333;
    font-weight: 500;
}

.component-code {
    color: #666;
    font-size: 0.9rem;
}

.component-price {
    text-align: right;
    color: #28a745;
    font-weight: 500;
}

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

.kit-total {
    text-align: right;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border: 2px solid #28a745;
}

.ai-kit-suggestion {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #ffc107;
}

.ai-kit-suggestion p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.ai-kit-suggestion i {
    color: #ffc107;
    margin-right: 8px;
}

.ai-kit-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-remove-kit {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-remove-kit:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Toast Notification Colors */
.toast.success {
    background: #28a745;
}

.toast.warning {
    background: #ffc107;
    color: #333;
}

.toast.info {
    background: #17a2b8;
}

/* Mobile Responsive for AI */
@media (max-width: 768px) {
    .ai-suggestions-box {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
        z-index: 1001;
    }
    
    .ai-search-icon {
        left: 10px;
        font-size: 14px;
    }
    
    .search-box {
        padding-left: 35px !important;
    }
    
    .ai-kit-card {
        padding: 15px;
    }
    
    .ai-kit-title {
        font-size: 1.1rem;
    }
    
    .component-header, .component-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .component-header div, .component-item div {
        text-align: left !important;
    }
    
    .component-code {
        font-size: 0.8rem;
    }
    
    .ai-kit-actions {
        flex-direction: column;
    }
    
    .btn-remove-kit {
        width: 100%;
        justify-content: center;
    }
    
    .yns-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .ai-suggestions-box {
        top: 55px;
    }
    
    .search-box {
        padding-left: 30px !important;
        font-size: 13px;
    }
    
    .ai-search-icon {
        font-size: 12px;
        left: 8px;
    }
}

/* Footer Styles */
.site-footer {
    background: #0d2345;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.site-footer p {
    margin: 5px 0;
    font-size: 14px;
}

.footer {
    background: #0d2345;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
}

.pdf-footer {
    background: #0d2345;
    color: #ffffff;
    padding: 15px;
    text-align: center;
}

.pdf-footer p {
    margin: 5px 0;
    font-size: 12px;
}