:root {
    --main-font: Poppins, sans-serif;
    --second-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --base-font-size: 1rem;
    --main-text-color: #ffffff;
    --secondary-text-color: #000000;
    --third-text-color: #164fac;
    --text-hover-color: #5581cc;
    --dark-text-color: rgba(0, 0, 0, 0.799);
    --dark-primary-color: rgba(0, 0, 0, 0.195);
    --dark-secondary-color: rgba(0, 0, 0, 0.088);
    --dark-third-color: rgba(0, 0, 0, 0.519);
    --red-color: rgba(255, 0, 0, 0.711);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    background-color: var(--main-text-color);
}

.container {
    margin: 0px auto 25px;
    position: relative;
    top: calc(80px / 2); /* Ajustement pour centrer la section */
    padding-top: 25px;
    background-color: var(--main-text-color);
}
.container > p:first-child {
    color: var(--dark-text-color);
    font-size: 1rem;
    margin: 5px 0px 12.5px 20px;
}

.container > p:first-child span {
    font-weight: 600;
}
.header {
    text-align: center;
}

.header h1 {
    color: var(--dark-text-color);
    font-size: 2rem;
    margin-bottom: 10px;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 200%;
    background-image: url('../../images/pexels-googledeepmind-17483870.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(25px); /* Intensité du flou */
    z-index: -1; /* Place derrière le contenu */
    clip: rect(0, auto, auto, 0); /* Limite le pseudo-élément à la zone de contenu */
}
#ecommerce-chatbot-project {
    position: relative;
    top: 80px;
    font-family: var(--main-font);
    line-height: 1.6;
    padding: 20px 30px 0px 30px;
    max-width: 100%;
}

#ecommerce-chatbot-project h2 {
    margin-top: 0;
    color: var(--dark-text-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

#ecommerce-chatbot-project h3 {
    color: var(--dark-text-color);
}

#ecommerce-chatbot-project h4 {
    margin: 20px 0 10px 0;
    color: var(--dark-text-color);
}

#ecommerce-chatbot-project p {
    font-size: 1rem;
    color: var(--dark-text-color);
}

#ecommerce-chatbot-project ul {
    list-style: disc inside;
}

#ecommerce-chatbot-project li {
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

#ecommerce-chatbot-project strong {
    color: var(--dark-text-color);
    font-weight: 600;
}

/* Styles spécifiques pour les nouvelles sections */
.features-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    padding: 15px 20px;
    max-width: 40%;
    border: 1px solid var(--dark-secondary-color);
    border-radius: 8px;
    margin-bottom: 20px;
}
.feature-card > h3 {
    margin-bottom: 2.5px;
}
.context-management {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.code-snippet {
    padding: 0px;
    margin: 15px 0px;
}
.code-snippet pre {
    background-color: var(--dark-secondary-color);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    max-width: 40%;
}
.json-key {
    color: #0000aa;
}

.json-string {
    color: #aa5500;
}

.json-number {
    color: #00aa00;
}
.tech-stack {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tech-item {
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px  var(--dark-secondary-color) solid;
}
.tech-item img {
    max-width: 20px;
    max-height: 20px;
}
.roadmap {
    margin-top: 10px;
}
.roadmap ul {
    padding-top: 5px;
}
.tech-item img {
    width: 20px;
    height: 20px;
}

.capabilities-grid {
    
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 600px) {
    #data-analysis-project {
        padding: 10px;
    }
    
    #data-analysis-project h2 {
        font-size: 1.8rem;
    }
    
    #data-analysis-project h3 {
        font-size: 1.3rem;
    }
}

