body { font-family: 'Poppins', sans-serif; }

.gradient-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.label-preview {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.safe-zone-guide {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed #d1d5db;
    pointer-events: none;
    z-index: 10;
}

.anti-vol {
    background: #dc2626 !important;
    color: white !important;
    border: 2px solid #b91c1c;
}

.vinyle-blanc { background: white; color: black; border: 1px solid #d1d5db; }
.vinyle-transparent-noir { background: rgba(255,255,255,0.95); color: black; border: 1px solid rgba(0,0,0,0.1); }
.vinyle-transparent-blanc { background: rgba(0,0,0,0.8); color: white; border: 1px solid rgba(255,255,255,0.2); }
.coton-blanc { background: #fafafa; color: #111; border: 1px solid #e5e7eb; }

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.5s ease-out; }

.modal-enter { animation: fadeIn 0.3s ease-out; }

.type-btn.active, .sub-btn.active, .qty-btn.active, .size-btn.active {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.type-btn.active[data-type="antivol"] {
    background-color: #dc2626;
    border-color: #b91c1c;
}

.cart-item {
    transition: all 0.2s ease;
}
.cart-item:hover {
    background-color: #f9fafb;
}