body.bg-bunnings {
    background: #005b4c;
    background: linear-gradient(135deg, #005b4c 0%, #007a5c 60%, #004437 100%);
    min-height: 100vh;
}

.bunnings-header {
    background-color: #005b4c;
    padding: 0.75rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bunnings-footer {
    background-color: #004437;
}

.bunnings-logo-main {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
}

.bunnings-logo-sub {
    display: block;
    font-size: 0.75rem;
    color: #f8f9fa;
    letter-spacing: 0.08em;
}

.btn-bunnings {
    background-color: #007a5c;
    border-color: #007a5c;
    color: #ffffff;
}

.btn-bunnings:hover {
    background-color: #005b4c;
    border-color: #005b4c;
}

.btn-bunnings-dark {
    background-color: #004437;
    border-color: #004437;
    color: #ffffff;
}

.slide-captcha {
    user-select: none;
}

.slide-track {
    position: relative;
    background-color: #e9ecef;
    border-radius: 999px;
    height: 42px;
    overflow: hidden;
}

.slide-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-size: 0.9rem;
}

.slide-handle {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: #007a5c;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slide-handle.completed {
    background-color: #28a745;
}

.slide-arrow {
    font-size: 1.2rem;
}

.spin-wheel-container {
    max-width: 480px;
    margin: 0 auto;
}

.spin-wheel {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.spin-wheel-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #007a5c 0deg 51deg,
        #005b4c 51deg 102deg,
        #007a5c 102deg 153deg,
        #005b4c 153deg 204deg,
        #007a5c 204deg 255deg,
        #005b4c 255deg 306deg,
        #007a5c 306deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.32, 1.34);
}

.spin-indicator {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 22px solid #ffc107;
    margin: 0 auto 0.5rem;
}

.error-banner {
    background-color: #7f1d1d;
    color: #fecaca;
    border-radius: 0.375rem;
    padding: 1rem;
}

.vip-banner {
    background-color: #1e3a8a;
    color: #bfdbfe;
    border-radius: 0.375rem;
    padding: 1rem;
}

/* Fake live chat widget */
.chat-widget {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1050;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.chat-toggle {
    background-color: #007a5c;
    border: none;
    color: #ffffff;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.chat-toggle::before {
    content: '\2022';
    font-size: 1.1rem;
    color: #22c55e;
}

.chat-toggle:hover {
    background-color: #005b4c;
    box-shadow: 0 6px 14px rgba(0,0,0,0.5);
    transform: translateY(-1px);
}

.chat-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.chat-window {
    width: 320px;
    max-height: 420px;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.55);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.12);
}

.chat-window.open {
    display: flex;
}

.chat-header {
    background-color: #005b4c;
    color: #ffffff;
    padding: 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.chat-body {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1;
    background-color: #f8fafc;
}

.chat-input {
    padding: 0.4rem;
    border-top: 1px solid #e5e7eb;
}

.chat-message {
    margin-bottom: 0.4rem;
    display: flex;
}

.chat-message-bot {
    justify-content: flex-start;
}

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

.chat-message-content {
    max-width: 80%;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.chat-message-bot .chat-message-content {
    background-color: #e5e7eb;
    color: #111827;
}

.chat-message-user .chat-message-content {
    background-color: #047857;
    color: #ecfdf5;
}

@media (max-width: 575.98px) {
    .chat-widget {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .chat-window {
        width: 90vw;
    }
}
