.shield-configurator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: Arial;
}

/* LEFT */
.shield-left { min-width: 0; }

.shield-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
    color: #fff;
}

h1.shield-title img.shield-title-logo {
    height: 1em !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    vertical-align: middle;
    border-radius: 4px;
    margin-left: 8px;
}

.shield-brand-by {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin: 0 0 10px 0;
    letter-spacing: .02em;
}

.shield-brand-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #a3d609;
    margin: 0 0 12px 0;
}

.shield-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 16px 0;
}

.shield-price {
    font-size: 32px;
    font-weight: 800;
    color: #a3d609;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.shield-price .woocommerce-Price-amount { color: #a3d609; }
.shield-price .woocommerce-Price-currencySymbol { font-size: 22px; }

.shield-stock {
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.shield-stock.in-stock { background: #e8f5e9; color: #2e7d32; }
.shield-stock.out-of-stock { background: #ffebee; color: #c62828; }

.shield-description { margin-top: 20px; }
.shield-description h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}
.shield-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0 0 10px 0;
}
.shield-features {
    margin: 0;
    padding-left: 20px;
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.9;
}

.shield-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.shield-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shield-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease;
    z-index: 3;
}
.shield-image-nav:hover { background: rgba(0,0,0,.8); }
.shield-image-nav svg { display: block; }
.shield-image-prev { left: 12px; }
.shield-image-next { right: 12px; }

.shield-image-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}
.shield-image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.shield-image-dot:hover { background: rgba(0,0,0,.45); }
.shield-image-dot.active { background: #a3d609; transform: scale(1.2); }

/* RIGHT */
.shield-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #000;
    padding: 24px;
    border-radius: 16px;
    color: #fff;
}

.step {
    padding: 14px;
    border: 1px solid #333;
    border-radius: 12px;
    background: #111;
}
.step h3 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Swatches couleur */
.shield-color-btn {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid transparent;
    margin: 4px;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    transition: border-color 0.15s, transform 0.15s;
    vertical-align: middle;
}
.shield-color-btn:hover { transform: scale(1.15); }
.shield-color-btn.active { border-color: #a3d609; box-shadow: 0 0 0 2px #a3d609; }

.shield-color-camo {
    background:
        radial-gradient(circle at 20% 30%, #4b5320 0 30%, transparent 31%),
        radial-gradient(circle at 65% 65%, #3a4016 0 35%, transparent 36%),
        radial-gradient(circle at 75% 20%, #5c6b2e 0 25%, transparent 26%),
        linear-gradient(135deg, #6b7a3d, #3c4419);
}

.shield-color-label {
    font-size: 11px;
    color: #666;
    margin: 8px 0 0 0;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.shield-color-label.selected { color: #a3d609; font-weight: 600; }

/* Bundle options */
.shield-bundle-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shield-bundle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid #444;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s, border-color 0.15s;
}
.shield-bundle-btn:hover { border-color: #666; }
.shield-bundle-btn.active {
    background: #fff;
    color: #000;
    border-color: #a3d609;
    box-shadow: 0 0 0 1px #a3d609;
}
.shield-bundle-name { font-weight: 700; }
.shield-bundle-price { font-weight: 700; color: #a3d609; }
.shield-bundle-btn.active .shield-bundle-price { color: #2e7d32; }

/* Step navigation dots */
.shield-steps-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 0 4px;
}
.shield-step-dot { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.dot-circle {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #333;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #555;
    transition: background 0.35s, border-color 0.35s, color 0.35s, box-shadow 0.35s;
    line-height: 1;
}
.dot-label {
    font-size: 10px; color: #444;
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
    transition: color 0.35s; white-space: nowrap;
}
.shield-step-line {
    flex: 1; height: 2px; background: #222;
    align-self: flex-start; margin-top: 14px; transition: background 0.35s;
}
.shield-step-dot.shield-dot-active .dot-circle {
    background: #a3d609; border-color: #a3d609; color: #000;
    box-shadow: 0 0 0 4px rgba(163,214,9,0.2);
}
.shield-step-dot.shield-dot-active .dot-label { color: #a3d609; }
.shield-step-dot.shield-dot-done .dot-circle { background: #2e7d32; border-color: #2e7d32; color: #fff; }
.shield-step-dot.shield-dot-done .dot-label { color: #4caf50; }
.shield-step-line.shield-line-done { background: #2e7d32; }

.shield-step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: #a3d609; color: #000; font-size: 11px; font-weight: 700;
    margin-right: 6px; vertical-align: middle; flex-shrink: 0;
}

/* Hint */
#shield-hint {
    font-size: 13px; color: #a3d609;
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 4px; transition: opacity 0.4s ease;
}
.shield-hint-arrow {
    display: inline-block;
    animation: shield-pulse-arrow 1s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes shield-pulse-arrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(4px); opacity: 0.5; }
}
@keyframes shield-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163, 214, 9, 0); }
    50% { box-shadow: 0 0 0 6px rgba(163, 214, 9, 0.4); }
}
.shield-pulse [data-step="color"] .shield-color-btn:not(.active) {
    animation: shield-pulse-glow 1.5s ease-in-out infinite;
}

.step.step-active { border-color: #a3d609 !important; }

.hidden { display: none; }

#shield-summary { font-size: 14px; margin-bottom: 10px; }

#shield-add-to-cart {
    width: 100%; padding: 14px;
    background: #a3d609; border: none; cursor: pointer;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    color: #000;
}
#shield-add-to-cart:hover:not(:disabled) { background: #8ab508; }
#shield-add-to-cart:disabled { opacity: 0.6; cursor: not-allowed; }
#shield-add-to-cart.success { background: #4caf50; color: #fff; }
#shield-add-to-cart svg { display: block; }

#shield-cart-message { margin-top: 8px; font-size: 14px; border-radius: 6px; padding: 0; }
#shield-cart-message.shield-success { padding: 14px 0 0; background: transparent; }
#shield-cart-message.shield-error {
    color: #ef5350; padding: 10px 12px;
    background: rgba(239,83,80,.1); border-radius: 6px;
}

.shield-success-row {
    display: flex; align-items: center; gap: 8px;
    color: #a3d609; font-size: 15px; font-weight: 700; margin-bottom: 12px;
}
.shield-view-cart-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px;
    background: #a3d609; color: #000;
    font-size: 15px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
    text-decoration: none; border-radius: 8px;
    transition: background .2s ease; box-sizing: border-box;
}
.shield-view-cart-btn:hover { background: #8ab508; }
.shield-view-cart-btn svg { display: block; flex-shrink: 0; width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .shield-configurator { grid-template-columns: 1fr; gap: 20px; margin: 16px auto; padding: 0; }
    .shield-left { order: 1; }
    .shield-right { order: 2; padding: 16px; border-radius: 12px; }
    .shield-image { max-width: 280px; width: 100%; margin: 0 auto; }
    .shield-title { font-size: 22px; }
    .shield-price { font-size: 26px; }
    .shield-color-btn { width: 38px; height: 38px; }
}
