#product-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Toggle Button */
.pc-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #D1A132;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    animation: pcPulse 2s infinite;
}

.pc-toggle:hover {
    transform: scale(1.08);
}

@keyframes pcPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

/* Chat Box */
.pc-box {
    width: 340px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.pc-header {
    background: linear-gradient(135deg, #D1A132, #b8881c);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.pc-close {
    font-size: 24px;
    cursor: pointer;
}

/* Body */
.pc-body {
    padding: 15px;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
}

.pc-body::-webkit-scrollbar {
    width: 5px;
}

.pc-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Bot Message */
.pc-msg {
    background: #f7f1e2;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

/* Product Image */
.pc-product-image {
    width: 100%;
    border-radius: 14px;
    /* margin-bottom:15px; */
}

/* Buttons */
.pc-options button,
.pc-main-btn {
    width: 100%;
    border: none;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.pc-options button {
    background: #f3f3f3;
    color: #222;
}

.pc-options button:hover {
    background: #D1A132;
    color: #fff;
}

/* Main CTA */
.pc-main-btn {
    background: #D1A132;
    color: #fff;
}

.pc-main-btn:hover {
    background: #b8881c;
    transform: translateY(-2px);
}

/* Buy Buttons */
.pc-amazon-btn {
    background: #0a2c0f !important;
    color: #D1A132 !important;
}

.pc-amazon-btn:hover {
    background: #071f0b !important;
}

/* Responsive */
@media(max-width:480px) {

    #product-chatbot {
        right: 15px;
        bottom: 25px;
    }

    .pc-box {
        width: 310px;
    }

}