/* SHOPSUI Header Styles */

/* Base styles */
body {
    margin-top: 0;
    padding-top: 0;
}

/* Hide WooCommerce mini cart block but keep it functional */
.wc-block-mini-cart,
.wc-block-components-mini-cart,
.wc-block-components-mini-cart__container {
    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;
    pointer-events: none !important;
}

/* The actual button - hide visually but allow programmatic clicks */
.wc-block-components-mini-cart__button {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: auto !important;
    z-index: -1 !important;
}

/* Custom cart link */
.shopsui-cart-link {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 54px;
    right: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0rem;
    color: #444444;
    z-index: 7777;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 0 10px 10px;
    transition: color 0.3s ease;
}

.shopsui-cart-link:hover {
    color: rgb(255, 255, 255);
}

/* Logo styles */
.logo {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 50px;
    left: 50px;
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    color: #444444;
    z-index: 6667;
    display: none;
}

/* ASCII art container */
.ascii {
    position: fixed;
    top: 0;
    left: 0;
    color: #eee;
    font-size: 13px;
    line-height: normal;
    letter-spacing: normal;
    z-index: 6666;
}



/* Responsive Design */
@media screen and (max-width: 1200px) {
    .ascii pre {
        font-size: 10px;
    }
}

@media screen and (max-width: 992px) {
    

    .ascii pre {
        font-size: 9px;
    }
}

@media screen and (max-width: 768px) {



    .ascii pre {
        font-size: 10px;
        text-align: center;
        overflow-x: auto;
        white-space: pre;
    }

    
}

@media screen and (max-width: 480px) {
    .ascii pre {
        font-size: 8px;
    }

    
}