/* Section vidéo de démonstration */
.demo-video-section {
    position: relative;
    top: calc(80px / 2); /* Ajustement pour centrer la section */
    background: linear-gradient(
        to bottom,
        
        #ece5e50e 0%,    /* Blanc/gris de la section précédente */
        var(--third-text-color) 100%    /* Couleur finale */
    );
    margin: 0;
    height: 450px;
    width: 100%;
    color: white;
    padding: 0px 30px;
    text-align: center;
    box-shadow: 0 20px 20px -30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.demo-content {
    padding: 0 30px;
    position: relative;
    top: 80px;
}

.demo-content h3 {
    font-size: 2rem;
    margin: 15px 0px 10px 0px;
    color: var(--dark-text-color);
    font-size: 1.5rem;
}

.demo-content p {
    font-size: 1rem;
    margin-bottom: 10px;
    max-width: 800px;
    line-height: 1.5;
}

.video-container {
    width: 900px;
    height: 80%;
    margin: 0 ;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ratio 16:9 parfait */
.video-container::before {
    content: '';
    display: block;
    padding-bottom: 56.25%; /* 16:9 ratio exact */
}

.video-container:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--main-text-color);
    border-radius: 10px;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.play-button {
    transform: scale(1);
    transition: transform 0.2s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.play-button:hover {
    transform: scale(1.1);
}

.video-badge {
    position: absolute;
    top: 100px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-badge i {
    color: #dc3545;
}

/* Style YouTube une fois chargé */
.youtube-iframe {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .demo-video-section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .demo-content h3 {
        font-size: 1.6rem;
    }
    
    .demo-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .youtube-iframe {
        height: 250px;
    }
    
    .video-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .youtube-iframe {
        height: 200px;
    }
}

.customer-selector {
    background: white;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--dark-secondary-color);
    margin: 0px 20px;
    max-width: 100%;
}

.customer-info {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.new-customer-btn {
    background: var(--third-text-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}
.new-customer-btn:hover {
    background: var(--text-hover-color);
}

.customer-select {
    position: relative;
    padding: 10px 50px 10px 16px;
    border: 2px solid var(--dark-secondary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    min-width: 300px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* outline: 1px solid var(--text-hover-color); */
    transition: border-color 0.3s, outline-color 0.3s;
}
.customer-info label {
    margin-right: 15px;
}
.customer-select:focus {
    outline-color: var(--text-hover-color);
}
.dropdown-icon-svg {
    position: absolute;
    left: 458px;
    top: 22px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    fill: var(--dark-third-color);
}
.customer-select:hover + .dropdown-icon-svg {
    fill: var(--third-text-color);
    border: none;
    background-color: var(--dark-secondary-color);
    border-radius: 50%;
    transform: translateY(-50%) rotate(180deg);
}
.customer-select:hover {
    border-color: var(--text-hover-color);
}
.customer-select option {
    padding: 12px 16px;
    margin: 2px 0;
    color: var(--dark-text-color);
    transition: all 0.2s ease;
    font-weight: 500;
}
.customer-select option:checked {
    background: var(--dark-secondary-color);
    color: var(--third-text-color);
    font-weight: bold;
}

.customer-details {
    background: var(--main-text-color);
    padding: 10px;
    border-radius: 8px;
    margin-top: 0px;
}

.bulk-form {
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--dark-secondary-color);
    padding: 10px;
    border-bottom: none;
}

.form-title {
    font-size: 1.2rem;
    font-family: var(--main-font);
    color: var(--dark-text-color);
}

.add-all-btn {
    background: var(--third-text-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.add-all-btn:hover {
    background: var(--text-hover-color);
}

.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.products-table th {
    background: var(--dark-secondary-color);
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text-color);
    border-bottom: 2px solid var(--dark-primary-color);
}

.products-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--dark-secondary-color);
    vertical-align: middle;
}

/* Styles pour les images de produits */
.product-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image-container {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    background-color: var(--dark-secondary-color);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 10px;
}

.product-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 15px var(--dark-primary-color);
    border-color: var(--text-hover-color);
}

.product-image {
    width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: scale(1.1);
}

/* Image de fallback en cas d'erreur */
.product-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-text-color);
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .product-image-container {
        width: 60px;
        height: 60px;
    }
    
    .product-info {
        gap: 15px;
    }
}

/* Effet zoom sur clic */
.product-image-zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-image-zoom.show {
    opacity: 1;
    visibility: visible;
}

