.pharmacy-cod-notice-pro {
    background: #ffffe0;
    border: 2px solid #d4b800;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.warning-icon {
    font-size: 28px;
    color: #ff5722;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.notice-content {
    line-height: 1.7;
}
.notice-point {
    position: relative;
    padding-right: 40px;
    margin-bottom: 18px;
    text-align: right;
    direction: rtl;
}
.point-icon {
    position: absolute;
    right: -35px;
    top: 0;
    font-size: 20px;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.cod-notice-checkbox {
    padding: 18px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin: 20px 0;
    text-align: center;
}
.cod-notice-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}
.cod-notice-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .notice-point {
        padding-right: 35px;
    }
    .point-icon {
        right: -30px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    .warning-icon {
        font-size: 24px;
    }
}
