/* Sticker Bird Plugin Styles */

body {
    background-color: #111;
    color: #ccc;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #aaa;
    text-decoration: none;
}
a:hover, a:focus {
    color: #ddd;
    text-decoration: underline;
}

.sb-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.sb-product-item {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    width: 220px;
    text-align: center;
    box-shadow: 0 0 8px rgba(255,255,255,0.05);
    transition: box-shadow 0.3s ease;
    padding: 15px;
}

.sb-product-item:hover {
    box-shadow: 0 0 12px rgba(200,200,200,0.3);
}

.sb-product-thumb {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.sb-product-title {
    margin-top: 12px;
    font-size: 1.1rem;
    color: #eee;
}

.sb-product-detail {
    max-width: 600px;
    background: #1a1a1a;
    margin: 20px auto;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #333;
    box-shadow: 0 0 12px rgba(255,255,255,0.1);
}

.sb-product-detail label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #bbb;
}

.sb-product-detail select,
.sb-product-detail input[type="number"],
.sb-product-detail input[type="file"] {
    width: 100%;
    padding: 8px 10px;
    margin-top: 6px;
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    color: #eee;
    font-size: 1rem;
}

.sb-product-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ccc;
}

.sb-btn, button {
    background-color: #333;
    color: #ccc;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.sb-btn:hover, button:hover {
    background-color: #555;
}

.sb-btn:disabled, button:disabled {
    background-color: #555 !important;
    cursor: not-allowed;
    color: #777;
}

.sb-btn-primary {
    background-color: #444;
    font-weight: 600;
}

.sb-btn-primary:hover {
    background-color: #666;
}

.sb-btn-customize {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #ccc;
    border: 1px solid #666;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sb-btn-customize:hover {
    background-color: #333;
    color: #fff;
    border-color: #bbb;
}

#sb-price-result,
#price-result {
    font-weight: bold;
    margin-top: 10px;
    color: #ddd;
}

.sb-designer-wrapper {
    max-width: 700px;
    margin: 20px auto;
    padding: 15px;
    background: #1a1a1a;
    color: #ddd;
    border-radius: 8px;
    border: 1px solid #333;
}

.sb-designer-ui {
    background: #222;
    padding: 15px;
    border-radius: 6px;
}

.sb-designer-ui .sb-btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

#sb-white-border {
    vertical-align: middle;
    width: 200px;
    margin-left: 10px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #888;
    cursor: pointer;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #888;
    cursor: pointer;
    border-radius: 50%;
}

/* Cart modal styles */
#sb-cart-modal {
    font-size: 0.9rem;
    border-radius: 8px;
}

#sb-cart-modal h4 {
    margin-top: 0;
    color: #eee;
}

#sb-cart-modal ul {
    list-style: none;
    padding-left: 0;
}

#sb-cart-modal ul li {
    padding: 5px 0;
    border-bottom: 1px solid #444;
    color: #ccc;
}

#sb-show-cart {
    background-color: #444 !important;
    color: #eee !important;
    padding: 12px 18px !important;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
    user-select: none;
}


/* Responsive tweaks */
@media (max-width: 640px) {
    .sb-product-list {
        flex-direction: column;
        align-items: center;
    }

    .sb-product-item {
        width: 90%;
    }

    .sb-product-detail, .sb-designer-wrapper {
        width: 90%;
        margin: 10px auto;
    }
}

