/**
 * Theme Name: Sascomus
 * Template: ecomus
 */

.scomus-red {
     color: red;
     text-decoration: underline;
 }

/* Ukryj oceny na liście produktów */
.products .ecomus-rating {
    display: none !important;
}

/* Cookie banner */
#sascomus-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
#sascomus-cookie-banner p {
    margin: 0;
}
#sascomus-cookie-banner a {
    color: #fff;
    text-decoration: underline;
}
#sascomus-cookie-banner button {
    flex-shrink: 0;
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
}
#sascomus-cookie-banner button:hover {
    background: #e0e0e0;
}
@media (max-width: 600px) {
    #sascomus-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    #sascomus-cookie-banner button {
        width: 100%;
    }
}