.product-image-zoom img {
    max-width: 50%;
    max-height: 50%;
    background-color: var(--main-text-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-details h4 {
    color: var(--dark-text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-details p {
    color: var(--dark-third-color);
    font-size: 0.9rem;
    margin-bottom: 2.5px;
}
.product-details p:nth-child(4) {
    margin-bottom: 10px;
}
.product-details p:nth-child(2) {
    margin-bottom: 15px;
}
.product-details p:nth-child(2) > span {
    color: var(--dark-third-color);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid var(--dark-secondary-color);
    padding: 5px 10px;
}

.product-description {
    color: #95a5a6;
    font-size: 0.8rem;
    font-style: italic;
}

.qty-input {
    width: 80px;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.qty-input:focus {
    outline: none;
    border-color: #3498db;
}

.price {
    font-weight: bold;
    color: #27ae60;
    font-size: 1.1rem;
}

.subtotal {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

.add-to-cart-btn {
    background: var(--dark-primary-color);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--dark-secondary-color);
}

.add-to-cart-btn.active {
    background: var(--third-text-color);
}
.add-to-cart-btn.active:hover {
    background: var(--text-hover-color);
}

.total-section {
    text-align: right;
    padding: 20px;
    background: var(--dark-secondary-color);
    border-radius: 8px;
    margin-top: 20px;
}

.total-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-text-color);
}

.cart-summary {
    margin-top: 30px;
    padding: 10px 20px;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
}
.cart-summary h3 {
    color: var(--dark-text-color);
    margin-bottom: 0px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d5e8d5;
    border: none;
    border-radius: 8px;
    background-color: var(--dark-secondary-color);
}

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

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 10px;
}

.remove-btn:hover {
    background: #c0392b;
}

.footer-actions {
    display: flex;
    justify-content:flex-end;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    position: relative;
}
.chat {
    position: fixed;
    bottom: 30px;
    right: 40px;
    background: var(--third-text-color);
    border: none;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 6;
}
.chat-icon {
    width: 45px;
    height: 45px;
}
.chat:hover {
    background: var(--text-hover-color);
    transform: scale(1.05);
}

/* Modal Chat */
.ai-chat-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 30%;
    height: 75%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    z-index: 6;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    margin-top: 5%;
}

.ai-chat-modal.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ai-chat-modal * {
    pointer-events: auto;
}
.ai-chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header du chat */
.ai-chat-header {
    background: var(--third-text-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: var(--dark-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-family: var(--main-font);
    font-weight: 600;
}

.ai-status {
    font-size: 12px;
    opacity: 0.8;
}

.ai-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.ai-chat-close:hover {
    background: var(--dark-secondary-color);
}

/* Messages du chat */
.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    height: 100%;
}

.ai-message, .user-message {
    display: flex;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

.user-message {
    justify-content: flex-end;
}

.ai-avatar-small, .user-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.ai-avatar-small {
    background: var(--dark-secondary-color);
    height: 40px;
    width: 40px;
    color: white;
}

.user-avatar-small {
    background: var(--dark-secondary-color);
    margin-right: 0;
    height: 40px;
    width: 40px;
    margin-left: 10px;
    order: 2;
}

.ai-message-content, .user-message-content {
    background: var(--dark-secondary-color);
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 280px;
    word-wrap: break-word;
}

.user-message-content {
    background: var(--text-hover-color);
    color: white;
    font-size: 5000;
}

.ai-message-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.ai-message-content li {
    margin: 5px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Suggestions */
.ai-chat-suggestions {
    padding: 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-btn {
    background: white;
    border: 1px solid var(--dark-primary-color);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--dark-text-color);
}

.suggestion-btn:hover {
    background: var(--dark-secondary-color);
    border-color: transparent;
}

/* Input du chat */
.ai-chat-input {
    border-top: 1px solid var(--dark-secondary-color);
    padding: 15px 20px;
}

.ai-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

#aiChatInput {
    flex: 1;
    border: 1px solid var(--dark-primary-color);
    border-radius: 25px;
    padding: 15px 15px;
    height: 50px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

#aiChatInput:focus {
    border-color: var(--text-hover-color);
}

.ai-send-btn {
    width: 50px;
    height: 50px;
    background: var(--third-text-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.ai-send-btn:hover {
    transform: scale(1.05);
}

.ai-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-chat-footer {
    text-align: center;
    margin-top: 10px;
}

.ai-chat-footer small {
    color: var(--dark-third-color);
    font-size: 0.8rem;
    font-family: var(--second-font);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-secondary-color);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 480px) {
    .ai-chat-modal {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .ai-chat-fab {
        bottom: 20px;
        right: 20px;
    }
}

/* Scrollbar personnalisé */
.ai-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.checkout-btn {
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 7.5px;
}

.checkout-btn:hover {
    background: #229954;
}

.checkout-btn:disabled {
    background: var(--dark-primary-color);
    cursor: not-allowed;
}

.clear-cart-btn {
    margin-right: 7.5px;
    background: var(--red-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.clear-cart-btn:hover {
    background: #c0392b;
}

.category-badge {
    background: var(--third-text-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.stock-status {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.in-stock {
    background: #d4edda;
    color: #155724;
}

.low-stock {
    background: #fff3cd;
    color: #856404;
}

.out-stock {
    background: #f8d7da;
    color: #721c24;
}
